/* 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... */
    #tabs-vertical .ui-tabs-hide {
        display: none;
    }
}

#tabs-vertical .ui-tabs .ui-tabs-hide {
     display: none;
}

/* Hide useless elements in print layouts... */
@media print {
    #tabs-vertical .ui-tabs-nav {
        display: none;
    }
}

/* Skin */
#tabs-vertical .ui-tabs-nav, 
#tabs-vertical .ui-tabs-panel {
    font-size: 12px;
}
#tabs-vertical .ui-tabs-nav {
    width:120px;
		float:left;
		list-style: none;
    margin: 0;
    padding: 0 0 0 0px;
		
}
#tabs-vertical .ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
#tabs-vertical .ui-tabs-nav li {
    float: left;
    margin: 0px;
    min-width: 84px; /* be nice to Opera */
}
#tabs-vertical .ui-tabs-nav a, 
#tabs-vertical .ui-tabs-nav a span {
    display: block;
    padding: 0px;
    /*background: url(images/tabs-vertical/tab.png) no-repeat;*/
}
#tabs-vertical .ui-tabs-nav a {
    margin: 1px 0 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    /*color: #27537a;*/
    text-align: left;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
		color:#055459;
}
#tabs-vertical .ui-tabs-nav .ui-tabs-selected a {
    position: relative;
    top: 1px;
    z-index: 2;
    margin-top: 0;
		font-weight: bold;
		font-size:13px;
		
}
#tabs-vertical .ui-tabs-nav a span {
		width: 64px; /* IE 6 treats width as min-width */
    min-width: 64px;
    height: 14px; /* IE 6 treats height as min-height */
    min-height: 14px;
    padding-top: 7px;
    padding-right: 0;
		padding-left: 10px;
}
*>#tabs-vertical .ui-tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
#tabs-vertical .ui-tabs-nav .ui-tabs-selected a span {
    padding-bottom: 1px;
}
#tabs-vertical .ui-tabs-nav .ui-tabs-selected a, 
#tabs-vertical .ui-tabs-nav a:hover, 
#tabs-vertical .ui-tabs-nav a:focus, 
#tabs-vertical .ui-tabs-nav a:active {
    background-position: 100% -150px;
}
#tabs-vertical .ui-tabs-nav a, 
#tabs-vertical .ui-tabs-nav .ui-tabs-disabled a:hover, 
#tabs-vertical .ui-tabs-nav .ui-tabs-disabled a:focus, 
#tabs-vertical .ui-tabs-nav .ui-tabs-disabled a:active {
    background-position: 100% -100px;
}
#tabs-vertical .ui-tabs-nav .ui-tabs-selected a span, 
#tabs-vertical .ui-tabs-nav a:hover span, 
#tabs-vertical .ui-tabs-nav a:focus span, 
#tabs-vertical .ui-tabs-nav a:active span {
    background-position: 0 -50px;
}
#tabs-vertical .ui-tabs-nav a span, 
#tabs-vertical .ui-tabs-nav .ui-tabs-disabled a:hover span, 
#tabs-vertical .ui-tabs-nav .ui-tabs-disabled a:focus span, 
#tabs-vertical .ui-tabs-nav .ui-tabs-disabled a:active span {
    background-position: 0 0;
}
#tabs-vertical .ui-tabs-nav .ui-tabs-selected a:link, 
#tabs-vertical .ui-tabs-nav .ui-tabs-selected a:visited, 
#tabs-vertical .ui-tabs-nav .ui-tabs-disabled a:link, 
#tabs-vertical .ui-tabs-nav .ui-tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
#tabs-vertical .ui-tabs-nav a:hover, 
#tabs-vertical .ui-tabs-nav a:focus, 
#tabs-vertical .ui-tabs-nav a:active,
#tabs-vertical .ui-tabs-nav .ui-tabs-deselectable a:hover, 
#tabs-vertical .ui-tabs-nav .ui-tabs-deselectable a:focus, 
#tabs-vertical .ui-tabs-nav .ui-tabs-deselectable a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
#tabs-vertical .ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
#tabs-vertical .ui-tabs-panel {
    padding: 0px;
		margin:0px;
  	
}
#tabs-vertical .ui-tabs-loading em {
    padding: 0 0 0 20px;
    background: url(images/tabs-vertical/loading.gif) no-repeat 0 50%;
}

/* Additional IE specific bug fixes... */
* html #tabs-vertical .ui-tabs-nav { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html #tabs-vertical .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;
}

#tabs-vertical .tabs-wrapper {
	overflow:hidden;
	width:580px;
	float:left;
	padding-top:7px;
}

#tabs-vertical #next-prev {
	width:100%;
	float:left;
	margin-top:10px;
}
#tabs-vertical .prev-slide {
	float:left;
	margin:5px;
	width:32px;
	height:32px;
	background:url(images/tabs-vertical/button-left.gif) no-repeat left bottom;
	cursor:pointer;
}
#tabs-vertical .prev-rollover {
	background:url(images/tabs-vertical/button-left-rollover.gif) no-repeat left bottom;
}
#tabs-vertical .next-slide {
	margin:5px;
	float:right;
	width:32px;
	height:32px;
	background:url(images/tabs-vertical/button-right.gif) no-repeat left bottom;
	cursor:pointer;
}
#tabs-vertical .next-rollover {
	background:url(images/tabs-vertical/button-right-rollover.gif) no-repeat left bottom;
}

.hide {
	display:none;
}
