/* @override http://sweetlittlewebsites.com/css/slider.css */

* { 
	margin: 0; padding: 0 
}
/* I've used a hard CSS reset above, but you should consider a more sophisticated reset, such as this one: http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */

p#cross-links { text-align: center }

p#cross-links { 
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.stripViewer .panelContainer .panel ul {
	text-align: left;
	margin: 0 15px 0 30px;
}

.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
	position: relative;
	/*width: 100%;*/
	width:960px;
	margin: 0 auto;
}

/* These 2 lines specify style applied while slider is loading */
.csw {width: 100%; height: 460px; background: #370a0d; border: 3px solid #811b20; overflow: scroll margin:0 auto;}
.csw .loading {margin:150px 0; text-align: center}

.stripViewer, #page-content { /* This is the viewing window */
	position: relative;
	border: 3px solid #811b20; /* this is the border. should have the same value for the links */
	margin:0 auto;
	width: 860px; /* Also specified in  .stripViewer .panelContainer .panel  below */

	background: #370a0d;
}
.stripViewer {
	height: 460px;
	overflow: hidden; 
	clear: both;
}
/* My Comment */

.stripViewer .panelContainer { /* This is the big long container used to house your end-to-end divs. Width is calculated and specified by the JS  */
	position: relative;
	left: 0; top: 0;
	width: 100%;
	list-style-type: none;
	/* -moz-user-select: none; // This breaks CSS validation but stops accidental (and intentional - beware) panel highlighting in Firefox. Some people might find this useful, crazy fools. */
}

.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
	float:left;
	height: 100%;
	position: relative;
	width: 860px; /* Also specified in  .stripViewer  above */
}

.stripViewer .panelContainer .panel .wrapper, #page-content { /* Wrapper to give some padding in the panels, without messing with existing panel width */
	padding: 10px;
	text-align: left;
}
#bd {
	text-align: center;
	margin: 0 auto;
}
#page-properties {
	width: 860px;
	margin: 0 auto;
	text-align: left;
}
.stripNav, div#page-menu{ /* This is the div to hold your nav (the UL generated at run time) */

}

.stripNav ul, div#page-menu ul{ /* The auto-generated set of links */
	list-style: none;
	margin: 0;
	padding: 0;
}

.stripNav ul li, #page-menu li {
	display: inline;
	margin: 0px 2px 0 0;
	list-style: none;
}

.stripNav a, #page-menu a, #page-menu .current{ /* The nav links */
	font-size: 100%;
	font-weight: bold;
	text-align: center;
	line-height: 2.75em;
	background: #709033;
	color: #fff;
	text-decoration: none;
	padding: 15px;
}

.stripNav li.tab1 a, .stripNav li.tab2 a, .stripNav li.tab3 a, .stripNav li.tab4 a, .stripNav li.tab5 a, .stripNav li.tab6 a, .stripNav li.tab7 a, .stripNav li.tab8 a, .stripNav li.tab9 a, .stripNav li.tab10 a, #page-menu a { background-color: #779936}

.stripNav li a:hover, ul#page-menu a:hover{
	background: #93c044;
	color: #fff;
}
.stripNav li a:visited, ul#page-menu a:visited {
	color: #fff;
}

.stripNav li a.current, #page-menu li.current {
	background: #811b20;
	color: #fff;
}

.stripNavL, .stripNavR { /* The left and right arrows */
	position: absolute;
	top: 230px;
	text-indent: -9300em;
}

.stripNavL a, .stripNavR a {
	display: block;
	height: 68px;
	width: 68px;
}

.stripNavL {
	left: -22px;
}

.stripNavR {
	right: -22px;
}

.stripNavL {
	background: url("../graphic/prev.png") no-repeat center;
}

.stripNavR {
	background: url("../graphic/next.png") no-repeat center;
}

.stripNavL a:hover, .stripNavL a:focus {
	background: url("../graphic/prev-hover.png") no-repeat center;
}

.stripNavR a:hover, .stripNavR a:focus {
	background: url("../graphic/next-hover.png") no-repeat center;
}
.stripNavL a:active, .stripNavR a:active { outline: none; }
.stripNavL a:focus, .stripNavR a:focus { -moz-outline-style: none; }
