@charset "utf-8";
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: #FFFFCC;
	background-color: #423E4F;
	background-repeat: repeat-x;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
}
#container  {
	width: 880px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #000000;
} 
#header  {
	height: 337px;
	background-image: url(images/header_04.jpg);
	background-repeat: no-repeat;
	width: 880px;
	padding-top: 0;
	padding-bottom: 0;
	background-color: #000000;
} 
#TopMenuBar {
	background-color: #000000;
}

#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 160px;
	background-repeat: no-repeat;
	line-height: 18px;
	margin-left: 10px;
	background-color: #000000;
	margin-top: 20px;
	color: #C46501;
	padding-top: 50px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
}
h1 {
	font-size: 18px;
	color: #C46501;
}
a:link {
	color: #C46501;
	text-decoration: none;
}
a:visited {
	color: #787679;
	text-decoration: none;
}
a:hover {
	color: #FEF461;
}




#mainContent  {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 250px;
	padding-top: 0;
	padding-right: 40px;
	padding-bottom: 0;
	padding-left: 20px;
} 
h2 {
	font-size: 16px;
	color: #c46501;
}

#footer  {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
	font-size: 9px;
	line-height: 14px;
	text-align: center;
} 
#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 */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
.thumbnails {
	border: 3px solid #423E4F;
}
.picture {
	padding: 5px;
	border: 1px solid #C46501;
	margin: 5px;
}
/* simple css-based tooltip */
div.tooltip {
     background-color:#cccccc;
	 border:1px solid #fff;     
	 padding:10px 15px;     
	 width:200px;     
	 display:none;     
	 color:#fff;     
	 text-align:left;     
	 font-size:12px;      
	 /* outline radius for mozilla/firefox only */     
	 -moz-box-shadow:0 0 10px #000;     
	 -webkit-box-shadow:0 0 10px #000;
}