/**************************************************
   This CSS code below is taken from 
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
   
   The code is used to style the sliding images on
   the homepage. Some of the code has been modified 
   from its original version.
**************************************************/

.anythingSlider{ 
	width: 958px; 
	height: 300px; 
	position: relative; 
	border-top: 1px solid #ebebeb;
	border-right: 2px solid #999999;
	border-bottom: 4px solid #999999;
}

.anythingSlider .wrapper{
	width: 958px; 
	height: 300px; 
	overflow: auto; 
	position: absolute; 
	top: 0; 
	left: 0;
}

.anythingSlider .wrapper ul{ 
	width: 99999px; 
	list-style: none; 
	position: absolute; 
	top: 0; 
	left: 0; 
	background: #fffff; 
	margin: 0;
	padding: 0;
}

.anythingSlider ul li{ 
	display: block; 
	float: left; 
	padding: 0; 
	width: 958px; 
	height: 300px; 
	margin: 0; 
}

.anythingSlider .arrow                  { display: block; height: 0; width: 0; background: url(../images/arrows.png) no-repeat 0 0; text-indent: -9999px; position: absolute; top: 65px; cursor: pointer; }
.anythingSlider .forward                { background-position: 0 0; right: -20px; }
.anythingSlider .back                   { background-position: -67px 0; left: -20px; }
.anythingSlider .forward:hover          { background-position: 0 -200px; }
.anythingSlider .back:hover             { background-position: -67px -200px; }

#thumbNav{ 
	position: relative; 
	top: 275px; 
	left: 203px
}
	
#thumbNav a{ 
	font-family: Helvetica, Arial, sans-serif; 
	font-size: small;
	color: #eee;
	background-color: #eee; 
	display: inline-block; 
	padding: 2px 6px; 
	height: 15px; 
	margin: 0 7px 0 0; 
	-moz-border-radius-topleft: 10px; 
	-moz-border-radius-topright: 10px; 	
	-moz-border-radius-bottomleft: 10px; 
	-moz-border-radius-bottomright: 10px; 
	-webkit-border-top-right-radius: 10px; 
	-webkit-border-top-left-radius: 10px; 
	-webkit-border-bottom-right-radius: 10px; 
	-webkit-border-bottom-left-radius: 10px; 
}

#thumbNav a:hover{ 
	background-color: #bbb; 
	color: #bbb; 
}

#thumbNav a.cur{ 
	background-color: #bbb; 
	color: #bbb; 
}

#start-stop{ 
	color: #ffffff;
	background-color: none;
	padding: 2px 5px; 
	width: 50px; 
	text-align: center; 
	position: absolute; 
	right: 500px; 
	top: 275px; 
	-moz-border-radius-topleft: 5px; 
	-moz-border-radius-topright: 5px; 	
	-moz-border-radius-bottomleft: 5px; 
	-moz-border-radius-bottomright: 5px; 
	-webkit-border-top-right-radius: 5px; 
	-webkit-border-top-left-radius: 5px; 
	-webkit-border-bottom-right-radius: 5px; 
	-webkit-border-bottom-left-radius: 5px; 
}

#start-stop:hover{ 
	text-decoration: none; 
	background-color: #ccc; 
	color: #000000; 
}

.anythingSlider .wrapper ul ul          { position: static; margin: 0; background: none; overflow: visible; width: auto; border: 0; }
.anythingSlider .wrapper ul ul li       { float: none; height: auto; width: auto; background: none; }


/**************************************************
   The "slide-text" div holds the sliding text that
   is used on the homepage. The code below styles
   the text.
**************************************************/

div#slide-text{
	float: right;
	width: 400px;
	margin-right: 30px;
}

div#slide-text p.title{
	position: relative;
	top: 30px;
	font-size: 35px;
	line-height: normal;
	font-weight: bold;
	color: #154053;
	margin: 0;
}

div#slide-text p.description{
	position: relative;
	top: 40px;
	font-size: 14px;
	font-style: italic;
	color: #222222;
	margin: 0;
}

div#slide-text a.link{
	position: relative;
	top: 100px;
	font-size: 14px;
	background: url(../images/homepage/greenarrow.png) no-repeat right;
	padding: 20px 50px 20px 0;
	font-weight: bold;
	color: #007f33;
	margin: 0;
}

div#slide-text a.link:hover{
	text-decoration: none;
}


/**************************************************
   The code below is used to style and position the
   content below the sliding images and text on the
   homepage.
**************************************************/

div#content_homepage{
	overflow: auto;
}	

div#news{
	float: left;
	width: 195px;
	margin: 10px 8px 0 0;
	padding: 10px 20px 0 20px;
	background: url(../images/background.png) repeat-x;
	min-height: 200px;
	border-top: 1px solid #ebebeb;
}

div#description{
	float: left;
	width: 435px;
	margin: 10px 8px 0 0;
	padding: 10px 20px 0 20px;
	background: url(../images/background.png) repeat-x;
	min-height: 200px;
	border-top: 1px solid #ebebeb;
}

div#buttons{
	float: left;
	width: 233px;
	margin: 0;
}

div#buttons ul{
	list-style: none;
	margin: 10px 0 0 0;
	padding: 0;
}

div#buttons ul li a{
	display: block;
	text-decoration: none;
	text-align: center;
	padding: 10px 0;
	margin: 0 0 10px 0;
	background: url(../images/buttonbackground.png) repeat-x bottom;
	border-top: 1px solid #ebebeb;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #ebebeb;
}

div#buttons ul li a:hover{
	background: url(../images/buttonhoverbackground.png) repeat-x bottom;
}

div#buttons ul li a:active{
	border-top: 1px solid #999999;
	border-right: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	border-left: 1px solid #999999;
	background: url(../images/buttonbackground.png) repeat-x bottom;
}

div#buttons ul li a:visited{
}