/*
 * Skin Name: Skin Name
 * Skin URI: http://www.skin-site.com/
 * Description: Describe site here
 * Version: 1.0
 * Author: Your Name Here
 * Author URI: http://www.your-personal-site.com/
 * Contributors: who helped you?
 */


/*
 * The frame surrounding the SlideDeck.
 * 
 * Customize the width, height, padding and background to customize the area 
 * surrounding your SlideDeck.
 */
.skin-SLIDEDECK {
    	width: 960px;
	height: 500px;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	z-index: 1;
	background-color: #222222;
}

/*
 * The SlideDeck element itself.
 * 
 * Customize the width and height to increase or decrease the size of
 * your SlideDeck. 
 */
.skin-SLIDEDECK dl.slidedeck {
    	width: 940px;
	height: 470px;
	position: relative;
	overflow: hidden;
	top: 12px;
	margin: 0 auto;
	padding: 0;
	left: 2px;
	background-color: #555555;
}

/*
 * 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;
	top: -1px;
	background: url('../images/bkg_slide.png') 31px -1px no-repeat;
	margin: 0;
	 /* 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-SLIDEDECK 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-SLIDEDECK dl.slidedeck > dt {

    position: relative;
	cursor: pointer;
	height: 33px;
	line-height: 33px;
	font-size: 16px;
	font-weight: bold;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: url('../images/bkg-spine_sprite.png') 0 0 no-repeat;
	color: #000000;
    margin: 0;
    padding: 0;
}

/*
.rotateIndex {
	-moz-transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	margin-left:420px;
}
*/
/*
 * The hovered state of a SlideDeck spine.
 */
.skin-SLIDEDECK dl.slidedeck dt.spine:hover {
	color: #000;
	background-position: 0 -35px;
	
}

/*
 * 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: #fff;
	/*background-position: 0px -75px;*/
	background-color: transparent !important;
}

/*
 * 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: 24px;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	color: #505050;
}
.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: #000000; }

/*
 * The active state of a SlideDeck spine index label.
 */
.skin-SLIDEDECK 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-SLIDEDECK dl.slidedeck .activeCorner {
	margin-left: -1px;
	width: 14px;
	height: 29px;
	background: url('../images/icon-arrow.png') 0 0 no-repeat;
}


