/* root element for tabs  */

/* root element for tabs  */
.tabs { 
	list-style:none; 
	margin:0 !important;
	padding: 0px;	
	height: 32px;
	background: url(../img/tabs-divider.png) no-repeat bottom center;
}

body.home .tabs { 
	padding: 0px 30px;

}

/* single tab */
ul.tabs li { 
	display: block;
	float:left;	 
	text-indent:0;
	padding:0;
	margin: 0px 5px 0px 0px !important;
	list-style-image: none !important; 
	
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	display:block;
	font-size:12px;
	height: 30px;  
	line-height:30px;
	text-align:center;	
	text-decoration:none;
	padding: 0px 0px 0px 10px;	
	position:relative;
	top:0px;
	background:  url(../img/tabs.png) no-repeat;
}

ul.tabs a span{ 
	display:block;
	height: 100%;
	padding-right: 10px;
	background:  url(../img/tabs.png) no-repeat right -40px;
}

#content ul.tabs a{
	color: #2f2f2f;
}

ul.tabs a:active {
	outline:none;
}

/* when mouse enters the tab move the background image */
#content ul.tabs a:hover { 
	background-position: 0px -80px;
}

#content ul.tabs a:hover span,
#content ul.tabs a.current span{ 
	background-position: right -120px;
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current,
#content ul.tabs a.current:hover,
ul.tabs li.current a {	
	cursor:default !important; 
	color:#2a2d30 !important;
	display: block;
	background-position: 0px -80px;
}


/* ----------------------- psc erzänzt: tabbs -----------------------------  */





.tabbs {
  overflow: auto;
  width: 100%;
	height: 45px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tabbs li {
    margin: 0;
    padding: 0;
    float: left;
	max-width:180px;
	vertical-align:middle;
}

.tabbs a {
    box-shadow: -4px 0 0 rgba(0, 0, 0, .2);
    background: #ad1c1c;
    background: linear-gradient(220deg, transparent 10px, #ad1c1c 10px);
    text-shadow: 0 1px 0 rgba(0,0,0,.5);
    color: #fff !important;
    float: left;
/*    font: bold 12px/35px 'Lucida sans', Arial, Helvetica; */
    height: 45px;
    padding: 0 16px 0 8px;
    text-decoration: none;
}

.tabbs a:hover {
    background: #c93434;
    background: linear-gradient(220deg, transparent 10px, #c93434 10px);     
}

.tabbs a:focus {
    outline: 0;
}

.tabbs a.current  {
    background: #e5e5e5 !important;
    background: linear-gradient(220deg, transparent 10px, #e5e5e5 10px) !important;
    text-shadow: none;    
    color: #333 !important;
}


