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

/* IE */
.tabs-nav { /* auto clear */
    display: inline-block;
}
.tabs-nav .tabs-disabled a {
    filter: alpha(opacity=40);
}
 /* END IE */

/* Skin */
.tabs-nav {
}

.tabs-nav a {
    display: block;
    position: relative;
    z-index: 2;
}

.tabs-nav .tabs-selected a {
	font-weight: 600;
	background: #FFF;
}

.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    outline: 0; /* @ Firefox, switch off dotted border */
}

.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 { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}

.tabs-nav .tabs-disabled {
    opacity: .4;
}

.tabs-container {
	clear: both;
	padding: 1.5em 0 0 1.7em;
    background: #FFF; /* declare background color for container to avoid distorted fonts in IE while fading */
}

/* Uncomment this if you want a little spinner to be shown next to the tab title while an Ajax tab gets loaded
.tabs-loading span {
    padding: 0 0 0 20px;
    background: url(http://www.partnertech-uk.com/app_themes/default/loading.gif) no-repeat 0 50%;
}*/
