/*#content: Sets the width of the site*/

#content {
	height: 100%;
	min-height: 100%;
	text-align: left;
	margin:auto;

}

#content,
#width {
  /* max-width hack for IE */
  width: expression(document.body.clientWidth > 1000 ? "1000px" : "94%");  
  max-width: 1000px;
  margin: 0 auto;
}

#content[id],
#width[id] {
  width: 94%;
  height: auto;
}




/*
   #header: title and main header images
 */

#header {
  position: relative;
  height: 95px;
}

/* Holds the site title and subtitle */
#header #title {
  position: absolute;
  z-index: 3;
  top: 25px;
  left: 280px;
  padding: 5px;
  text-align: right;
}

#header h1 {
	margin: 0;
	padding: 0;
	font: 400 2.6em "Times New Roman", serif;
	letter-spacing: 10px;
    color: #daae15;
	font-style: normal;
}

#header h2 {
	position: absolute;
	top: 40px;
	margin: 0;
	padding: 0;
	font: 200 1.5em "Times New Roman", serif;
	font-style: normal;
	letter-spacing: 5px;
	color: #fff;
	width: 625px;
	text-align: left;
}

#header h3 {
	position: absolute;
	top: 40px;
	margin: 0;
	padding: 0;
	font: 150 1.5em "Times New Roman", serif;
	font-style: normal;
	letter-spacing: 5px;
	color: #fff;
	width: 625px;
	text-align: left;
}


/* Sets where the header images will go */
#header img.left {
  position: absolute;
  z-index: 1;

  top: 0;
  left: 0;
}

#header img.right {
  position: absolute;
  z-index: 0;

  top: 0;
  right: 0;
}



/*
   #mainMenu: The top level site menu
 */

#mainMenu { 
  float: left;
  width: 100%;
  clear: both;  
}

#mainMenu ul {
	margin: 0;
	padding: 0;
	width: 70%;
}

#mainMenu li {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
}

#mainMenu li a {
	float: left;
	margin: 0 3px;
	padding: 15px 0.4em;
	font: 200 1.1em "Georgia", Times New Roman, serif;
	text-decoration: none;
    color: #e7b710;
}

#mainMenu li a:hover,
#mainMenu li a.live {
  color: #999999;
  border-top: 0px solid #b4922b;
}

#mainMenu li a.last {
	margin-right: 0px;
}




/* side bar menu */

ul.sideMenu {
  margin: 0;
  padding: 0;
}

.sideMenu li {
  display: inline;
  
  /* Needed since IE fails when you give it list-style: none; */  
  list-style-image: url(foo.gif);
  font: 14px "verdana", serif;
}

.sideMenu li a {
  display: block;
  margin: 0.2em 0;
  padding: 2px 5px 0 35px;    
   background: url(../images/bg/bullet.gif) no-repeat 10px 0px;
  text-decoration: none;
  color: #299e00;
} 

.sideMenu li a:hover {
  color: #999999;
  background: #fff;
  padding: 2px 5px 0 35px;
  background: url(../images/bg/animated.gif) repeat-x bottom left;
}

/* Active menu item */
.sideMenu li.here {
  display: block;  
  padding: 2px 0 2px 35px;
  color: #ffffff;
  background: #555;
}

/* Submenu of active menu item */
.sideMenu li.here ul {
  margin: 0;
  padding: 0;
}

.sideMenu li.here ul li a {
  padding-left: 35px;
  font: 400 0.55em verdana, arial, sans-serif; 
  color: #FFF;  
  background: url(../images/bg/bullet.gif) no-repeat 10px 0px;
}

.sideMenu li.here ul li a:hover {
  color: #9FF3FF;
  background: #5F5F5F url(../images/bg/bullet.gif) no-repeat 10px 0px;
}



/*
   #page: Holds the main page content.
*/

#page {
  float: left;
  width: 100%;
  padding-top:10px;
  clear: both;
  padding-bottom: 1em;
}

#homeinner {
background: url(../images/testback.jpg) repeat-x top left;
height: 467px;
}

/* footer*/

#footer {
  float: left;
  width: 100%;
  clear: both;
  margin-top:2px;
  background: #35303a;
  height: 55px; 
  color: #999999;
  font: 200 1.1em "verdana", sans-serif;
}



/* Sets the width of the footer content */
#footer #width {
	position: relative;
	z-index: 3;
	font-size: 0.85em;
	padding-top: 10px;

}



/*
   Width classes */

.width100 {
  width: 100%;
}

.width83 {
  width: 83%;
}

.width59 {
  width: 59%;
}

.width75 {
  width: 74.7%;
}

.width50 {
  width: 49.7%;
}

.width52 {
  width: 52%;
}

.width33 {
  width: 33.3%;
}

.width25 {
  width: 24.7%;
}

.width42 {
  width: 42%;
}



/*
   Alignment classes
 */

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.alignLeft {
  text-align: left;
}

.alignRight {
  text-align: right;
}



/*
   Generic display classes
 */

.clear {
  clear: both;
}

.block {
  display: block;
}

.small {
  font-size: 0.8em;
}

.green {
  color: #A1FF45;
}

.red {
  color: #EA1B00;
}

.grey {
  color: #666;
}

.grey a {
  color: #999;
}

.grey a:hover {
  color: #EEE;
}

.gradient {
  margin-bottom: 2em;
  background: #555 url(../images/bg/gradient.jpg) repeat-x bottom left; 
}

