@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 5; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #A0A6C9;
	background-attachment: fixed;
	background-image: url(images/bG_body_gray.png);
	background-repeat: repeat-x;
	overflow: -moz-scrollbars-vertical;
	overflow-y: scroll;
}
.sab_main #container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #CCC;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 5;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.sab_main #header {
	background: #DDDDDD;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
}
#navigation {
	height: 32px;
	width: 980px;
	margin-top: 10px;
	margin-bottom: 10px;
	float: left;
	background-color: #006;
	border: 0px none #000;
}

.sab_main #kader_links {
	float: left;
	width: 700px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	background-image: none;
	color: #006;
	background-repeat: no-repeat;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 15px;
	padding: 15px;
	border: 2px double #006;
		
}



.sab_main #kader_links_fixed_height {
	float: left;
	width: 700px;
	height: 250px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	background-image: none;
	color: #006;
	background-repeat: no-repeat;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 15px;
	padding: 15px;
	border: 2px double #006;
		
}

#kader_links_2 {
	height: 30px;
	width: 550px;
	margin-top: 5px;
	margin-left: 15px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #006;
	float: left;
	font-style: italic;
	font-size: 14px;
	position: relative;
}

#kader2 {
	float: left;
	width: 195px;
	background-image: none;
	background-repeat: no-repeat;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10px;
	color: #006;
}


.sab_main #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.sab_main #mainContent {
	background: #FFFFFF;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 0px;
}
.sab_main #footer {
	height: 32px;
	width: 980px;
	padding: 0;
	margin-top: 25px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.sab_main #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between div 	s */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
