﻿@charset "utf-8";
/* CSS Document */

.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
	position: relative;
	width: 640px;
	background-image: url(../img/frm_box_03.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
}

/* These 2 lines specify style applied while slider is loading */
.csw {
	width: 640px;
	background: #fff;
	overflow: scroll
}
.csw .loading {/*margin: 200px 0 300px 0; text-align: center*/}

.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden;
	/*border: 5px solid #000;*/ /* this is the border. should have the same value for the links */
	margin: auto; /* Also specified in  .stripViewer .panelContainer .panel  below */
	clear: both;
	background: #fff url(../img/frm_box_02.gif) repeat-y left top;
	width: 640px;
}

.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: 640px; /* Also specified in  .stripViewer  above */
}


.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	margin:0 0 0 auto;
	height: 28px;
	width: 56px;
}

.stripNav ul li {
	float: left; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
	width: 28px;
	height:28px;
	display:block;
}

.stripNav a { /* The nav links */
	background:url(../../common/number_navi.png) no-repeat;
	text-indent:-9999px;
	display: block;
	height: 28px;
	width: 28px;
	/*\*/
	overflow:hidden;
	/**/
}

.stripNav li.tab1 a { background-position: 0 0;}
.stripNav li.tab1 a:hover { background-position: 0 -56px;}
.stripNav li.tab1 a.current,
.stripNav li.tab1 a.current:hover { background-position: 0 -28px; cursor:default;}

.stripNav li.tab2 a { background-position: -28px 0;}
.stripNav li.tab2 a:hover { background-position: -28px -56px;}
.stripNav li.tab2 a.current,
.stripNav li.tab2 a.current:hover { background-position: -28px -28px; cursor:default;}

.stripNavL, .stripNavR { /* The left and right arrows */
position: absolute;
top: 160px;
text-indent: -9000em;
}

.stripNavL a, .stripNavR a {
display: block;
height: 20px;
width: 20px;
}

.stripNavL {
left: 0;
}

.stripNavR {
right: 0;
}

.stripNavL {
background: url(../img/arw_l.gif) no-repeat left;
}

.stripNavR {
background: url(../img/arw_r.gif) no-repeat right;
}
