/*
    anythingSlider v1.2
    
    By Chris Coyier: http://css-tricks.com
    with major improvements by Doug Neiner: http://pixelgraphics.us/
    based on work by Remy Sharp: http://jqueryfordesigners.com/
*/

/* layout */

#slider {
	background: #143D8F url(home-slider-bg.jpg) no-repeat;
	font-family: Georgia,"Century Schoolbook","Nimbus Roman No9 L"; /* Windows, Mac, Linux */
	height: 322px;
	margin-bottom: 20px;
	position: relative;
	width: 910px;
}

#slider .wrapper { 
	height: 322px; 
	margin-top: 21px;
	overflow: auto; 
	position: absolute; 
	top: 0; 
	left: 0;
	width: 910px;
}

#slider .wrapper ul { 
	list-style: none;
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 8000px;
}

#slider .wrapper ul ul 	{
	position: static;
	margin: 0;
	background: none;
	overflow: visible;
	width: auto;
	border: 0;
}

#slider .wrapper ul ul li { 
	background: none;
	float: none;
	height: auto;
	width: auto;
}

#slider ul li { 
	background: none;
	display: block;
	float: left;
	margin: 0;
	padding: 0;
	width: 900px;
}


/* arrows */

#slider .arrow 	{ 
	background: url(../images/arrows.png) no-repeat 0 0;
	cursor: pointer;
	display: block;
	height: 200px;
	position: absolute;
	text-indent: -9999px;
	top: 65px;
	width: 67px;
}

#slider .forward { 
	background-position: 0 0;
	right: -20px;
}

#slider .back { 
	background-position: -67px 0;
	left: -20px;
}

#slider .forward:hover {
	background-position: 0 -200px;
}

#slider .back:hover {
	background-position: -67px -200px;
}


/* pause and resume controls */

#start-stop { 
	color: #fff;
	padding: 2px 5px;
	text-align: center;
	position: absolute;
	left: 11px;
	top: 300px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
}

a#start-stop { 
	color: #fff!important;
}

#start-stop.playing {
	color: #fff;
}

a#start-stop:hover {
	color: #fff;
}


/* navigation */

#thumbNav { 
	position: relative;
	left: 45px;
	top: 250px;
	text-align: left;
	width: 340px;
}

#thumbNav a { 
	color: #fff;
	font: normal 1em "Helvetica Neue", Arial, Helvetica, sans-serif;
	display: inline-block;
	padding: 3px 7px 1px 7px;
	height: 18px;
	margin: 0 5px 0 0;
	background: #162A73;
	text-align: center;
	text-decoration: none;
}

#thumbNav a:hover { 
	background-image: none;
	color: #fff;
	text-decoration: underline;
}

#thumbNav a.cur { 
	background: #7B7B77;
	color: #fff;
}

#thumbNav span {
	color: #fff;
	font: normal 0.917em "Helvetica Neue", Arial, Helvetica, sans-serif;
	margin: 0 12px 0 0;
	text-transform: uppercase;
	vertical-align: baseline;
}


/* slide content */

#slider div.slide-wrapper {
	background: url(home-slider-div-bg.png) no-repeat 0 100%;
	display: inline;
	float: left;
	margin: 0 22px 0 16px;
	min-height: 275px;
	height:auto !important;
	height:275px;
	width: 385px;
}

#slider div.slide-content {
	color: #fff;
	font-size: 0.917em;
	min-height: 210px;
	height:auto !important;
	height:210px;
	padding: 0 20px;
	position: relative;
}

#slider h2 {
	color: #fff;
	font-size: 400%;
	font-weight: normal;
	line-height: 0.85em;
	margin: 0;
	text-align: center;
}

#slider h2 em {
	font-size: 75%;
}

#slider div.slide-content ul li {
	list-style: square inside;
	display: list-item;
}

#slider div.slide-content p {
	color: #fff;
	margin: 1em 0;
}

#slider div.slide-content a {
	color: #fff;
}

#slider div.slide-content a:hover {
	color: #fff;
	font-weight: bold;
}

#slider img {
	float: left;
}

#slider p.more {
	margin-top: 5px;
	position: absolute;
	bottom: 0;
	right: 25px;
}

#slider p.more a {
	background: #a7a7a6 url(home-slider-more-bg.jpg) repeat-x;
	border: 1px solid #c7ccdb;
	color: #000;
	display: block;
	float: right;
	font-style: italic;
	font-weight: bold;
	padding: 0.3em 0.8em;
	text-decoration: none;
}

#slider p.more a:hover, #slider p.more a:active {
	background: #a7a7a6;
	color: #000;
	text-decoration: underline;
}
