/* Basic */
html {
	height: 100%;
}

body {
	height: 100%;
	margin: 0px;
	text-align: left;
	font-family: sans-serif;
	color: #333;
}

/* title & logo */
#topbar {
	position: relative;
	top: 0px;
	width: 100%;
	height: 94px;
	margin-bottom:0px;	
	background: url(../gfx/logo_top.png) no-repeat center top;
}

/* Navigation */
#navigation {
	margin-left: 200px;
}

/* Main bar */
ul#navbar {
	width: 800px;
	padding: 0.8em;
	margin-top: 1px;
	text-align: left;
	background-color: #aeb1ca;
}

ul#navbar a {
	color: white;
}

ul#navbar li {
	list-style: none;
	display: inline;
	margin: 0.4em;
	padding: 0.3em;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	background-color: #3914AF;
}

ul#navbar li.selected {
	background-color: #FFD300;
}

ul#navbar li.selected a {
	color: #3914AF;
}

/* Footer */
#footer {
	padding: 10px;
	margin-left: 200px;
	font-size:smaller;
}

/* container for everything */
#container {
	display: table;
    border-collapse: collapse;
	min-height: 450px;
}

#container>div {
	display: table-row;
}

/* content itself */
div#content {
	display: table-cell;
	width: 600px;
	border: 1px dotted #CCC;
	padding: 15px 10px 10px 10px;
	text-align: left;
}

/* sidebar (left) */
div#sidebar {
	display: table-cell;
	padding: 0px;
	width: 200px;    

}

/* alternative bar (right) */
div#altbar {
	display: table-cell;
	padding: 10px;
	border: 1px dotted #CCC;
	width: 180px;
}

/* Navigation ul with 2 levels */
ul.navl1 {
	list-style-image: url("../gfx/rightarrow.png");
	margin-left: 20px;
	margin-top: 0px;
	padding: 0px;
}

ul.navl2 {
	border-width: 1px 0px 1px 0px;
	border-style: dotted;
	border-color: #CCC;
	list-style-type: none;
	margin: 1px 10px 1px 10px;
	padding: 0px 0px;
}

/* General settings */

/* Links */
a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a>img {
	border: none;
}

/* Headers & text */
h1.project {
	font-size: large;
	border-width: 0px 0px 1px 0px;
	border-style: dotted;
	border-color: #CCC;
	margin-bottom: 20px;
}

h1.nav {
	font-size: small;
	margin-top: 0px;
	border-width: 1px 0px 1px 0px;
	border-style: dotted;
	border-color: #CCC;
	padding-bottom:5px;
	padding-top:5px;
}

/* standard headings */
h1 {
	font-size: large;
}

h2 {
	font-size: medium;      
}

h3 {
	font-size: medium;   
}
