@charset "utf-8";
/******************* GLOBAL *******************/
/* Colours used
/* a:      #d9d9d9
/*         #333
/* a:hover #999
/*         #fff
/* active  #464646
/*         #00ff00
*/

body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	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: #000;
	background-color: #424242;
}
.oneColFixCtr #container {
	width: 780px; /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 6px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left;
}
.oneColFixCtr #header {
	padding: 0 0;
	background-repeat: repeat;
	background-image: url(../images/header/bg_header.gif);
	margin: 0 0;
	height: 140px;
	background-color: #fffaf0;
}
.oneColFixCtr  #header-padded  {
	padding: 0px 12px 10px 12px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	clear: none;
	margin: 0 0;
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtr .navbar1 {
	width: 470px;
	margin-top: 10px;
	height: 1px;
	float: left;
}
.oneColFixCtr #mainContent {
	padding: 0 0;
	background-color: #fffaf0;
	margin: 4px 0 0 0;
	background-position: bottom;
	background-repeat: repeat-x;
}
.oneColFixCtr #paddedcontent {
	padding: 7px 12px;
}
.oneColFixCtr #footer {
	padding: 0 2px;
	background-color: #424242;
}
.oneColFixCtr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 2px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #A5A5A5;
	text-align: center;
	font-size: 0.9em;
	font-family: Tahoma, Verdana, Arial, Helvetica;
}
.oneColFixCtr .roundtop {
	background-image: url(../images/header/rounded-topright.gif);
	background-repeat: no-repeat;
	background-position: right top;
	float: none;
}
.oneColFixCtr .roundtop img {
	display: block;
	width: 10px;
}
.oneColFixCtr .roundbottom {
	background-image: url(../images/rounded-bottomright.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	margin: 0 0;
	padding: 0 0;
}
.oneColFixCtr  #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 80px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 20px 0px;
	margin: 15px 0 0 10px;
	clear: left;
}
.oneColFixCtr #contacts {
	padding: 0px 20px 0 20px;
	width: 100%;
}
.oneColFixCtr #pagelinks {
	padding: 2px 12px 0;
	margin: 0 0;
}
