/* 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;
    }
}


div#subHeader {
	height:245px;
	background:url(../images/bg_subHeader.jpg) top left no-repeat;
}




/* Skin */
.ui-tabs-nav {
	float:left;
	clear:left;
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
	width:200px;
	height:15px;
	overflow:hidden;
	position:absolute;
	top:230px;
	left:0;
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav li {
	width:15px;
	height:15px;
	margin:0;
	padding:0;
	list-style:none;
	float:left;
    min-width: 15px; /* be nice to Opera */
}
.ui-tabs-nav a {
    display: block;
	background:url(../images/bg_circles2.jpg) no-repeat 0 0;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
    width: 15px; /* IE 6 treats width as min-width */
    min-width: 15px;
    height: 15px; /* IE 6 treats height as min-height */
    min-height: 15px;
    background-position: 0 0;
}
*>.ui-tabs-nav a { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.ui-tabs-nav .ui-tabs-selected a {
    position: relative;
    z-index: 2;
    background-position: 0 -15px;
}
.ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active,
.ui-tabs-nav .ui-tabs-unselect a:hover, .ui-tabs-nav .ui-tabs-unselect a:focus, .ui-tabs-nav .ui-tabs-unselect a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}



.ui-tabs-panel {
	float:left;
	clear:left;
	width:980px;
	height:230px;
	background:none;
	position:absolute;
	top:0;
	left:0;
    /*background: #fff;  declare background color for container to avoid distorted fonts in IE while fading */
}
.ui-tabs-panel table.slides {
	margin:0;
	padding:0;
	width:980px;
	height:230px;
	font-size:16px;
	line-height:18px;
	color:#fff;
}

.ui-tabs-panel table.slides td.slideText {
	padding:20px 0 0 20px;
}
.ui-tabs-panel table.slides td.slidePhoto {
	margin:0;
	padding:0;
	float:right;
	display:inline;
	width:500px;
	height:285px;
	overflow:hidden;
	text-align:right;
}
.ui-tabs-panel .slideTitle,
.ui-tabs-panel p.slideTitle {
	margin:0 0 10px 0 !important;
	padding:0 !important;
	text-indent:0;
	font-size:30px !important;
	line-height:34px !important;
	color:#fff;
	font-weight:bold;
}

.ui-tabs-panel p {
	margin-left:0 !important;
	padding-left:0 !important;
}


/* 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;
}





