/*****
 * SLIDERS
 */
/* container for slides */
.slider_1 {
	position:relative;	
	height:184px;
	width:735px;
	float:left;
    margin: 0;
    margin-left: 15px;

    padding:0;
	cursor:pointer;
    padding-left: 10px;
	
	/* CSS3 tweaks for modern browsers */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-moz-box-shadow:0 0 25px #AFAFAF;
	-webkit-box-shadow:0 0 25px #AFAFAF;
}

/* single slide */
.slider_1 .panel {
	display:none;
	position:absolute;
	top:0;
	left:0;	
    padding:0;	
    margin: 0;
	height:167px;
	width:710px;
	margin-left:		15px;
}

/* tabs (those little circles below slides) */
.tabs_1 {
    text-align:center;
}

/* single tab */
.tabs_1 a {
	width:8px;
	height:8px;
	margin:3px;
	background:url(../images/design/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
    float:left;		
}

/* mouseover state */
.tabs_1 a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.tabs_1 a.current {
	background-position:0 -16px;     
} 	


/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:140px;
	/*background:#fff url(/tools/img/scrollable/arrow/hori_large.png) no-repeat;*/
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* next */
.forward 				{ background-position: 0 -30px; clear:right; }
.forward:hover 		{ background-position:-30px -30px; }
.forward:active 	 	{ background-position:-60px -30px; } 


/* prev */
.backward:hover  		{ background-position:-30px 0; }
.backward:active  	{ background-position:-60px 0; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}
h3.sliderHeader{
    margin-left:   15px;
    color:         #6C0300;
    margin-bottom: 10px;
}


/* container for slides */
.slider_2 {
	position:relative;	
	height:184px;
	width:735px;
	float:left;
    margin: 0;
    margin-left: 15px;

    padding:0;
	cursor:pointer;
    padding-left: 10px;
	
	/* CSS3 tweaks for modern browsers */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-moz-box-shadow:0 0 25px #AFAFAF;
	-webkit-box-shadow:0 0 25px #AFAFAF;
}

/* single slide */
.slider_2 .panel {
	display:none;
	position:absolute;
	top:0;
	left:0;	
    padding:0;	
    margin: 0;
	height:167px;
	width:710px;
	margin-left:		15px;
}

/* tabs (those little circles below slides) */
.tabs_2 {
    margin:    0 auto;
    text-align:center;
}

/* single tab */
.tabs_2 a {
	width:8px;
	height:8px;
	margin:3px;
	background:url(../images/design/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
    float:left;		
}

/* mouseover state */
.tabs_2 a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.tabs_2 a.current {
	background-position:0 -16px;     
} 	


/***
 * TEASER
 */
.teaser {
	position:relative;	
	width:795px;
	float:left;
	margin-right: 15px;
    margin: 0;
    padding:0;
    background:#fff;
}

/* single slide */
.teaser .panel {
	display:none;
	position:absolute;
	top:0;
	left:0;	
    padding:0;	
    margin: 0;
	/*padding:15px 30px 15px 15px;*/
	width:795px;
    height: 100%;
}

/* tabs (those little circles below slides) */
.tabs_teaser {
    text-align:center;
}

/* single tab */
.tabs_teaser a {
	width:8px;
	height:8px;
	margin:3px;
	background:url(../images/design/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
    float:left;		
}

/* mouseover state */
.tabs_teaser a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.tabs_teaser a.current {
	background-position:0 -16px;     
} 



/*****
 * TABS
 */


/* root element for tabs  */
ul.tabsConfig { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	height:20px;
    margin-bottom:    15px;
}

/* single tab */
ul.tabsConfig li img{
    float:left;
}
ul.tabsConfig li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
    margin-right: 4px;
    padding-right:20px;
    border-bottom: 1px solid #ddd;
}

/* link inside the tab. uses a background image */
ul.tabsConfig a { 
    float:left;
	font-size:13px;
	display:block;
	height: 20px;  
	line-height:18px;

	text-decoration:none;
	color:#000;
	padding:0px;
	margin:0px;	
	position:relative;

    margin-right: 2px;
    padding-left: 4px;
    padding-right: 10px;
}

ul.tabsConfig a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabsConfig a:hover {
    background: #ddd;
	color:#000;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabsConfig a.current, ul.tabsConfig a.current:hover, ul.tabsConfig li.current a {
	
	cursor:default !important; 
	color:#000 !important;
    background: #ddd;
}

/* initially all panes are hidden */ 
div#configBoxes .TabBox {
	display:none;
    padding:        20px;
    border:         1px solid #ddd;	
    width:          550px;
}
 
