/* Caution! Ensure accessibility in print and other media types... */
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .ui-tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .ui-tabs-nav {
        display: none;
    }
}

/* Skin */

.ui-tabs-nav{
list-style-type:none;
margin:0px;
padding:0px;
}


.ui-tabs-nav li {
    float: left;
    margin: 0 0 0 1px;
	display:inline;
    min-width: 4px; /* be nice to Opera */
}
.ui-tabs-nav li a, .ui-tabs-nav li a span {
    display: block;
    padding: 2px 4px 0 4px;
	border:1px solid #CCCCCC;
	display:inline-block;
	text-decoration:none;
	text-align:center;
}
.ui-tabs-nav li a {
    position: relative; /* position: relative makes opacity fail for disabled tab in IE */
    display:block; 
	height:20px;
	width:15px;
    margin-right:5px;
	font-weight:bold;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
}

.ui-tabs-nav a:hover, .ui-tabs-nav .ui-tabs-selected a:hover{ text-decoration:none;}
.ui-tabs-nav a:hover span {
    width: 4px; /* IE 6 treats width as min-width */
    min-width: 4px;
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-top: 6px;
    padding-right: 0;
	
}

/* Additional IE specific bug fixes... */
* html .ui-tabs-nav { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .ui-tabs-nav  { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}

