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

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

/* Skin */
#teaser_module {
	width: 76.6em;
	background: transparent url(../images/teaser_bg.gif) left top no-repeat;
	margin-bottom: 1.8em;
	position: relative;
}
.ui-tabs-nav, .ui-tabs-panel {
    font-size: 1em;
}
.ui-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav ul {
	width: 17.8em;
	float: right;
	margin: 0;
	padding: 0;
	list-style: none;
}
#teaser_module.ui-tabs-nav ul li {
	width: 14.8333em;
	height: 75px;
    margin: 0;
	padding: 0;
	background: none;
}
.ui-tabs-nav li a {
    margin: 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
	border-left: 1px solid #a9a9a9;
	width: 12.6429em;
	height: 75px;
	display: block;
	background: #c6c6c6 url(../images/teaser_tab.gif) right top no-repeat;
    color: #666;
    font-weight: normal;
	font-size: 1.1667em;
    line-height: 1.2em;
    text-align: left;
    text-decoration: none;    
    outline: 0; /* prevent dotted border in Firefox */
}
.ui-tabs-nav li#tab1 a {
	background-image: url(../images/teaser_tab_first.gif);
}
.ui-tabs-nav li#tab4 a {
	background-image: url(../images/teaser_tab_last.gif);
}
.ui-tabs-nav .ui-tabs-selected a {
    color: #000;
	background: #fff url(../images/teaser_tab_current.gif) right top no-repeat;
	border-left-color: #fff;
}
.ui-tabs-nav li#tab1.ui-tabs-selected a {
	background-image: url(../images/teaser_tab_current_first.gif);
}
.ui-tabs-nav li#tab4.ui-tabs-selected a {
	background-image: url(../images/teaser_tab_current_last.gif);
}
.ui-tabs-nav a span {
    width: 11.7857em;
	height: 53px;
	padding-top: 20px;
	padding-left: 12px;
	display: block;
}
.ui-tabs-nav a:hover, .ui-tabs-nav a:active, .ui-tabs-nav a:focus  {
	color: #000;
}
.ui-tabs-nav .ui-tabs-selected a:link, .ui-tabs-nav .ui-tabs-selected a:visited, .ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active {
    cursor: pointer;
}
.ui-tabs-panel {
    padding: 0;
    width: 56.1em;
	overflow: hidden;
	height: 282px;
	background: none;
	float: left;
	position: absolute;
	top: 9px;
	left: 9px;
}

/* Additional IE specific bug fixes... */
* html .ui-tabs-nav { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .ui-tabs-nav  { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}
