/*
http://docs.jquery.com/UI/Tabs/Theming

ui-tabs-nav This is the whole menu. Use this as a base class. 
ui-tabs-selected This is the current tab. It's very important to create a strong visual indication which tab is the current one. 
ui-tabs-unselect This is the class for all the tabs that are not selected but selectable. 
ui-tabs-disabled For when a tab is disabled. Highly recommended to appear somewhat transparent or disabled. This is often done by graying the color. 
ui-tabs-panel These are the boxes that will have their visibility toggled. 
ui-tabs-hide This class hides the boxes (perhaps the most important class) 
<span>
*/

#content .ui-tabs-hide {
	display: none;
}
#content ul.ui-tabs-nav {
	display: block;
	clear:both;
	padding: 0px;
	margin: 10px auto 0px;
	height: 37px;
	border-bottom: 1px solid #666666;
}
#content ul.ui-tabs-nav li {
	list-style: none;
	display: inline;
	background: url(../icons/tab-inactive.png) no-repeat right top;
	padding: 0px 8px 0px 0px;
	margin: 0px 8px 0px 0px;
	border-bottom: 1px solid #666666;
	display:block;
	float:left;
	height: 37px;
}
#content ul.ui-tabs-nav li a {
	list-style: none;
	display: inline;
	text-decoration: none;
	background: url(../icons/tab-inactive.png) no-repeat left top;
	margin: 0px;
	padding: 4px 0px 0px 10px;	
	display:block;
	float:left;	
	height:33px;
}
#content ul.ui-tabs-nav li.ui-tabs-selected {
	color: #333333;
	font-weight: bold;
	border-bottom: 1px solid #ffffff;
	background: url(../icons/tab-active.png) no-repeat right top;	
}
#content ul.ui-tabs-nav li.ui-tabs-selected a {
	color: #333333;
	font-weight: bold;
	background: url(../icons/tab-active.png) no-repeat left top;	
	border-bottom: none;
}

#content .ui-tabs-panel {
	/*resetsmargin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
	clear:left;*/
	border-left: 1px solid #666666;
	border-right: 1px solid #666666;
	border-bottom: 1px solid #666666;
	background: #ffffff url(images/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
	padding: 4px 15px 10px 10px;
}

.strongOption
{
	font-size:14px;
	font-weight:bold;
}

.smallSub
{
	font-size: 10px;
}