@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, 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;
	background-color: #FF0000;
	background-image: url(../images/bk.png);
	background-repeat: repeat-x;
}
#wrapper {
	width: 80%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	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. */
	border-right: 1px solid #999999;
	border-left: 1px solid #999999;
	max-width: 1000px;
} 

#nav {
	font: .8em Verdana, Arial, Helvetica, sans-serif;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
	text-align: left;
	background-color: #2b2b75;
}
#nav ul {
	margin-left: 1.5em;
	display: inline;
}
#nav li {
	display: inline;
	margin-right: .5em;
	padding-left: 0.5em;
	border-right: 1px solid #FFFFFF;
	padding-right: 1em;
}

#nav li.first {
	border-left: 1px solid #FFFFFF;
}
#nav li.last {
	border-right-width: 0px;
}
#nav a:link {
	text-decoration: none;
	color: #FFFFFF;
	background: #2b2b75;
}
#nav a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
#nav a:hover {
	text-decoration:underline
	background:#FFFFCC
	text-decoration: underline;
	color: #2b2b75;
	background: white;
}
#sidebar {
	float: left;
	width: 270px;
	background: #fff;
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
}
#sidebar h3, #sidebar p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
.sponsors {
	text-align: center;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 60px;
}
/* Tips for main_content:
1. the space between the main_content and sidebar is created with the left margin on the main_content div.  No matter how much content the sidebar div contains, the column space will remain. You can remove this left margin if you want the #main_content div's text to fill the #sidebar space when the content in #sidebar ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the main_content div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the main_content "hasLayout." This avoids several IE-specific bugs.
*/
#main_content {
	margin: 0 20px 0 280px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
} 

#main_content p, li {
	font-size: .9em;
}

#main_content img {
	text-align: center;
	margin-right: auto;
	margin-left: 10px;
	border: 1px solid #000;
	-moz-box-shadow: 5px 5px 5px #888;
	-webkit-box-shadow: 5px 5px 5px #888;
	box-shadow: 5px 5px 5px #888;
}

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	clear: both;
	text-align: right;
	color: #FFFFFF;
	padding: 0.3em 2em 0.3em 0.3em;
	background-color: #2b2b75;
	font-size: 0.7em;
}
#footer a:link {
	color: #FFFFFF;
}
#footer a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
#footer a:hover {
	color: #2b2b75;
	background: #FFFFFF;
}
/* 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;
}

#main_content p a:link {
	color: #00F;
	text-decoration: none;
}

#main_content p a:hover {
	color: #900;
	text-decoration: underline;
}
#main_content ul li {
	padding-bottom: 10px;
}
#fb {
	float: right;
	text-align:right;
	margin-top: 10px;
}

