/* 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;
    }
}
#my-tabs ul li	{
	background-image: none!important;
	}
/* Hide useless elements in print layouts... */
@media print {
    .ui-tabs-nav {
        display: none;
    }
}

ul.tabs	{
	margin-bottom: 0!important;
	list-style-image: none!important;
	}

/* Skin */
.ui-tabs-nav, .ui-tabs-panel {
    font-size: 12px;
}
.ui-tabs-nav {
    margin: 0;
    padding: 0 0 0 3px!important;
}
.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 0 0 2px;
    min-width: 94px; /* be nice to Opera */
	}
.ui-tabs-nav li.wide3	{
	width: 242px;
	padding: 0;

	}
.ui-tabs-nav a {
	display: block;
	padding: 3px 10px;
	background-color: #67a5e0;
	border-left: 1px solid #67a5e0!important;
	border-top: 1px solid #67a5e0!important;
	border-right: 1px solid #67a5e0!important;
	background-image: url(shell/bg-tab.gif);
	position: relative;
	top: 1px;
	font-size: 12px;
}
.ui-tabs-nav a.alt {
	display: block;
	padding: 3px 10px;
	background-color: #fff;
	color: #000;
	background-image: none!important;
	border-left: 1px solid #67a5e0!important;
	border-top: 5px solid #67a5e0!important;
	border-right: 1px solid #67a5e0!important;
	border-bottom: 1px solid #67a5e0!important;
	position: relative;
	top: 1px;
	font-size: 12px;
	
}
.ui-tabs-nav a {
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
	margin: 10px 0 0 0;
}
.ui-tabs-nav a.alt span	{
	font-weight: 400;
	}
.ui-tabs-nav .ui-tabs-selected a {
	position: relative;
	z-index: 2;
	color: #000!important;
	background-color: #fff!important;
	background-image: none!important;
	border-left: 1px solid #dd0000!important;
	border-top: 10px solid #dd0000!important;
	border-right: 1px solid #dd0000!important;
	border-bottom: 2px solid #fff!important;
	padding: 8px 0 2px 0;
	margin: 0!important;
}
.ui-tabs-nav .ui-tabs-selected a.alt span	{
	color: #fff;
	}
.ui-tabs-nav a:hover {
	background-color: #4984bd;
	background-image: url(shell/bg-tab-hover.gif);
	color: #fff;	
	border-left: 1px solid #4984bd;
	border-top: 1px solid #4984bd;
	border-right: 1px solid #4984bd;
}
.ui-tabs-nav a.alt:hover {
	background-color: #fff;
	background-image: none!important;
	color: #dd0000;	
	border-left: 1px solid #4984bd;
	border-top: 1px solid #4984bd;
	border-right: 1px solid #4984bd;
}

.ui-tabs-nav .ui-tabs-selected a:hover;
.ui-tabs-nav .ui-tabs-selected a:visited {
	background-color: #fff!important;
	color: #000!important;
	background-image: none!important;
}
.ui-tabs-nav a, .ui-tabs-nav .ui-tabs-disabled a:hover, .ui-tabs-nav .ui-tabs-disabled a:focus, .ui-tabs-nav .ui-tabs-disabled a:active {
	background-color: #67a5e0;
}
.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: default;
}
.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;
	cursor: hand;
}
.ui-tabs-panel {
    border-top: 1px solid #67a5e0;
    padding: 1em 8px;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}


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

.boxed	{/*  style and copy for jquery tab information fragments */
	border-left: 1px solid #67a5e0;
	border-right: 1px solid #67a5e0;
	border-bottom: 1px solid #67a5e0;
	padding: 0 10px 10px 10px;
	}	
.boxed h3	{
	font-size: 14px;
	display: none;
	margin: 0;
	}




