/* 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;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-nav li {
    float: left;
    margin:0;
	background:#000 url(../images/tabs/separateur.gif) right top no-repeat;
}

.tabs-nav a {
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
    display: block;
    position: relative;
	padding:0 10px 0 10px;
    z-index: 2;
    color: #727272;
    font-size: 11px;
	text-transform:uppercase;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */   
	text-shadow:1px 1px 2px #000;
	margin-right:1px;
	height:30px;
}
.tabs-nav .tabs-selected a {
    color: #FFF;
	text-shadow:1px 1px 2px #000;
}

.tabs-nav .tabs-selected a, .tabs-nav a:focus, .tabs-nav a:active {
    background:url(../images/tabs/menu.gif) repeat-x top;
    outline: 0; /* prevent dotted border in Firefox */
}

.tabs-nav a:hover {
    background:url(../images/tabs/menu2.gif) repeat-x top;
    outline: 0; /* prevent dotted border in Firefox */
	color:#999;
}

.tabs-nav .tabs-selected a:hover {
    background:url(../images/tabs/menu.gif) repeat-x top;
    outline: 0; /* prevent dotted border in Firefox */
	color:#FFF;
}

.tabs-nav .tabs-selected a {
    color: #FFF;
	text-shadow:1px 1px 2px #000;
}

.tabs-nav #vert {
	background:url(../images/tabs/menu-vert.gif) repeat-x top;
    color: #FFF;
	text-shadow:1px 1px 2px #000;
}

.tabs-nav #vert:hover {
	background:url(../images/tabs/menu-vert2.gif) repeat-x top;
}

.tabs-nav .tabs-selected a:link, .tabs-nav .tabs-selected a:visited, .tabs-nav .tabs-disabled a:link, .tabs-nav .tabs-disabled a:visited {
    cursor: text;
}
.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    cursor: pointer;
}
.tabs-nav .tabs-disabled {
    opacity: .4;
}
.tabs-container {
	border:1px #454745 solid;
	border-top:0;
    padding:0;
    background: #000 url(../images/tabs/sousmenu.gif) repeat-x top;
	line-height:25px;
	margin-left:19px;
	-moz-border-radius:0 0 3px 3px;
	-webkit-border-bottom-right-radius:3px;
	-webkit-border-bottom-left-radius:3px;
}
.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(../images/tabs/loading.gif) no-repeat 0 50%;
}
