/*Modified by Gary Hollands - solriche, from Coda-Slider 1.1.1 css by Niall Doherty http://www.ndoherty.com/blog/category/coda-slider*/
/*------------------------------------------The sliding effects ---------------------------------------------------------------*/
.slider-wrap { /* This div is used for getting the Previous and Next links aligned */
position: relative;
width: 35em;
padding: 0 0 1em 0;
}
#edit_area .slider-wrap ul{
margin: 0 0 0 1em;
}
.csw {/* These lines specify style applied while slider is loading */
width: 100%;
overflow: hidden;
}
.stripViewer { /* This is the viewing window */
position: relative;
overflow: hidden;
border: 1px dotted rgb(220,220,220);
margin: auto;
width: 35em; /* Also as specified in  .stripViewer .panelContainer .panel  below*/
clear: both;
}
.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;
}
.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
float:left;
/*height: 100%;
position: relative;*/
width: 35em; /* Also as specified in  .stripViewer  above */
}
.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
padding: 0.5em;
}
/* -------------------------This is the div to hold your nav (the UL generated at run time)--------------------------------*/
.stripNav {
margin: 0 0 0 0;
/*display: none;switch off tabs*/
}
#edit_area .stripNav ul { /* The auto-generated set of links */
list-style: none;
margin: 0;
}
#edit_area .stripNav ul li {
float: left;
font-size: 80%;
padding: 0 0 0 0.1em;/*Padding is specified cos of a MSIE bug*/
/*margin-right: 2px;  If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
}
#edit_area .stripNav li a { /* The nav links */
font-weight: bold;
text-align: center;
line-height: 2;
text-decoration: none;
display: block;
padding: 0 0.5em 0 0.5em;
color: rgb(255,255,255);
background: rgb(59,116,179);
}
#edit_area .stripNav li a:hover {
background: rgb(50,50,150);
}
#edit_area .stripNav li a.current {
background: rgb(50,50,50);
color: rgb(255,255,255);
}
/*--------------------------------- The left and right arrows -------------------------*/
.stripNavL, .stripNavR {
position: absolute;
top: 0.25em;
}
.stripNavL a, .stripNavR a{
font-size: 80%;
text-decoration: none;
}
.stripNavL {
right: 3.5em;
}
.stripNavR {
right: 0em;
}
a:focus{
outline:none
}
/*--------------------------------- JS or CSS switched off -------------------------*/
noscript p{
background: rgb(255, 255, 204);
}