﻿/* =========================== */
/*  LUSANET SCHOOLTOOLS        */
/*  VERSIE 1.0.00              */
/* =========================== */
/*  © 2007-2012 LuSaneT Group  */
/*  www.lusanet.nl             */
/* =========================== */
/*  Basis elementen            */
/*  includes/base.css          */
/* =========================== */

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;	
}

html, body {
	height: 99%;
	margin: 0px;
	padding: 0px;
}

body {
	background-color: #FFFFFF;
	background-image: url('../images/header_background.png');
	background-position: 0px 0px;
	background-repeat: repeat-x;
	color: #000000;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 12px;
}

div, .floatBreak {
	clear: both;
	float: none;
}

/* === OVERLAY === */
	#overlay, .inElementOverlay {
		display: none;
		position: fixed;
		z-index: 10;
		bottom: 0px;
		left: 0px;
		right: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		overflow: hidden;
		background-color: transparent;
		background-image: url('../images/overlay_background.png');
		background-position: 0px 0px;
		background-repeat: repeat;
	}
	.inElementOverlay {
		display: block;
		bottom: auto;
		left: auto;
		top: auto;
		right: auto;
		top: auto;
	}
	
	#overlay #overlayLoadingIcon, .inElementOverlay .inElementLoadingIon {
		display: none;
		width: 390px;
		height: 55px;
		padding-left: 48px;
		padding-top: 4px;
		background-color: transparent;
		background-image: url('../images/overlay_loadingbackground.png');
		background-position: 0px 0px;
		background-repeat: repeat;
		color: #000000;
		font-weight: bold;
		font-size: 12pt;
		line-height: 32px;
	}
	.inElementOverlay .inElementLoadingIon {
		display: block;
		height: 20px;
		font-family: 9pt;
		line-height: 16px;
	}
	
	#overlay #overlayLoadingIcon img, .inElementOverlay .inElementLoadingIon img {
		float: left;
		margin-left: -44px;
	}
	
	#overlay #overlayLoadingIcon p {
		display: none;
		margin: 0px;
		color: #C44444;
		font-size: 8pt;
		font-weight: normal;
		line-height: 10pt;
	}

	#overlay #overlayLoadingIcon p a {
		color: #C44444;
		text-decoration: underline;
	}
	#overlay #overlayLoadingIcon p a:hover {
		color: #000000;
	}

/* === RELOGIN SCHERM === */
	body.blurAll * {
		filter: blur(2px);	
	}
	#reloginOverlay * {
		filter: none;
	}
	
	#reloginOverlay {
		display: none;
		position: fixed;
		z-index: 50;
		width: 100%;
		height: 100%;
		bottom: 0px;
		left: 0px;
		right: 0px;
		top: 0px;
		background-color: rgba(30, 30, 30, 0.70);
		filter: none;
	}
	
	#reloginOverlay .windowBox {
		left: 50%;
		top: 50%;
		width: 600px;
		height: 260px;
		margin-left: -300px;
		margin-top: -130px;
	}
	
	#reloginOverlay .windowBox header {
		cursor: default;
	}
	
	#reloginOverlay .windowBox p, .loginBox p {
		width: 85%;
		margin-bottom: -10px;
		margin-left: 7.5%;
		padding-right: 0px;
		padding-top: 10px;
		font-style: italic;
		font-size: 12px;
		line-height: 21px;
	}

/* === FLYOUT-PANE === */
	#flyoutPane {
		overflow-y: auto;
		display: block;
		position: fixed;
		z-index: 9;
		bottom: 0px;
		right: 0px;
		top: 0px;
		width: 95%;
		max-width: 600px;
		height: 100%;
		padding: 20px;
		background-color: #FFFFFF;
		box-shadow: -5px 0px 15px rgba(1, 52, 87, 0.6);
		transform: translateX(110%);
		transition: transform 0.8s;
	}
	#flyoutPane.active {
		transform: translateX(0%);
	}

	#flyoutPane .formPageTable {
		width: 100%;
	}

	#flyoutPane .formPageButtonsBar {
		position: relative;
	}
		
/* === WRAPPER === */
	#wrapper {
		width: 95%;
		max-width: 1000px;
		height: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	
	/* === LOGO === */
		#wrapper .logo {
			clear: none;
			float: left;
			width: 200px;
			height: 70px;
			background-color: #FFFFFF;
			background-image: url('../images/header_logo.png');
			background-position: center center;
			background-repeat: no-repeat;
			box-shadow: 3px 3px 8px 2px #103668;
		}
		
	/* === LOGIN STATUS === */
		#wrapper #loginStatus {
			clear: none;
			float: right;
			width: auto;
			max-width: 50%;
			height: 20px;
			color: #cdecff;
			font-size: 11px;
			text-align: right;
			line-height: 20px;
		}
		
		#wrapper #loginStatus a {
			color: #cdecff;
			text-decoration: underline;
		}
		#wrapper #loginStatus a:hover {
			color: #FFFFFF;
		}

		#wrapper #loginStatus i {
			position: relative;
			display: inline-block;
			width: 16px;
			height: 16px;
			margin-left: 2px;
			background-image: url('../images/header_icons.png');
			background-repeat: no-repeat;
			vertical-align: middle;
			cursor: pointer;
		}
		#wrapper #loginStatus i:hover {
			opacity: 0.7;
		}
		#wrapper #loginStatus i.logout {
			background-position: 0px 0px;
		}
		#wrapper #loginStatus i.report {
			background-position: 0px -16px;
		}

		#wrapper #loginStatus i[data-title]:hover:after {
			content: attr(data-title);
			z-index: 20;
			position: absolute;
			right: 0px;
			top: 17px;
			padding: 2px 5px;
			box-shadow: 0px 0px 2px #808080;
			background: #FFFFFF; 
			color: #0072bc;
			font-size: 11px;
			line-height: 18px;
			white-space: nowrap;
		}
		
	/* === STATUSMESSAGE === */
		#statusMessage {
			display: none;
			position: fixed;
			z-index: 11;
			top: 24px;
			left: 50%;
			width: 600px;
			height: 26px;
			margin-left: -300px;
			background-color: #98bf0e;
			background-image: url('../images/statusmessages_icons.png');
			background-position: 5px 0px;
			background-repeat: no-repeat;
		}
		#statusMessage.good {
			background-color: #98bf0e;
			background-position: 5px 0px;
			box-shadow: 0px 0px 3px 2px #dcf573;
		}
		#statusMessage.warning {
			background-color: #c07b0e;
			background-position: 5px -26px;
			box-shadow: 0px 0px 3px 2px #f5c273;
		}
		#statusMessage.error {
			background-color: #c00e11;
			background-position: 5px -52px;
			box-shadow: 0px 0px 3px 2px #f4747a;
		}
		
		#statusMessage p {
			margin: 0px;
			padding: 0px;
			padding-left: 35px;
			color: #FFFFFF;
			font-size: 15px;
			line-height: 26px;
		}
		
	/* === MENU TABBAR === */
		#wrapper #menuTabbar {
			display: inline-block;
			width: 100%;
			height: 20px;
			margin-top: 5px;
		}
		
		#wrapper #menuTabbar div {
			clear: none;
			float: left;
			width: auto;
			height: 20px;
			padding-left: 12px;
			padding-right: 12px;
			background-image: url('../images/menu_divider.gif');
			background-position: 0px center;
			background-repeat: no-repeat;
			color: #FFFFFF;
			line-height: 20px;
			cursor: pointer;
		}
		#wrapper #menuTabbar div:first-of-type {
			margin-left: 210px;
			background-image: none;
		}
		#wrapper #menuTabbar div.active {
			background-color: #0072bc;
		}
		
	/* === MENU PAGES === */
		#wrapper #menuPages {
			overflow: hidden;
			width: 100%;
			height: 25px;
			padding-right: 225px;
			white-space: nowrap;
		}
		
		#wrapper #menuPages ul, #wrapper #menuPages li {
			display: inline;
			margin: 0px;
			padding: 0px;
			list-style: none;
		}
		#wrapper #menuPages ul {
			display: none;
		}
		#wrapper #menuPages ul.active {
			display: inline;
		}
		
		#wrapper #menuPages li {
			clear: none;
			float: left;
			width: auto;
			height: 25px;
			padding-left: 12px;
			padding-right: 12px;
			background-image: url('../images/menu_divider.gif');
			background-position: 0px center;
			background-repeat: no-repeat;
			color: #FFFFFF;
			line-height: 25px;
			cursor: pointer;
		}		
		#wrapper #menuPages li:first-of-type {
			margin-left: 210px;
			background-image: none;
		}
		#wrapper #menuPages li:hover {
			background-color: #009adb;
		}
		#wrapper #menuPages li.active {
			background-color: #FFFFFF;
			color: #004c9a;
		}
		
		#wrapper #menuPages li sup {
			padding-left: 3px;
			padding-right: 3px;
			border-left: 3px solid #5977b5;
			background-color: #004c9a;
			color: #dce3f0;
		}
		#wrapper #menuPages li:hover sup {
			border-left: 3px solid #0061c8;
		}
		#wrapper #menuPages li.active sup {
			border-left: 3px solid #FFFFFF;
			background-color: #dce3f0;
		}
		
	/* === SCHOOLYEAR SELECTOR === */
		#wrapper #schoolYearsBar {
			float: right;
			width: 225px;
			height: 25px;
			margin-top: -25px;
			color: #cdecff;
			font-size: 10px;
			text-align: right;
			line-height: 25px;
		}
		#wrapper #schoolYearsBar select {
			width: 86px;
			height: 18px;
			margin-top: 4px;
			border: 0px;
			border-radius: 3px;
			background-color: #0072bc;
			color: #cdecff;
		}
	
	/* === CONTENT === */
		#wrapper #content {
			position: relative;
			width: 100%;
			margin-top: 35px;
		}
		
		#content h1, #flyoutPane h1 {
			margin: 0px;
			margin-bottom: 35px;
			padding: 0px;
			color: #90268f;
			font-family: Verdana, Geneva, Tahoma, sans-serif;
			font-size: 24px;
			font-weight: normal;
		}

		/* === LOCKED BAR === */
			#content .lockedNoticeBar {
				width: 100%;
				height: 26px;
				margin-bottom: 20px;
				padding-left: 32px;
				background-color: #fae3be;
				background-image: url('../images/formpage_requiredwarning.png');
				background-position: 8px 4px;
				background-repeat: no-repeat;
				border: 1px solid #a96b0b;
				box-shadow: 0 0 5px #C0C0C0;
				color: #a96b0b;
				font-size: 11px;
				font-weight: bold;
				line-height: 24px;
			}

		/* === SCROLL HEADER === */
			#content #scrollHeader {
				display: none;
				width: 100%;
				background-color: rgba(255, 255, 255, 0.95);
				color: #0072bc;
				font-size: 11px;
			}
			#content #scrollHeader::first-line {
				color: #00aeef;
				font-size: 18px;
			}
			#content #scrollHeader.fixed {
				z-index: 5;
				position: fixed;
				top: 0px;
				display: block;
				padding: 15px;
			}

		/* === TABLE OF CONTENTS === */
			#content #tableOfContentsBox {
				position: absolute;
				right: 0px;
				width: 23%;
				height: auto;
				border: 1px solid #00aeef;
				background-color: rgba(255, 255, 255, 0.95);
				color: #0072bc;
			}
			#content #tableOfContentsBox.fixed {
				z-index: 5;
				position: fixed;
				top: 60px;
			}

			#content #tableOfContentsBox h2 {
				width: 100%;
				height: 18px;
				margin: 0px;
				padding-left: 10px;
				background-color: #00aeef;
				color: #FFFFFF;
				font-size: 11px;
				line-height: 16px;
			}

			#content #tableOfContentsBox ul {
				width: 100%;
				height: auto;
				margin: 0px;
				margin-bottom: 7px;
				margin-top: 7px;
				padding: 0px;
				list-style: none;
			}

			#content #tableOfContentsBox li {
				width: 100%;
				overflow: hidden;
				height: 18px;
				margin-bottom: 1px;
				margin-top: 1px;
				padding-left: 10px;
				padding-right: 10px;
				line-height: 20px;
				text-overflow: ellipsis;
				white-space: nowrap;
			}
			#content #tableOfContentsBox li.visible {
				border-left: 3px solid #00aeef;
			}

			#content #tableOfContentsBox li:hover {
				cursor: pointer;
				text-decoration: underline;
			}