/*
Skin Name: SlideDeck.com Classic 
Skin URI: http://www.slidedeck.com/
Skin Type: flexible
Description: An adaptation of the slidedeck.com home page skin.
Version: 1.0
Author: digital-telepathy
Author URI: http://www.dtelepathy.com/
Contributors: dtelepathy, kynatro, jamie3d
Tags: flexible, white, black, multi-color
*/


/*
 * The frame surrounding the SlideDeck.
 * 
 * Customize the width, height, padding and background to customize the area 
 * surrounding your SlideDeck.
 */

.skin-custom {
    position: relative;
    overflow: hidden;
    padding: 0px;
}


/*
 * The SlideDeck element itself.
 * 
 * Customize the width and height to increase or decrease the size of
 * your SlideDeck. 
 */
.skin-custom 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-custom dl.slidedeck > dd {
    position: relative;
    padding: 0px;
    margin: 0;
    overflow: hidden;
		background-color: #000;
}

/*
 * 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-custom dl.slidedeck > dt {
    position: relative;
    cursor: pointer;
    height: 40px;
    line-height: 38px;
    font-family: "Futura Bold", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    letter-spacing: 1px;
    background: #111;
    color: #999;
    margin: 0;
    padding: 0;
		border-bottom: 1px solid #000;
}

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

/*
 * The active state of a SlideDeck spine.
 */
.skin-custom dl.slidedeck dt.spine.active,
.skin-custom dl.slidedeck dt.spine.active:hover {
    cursor: default;
    color: #fff !important;
		background-color: #2d2d2d;
}

/*
 * 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-custom dl.slidedeck dt.spine .index {
    margin-bottom: 2px;
    font-size: 24px;
    font-weight: normal;
    color: #505050;
		display: none !important;
}
.skin-custom dl.slidedeck dt.spine.active .index { margin-bottom: 0; }

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

/*
 * The active state of a SlideDeck spine index label.
 */
.skin-custom 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-custom dl.slidedeck .activeCorner {
    margin-left: -1px;
    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-custom dl.slidedeck dd.slide ul.slidesVertical > li {
    overflow: hidden;
    padding: 10px 15px;
}

/*
 * 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-custom dl.slidedeck dd.slide ul.verticalSlideNav {
    top: 10px;
    right: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/*
 * 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-custom dl.slidedeck dd.slide ul.verticalSlideNav li {
	display: none;
}

/*
 * 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-custom dl.slidedeck dd.slide ul.verticalSlideNav li.arrow {
	display: none;
}

/*
 * 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 dd.slide ul.verticalSlideNav li a.nav_1
 *     dl.slidedeck dd.slide ul.verticalSlideNav li a.nav_2
 *     dl.slidedeck dd.slide ul.verticalSlideNav li a.nav_3
 *     etc....
 */
.skin-custom dl.slidedeck dd.slide ul.verticalSlideNav li a,
.skin-custom dl.slidedeck dd.slide ul.verticalSlideNav li a:link,
.skin-custom dl.slidedeck dd.slide ul.verticalSlideNav li a:visited {
    border: 0;
    outline: none;
    position: relative;
    display: block;
    width: 10px;
    height: 0;
    overflow: hidden;
    padding-top: 10px;
    background: #fff;
    outline: none;
    text-decoration: none;
    border: 1px solid #ccc;
    opacity: 0.5;
    -moz-opacity: 0.5;
    -webkit-opacity: 0.5;
    -khtml-opacity: 0.5;
    -ms-filter: "Alpha(opacity=50)";
    filter: Alpha(opacity=50);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -o-border-radius: 3px;
}

/*
 * The SlideDeck vertical slide navigation link hover state.
 */
.skin-custom dl.slidedeck dd.slide 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); 
}


/* Vertical nav in the spine */
.skin-custom dl.slidedeck ul.verticalSlideNav {
    height: 70px;
    width: 25px;
    background: none;
    position: relative;
    overflow: hidden;
    padding: 15px 0 0;
    margin: 0;
    top: 0;
    left: 125px;
    -webkit-transform: rotate(90deg);
    -webkit-transform-origin: -7px 0;
    -moz-transform: rotate(90deg);
    -moz-transform-origin: -7px 0;
    -o-transform: rotate(90deg);
    -o-transform-origin: -7px 0;
}
.skin-custom dl.slidedeck ul.verticalSlideNav li {
    position: relative;
    width: 25px;
    height: 12px;
    line-height: 12px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    float: left;
    clear: left;    
}
/*
 * 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.
 * 
 * NOTE: This element is not used in this skin, so it is hidden
 */
.skin-custom dl.slidedeck dd.slide ul.verticalSlideNav li.arrow { display: none; }
.skin-custom dl.slidedeck ul.verticalSlideNav li a {
    position: relative;
    display: block;
    padding: 12px 0 0 0;
    margin: 0;
    width: 25px;
    height: 0;
    overflow: hidden;
    line-height: 12px;
    background: url('vertical-nav.png') 0 0 no-repeat;
}
/* Vertical slide navigation style for the currently active vertical slide navigation link */
.skin-custom dl.slidedeck ul.verticalSlideNav li.active a {
    background-position: 0 -24px;
}
/* Vertical slide navigation link style when the parent horizontal slide is active */
.skin-custom dl.slidedeck dt.active ul.verticalSlideNav li.active a {
    background-position: 0 -12px;
}

/**
 * BEGIN : Vertical slide previous/next button styling.
 */
.skin-custom dl.slidedeck a.vertical-prev-next {
    border: 0;
    outline: none;
    position: absolute;
    display: none;
    z-index: 20000;
    width: 27px;
    height: 0;
    padding: 27px 0 0;
    overflow: hidden;
    line-height: 27px;
    cursor: pointer;
    left: 50%;
    margin: 0 0 0 -13px;
    background: url('vertical-prev-next.png');
}
.skin-custom dl.slidedeck dd.slide:hover a.vertical-prev-next { display: block; }
.skin-custom dl.slidedeck a.vertical-prev-next.next {
    bottom: 6px;
    background-position: -27px 0;
}
.skin-custom dl.slidedeck a.vertical-prev-next.previous {
    top: 6px;
    background-position: 0 0;
}
.skin-custom dl.slidedeck li.case a.next { bottom: 31px; }
.skin-custom dl.slidedeck a.next:hover {
    background-position: -27px -27px;
}
.skin-custom dl.slidedeck a.previous:hover {
    background-position: 0 -27px;
}
.skin-custom dl.slidedeck:hover a.vertical-nav {
    display: block;
}
/**
 * END : Vertical slide previous/next button styling.
 */
 
 /* Gallery Nav */
 
 		#slidedeck_frame:hover ul.galleryArrows{
			display:block;
		}
		
		ul.galleryArrows{
			position:absolute;
			display: none;
			margin: -14px 0 0;
			padding: 0;
			list-style:none;
			overflow:visible;
			top: 50%;
			width:100%;
			z-index:10;
		}
		
		ul.galleryArrows li{
			position: absolute;
			margin: 0;
			padding: 0;
		}
		
		ul.galleryArrows li a{
			display: block;
			position: relative;
			overflow: hidden;
			width: 27px;
			height: 0;
			line-height:30px;
			padding: 27px 0 0;
			background: url('galleryNav.png') 0 0 no-repeat;
		}
		
		ul.galleryArrows li.next a{
			background-position: -27px 0;
		}
		
		ul.galleryArrows li.prev{
			left: 10px;
		}
		
		ul.galleryArrows li.disabled a{
			cursor: default;
		}
		
		ul.galleryArrows li.next.disabled a{
			background-position: -27px -27px;
		}
		
		ul.galleryArrows li.prev.disabled a{
			background-position: 0 -27px;
		}
		
		ul.galleryArrows li.next{
			right: 10px;
		}
			
		ul.galleryNav{
			position:absolute;
			bottom: 15px;
			margin: 0;
			padding: 0;
			list-style:none;
			z-index:10;
			left: 50%;
		}
		
		ul.galleryNav li{
			display:block;
			float:left;
			margin: 0;
			padding: 0;
		}
		
		ul.galleryNav li a{
			display:block;
			position:relative;
			overflow:hidden;			
			height:0;
			width:15px;
			line-height: 20px;
			padding: 15px 0 0;
			background: url('galleryNav.png') -8px -60px no-repeat;
		}
		
		ul.galleryNav li.active a{
			background-position: -35px -60px;
		}