/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0; 
	padding:0;	
	height:38px;
}

/* single tab */
ul.tabs li { 
	background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0.32, rgb(195,195,195)),color-stop(0.94, rgb(166,166,166)));
	background-image:-moz-linear-gradient(center top,rgb(195,195,195) 32%,rgb(166,166,166) 94%);
	border-style:solid;
	border-width:1px 1px 0;
	border-color:#dddddd #b4b4b4 transparent #dddddd;
	color:#fff;
	cursor:pointer;
	float:left;
	font-family:arial,sans-serif;
	font-weight:bold;
	list-style-image:none !important;
	margin:0 !important;
	padding:10px 0;
	text-align:center;
	text-indent:0;
	width:145px;
	text-shadow:-1px -1px #7C7C7C;
}

ul.tabs li.current {
	background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0.32, rgb(225,225,225)),color-stop(0.94, rgb(255,255,255)));
	background-image:-moz-linear-gradient(center top,rgb(225,225,225) 32%,rgb(255,255,255) 94%);
	border-style:solid;
	color:#656565;
	border-width:1px 0px 0;
	border-color:#c6c6c6 transparent transparent;
	text-shadow:1px 1px #fff;
	 box-shadow:inner 0 0 10px ; 
	-moz-box-shadow:inset 0 0 10px #888;
    -webkit-box-shadow:inset 0 0 10px #888;
   
	}

/* link inside the tab. uses a background image */
ul.tabs a { 
	background: url(/tools/blue.png) no-repeat -420px 0;
	font-size:11px;
	display:block;
	height: 30px;  
	line-height:30px;
	width: 134px;
	text-align:center;	
	text-decoration:none;
	color:#333;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position: -420px -31px;	
	color:#fff;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background-position: -420px -62px;		
	cursor:default !important; 
	color:#000 !important;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
ul.tabs a.s 			{ background-position: -553px 0; width:81px; }
ul.tabs a.s:hover 	{ background-position: -553px -31px; }
ul.tabs a.s.current  { background-position: -553px -62px; }

/* width 2 */
ul.tabs a.l 			{ background-position: -248px -0px; width:174px; }
ul.tabs a.l:hover 	{ background-position: -248px -31px; }
ul.tabs a.l.current  { background-position: -248px -62px; }


/* width 3 */
ul.tabs a.xl 			{ background-position: 0 -0px; width:248px; }
ul.tabs a.xl:hover 	{ background-position: 0 -31px; }
ul.tabs a.xl.current { background-position: 0 -62px; }


/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;		
}




/* the overlayed element */
.simple_overlay {	
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	z-index:10000;
	/* styling */
	background-color:#333;
	width:675px;	
	min-height:200px;
	border:1px solid #666;
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(http://static.flowplayer.org/img/overlay/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}


#overlay {
	/*background-image:url(http://static.flowplayer.org/img/overlay/transparent.png);*/
	color:#efefef;
	display:none;			
}
	
/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
	background:transparent url(img/transparency.png) repeat 0 0;
	-webkit-radius:10px 10px 10px 10px;
	-moz-border-radius:10px 10px 10px 10px;
	-webkit-box-shadow:0 0 29px #000;
	-moz-box-shadow:0 0 29px #000;
	height:245px;
	padding:0;
	width:460px;
}

div.contentWrap textarea{
    font-family:arial,sans-serif;
	font-size:12px;
	height:100px;
	margin:15px;
	padding:10px;
	width:407px;}
	
.contentWrap input {
padding:5px;
width:40px;}	

.contentWrap input#ora_sms {
margin:20px 10px 0 15px;}

.contentWrap button {
	-moz-border-radius:4px;-webkit-border-radius:4px;
	/*-moz-box-shadow:0 0 2px #aaa;-webkit-box-shadow:0 0 2px #aaa;*/
	border-color:#FFFFFF;
	border-style:solid;
	border-width:1px 0 0;
	color:#555555;
	cursor:pointer;
	font-family:arial,sans-serif;
	font-weight:bold;
	padding:3px 8px;
	position:relative;
	text-shadow:0 1px 1px #FFFFFF;
	background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0.32, rgb(234,234,234)),color-stop(0.94, rgb(225,225,225)));
	background-image:-moz-linear-gradient(center top,rgb(234,234,234) 32%,rgb(225,225,225) 94%);
	float:right;
	margin:20px 12px 0;}
	
.contentWrap button:hover {
background-image:-moz-linear-gradient(0% 100% 90deg, #EFD768, #CFB126,#CFAA00 100%); 
	border-color:CFAA00; text-shadow:-1px -1px 0px #fff;
	color:#333;
}
	
a.close{background:url("img/close.png");
cursor:pointer;
height:18px;
position:absolute;
right:10px;
top:8px;
width:18px;}

/* tooltip styling */
.tooltip {
	display:none;
	/*background:url(img/tooltip.png);*/
	height:240px;/*senza altezza si piazza un po a capocchia quando si scrolla*/
	padding:50px 30px 10px;
	width:370px;
	font-size:11px;
	color:#000;
	position:absolute;
	top:190px;
}

.head-tooltip {
background:transparent url(img/htool.png) no-repeat 0 0;
height:50px;
}

.body-tooltip {
background:transparent url(img/btool.png) repeat-y 0 0;
padding:0 25px;
}

.footer-tooltip {
background:transparent url(img/ftool.png) no-repeat 0 0;
height:27px;
}


.tooltip p {padding-top:5px;}
/* a .label element inside tooltip */
.tooltip .label {
	color:yellow;
	width:35px;
}

.tooltip a {
	color:#ad4;
	font-size:11px;
	font-weight:bold;
}