/*
Skin Name: APPS Custom SlideDeck
Skin URI: http://www.atlantapreservation.com/
Skin Type: fixed
Skin Height: 400px
Description: A custom SlideDeck designed for the APPS home page.
Version: 1.1
Author: Atlanta Preservation and Planning Services
Author URI: http://www.atlantapreservation.com/
Contributors: Atlanta Preservation and Planning Services
Tags: fixed, black
*/

/*
 * The frame surrounding the SlideDeck.
 * 
 * Customize the width, height, padding and background to customize the area 
 * surrounding your SlideDeck.
 */
.skin-apps {
 	position: relative;
	margin: 0 auto 30px auto;
	width: 951px;
	height: 400px;
/*	border-top: 1px solid rgb(90,90,90);*/
}

/*
 * The SlideDeck element itself.
 * 
 * Customize the width and height to increase or decrease the size of
 * your SlideDeck. 
 */
.skin-apps dl.slidedeck {
    position: relative;
	width: 950px;
	height: 400px;
	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-apps dl.slidedeck > dd {
    position: relative;
    margin: 0;
	/*background: url('slides.png') bottom left #d7d7d7;     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*/ 
	background: #000;
    overflow: hidden;
}

.skin-apps dl.slidedeck > dd p {
	position: absolute;
	bottom: 30px;
	right: 35px;
	color: #fff;
	font: 1.8em/1.5 Rockwell;
	width: 650px;
	padding: 15px 20px 20px 20px;
	background: rgba(0,0,0,.7);
	-webkit-border-top-left-radius: 20px;
	-moz-border-radius-topleft: 20px;
	border-top-left-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	-moz-border-radius-bottomright: 20px;
	border-bottom-right-radius: 20px;
}

.skin-apps dl.slidedeck > dd p span {
	display: block;
	color: rgb(179,220,117);
	font-size: 1.3em;	
}

.skin-apps dl.slidedeck > dd a {
	color: rgb(179,220,117);
	font-size: 1.3em;
	display: block;
	border: 0;	
}

.skin-apps dl.slidedeck > dd a:hover {
	color: rgb(202,239,145);
}

/*.skin-apps dl.slidedeck > dd a:hover {
	border-bottom: 1px dotted rgb(179,220,117);	
}*/


/*
 * 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-apps dl.slidedeck > dt {
    position: relative;
	cursor: pointer;
	height: 42px;
	line-height: 38px;
	font-size: 1.5em;
	font-family: Rockwell;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #000;
	border: 0;
	border-bottom: 1px solid rgb(80,80,80);
	color: #fff;
    margin: 0;
    padding: 0;
}



/*
 * The hovered state of a SlideDeck spine.
 */
.skin-apps dl.slidedeck dt.spine:hover {
	color: rgb(179,220,117);
	background-position: center left;
}

/*
 * The active state of a SlideDeck spine.
 */
.skin-apps dl.slidedeck dt.spine.active,
.skin-apps dl.slidedeck dt.spine.active:hover {
	cursor: default;
	color: rgb(179,220,117);
	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-apps dl.slidedeck dt.spine .index {
	margin-bottom: 2px;
    font-size: 24px;
	font-weight: normal;
	font-family: Rockwell;
	color: #505050;
}
.skin-apps dl.slidedeck dt.spine.active .index { margin-bottom: 0; }

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

/*
 * The active state of a SlideDeck spine index label.
 */
.skin-apps 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-apps dl.slidedeck .activeCorner {
	margin-left: -3px;
	background-image: url('corner.png');
	width: 12px;
	height: 25px;
}