/*
Skin Name: SlideDeck Website Skin
Skin URI: http://www.slidedeck.com/
Description: The skin used at slidedeck.com
Version: 1.5
Author: digital-telepathy
Author URI: http://www.dtelepathy.com/
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-slidedeck {
    position: relative;
	padding: 0px;
    border: none;
	/*width:914px;
	height:348px;*/
	background-color:none;
	left:-57px;
}

/*
 * The SlideDeck element itself.
 * 
 * your SlideDeck. 
 */
.skin-slidedeck dl.slidedeck {
    position: relative;
	width: 938px;
	height: 558px;
	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-slidedeck dl.slidedeck > dd {
    position: relative;
	left:-5px;
	height: 294px;
	padding:0;
    margin: 0;
	border-right:5px solid #f0f0f0;
	background: url('../images/slides.png') bottom left #ffffff;    /* 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;
}



/*
 * 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-slidedeck dl.slidedeck > dt {
    position: relative;
	cursor: pointer;
	height: 50px;
	line-height: 45px;
	font-size: 15px;
	font-weight: bold;
	font-family:"Futura Bold", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0px;
	background: url('../images/spines.png') top left;
	color: #838383;
    margin: 0;
    padding: 0;
	background-color:#fff;
}

.skin-slidedeck dl.slidedeck > dt.separate { background-image:url(../images/separate.png); color:#fff; border-bottom:1px solid #aa0000; border-top:1px solid #aa0000;}

/*
 * The hovered state of a SlideDeck spine.
 */
.skin-slidedeck dl.slidedeck dt.spine:hover {
	color: #aa0000;
	background-position: center left;
}

.skin-slidedeck dl.slidedeck dt.separate:hover {color:#000;}

/*
 * The active state of a SlideDeck spine.
 */
.skin-slidedeck dl.slidedeck dt.spine.active,
.skin-slidedeck dl.slidedeck dt.spine.active:hover {
	cursor: default;
	color: #aa0000;
	background-position: bottom left;
	background-image:url(../images/active_back.png);
}

.skin-slidedeck dl.slidedeck dt.separate.active,
.skin-slidedeck dl.slidedeck dt.separate.active:hover {background-image:url(../images/separate.png); color:#fff;}

/*
 * 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-slidedeck dl.slidedeck dt.spine .index {
	margin-bottom: 2px;
    font-size: 1px;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
	background-color:transparent;
	visibility:hidden;
}

.skin-slidedeck dl.slidedeck dt.separate .index {color:#aa0000;}




.skin-slidedeck dl.slidedeck dt.spine.active .index { margin-bottom: 0; }

/*
 * The hovered state of a SlideDeck spine index label.
 */
.skin-slidedeck dl.slidedeck dt.spine:hover .index { color: #fff; }

.skin-slidedeck dl.slidedeck dt.separate:hover .index { color: #aa0000; }

/*
 * The active state of a SlideDeck spine index label.
 */
.skin-slidedeck dl.slidedeck dt.spine.active .index { color: #fff; }

.skin-slidedeck dl.slidedeck dt.separate.active .index { color: #aa0000; }

/*
 * 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-slidedeck dl.slidedeck .activeCorner {
	margin-left: -1px;
	background-image: url('../images/corner.png');
	width: 12px;
	height: 25px;
}

.skin-slidedeck dl.slidedeck .activeCorner {}