/*
IMPORTANT:
Essential styles to ensure accessibility
*/
@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;
    }
}
@media print { /* maintain accessibility by overriding inline style used by animations... */
    .fragment {
        display: block !important;
        height: auto !important;
        opacity: 1 !important;
    }
}

/*
TAB STYLES:
Some more styles, not important for making tabs work, just for the look of it...
*/

.menu .tabs-selected a:link, .menu .tabs-selected a:visited,
.menu .tabs-disabled a:link, .menu .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.menu a:hover, .menu a:focus, .menu a:active {
    cursor: pointer;
}

/*
IE all versions
*/

.menuie { /* auto clear */
    display: inline-block; /* @ IE 7 */
    _height: 1%; /* @ IE 6 */
}

.menu a {
	}

.menu .tabs-disabled a {
    filter: alpha(opacity=40);
    zoom: 1; /* trigger filter */
}