/* 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... */
    .tabs-hide {
        display: none;
    }
}

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

/* Skin */

div.tabs {
	width: 388px !important;
	margin: auto;
}

.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 6px;
    background: url(../layout/image/template/bg_tabs_header.gif) repeat-x 0 0;
    height: 31px;
}

.tabs-nav li {
    float: left;
    display: inline;
    /*min-width: 84px; /* be nice to Opera */
    width: 78px;
    padding: 0;
    margin: 0 1px;
    height: 20px;
    padding-top: 11px;
    background: url(../layout/image/template/bg_tabs_button.png) no-repeat 0 bottom;
}

.tabs-nav a {
    position: relative;
    top: 1px;
    z-index: 2;
    padding-left: 0;
    color: #8b8b8b;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: block;
    white-space: nowrap; /* required in IE 6 */    
}

li.tabs-selected {
    color: #000;
    background: url(../layout/image/template/bg_tabs_button_selected.png) no-repeat 0 bottom;
}

li.tabs-selected a {
	color: #fff;
}

.tabs-container {
    padding: 5px 10px;
    line-height: 15px;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}


