@charset "utf-8";


/* CSS Document */

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;
	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: #7F7F7F;
	background-color: #FFF;
	background-image: url(../../front_page/images/bg/banner_edges.png);
	background-repeat: repeat-x;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}

#header {
	background-color: #FFF;
	background-image: url(../../front_page/images/bg/banner.png);
	height: 200px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-repeat: no-repeat;
} 

.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;
}


 #footer {
	padding: 0 10px 0 20px;
	background-color: #FFF;
	background-repeat: no-repeat;
	border-top-color: #000;
} 

#bottomsnippet {
	font-family: Calibri, Verdana;
	font-size: 12px;
}
.copyright {
	font-family: Calibri, Verdana;
	font-size: 11px;
	color: #000;
	text-align: right;
}

#sidebar1 {
	float: right;
	width: 200px;
	margin-top: 30px;
}


 #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

