.tab_slide_wrapper {
	font-family: Arial,Sans-Serif; 
	 z-index: 100000;
	 color: #fff;
}
#tab_slide {
	top: 40%;
	position:fixed;
	overflow:show;
}
#tab_toggle:hover {
	cursor: pointer;
}
#tab_toggle_bg:hover {
	cursor: pointer;
}
#tab_slide_background {
	position:absolute; 
	width:100%; 
	height:100%;
	z-index:-1;
	top: 0;

	background:  #222;
	box-shadow: 0px 0px 3px #222;
	
	/* background: url();
	background-size: 100%;
	background-repeat: no-repeat; */
}
.tab_slide_corners_left {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.tab_slide_corners_right {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

/* -------------------------------------------------------------  This should be included by default */
#tab_slide_include{
	padding: 30px 20px 20px 20px;	
}
/* Chrome and Safari overlap fix*/


/* -------------------------------------------------------------  Make it obvious that this is the tab button */

@media screen and (-webkit-min-device-pixel-ratio:0) {
 #tab_toggle { 
 	position: absolute;
	margin-right:-24px;
 }
}
.tab_text_bg {
	position: absolute;
	width: 24px;
	height: 24px;
	background-color: #222;
	top: 45%;
	overflow: hidden;
	/* border-radius: 4px; fullscreen */
	/* border: outset 1px #C0C0C0; */
}


#tab_title_wrap {
	margin-left: 1px;
	background-color: #222;
	position: relative;
	display:block;
	font-weight:bold;
    /*font-size:12px;*/
    font-size:14px;
	font-family: Arial,Sans-Serif;
	letter-spacing: 1px;
    color:#fff;
    overflow: visible;
    
	
	-webkit-transform: rotate(90deg);  /* Saf3.1+, Chrome */
	    -moz-transform: rotate(90deg);  /* FF3.5+ */
	       -o-transform: rotate(90deg);  /* Opera 10.5 */
	         zoom: 1;

}
/**
 * Default toggle class for text based tab
 */
.open_letter_reset {
	    margin-top: 11px;
}
.close_letter_reset {
	    margin-top: 11px;
}
.tab_text_left {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	
	box-shadow: 0 2px  0px #ccc;
	left: -24px;
}
.tab_text_right {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	
	box-shadow: 2px 0px 2px #ccc;
	right: -24px;
	
}

.newline {
	display: block;
	line-height: 0.7em; 
}

/*****************************************************************
 *  Custom toggle class
 *  Use your own element with this class to toggle the open/close
 */
.make_it_slide {
	// custom class you can use to toggle the slide
	// click bound in tab_slide.js line 84
}


/**
 * Default toggle class for image
 */
 .open_action {
	position: fixed;
    background: url("../images/plus.png") right;
    background-repeat: no-repeat;
	width:50px;
    height: 50px;
    top: 45% !important;
}
.closed_action {
	position: static;
	background-image: url('../images/close.gif') !important;
    background-size: 12px 12px;
    background-repeat: no-repeat;
	height: 12px;
	width: 12px;
	margin-top: 7px; 
}
.reset_right {
	right: 0;
}
.reset_left {
	left: 0;
}
.float_left {
	float: left;
	margin-left: 7px;
}
.float_right {
	float_right;
	margin-right: 7px;
}
