/*
 * jQuery UI Tabs @VERSION
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs#theming
 */
/*
.ui-tabs { 
	position: relative;
	padding: .2em;
	zoom: 1;
} position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") 
*/
.ui-tabs-nav {
    width: 970px;
		height: 42px;
		list-style: none;
    margin: 0 0 10px;
    padding: 0;
	background: transparent url(../images/common/tab_bg.jpg) no-repeat 0 0;
}
.ui-tabs .ui-tabs-nav li {
    width: 250px;
		height: 42px;
    margin: 0;
		padding: 0;
		float: left;
}
.ui-tabs .ui-tabs-nav li a {
    margin: 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    color: #27537a;
    font-weight: bold;
    line-height: 1.0;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
}
.ui-tabs .ui-tabs-nav li a img {
	opacity: 0;
	filter: alpha(opacity=0);
}
.ui-tabs-nav .ui-tabs-selected a {
    position: relative;
    top: 0;
    z-index: 2;
    margin-top: 0;
    color: #000;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a img {
	opacity: 1;
	filter: alpha(opacity=100);
}
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
	cursor: text;
}
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
	cursor: pointer;
} /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel {
    /*border-top: 1px solid #97a5b0;*/
    padding: 30px 20px 10px;
	/*background: transparent url(../images/common/books_footer.jpg) no-repeat left bottom;*/
}
.ui-tabs .ui-tabs-hide {
	display: none !important;
}
