@CHARSET "ISO-8859-15";

/* ######################################################## SCROLL TABS */
/* Erweiterung für die Jquery UI Tabs, damit diese nach rechts heraus scrollen 
und nicht umlappen*/

div.sT_global{
	position: relative;
	overflow: hidden;
}

div.sT_ulCon{
	position: relative;
	width: 4000px;
}

/*.mediumTabs div.sT_ulCon{
	height: 35px;
}

.bigTabs div.sT_ulCon{
	height: 35px;
}*/

div.sT_ulCon ul{
	left: 0px;
	width: auto;
	float: left;
	position: relative;
	/*height: 20px;*/
}


div.sT_global div.sT_shadow{
	position: absolute;
	width: 15px;
	/*height: 23px;*/
	left: 0px;
	z-index: 10;
	background-image: linear-gradient(to right, white 25%, rgba(255, 255, 255, 0));
	display: none;
}

div.sT_global div.sT_controls{
	position: absolute;
	width: 35px;
	/*height: 23px;*/
	right: 0px;
	z-index: 10;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 25%);
	display: none;
}

.whiteTab div.sT_global div.sT_shadow
{
	background-image: linear-gradient(to right, #efefef 25%, rgba(255, 255, 255, 0));
}

.whiteTab div.sT_global div.sT_controls
{
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #efefef 25%);
}

div.sT_global div.sT_controls > div{
	width: 15px;
	height: 100%;
	float: right;	
	position: relative;
}
div.sT_global div.sT_controls div.btnLeft{
	width: 20px;
}

div.sT_global div.sT_controls div div{
	top: calc(50% - 5px);
	left: 3px;
	position: relative;
}

div.sT_global div.sT_controls div.btnLeft div{
	left:10px;
}

div.sT_global div.sT_controls > div:not(.disabled):hover{
	cursor: pointer;
}

div.sT_global div.sT_controls div.btnRight div{
  width: 0; 
  height: 0; 
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent; 
  border-left:7px solid #AAAAAA; 
}

div.sT_global div.sT_controls div.btnLeft div{
  width: 0; 
  height: 0; 
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent; 
  border-right:7px solid #AAAAAA; 
}

div.sT_global div.sT_controls > div:not(.disabled):hover div{
	border-right-color: #285a8c;
	border-left-color: #285a8c;
}
div.sT_global div.sT_controls > div.disabled div{
	border-right-color: #aaaaaa;
	border-left-color: #aaaaaa;
}

