/* 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 */
.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    float: left;
    width: 225px;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}

.tabs-nav li {
    display: inline;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 40px;
    min-width: 195px; /* be nice to Opera */
}

.tabs-nav a {
    position: relative;
    top: 1px;
    z-index: 2;
    padding: 0 10px;
    margin-bottom: 2px;
    background-color: #f2f2f2;
    color: #666 !important;
    text-decoration: none;
    display: block;
    /*border-bottom: 1px solid #e3e3e3;*/
    font-size: 120%;
    white-space: nowrap; /* required in IE 6 */    
}

.tabs-nav .tabs-selected a {
	background-color: #f2a73f;
    color: #fff !important;
}

.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    background-color: #ccc;
    color: #333 !important;
    outline: 0; /* prevent dotted border in Firefox */
}

.tabs-nav .tabs-selected a:hover {
	background-color: #f2a73f;
    color: #fff !important;
}

.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}

.tabs-container {
    padding: 5px;
    margin-top: 3px;
    float: right; 
    width: 615px; 
    margin-left: 0px;
    background: #fff;
}

