@charset "utf-8";
body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	margin: 0;
	padding: 0;
	text-align: center;
}

img {
  border:0;
  font-size:75%;
}

.main #container { 
	width: 960px;
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
}

/* Header */
.main #header {
	background-color: #ffffff;
  background-image: url('images/logo.gif');
  background-repeat: no-repeat;
  background-position: top left;
  height:200px;
	padding: 0;
}

.main #header h1 {
	height:1px;
  margin: 0 0 0 -10000px;
}




/* Left Sidebar */
.main #sidebar1 {
	float: left;
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFC0;
	padding: 15px 10px 15px 20px;
}


/* Main */
.main #mainContent {
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 


/* Links */

a:link {
  text-decoration: none;
  font-weight:bold;
  color: #374B7F;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  font-weight:bold;
  color: #00C000;
}



/* Miscellaneous */
.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;
}


/* top navigation */
ul {
  list-style-type:none;
  margin-left:0;
  padding-left:0;
}
	#navigation li{
    float: left;
		padding: 0 12px;
		font-size:90%;
		font-weight: bold;
		margin-bottom:15px;
		height:30px;
		line-height:30px;
		background-image: url('images/button-off.gif');
	}
	#navigation li a{
    text-decoration:none;
    color: #374B7F;}
	#navigation li a:visited {
    text-decoration:none;
    color: #B350B4;
}
	#navigation li a:hover {
    text-decoration:none;
    color: #00C000;
}
  #navigation li.active a{
    text-decoration:none;
    color: #00C000;
}

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

.main #footer { font-family: Arial,Helvetica,sans-serif;
          font-size: 11px;
          font-weight:normal;
          text-align: center;
		      height:30px;
		      line-height:30px;
          margin-bottom: 10px;
		      background-image: url('images/button-off.gif');
           }

.main #footer a:link {font-weight:bold;
                text-decoration:none;
               }

.main #footer a:hover {font-weight:bold;
                 text-decoration: underline;
                }


