/* IMPORT */
@import "reset.css";

body {
	background-color: #fff;
}

html,
body {
	height: 100%;
	font-family: 'Open Sans', Arial, Verdana, Helvetica;
	font-size: 14px;
	color: #022E46;
	font-weight: normal;
	font-style: normal;
	text-align: left;
}

input,
select,
textarea {
	font-family: Arial, Verdana, Helvetica;
	color: #333333;
}

* {
	box-sizing: border-box;
}

table {
	border-collapse: collapse;
}

table td {
	padding: 2px 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: bold;
	color: #1c9ad2;
}

h1 {
	font-size: 180%;
	margin: 0 0 30px 0;
	padding: 0;
}

h2 {
	font-size: 150%;
	margin: 0 0 20px 0;
	padding: 0;
}

h3 {
	font-size: 130%;
	margin: 0 0 15px 0;
	padding: 0;
}

h4 {
	font-size: 110%;
	margin: 0 0 10px 0;
}

h5 {
	margin: 0;
}

p {
	margin: 0 0 10px 0;
}

.info {
	color: #0b6dff;
}

ul,
li {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: auto;
}

a {
	font-weight: normal;
	text-decoration: none;
}

a:link,
a:active,
a:visited {
	color: #0C5A84;
}

a:hover {
	color: #1c9ad2;
}

a.button {
	display: inline-block;
	padding: 4px 10px 6px 10px;
	margin: 0 4px 0 0;
	background-color: #1c9ad2;
	color: #fff;
	border-radius: 6px;
}

a.button:hover {
	background-color: #1c9ad2;
	color: #fff;
	text-decoration: none;
}

a.active,
a.active:link,
a.active:active,
a.active:visited {
	background-color: #1c9ad2;
	color: #fff;
}

.small {
	font-size: 85%;
}

/* main layout */

#layout {
	width: 90%;
	min-width: 900px;
	max-width: 1200px;
	background: #fff;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -150px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#splash {
	margin: 0 auto;
	margin-top: 10%;
	width: 30%;
	padding: 20px;
	background-color: #fff;
	min-width: 450px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#content {
	position: relative;
	overflow: auto;
	padding: 0 2%;
}

#left {
	width: 18%;
	margin-right: 2%;
	float: left;
}

#right {
	width: 80%;
	float: left;
}

#footer {
	width: 90%;
	min-width: 900px;
	max-width: 1200px;
	margin: 0 auto;
/*	background-color: #0C5A84;
	color: #fff;*/
}

#footer,
#push {
	height: 150px;
	/* .push must be the same height as .footer */
}

#footer-content {
	padding: 20px;
}

#footer-content p {
	font-size: 90%;
}

#footer-content a {
	color: #fff;
}

#home_left {
	float: left;
	width: 48%;
	margin-right: 2%;
}

#home_left h1 {
	margin-bottom: 30px;
}

#home_left p {
	font-size: 120%;
}

#home_right {
	float: left;
	width: 46%;
	padding: 2%;
	background-color: #fdfdfd;
}

#home_left .section,
#home_right .section {
	padding-bottom: 5px;
	margin-bottom: 15px;
	border-bottom: 1px solid #ededed;
}

/* mainmenu */

#mainmenu {
	position: relative;
	background-color: #1c9ad2;
	margin-top: 5px;
	margin-bottom: 20px;
}

#mainmenu a {
	background-color: #1c9ad2;
	color: #fff;
	display: inline-block;
	padding: 12px 16px;
	border-right: 1px solid #fff;
	font-size: 115%;
}

#mainmenu a.current {
	background-color: #fff;
	color: #1c9ad2;
}

#mainmenu .client {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #fff;
	font-size: 150%;
}

/* submenu */

#SubMenu {
	border-bottom: 1px solid #ddd;
	margin: -10px 10px 10px 5px;
}

#SubMenu ul {
	overflow: auto;
}

#SubMenu ul li {
	float: left;
	border-right: 1px solid #fff;
}

#SubMenu ul li a {
	background-color: #ededed;
	display: block;
	padding: 4px 18px;
	font-size: 110%;
	font-weight: normal;
}

#SubMenu ul li a.active {
	background-color: #1c9ad2;
	color: #fff;
}

.group:after {
	content: "";
	display: table;
	clear: both;
}

.sheet {
	margin: 0 0 10px 0;
	padding: 10px 15px;
	background-color: #fff;
	border: 1px solid #f3f3f3;
	-moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.half {
	float: left;
	width: 47%;
	margin-right: 3%;
}

.half:last-child {
	float: left;
	width: 50%;
	margin-right: 0;
}

.onethird {
	float: left;
	width: 30%;
	margin-right: 3%;
}

.onethird:last-child {
	float: left;
	width: 33%;
	margin-right: 0;
}

.twothird {
	float: left;
	width: 64%;
	margin-right: 3%;
}

.twothird:last-child {
	float: left;
	width: 67%;
	margin-right: 0;
}

.onefifth {
	float: left;
	width: 17%;
	margin-right: 3%;
}

.onefifth:last-child {
	float: left;
	width: 20%;
	margin-right: 0;
}

.onequarter {
	float: left;
	width: 22%;
	margin-right: 3%;
}

.onequarter:last-child {
	float: left;
	width: 25%;
	margin-right: 0;
}

.threequarter {
	float: left;
	width: 72%;
	margin-right: 3%;
}

.threequarter:last-child {
	float: left;
	width: 75%;
	margin-right: 0;
}


/* wizard */

.container-wizard {}

.container-wizard ul {
	border-bottom: 1px solid #dddddd;
	overflow: auto;
}

.container-wizard ul li {
	float: left;
}

.container-wizard ul li a {
	background-color: #ededed;
	display: block;
	padding: 5px 15px;
	border-right: 2px solid #fff;
}

.container-wizard ul li a.active {
	background-color: #1c9ad2;
	color: #fff;
}

.container-wizard .wizard-content {
	border: 1px solid #dddddd;
	border-top: none;
	padding: 15px;
}


/* complementing container-classes */

.container {
	margin-bottom: 20px;
}

.border {
	border: 1px solid #ededed;
	padding: 10px;
}

.borderbottom {
	border-bottom: 1px solid #ededed;
	padding-bottom: 10px;
}

/* lister */

table th.ColumnHeader {
	padding-bottom: 5px;
}

/* new - possibly add styling */

.Container-Lister {
	margin-bottom: 20px;
}

.Container-Lister tr.nohover,
.Container-Lister tr.nohover:hover {
	background-color: #fff;
}

.Container-Lister th {
	padding: 3px 0;
	border-bottom: 1px solid #ddd;
	font-size: 120%;
}

.Container-Lister tr {}

.Container-Lister tr:hover {
	background-color: #efefef;
	cursor: pointer;
}

.Container-Lister td {
	padding: 3px 0;
	border-bottom: 1px solid #efefef;
}

.ListItem {
	font-weight: bold;
	cursor: pointer;
	color: #ccc;
}

.ListItem_ro {
	font-weight: bold;
	cursor: pointer;
	color: #ddd;
}

.ListItemNotClickable {
	font-weight: normal;
	color: #ccc;
}

.ListItemNotClickable_ro {
	font-weight: normal;
	color: #ccc;
}

td.NavMenuLevel0 {}

td.NavMenuLevel0 a {
	font-weight: bold;
	text-decoration: none;
}

td.NavMenuLevel0 a:link,
td.NavMenuLevel0 a:active,
td.NavMenuLevel0 a:visited {
	color: #000;
}

td.NavMenuLevel1 {}

td.NavMenuLevel1 a {}

td.NavMenuLevel1 a:link,
td.NavMenuLevel1 a:active,
td.NavMenuLevel1 a:visited {
	color: #333;
}

td.NavMenuLevel2 {}

td.NavMenuLevel2 a {}

td.NavMenuLevel2 a:link,
td.NavMenuLevel2 a:active,
td.NavMenuLevel2 a:visited {
	color: #666;
}

td.NavMenuLevel3 {}

td.NavMenuLevel3 a {
	font-weight: normal;
}

td.NavMenuLevel3 a:link,
td.NavMenuLevel3 a:active,
td.NavMenuLevel3 a:visited {
	color: #999;
}

td.NavMenuLevel0 a:hover,
td.NavMenuLevel1 a:hover,
td.NavMenuLevel2 a:hover,
td.NavMenuLevel3 a:hover {
	text-decoration: underline;
}

td.NavMenuLevelSelected a:link,
td.NavMenuLevelSelected a:active,
td.NavMenuLevelSelected a:visited {
	color: #1c9ad2;
}

td.TabInactive {
	border-bottom: 1px solid #ededed;
}

td.TabActive {
	font-weight: bold;
	color: #ccc;
	text-decoration: none;
}

td.TabActive a {
	font-weight: bold;
	text-decoration: none;
}

td.TabActive a:link,
td.TabActive a:active,
td.TabActive a:visited {
	color: #ccc;
}

td.TabActive a:hover {
	color: #ddd;
}

td.MenuItem A:link,
td.MenuItem A:active,
td.MenuItem A:visited {
	color: #cccccc;
}

td.MenuItem A:hover {
	color: #cccccc;
}

td.MenuItemActive a:Active:link,
td.MenuItemActive a:active,
td.MenuItemActive a:visited,
td.MenuItemActive a:hover {
	color: #ededed;
}


/* buttons */

.Button {
	margin: 0 5px 5px 0;
	display: inline-block
}

.Button img {
	margin: 0 5px 0 0;
}


/* common search section */

#Container-CommonSearchSection {
	padding: 10px;
	margin-bottom: 20px;
	background-color: #efefef;
}


/* Feedback */

.feedback {
	padding: 10px 20px;
	background-color: #fff8cc;
}


/* Toggle */

.button-toggle {
	display: inline-block;
	padding: 2px 10px 2px 26px;
	margin: 0 0 5px 0;
	background: url('../img/bt_next.gif') left center no-repeat;
}

.button-toggle:hover {
	background: url('../img/bt_next_ro.gif') left center no-repeat;
	cursor: pointer;
	color: #1c9ad2;
}

.div-toggle {
	display: none;
	border: 1px solid #ededed;
	padding: 10px;
	margin-bottom: 10px;
}


/* home */

#container_home_buttons {
	margin-top: 20px;
}

a.home_button {
	display: block;
	margin: 0 0 15px 0;
	padding: 10px 10px 10px 15px;
	background-color: #efefef;
	font-size: 150%;
	color: #555;
}

a.home_button:hover {
	background-color: #dfdfdf;
	text-decoration: none;
	color: #222;
}

#personal {
	margin-bottom: 20px;
}

/* form, generic for CFormClean ----------------------------------------------------------- */

form {
	margin-bottom: 10px;
}

img.required {
	margin-top: 5px;
}

form.disabled {}

form.disabled input,
form.disabled select {
	border: none;
	background-color: #fff;
	padding: 3px;
}

form .row {
	display: table;
	table-layout: fixed;
	width: 100%;
	margin-bottom: 5px;
}

form .label {
	display: table-cell;
	width: 20%;
	vertical-align: top;
}

form .value {
	display: table-cell;
	width: 80%;
}

form .required {
	color: #1c9ad2;
	font-weight: bold;
	font-size: 130%;
	line-height: 0.5em;
}

form .error {
	outline: 1px solid red;
}

form .section {
	border-bottom: 1px dotted #1c9ad2;
	padding: 10px 0 10px 0;
	margin-bottom: 10px;
	overflow: auto;
	width: 100%;
}

form textarea {
	border: 1px solid #ddd;
	padding: 2px 3px;
}

form .handlerfor:hover {
	cursor: pointer;
	text-decoration: underline;
}

form input,
form select,
form textarea,
form input[type=password] {
	margin-bottom: 5px;
	padding: 4px 5px;
	border: 1px solid #ddd;
}

form input[type=text] {
	width: 40%;
}

form input[type=submit] {
	margin-left: 20%;
	padding: 8px 30px;
	border: none;
	background-color: #1c9ad2;
	color: #fff;
	border-radius: 6px;
}

form input[type=submit]:hover {
	background-color: #0C5A84;
}

form input[type=password] {
	width: 40%;
}

form select {
	min-width: 40%;
}

form input[type=text]:hover,
form select:hover,
form textarea:hover,
form input[type=password]:hover {
	border: 1px solid #999;
}

form input[type=text]:focus,
form select:focus,
form textarea:focus,
form input[type=password]:focus {
	border: 1px solid #1c9ad2;
}

form textarea {
	width: 50%;
	height: 120px;
}

form input.medium,
form select.medium,
form textarea.medium {
	width: 70%;
}

form input.large,
form select.large,
form textarea.large {
	width: 100%;
}

form .value .dateperiodfields input[type=text].date {
	float: left;
	width: 48% !important;
	margin-right: 2% !important;
}

	form .value .dateperiodfields input[type=text].date:last-child {
		float: left;
		width: 50% !important;
		margin-right: 0% !important;
	}


/* form_dates ----------------------------------------------------------- */

#form_dates .row,
#form_dates .label {
	display: block;
}

#form_dates .label {
	margin-bottom: 10px;
	width: 100%
}

#form_dates input[type=submit] {
	margin-left: 0;
}

/* form_account_school ----------------------------------------------------------- */

#form_account_school {
	height: 22px;
	margin-bottom: 20px;
}

#form_account_school select {
	display: inline-block;
	margin: 0 5px 0 0;
}

#form_account_school .row {
	width: auto;
}

#form_account_school input[type=submit] {
	margin: 0;
}

#form_account_school select {
	width: 100px;
}

/* form mailing */

form #mailing_newsitems {
	border: 1px solid #ddd;
	height: 200px;
	padding: 10px;
	overflow: auto;
	overflow-x: hidden;
	margin-bottom: 20px;
	background-color: #fff;
}

form #wrapperbuttonsend {
	display: none;
}


/* form_login */

form#form_login .label {
	display: table-cell;
	width: 20%;
	vertical-align: top;
}

form#form_login .value {
	display: table-cell;
	width: 80%;
}

form#form_login input[type=submit] {
	margin-left: 20%;
}

/* languageswitch */

#languageswitch {
	overflow: auto;
	margin-bottom: 10px;
}

/* alert */

.alert {
	background-color: #1c9ad2;
	color: #fff;
	padding: 10px;
	margin-bottom: 10px;
}

/* ad hoc */

.par_updown {
	float: right;
}

/* flex */
/* parent properties */

.flexbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.fl-nowrap {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.fl-justify-spacebetween {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.fl-justify-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.fl-justify-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.fl-justify-spaceevenly {
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
}

.fl-align-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.fl-align-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.fl-align-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.fl-align-stretch {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

/* child properties */

.nogrow {
	flex-grow: 0;
}

.noshrink {
	flex-shrink: 0;
}

.fl-half {
	-webkit-box-flex: 1;
	-ms-flex: 0 0 48%;
	flex: 0 0 48%;
}

.fl-onethird {
	-webkit-box-flex: 1;
	-ms-flex: 0 0 31%;
	flex: 0 0 31%;
}

.fl-twothird {
	-webkit-box-flex: 1;
	-ms-flex: 0 0 64%;
	flex: 0 0 64%;
}

.fl-onequarter {
	-webkit-box-flex: 1;
	-ms-flex: 0 0 24%;
	flex: 0 0 24%;
}

.fl-thirty {
	-webkit-box-flex: 1;
	-ms-flex: 0 0 29%;
	flex: 0 0 29%;
}

.fl-ten {
	-webkit-box-flex: 1;
	-ms-flex: 0 0 10%; /* deze niet 9 maken, zoals 29 bij thirty, etc. want dan komen we op kleinere schermen speling te kort. */
	flex: 0 0 10%;
}

.fl-fourty {
	-webkit-box-flex: 1;
	-ms-flex: 0 0 38%;
	flex: 0 0 38%;
}

.fl-sixty {
	-webkit-box-flex: 1;
	-ms-flex: 0 0 58%;
	flex: 0 0 58%;
}

.fl-eighty {
	-webkit-box-flex: 1;
	-ms-flex: 0 0 79%;
	flex: 0 0 79%;
}

.fl-ninety {
	-webkit-box-flex: 1;
	-ms-flex: 0 0 89%;
	flex: 0 0 89%;
}

.text-right
{
	text-align: right;
}