/*
Skin Name: Express Lanes Website Skin
Skin URI: http://www.expresslanes.com/
Description: The skin used at expresslanes.com
Version: 1.0
Author: O'Keeffe & Company
Author URI: http://www.okco.com/
Tags: flexible, white, green, multi-color
*/

/*
 * The frame surrounding the SlideDeck.
 * 
 * Customize the width, height, padding and background to customize the area 
 * surrounding your SlideDeck.
 */
.skin-signage {
	position: relative;
	padding: 17px 18px;
	background: url('background.png') 0px 0px #E6E6E6;
	width:681px;
	height:337px;
}

/*
 * The SlideDeck element itself.
 * 
 * Customize the width and height to increase or decrease the size of
 * your SlideDeck. 
 */
.skin-signage dl.slidedeck {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

/*
 * The SlideDeck slide area.
 * 
 * You can specify a height for the slide area, but it is not required, width
 * will automatically be defined for the slide area and will vary depending on
 * how many slides you have in your SlideDeck.
 * 
 * To add space between a slide and the next slide's spine (slide title bar),
 * increase the border-right definition. To remove the space, just remove the
 * border definition.
 * 
 * SlideDeck slides are all given a unique class, so you can customize the
 * appearance of each slide individually by referencing a slide by its
 * numbered class name. For example:
 *    .slidedeck dd.slide_1
 *    .slidedeck dd.slide_2
 *    .slidedeck dd.slide_3
 *    etc...
 */
.skin-signage dl.slidedeck > dd {
	position: relative;
	height: 337px;
	padding: 10px 15px;
	margin: 0;
	border-right: 0px solid #E6E6E6;
	background: url('slide.png') bottom right #E6E6E6;    /* Note: you should position the background with pixel measurements in IE7 as it improperly calculates the height of the DD element when containing vertical slides */
	overflow: hidden;
}

.skin-signage dl.slidedeck > dd dd {
	position: relative;
	margin: 0;
	padding: 10px 15px;
}

/*
 * The SlideDeck spine (slide title bar).
 * 
 * SlideDeck spines are rotated, so you will need to swap your directions. To
 * change the width of the spine, you will need to modify the spine height.
 * You will also need to make sure that any background imagery used is rotated
 * horizontally.
 * 
 * Like slides, spines are also given a unique class allowing for custom
 * appearance for each spine. This follows a similar naming convention:
 *     .slidedeck dt.slide_1
 *     .slidedeck dt.slide_2
 *     .slidedeck dt.slide_3
 *     etc...
 */
.skin-signage dl.slidedeck > dt {
	position: relative;
	cursor: pointer;
	height: 46px;
	line-height: 46px;
	font-size: 16px;
	font-family:'PTSansBold';
	text-transform: uppercase;
	letter-spacing: 1px;
	background: url('spline.png') top left #E6E6E6;
	color: #004B8D;
	margin: 0;
	padding: 0;
}

/*
 * The hovered state of a SlideDeck spine.
 */
.skin-signage dl.slidedeck dt.spine:hover {
	color: #7CBF1B;
	background-position: center left;
}

/*
 * The active state of a SlideDeck spine.
 */
.skin-signage dl.slidedeck dt.spine.active,
.skin-signage dl.slidedeck dt.spine.active:hover {
	cursor: default;
	color: #fff;
	background-position: bottom left;
}

/*
 * The SlideDeck spine index labels.
 * 
 * This is to style the numbers (or letters if you have customized it so)
 * that appear at the bottom of each SlideDeck spine.
 */
.skin-signage dl.slidedeck dt.spine .index {
	margin-bottom: 2px;
	font-size: 24px;
	font-family:'PTSansBold';
	color: #004B8D;
}
.skin-signage dl.slidedeck dt.spine.active .index { margin-bottom: 0; }

/*
 * The hovered state of a SlideDeck spine index label.
 */
.skin-signage dl.slidedeck dt.spine:hover .index { color: #7CBF1B; }

/*
 * The active state of a SlideDeck spine index label.
 */
.skin-signage dl.slidedeck dt.spine.active .index { color: #ffffff; }

/*
 * The SlideDeck "active corner".
 * 
 * This is the small triangle that appears in the upper left of the active
 * slide. This can be made any size and positioned differently by modifying
 * the margin values. By default the left margin is inset to prevent any
 * gap from appearing as the SlideDeck animates.
 */
.skin-signage dl.slidedeck .activeCorner {
	margin-left: -2px;
	margin-top:-4px; /* JS sets top:25px, need to back it up to make it 21px */
	background-image: url('corner.png');
	width: 12px;
	height: 25px;
}

/*
 * The SlideDeck vertical slide style.
 * 
 * Veritcal slides will take over the entire content area of a horizontal slide
 * automatically. Padding will automatically be accommodated for. You can also
 * eliminate the padding definition to have your vertical slide content line
 * up flush against the containing slide content area edges.
 */
.skin-signage dl.slidedeck dd.slide ul.slidesVertical > li {
	overflow: hidden;
	padding: 10px;
}

/*
 * The SlideDeck vertical slide navigation container.
 * 
 * This is the container for the vertical slide navigation. You can position
 * this anywhere you want within the containing slide's area. If you try to
 * position it outside of the slide area it will not appear.
 */
.skin-signage dl.slidedeck dt.spine ul.verticalSlideNav {
	top: 33px;
	left: 46px;
	margin: 0;
	padding: 0;
	list-style: none;
	-webkit-transform: rotate(270deg);
	-webkit-transform-origin: -7px 0;
	-moz-transform: rotate(270deg);
	-moz-transform-origin: -7px 0;
	-ms-transform: rotate(270deg);
	-ms-transform-origin: -7px 0;
	-o-transform: rotate(270deg);
	-o-transform-origin: -7px 0;
}

/*
 * The SlideDeck vertical slide navigation link containers.
 * 
 * This is the container for a navigation link in the vertical slide navigation
 * element. You can adjust the width and height of this element to accommodate
 * for a larger vertical navigation button.
 * 
 * To increase the space between vertical navigation links, increase the bottom
 * and/or top padding of this element.
 */
.skin-signage dl.slidedeck dt.spine ul.verticalSlideNav li {
	display: none;
	position: relative;
	z-index: 2;
	margin: 0 0 0 -5px; /* no idea.. */
	padding: 0 0 5px;
	width: 15px;
	height: 15px;
	overflow: hidden;
	line-height: 15px;
	list-style: none;
	font-size: 1px; /* Stupid IE */
}

/*
 * The SlideDeck vertical slide position indicator.
 * 
 * This is the element that slides behind the default navigation link list to
 * show which is the current vertical slide being viewed. This should be given
 * similar dimensions to the vertical slide navigation links.
 */
.skin-signage dl.slidedeck dt.spine.active ul.verticalSlideNav li.arrow {
	position: absolute;
	display: none;
	z-index: 1;
	width: 15px;
	height: 15px;
	margin-top:0px;
	padding-bottom: 0;
	left: 0px;
	background: url('dots.png') center center;
}

/*
 * The SlideDeck veritcal slide navigation links.
 * 
 * These are the vertical slide navigation links. By default these are a small
 * square that uses a sprite background image replacement method to hide the
 * default text that is placed in the link ("Nav 1", "Nav 2", "Nav 3").
 * 
 * To change the appearance of the navigation elements, you will need to use a
 * background image replacement as the text for the links cannot be changed.
 * Each vertical slide navigation link is given a unique class so they can be
 * styled individually. For example:
 *     dl.slidedeck dt.spine ul.verticalSlideNav li a.nav_1
 *     dl.slidedeck dt.spine ul.verticalSlideNav li a.nav_2
 *     dl.slidedeck dt.spine ul.verticalSlideNav li a.nav_3
 *     etc....
 */
.skin-signage dl.slidedeck dt.spine ul.verticalSlideNav li a {
	position: relative;
	display: block;
	width: 15px;
	height: 15px;
	overflow: hidden;
	background: url('dots.png') center bottom;
	outline: none;
	text-decoration: none;
}

/*
 * SlideDeck Vertical Navigation in the active spine. Makes it pop a bit more.
 */
.skin-signage dl.slidedeck dt.spine.active ul.verticalSlideNav li a {
	background: url('dots.png') center top;
}

/*
 * SlideDeck Vertical Navigation in the active spine gets a special treatment
 * when a specific item is active. The size of the dot shrinks to allow for the 
 * "arrow" to overlay with a larger ring, resembling a target.
 */
.skin-signage dl.slidedeck dt.spine.active ul.verticalSlideNav li.active a {
	xwidth:5px;
	xpadding-top:5px;
	xleft: 2px;
	xtop: 2px;
	background:transparent;
}

/*
 * The SlideDeck vertical slide navigation link hover state.
 */
.skin-signage dl.slidedeck dt.spine ul.verticalSlideNav li a:hover {
	opacity: 0.75;
	-moz-opacity: 0.75;
	-webkit-opacity: 0.75;
	-khtml-opacity: 0.75;
	-ms-filter: "Alpha(opacity=75)";
	filter: Alpha(opacity=75); 
}

/*
 * Internal content styles
 */
.skin-signage h5 {
	color:#004B8D;
	font-size:18px;
	font-weight:bold;
	padding-top:13px;
}

.skin-signage a.horizontal-prev-next {
	display:block;
	width:50px;
	height:8px;
	position:absolute;
	top:15px;
	right:30px;
	color:#666666;
	text-transform:uppercase;
	font-size:12px;
	font-weight:bold;
	/*background:url('horizontal-next.png') no-repeat top left;*/
	z-index:20000;
}

.skin-signage a.vertical-prev-next {
	display:block;
	height:12px;
	position:absolute;
	top:300px;
	background:url('vertical-prev-next.png') no-repeat top;
	z-index:20000;
}

.skin-signage a.vertical-prev-next.previous {
	width:69px;
	right:90px;
	background-position:top left;
}

.skin-signage a.vertical-prev-next.next {
	width:50px;
	right:40px;
	background-position:top right;
}