/*
stylesheet made by Erik Tiekstra
*/

/*
The main part of the website.. this will center the website
*/

body,html {
	width: 100%;
	height: 97%;
	padding: 0px;
	background: #006666;
	margin-left:auto;
	margin-right:auto;
	font-family:Tahoma, Arial, sans-serif, Helvetica;
	font-size:11px;
	color:#333333;
	}

/*
Configuration of the hyperlinks
*/

a:link {
	color:#006666;
	text-decoration: none;
	}
a:visited {
	color: #666666;
	text-decoration: none;
	}
a:hover {
	color: #339999;
	text-decoration: none;
	}

td {
	vertical-align:top;
	padding:5px;
	}
	
h3 {
	font-size:14px;
	font-weight:bold;
	font-variant:small-caps;
	}
.titel {
	font-size:13px;
	font-weight:bold;
	text-decoration:underline;
	font-variant:small-caps;
	line-height:20px;
	}

/*
The configuration of the actual website (div). This will make the website in full length and a width of 750px.
The background image of the table will repeat itselve untill it came to the end of the page.
*/

.main {
	width: 900px;
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
	height: 100%;
	background: #FFFFFF;
	border: 1px solid #333333;
	}

/*
Inside the table is a td with a class "header". Here is the configuration of the header with the background image
given in the index.php. That's because it's a random function in PHP
*/

.header{
	position:relative;
	width:100%;
	height:140px;
	background:#CCFFFF;
	background-image:url(../img/header_mgcleeuwarden.jpg);
	background-repeat: no-repeat;
	border-bottom:1px solid #333333;
}

/*
Configuration of the navigation, a td just below the header
*/

.navigation{
	position:relative;
	width:174px;
	padding: 0px;
	text-align:left;
	background:#F1F1F1;
	border-right: 1px solid #333333;
}

td#nav1{
	background:#DDDDDD;
	font-weight:bold;
}
td#nav2{
	background:#F1F1F1;
	font-weight:bold;
}
.right{
	position:relative;
	width:240px;
	height:100%;
	background:#F1F1F1;
	border-left: 1px solid #333333;
	}

/*
Configuration of the actual content wich will change on every page. This td will be right below the navigation.
Also a few styles for the includes below the .content. The content will be placed 10px inside the lay-out of the website
*/

.content{
	position:relative;
	min-height:100%;
	width:500px;
	padding:5px;
	background:#FFFFFF;
}

.maincontent{
	width:490px;
}
/*
Configuration of the footer, here also a background image is included. This td is the last of the table with the class "main". 
The footer will always stay at the bottom of the website!
*/

.footer{
	background:#EEEEEE;
	text-align:center;
	vertical-align: bottom;
	font-size:10px;
	border-top:1px solid #333333;
}
