/* 
CSS Screen Document
Created by Jegan Chen 
For JeganChen.com
***********************/

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

.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden; 
	border: 0 solid #000; /* this is the border. should have the same value for the links */
	margin: 0;
	width: 700px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 343px;
	clear: both;
	background: #fff;
}

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

.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
	padding: 0;
}

/* Slide Nav */

.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	display block;
	margin: 0;
	width: 700px;
}

.stripNav ul { /* The auto-generated set of links */
    list-style: none;
	background-color: #fff; 
	height: 50px;
	width: 700px;
}

.stripNav ul li {
	list-style: none;
    float: left;
    margin-right: 0; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
}

#main .stripNav a { /* The nav links */
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 32px;
    background: #fff;
    color: #555;
    text-decoration: none;
    display: block;
    padding: 10px 15px 0;
	height: 40px;
	width: 203px;
}

#main .stripNav li.tab1 a { background: url("/images/home/button-bg.jpg") 0 0 no-repeat; }
#main .stripNav li.tab2 a { background: url("/images/home/button-bg.jpg") 0 0 no-repeat; }
#main .stripNav li.tab3 a { background: url("/images/home/button-bg.jpg") 0 0 no-repeat; width: 204px; }

#main .stripNav li a:hover {
    background: url("/images/home/button-bg.jpg") 0 -50px no-repeat;
	color: #fff;
}

#main .stripNav li a.current {
    background: url("/images/home/button-bg.jpg") 0 -100px no-repeat;
    color: #fff;
	
}

.stripNavL {
	display: none;
}

.stripNavR {
	display: none;
}

/* Panels */

.panel1 {
	width: 700px;
	height: 343px;
}

.panel2 {
	width: 700px;
	height: 343px;
}

.panel3 {
	width: 700px;
	height: 343px;
}

.panel-img {
	float: right;
}