/*
 * 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 {
    width: 972px;
	height: 365px;
	background: url(../img/slidedeck/bg-slidedeck-container.png) no-repeat;
	position: relative;
	top: 4em;
	overflow: hidden;
	margin: 0 auto;
	z-index: 1;
}

/*
 * The SlideDeck element itself.
 * 
 * Customize the width and height to increase or decrease the size of
 * your SlideDeck. 
 */
.skin dl.slidedeck {
    width: 934px;
	height: 326px;
	position: relative;
	overflow: hidden;
	top: 20px;
	margin: 0 auto;
	padding: 0;
	left: 2px;
}

/*
 * 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 dl.slidedeck > dd {
    position: relative;
    top: 0px;
	width: 730px;
	height: 302px;
	padding: 1.5em 2em 1em;
    margin: 0;
    border-left: solid 5px #D7D7D7;
	color: #fff;
	 /* 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 dl.slidedeck > dd h1 {
	margin-bottom: .25em;	
}

.skin dl.slidedeck > dd p {
	margin-bottom: .5em;	
}

.slidedeck dd.slide_1 {
	background: url(../img/slidedeck/schuemann-landtechnik.jpg) 34px 0 no-repeat;
   /*background-color: #F9BC14;*/
   /*border: 3px solid #fff;
   border-left: none;
   height: 281px !important;
   border-top: none;*/
}

.slidedeck dd.slide_2 {
	background: url(../img/slidedeck/folien-sprite.jpg) 34px 0 no-repeat;
}

.slidedeck dd.slide_2 h1 {
	line-height: 1em;	
}

.slidedeck dd.slide_2 a {
	color: #fff;
	text-decoration: underline;	
}

.slidedeck dd.slide_3 {
	background: url(../img/slidedeck/folien-sprite.jpg) 34px -326px no-repeat;
	width: 300px !important;
	padding-left: 400px !important;
}

.slidedeck dd.slide_4 {
	background: url(../img/slidedeck/folien-sprite.jpg) 34px -1304px no-repeat;
}

.slidedeck dd.slide_5 {
	background: url(../img/slidedeck/folien-sprite.jpg) 34px -978px no-repeat;
	width: 500px !important;
	padding-right: 200px !important;
}

.slidedeck dd.slide_5 .neuBatch {
	right: 330px;	
}

.slidedeck dd.slide_6 {
	background: url(../img/slidedeck/folien-sprite.jpg) 34px -652px no-repeat;
	width: 400px !important;
	padding-right: 300px !important;
}

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

/* ie8 Bugfixes */
.ie8 .skin-slidedeck {
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Color=#e5e5e5, direction=120, strength=5)";
    filter: progid:DXImageTransform.Microsoft.Shadow(Color=#e5e5e5, direction=120, strength=5);
}
.ie8 .skin-slidedeck dl.slidedeck dt.spine .index {
    background-color: #f6f6f6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Chroma(color='#f6f6f6')";
    filter: progid:DXImageTransform.Microsoft.Chroma(color='#f6f6f6');
}
.ie8 .skin-slidedeck dl.slidedeck dt.spine.active .index {
    background-color: #181818;
    -ms-filter: "progid:DXImageTransform.Microsoft.Chroma(color='#181818')";
    filter: progid:DXImageTransform.Microsoft.Chroma(color='#181818');
}
/* Ende ie8 Bugfixes */

/*
 * 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 dl.slidedeck > dt {
    position: relative;
	cursor: pointer;
	height: 39px;
	line-height: 38px;
	font-size: 12px;
	font-weight: bold;
	font-family: "ff-dagny-web-pro", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: url('../img/slidedeck/spines.png') 0 0px no-repeat;
	background-color: #C2C5D3;
	color: #505050;
    margin: 0;
    padding: 0 1.5em 0 0;
}

.ie8 .skin dl.slidedeck > dt {
	padding-right: 2em;	
}

/*
 * The hovered state of a SlideDeck spine.
 */
.skin dl.slidedeck dt.spine:hover {
	color: #000;
	background-position: 0 -39px;
}

/*
 * The active state of a SlideDeck spine.
 */
.skin dl.slidedeck > dt.spine.active,
.skin dl.slidedeck > dt.spine.active:hover {
	cursor: default;
	color: #fff;
	background-position: 0px -78px;
	background-color: transparent !important;
	line-height: 43px;
}

.ie8 .skin dl.slidedeck > dt.spine.active {
	background-position: 0 -78px;	
	background-color: #C2C5D3 !important;
}

/* Einblenden eines Navigationspfeils, wg Hover-Bug */
.ie8only,  .ie8 .skin dl.slidedeck > dt.spine.active .ie8only {
	display: none;	
}

.ie8 .ie8only {
	display: inline-block;
	width: 12px;
	height: 16px;
	position: relative;
	top: 10px;
	right: -10px;
	background: url(../img/icons/richtungspfeil-IE8.png);
}

/*
 * 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 dl.slidedeck dt.spine .index {
	margin-bottom: 2px;
	margin-left: 6px;
    font-size: 24px;
	font-weight: normal;
	font-family: "ff-dagny-web-pro", Helvetica, sans-serif;
	color: #505050;
}
.skin dl.slidedeck dt.spine.active .index { margin-bottom: -2px; margin-left: 10px;}

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

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

