@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .tabs-hide {
        display: none !important;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .tabs-nav {
        display: none;
    }
}

/* Skin */
.tabs-nav, .tabs-panel {
font-family:  Tahoma, Arial, Helvetica, sans-serif;
    font-size: 11px;
}
.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 00
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-nav li {
float: left;
margin: 0 2px 0 0;
font-weight: bold;
}
.tabs-nav a, .tabs-nav a span {
    float: left; /* fixes dir=ltr problem and other quirks IE */
    background: url(../images/tabs2.png) no-repeat right;
}
.tabs-nav a {
    margin: 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    background-position: 100% 0;
    text-decoration: none;
    white-space: nowrap; /* @ IE 6 */
    outline: 0; /* @ Firefox, prevent dotted border after click */    
}
.tabs-nav a:link, .tabs-nav a:visited {
    color: #fff;
}
.tabs-nav .tabs-selected a {
    position: relative;
    top: 1;
    z-index: 2;
    margin-top: 0;
    background-position: 100% -46px;
}
.tabs-nav a span {
    height: 38px;
    padding: 4px 15px 0 15px;
	text-align: center;
    background-position: 100% 0;
	font-size: 11px;
	color: #6F6F6F
}
.tabs-nav a span.pad_top {
    height: 29px;
    padding: 13px 15px 0 15px;
	text-align: center;
    background-position: 100% 0;
	font-size: 11px;
	color: #6F6F6F
}
.tabs-nav .tabs-selected a span {
    padding: 4px 15px 0 15px;
    height: 40px;
    background-position: 100% -46px;
}
.tabs-nav .tabs-selected a span.pad_top {
    padding: 13px 15px 0 15px;
    height: 31px;
    background-position: 100% -46px;
}
.tabs-nav .tabs-selected a:link, .tabs-nav .tabs-selected a:visited,
.tabs-nav .tabs-disabled a:link, .tabs-nav .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active,
.tabs-nav .tabs-unselect a:hover, .tabs-nav .tabs-unselect a:focus, .tabs-nav .tabs-unselect a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
.tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
.tabs-nav .tabs-disabled a:link, .tabs-nav .tabs-disabled a:visited {
    color: #000;
}
#fragment {
    padding: 0 2px 0 0;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}

/* Additional IE specific bug fixes... */
* html .tabs-nav { /* auto clear @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .tabs-nav  { /* auto clear @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}

/* admin */
.admin_admin .tabs-nav a span {
    height: 38px;
    padding: 4px 10px 0 10px;
	text-align: center;
    background-position: 100% 0;
	font-size: 11px;
	color: #6F6F6F
}
.admin_admin .tabs-nav a span.pad_top {
    height: 29px;
    padding: 13px 10px 0 10px;
	text-align: center;
    background-position: 100% 0;
	font-size: 11px;
	color: #6F6F6F
}
.admin_admin .tabs-nav .tabs-selected a span {
    padding: 4px 10px 0 10px;
    height: 40px;
    background-position: 100% -46px;
}
.admin_admin .tabs-nav .tabs-selected a span.pad_top {
    padding: 13px 10px 0 10px;
    height: 31px;
    background-position: 100% -46px;
}
/* admin */