/* root element for tabs  */
#wrap_id ul.tabs {
	list-style:none;
	/*margin:0 !important;*/
	padding-left:1px;
	/*border:1px solid #585858;*/
	background:/* url(../images/h300.png) repeat-x 0 0 */#585858;
	height:20px;
	border-bottom:0px solid #fff;
	margin-top:10px;
	margin-bottom:10px;


}

/* single tab */
ul.tabs li {
	background:none repeat scroll 0 0 #585858;

float:left;
list-style-image:none !important;
margin:0 !important;

text-indent:0;

}

/* link inside the tab. uses a background image */
#wrap_id ul.tabs a {
background: /*url(../images/h150.png) repeat-x 0 0 */#585858;
color:#999;
display:block;
float:left;
font-size:12px;
height:20px;
line-height:20px;
margin:0;
padding:0 10px;
position:relative;
text-align:center;
text-decoration:none;

width:auto;



}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background: #585858;
	color:#ffffff;

}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
#wrap_id ul.tabs a.current,#wrap_id ul.tabs a.current:hover,#wrap_id ul.tabs li.current a {
	background:#585858;
font-size:12px;
	color:#fff;
	border:none;
	height:20px;
	cursor:default !important;
	border-bottom:none;
	border:none;
	 outline:none;
     -moz-outline:none;
	 font-weight:bolder;


}

/* 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;
}


