/*
 * CSS for Plugin: Tab Slide
*/

/* Tab width*/
#tab_toggle {
	position: absolute;
	text-align:center;
	top: 45%;
	width: 20px;
	/*height: 70px;*/
	z-index: 10000;
	overflow: hidden;
}
/* Opera overlap fix*/
noindex:-o-prefocus, #tab_toggle {
	width: 19px;
}
/* Chrome and Safari overlap fix*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
 #tab_toggle { 
 	width: 19px;  
 }
}
/* Title hover */
#tab_title_wrap:hover {
	cursor: pointer;
	color: #fff;
}
/* TAB IMAGE (optional) 
 * NOTE: refer to options_set.js line 111 for width
 */
#tab_image_wrap {
	position: fixed;
}

/* Title font and rotation */
#tab_title_wrap {
	position: relative;
	display:block;
	font-weight:bold;
    font-size:12pt;
    font-family: 'calibri','Lucida Grande',Verdana,Arial,Sans-Serif;
    color:#606060;
    overflow: visible;
    
    
	-webkit-transform: rotate(90deg);  /* Saf3.1+, Chrome */
	    -moz-transform: rotate(90deg);  /* FF3.5+ */
	       -o-transform: rotate(90deg);  /* Opera 10.5 */
	         zoom: 1;
}
#tab_title_wrap .span{
	vertical-align: middle;
	margin: 0 auto;
}

/* Tab Content */
.newline {
	display: block;
	line-height: 0.7em; 
}
.tab_slide_wrapper {
	font-family: 'calibri','Lucida Grande',Verdana,Arial,Sans-Serif; 
	height:100%;
	margin:0;
	position:fixed;
	top:0;
	width:100%;
	border-radius: 4px;
	z-index:100000;
}
#timer .hidden{display: none;}
#timer .shown{display: block;}