/*
Created by Matthias Wiels - http://mwiels.eu
*/

/********************
* GENERAL ELEMENTS
********************/

html, body { height: 100%; }

body {
	margin: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #560808; /* Voor opera & safari */
}

a {
	color: #000;
	font-weight: bold;
	text-decoration: none;
	white-space:nowrap;
}

a img {border: none;}

a:hover { color: #fff; }

hr {
	color: #fbb350; /* IE */
	background-color: #fbb350; /* Other */
	border: 0;
	}
ul, ol {margin-top: 5px; }

h1,h2 { color: #e9e9e9; }

h2 { 
	font-size: 120%;
	margin: 5px 0 5px 0;
	
}

h3 { 
	margin-bottom: 0;
	font-size: 85%;
	}

table td { vertical-align: top; }

/***********************
* TABLELESS FORM
***********************/
form {
	margin: 10px 5px;
	}
	
label,input {
	display: block;
	float: left;
	margin-bottom: 3px;
}

label {
	text-align: right;
	width: 100px;
	padding-right: 20px;
}

#form_submit { margin-left: 120px; }

br { clear: left; }

.formError,.formInfo { margin: 2px 0 10px 94px; }

.formError {
	font-weight: bold;
	color: #000;
}
.formInfo { color: #c8c8c8; }


/***********************
* DESIGN CONTAINERS
***********************/
#container {
	position: relative;
	min-height: 100%;
	height:auto !important; /* moderne browsers */
	height:100%; /* IE */
	background: #b70000 url(img/bg.png) repeat-x top;
	}

	#header {
		position: relative;
		height: 136px;
		background-image: url("img/logo.jpg");
		background-repeat: no-repeat;
	}
	
	#center {
		min-height: 100px;
		width: 755px;
		margin: 5px;
		padding-bottom: 71px;
	}
	
	#footer { 
		height: 71px;
		width: 100%;
		background-image: url("img/bg_bottom.png");
		position: absolute;
		bottom: 0;
		text-align: center;
		color: #b6b6b6;
		font-size: 0.75em;
	}

/********************
* MENU TABS
********************/
.tabs {
	padding: 5px;
	margin: 0;
	
	/*An element with position: absolute is positioned at the specified coordinates relative to its 
		containing block. The element's position is specified with the "left", "top", "right", and 
		"bottom" properties.*/
	position: absolute;
	bottom: -2px;
	float: left;
	left: 250px;
	white-space: nowrap;
	}
	
.tabs ul { list-style: none; }

.tabs span { padding: 5px; }
	
.tabs li {
	-moz-border-radius-topleft: 8px; /*Firefox*/
	-moz-border-radius-topright: 8px;
	-webkit-border-top-left-radius: 8px; /*Safari*/
	-webkit-border-top-right-radius: 8px;
	background:url("img/btn.png") repeat-x;
	display: inline;
	padding: 5px 0px;
	border: 1px solid #fbb350;
	border-bottom: none;
	}
	
.tabs li:hover {
	border: 1px solid #fff;
	border-bottom: none;
	background:url("img/btn_h.png") repeat-x;
	}
.tabs li.active {
	font-size: 125%;
	background: url("img/btn_a.png") repeat-x;
	}	
.tabs li.active a { color: #fff; }

/********************
* DISPLAY RESULTS
*********************/
.result {
	padding: 0 8px 8px 8px;
	margin-bottom: 20px;
	overflow: auto;
	background: #f7eadf url("img/result.png") repeat-x top;
	-moz-border-radius: 8px; /*Firefox*/
	-webkit-border-radius: 8px; /*Safari*/
	}

.result span {
	margin: 0 -8px 0 0;
	float: right;
	height: 38px;
	width: 213px;
	background: url("img/result_right.png") right;
	line-height: 350%;
	text-align: center;
	}

.result a:hover {
	color: #b70000;
	}
.result img {
	float: left;
	margin: 0 5px 5px 0;
	}

/********************
* ICONS
********************/
.icons a { 
	padding: 5px;
	margin: 5px 2px;
	border: 1px solid;
	text-align: center;
	display: inline-table;
	width: auto;
	}
.icons a img  { border: none; float: none; }
.icons a:hover {
	color: #fff;
	border-color: #fff;
	}

/********************
* MESSAGES
********************/
.error,.info { 
	margin: 5px; 
	padding: 0.6em 2em 0.6em 40px;
	border: 1px solid #000; 
	}	

.error{ background: #c62a2a url("img/message_error.png") 5px 50% no-repeat; }

.info{
	background: #a6ddff url("img/message_info.gif") 5px 50% no-repeat;
	color: black;
}
