@charset "UTF-8";
/* CSS Document */
@import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:700);

body  {
		font-family: sans-serif;

	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: #000000;
	font-size:.9em;
	background-color:#999;
}
#container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	background-image:url(images/headerbackground.gif);
	background-position: top left;
	background-repeat:no-repeat;
	margin: 20px 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. */
}

.shadow {
  -moz-box-shadow:    3px 3px 10px 2px #000;
  -webkit-box-shadow: 3px 3px 10px 2px #000;
  box-shadow:         3px 3px 10px 2px #000;
}
#logo { 
	padding: 32px 5px 10px 15px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 

#header { 
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 

#nav {
	font-family: 'Yanone Kaffeesatz', sans-serif;
	font-size:1.4em;
	width: 100%;
	float: left;
	margin: 0px 0 3em 0px;
	padding: 0;
	list-style: none;
	background-color: #666;
	border-bottom: 1px solid #ccc; 
	border-top: 1px solid #fff; }
#nav li {
	float: left; }
#nav li a {
	display: block;
	padding: 4px 15px;
	text-decoration: none;
	color: #FFF;
	border-right: 1px solid #ccc; }
#nav li a:hover {
	color: #00aae9;
	background-color: #666;}
	
	
 #mainContent {
	margin-top: 35px;
	margin-left:120px; /* 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: 30px 100px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.small
{font-size:.8em}

.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: 15px;
	margin-bottom: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 12px;
}
.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;
}

img {
border:none;
}

a {
	color:#00aae9;
}

a:visited {
color:#999;
}


h1 {
font-family: 'Yanone Kaffeesatz', sans-serif;
font-size:1.8em;
color: #00aae9;
font-weight:normal;
}

h2 {
	font-family: 'Yanone Kaffeesatz', sans-serif;
font-size:1.2em;
color:#00aae9;
font-weight:normal;
}
