/* 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 */
.ui-tabs-nav, .ui-tabs-panel {
	font-family: "Century Gothic", Helvetica, Arial, sans-serif;
	font-size: 12px;
}
ul.ui-tabs-nav {
	width: 850px;
	list-style-type: none;
	text-align: center;
	padding: 0px;
	margin: 0px;
	height: 50px;
}

.ui-tabs-nav {
	list-style: none;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 4;
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
	display: block;
	clear: both;
	content: " ";
}
.ui-tabs-nav li {
	float: left;
	margin: 0;
}
.ui-tabs-nav a, .ui-tabs-nav a span {
	display: block;
	font-size: 14px;
	color: #133DA3;
	text-transform: capitalize;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
}
.ui-tabs-nav a {
	margin: 1px 0 0; /* position: relative makes opacity fail for disabled tab in IE */
	padding-left: 0;
	font-weight: normal;
	line-height: 1.2;
	text-align: right;
	text-decoration: none;
	white-space: nowrap; /* required in IE 6 */
	outline: 0; /* prevent dotted border in Firefox */
}
.ui-tabs-nav .ui-tabs-selected a {
	position: relative;
	top: 1px;
	z-index: 2;
	margin-top: 0;
	color: #000;
}
.ui-tabs-nav a span {
	width: 140px; /* IE 6 treats width as min-width */
	min-width: 100px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
}
*>.ui-tabs-nav a span { /* hide from IE 6 */
	width: 140px;
	text-align:center;
}
.ui-tabs-nav .ui-tabs-selected a span, .ui-tabs-nav a:hover span, .ui-tabs-nav a:focus span, .ui-tabs-nav a:active span {
	color: #4E82CE;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #AFBD20;
	margin-top: 5px;
	float: left;
}
.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;
	font-weight: bold;
	color: #4F7FBD;
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #AFBD20;
}
.ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active,
.ui-tabs-nav .ui-tabs-deselectable a:hover, .ui-tabs-nav .ui-tabs-deselectable a:focus, .ui-tabs-nav .ui-tabs-deselectable a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
.ui-tabs-panel {
	overflow: auto;
	height:380px;
	margin: 0px;
	color: #333333;
	font-size: 14px;
	word-spacing: -1px;
}
#tabcontainer p {
	padding-right: 20px;
}


.tabpanelcontent {
	background-image: url(../images/panel-content-bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 15px;
	height: 280px;
	margin: 0px;
	width: 690px;
	color: #735B3E;
	overflow: auto;
	background-color: #F0E5D3;
}
.tabpanelcontent img {
	padding: 3px;
	float: right;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 15px;
	margin-left: 20px;
	border: 1px solid #D8B478;
}


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

