/* CSS Document */
/* layout.css */
/* This style sheet controls the layout of the webpages */
/* Applies to all webpages */
/* Created by Alex Batbold */

* {
	padding: 0px;
	margin: 0px;
}

body {
	max-width: 100%;
	min-width: 750px;
	background-color: #FCFFF4;
	text-align: center;
}

/*
	Header definitions start here
*/
#header {
	border: none;
	background-image: url(/images/header_bg.jpg);
	height: 150px;
}

#navBar {
	width: 100%;
	background: url("/images/bgOFF.gif") repeat-x top left;
	border-bottom:2px solid #336666;
	border-top:1px solid #90AA9C;
}

/*
	Navigation bar TAB definitions start here
*/
/* ^^^^^^^^ BELOW IS THE CODE FOR THE MENU ^^^^^^^^^^ */
ul#saturday{
	margin: 0 auto;
	padding:0px;
	list-style-type:none;
	width: 580px;
	display:block;
	height:36px;
	text-transform:uppercase;
	font-size:11px;
	font-weight:bold;
	background:transparent url("/images/bgOFF.gif") repeat-x top left;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
}
ul#saturday li{display:block;float:left;margin:0;padding:0;}
ul#saturday li a{
	display:block;
	float:left;
	color:#874B46;
	text-decoration:none;
	height:24px;
	background:transparent url("/images/bgDIVIDER.gif") no-repeat top right;
	padding-top: 12px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
ul#saturday li a:hover{background:transparent url("/images/bgHOVER.gif") no-repeat top right;}
ul#saturday li a.current,ul#saturday li a.current:hover{color:#fff;background:transparent url("/images/bgON.gif") no-repeat top right;}
/* ^^^^^^^^ ABOVE IS THE CODE FOR THE MENU ^^^^^^^^^^ */

/*
	Content definitions starts here
*/
#contentWrap {
	margin: 0 auto;
	width: 71em;
	text-align: left;
}
#contentMain {
	padding: 20px 15px;
	width: 48em;
	float: left;
}
#contentMain img 
{
	float: left;
	padding: 5px;
	border: #999999 solid 1px;
	margin: 0 10px 10px 0;
}

#sideBar {
	float: right;
	width: 200px;
	line-height: 15px;
	display: inline; /* :KLUDGE: Fixes IE double margin float bug */
	padding: 20px 0px;
}

.sideBox {
	font-size: 11px;
	color: #333333;
	margin-bottom: 20px;
}

/*
	Content definitions ends here
*/
#footer {
	clear: both;
	padding: 10px 10px 30px 10px;
	background-image: url(/images/footer_bg.gif);
	background-repeat: repeat-x;
	background-position: bottom;
	border-top: 2px solid #336666;
}
