@charset "UTF-8";

body  {
	font-family: "trebuchet MS", century gothic, trebuchet, sans serif;
	background:#EBEBEB;
	margin: 0;
	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;
}
#container { 
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* ----------------------- HEADER ----------------------- */

#header { 
	background:#333; 
	text-align:center;
	margin:20px 0 10px 0;
}
#header .title {
	margin: 20px auto 0px auto;
	font-family: "trebuchet MS", century gothic, trebuchet, sans serif;
	font-size: 46px; 
	color:#fff;
	line-height:52px;
	text-transform:uppercase;
	font-weight: bold;
}
#header .subtitle {
	font-family: "trebuchet MS", century gothic, trebuchet, sans serif;
	font-size: 16px; 
	color:#fff;
	line-height:18px;
	margin:0 0 10px 0;
}
#header a {
	text-decoration:none;
	margin:0px;
	color:#FFF;
}
#header a:link,visited,hover {
	color: #FFF;
	text-decoration:underline;
}

.linkbar { width: auto; margin:0px 20px 30px 20px;}

#header h3 {
	font-family: century gothic, trebuchet, sans serif;
	font-size: 10px; 
	line-height:12px;
	margin: 0px;
}
#header ul {
	list-style: none;
	margin: 0px;
}
#header li {
	float: left;
	margin: 0 10px 0 0;
	font-size: 9px;
}
#headerimages { text-align: center; width: 100%; margin: 10px 0 0px 18px;}

#headerimages img { float: left; margin: 2px; }

/* ----------------------- CONTENT ----------------------- */

#mainContent {
  	margin: 20px;
}
#mainContent h1 {
  	font-size: 20px;
	margin: 0px;
}
#mainContent h2 {
  	font-size:16px;
	margin: 0px;
	ine-height: 22px;
	font-weight: normal;
	margin: 5px 0 10px 0;
}
#mainContent p {
  	line-height: 22px;
}
#mainContent img {
  	margin:10px 5px 20px 0; /* the left margin will look best if you match the padding amount to the header and footer. */
	float:left;
}
.adsenseleft {float:left; margin: 0 20px 10px 0; width:336px; height:280px; }

/* ----------------------- SIDEBAR ----------------------- */

#sidebar1 {
	float: left; 
	width: 170px;
	background:#C3D9FF;
	margin: 15px;
	}
#sidebar1 a {
	color: #000;
	text-decoration:underline;
}
#sidebar1 p {
	font-size: 12px;
	line-height: 14px;
}
#sidebar1 ul {
	margin:10px 0 0 0;
	list-style: none;
	padding:15px;
}
#sidebar1 li {
	margin-top:5px;
	text-decoration:underline;
}
#sidebar1 h2 {
	font-family: helvetica, sans serif;
	font-size: 11px; 
	line-height:11px;
	margin:0;
	font-weight:normal;
}
#sidebar1 h3 {
	font-size: 14px; 
	line-height:16px;
	font-weight:bold;
}
.adsenselinkbar {float:left; width: 160px; height: 90px; margin: 15px 0 0 10px; text-align: center; }

/* ----------------------- FOOTER ----------------------- */

#footer { 
	width: auto;
	margin: 0 20px 80px 20px;
	background:#CCC;
}
#footer a {
	color:#000;
	text-decoration:underline;
}
#footer ul {
	list-style: none;
	text-align: center;
}
#footer li {
	float: left;
	margin: 10px 20px 0 0;	
}
#footer h3 {
	margin: 0;
	font-size: 9px;
	line-height: 11px;
}

/* --------------------------------------- Miscellaneous classes for reuse ---------------------------------- */

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

