/* 
Filename: tabs.css 
90% of the CSS in this file is copied from flora.tabs.css (jQuery UI Tabs)
The other 10% is written by cristi@developontime.com
*/

/* 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-size: 0.75em;  
    line-height: 1.25em;
}
.ui-tabs-nav {
    list-style: none;
    margin: 0;
    /*padding: 0 0 0 3px;*/
	padding: 0;
	padding-left: 15px;
}

.ui-tabs-nav li {
    float: left;
    margin: 0;
}

/* clearing without presentational markup, IE gets extra treatment */
.ui-tabs-nav:after { display: block; clear: both; content: " "; }
/* 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 { /* auto clear @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */ display: inline-block; }

.ui-tabs-hide { display: none; }
		
.ui-tabs-nav a, .ui-tabs-nav a span {
    float: left; /* fixes dir=ltr problem and other quirks IE */
    font-weight:bold;     
    padding: 0 12px;
    background: url(images/tabs_product.png) no-repeat;
}
.ui-tabs-nav a {
	/* wr 02052010 */
    font-family:tahoma,ms sans serif;
    font-size:12px;   
    color:#ff0000;
    
    margin: 5px 0 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    background-position: 100% 0;
    text-decoration: none;
    white-space: nowrap; /* @ IE 6 */
    outline: 0; /* @ Firefox, prevent dotted border after click */        
   
}
.ui-tabs-nav a:link, .ui-tabs-nav a:visited {
    color: #fff;
}
.ui-tabs-nav .ui-tabs-selected a {
    color: #000;
    position: relative;
    top: 1px;
    z-index: 2;
    margin-top: 0;
    background-position: 100% -25px;
}
.ui-tabs-nav a span {    
    padding-top: 1px;
    padding-right: 0;
    height: 20px;
    background-position: 0 0;
    line-height: 20px;
}
.ui-tabs-nav .ui-tabs-selected a span {
    padding-top: 0;
    height: 27px;
    background-position: 0 -25px;
    line-height: 27px;
}
.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;
	color: #000; /* display the correct color in IE6 */
}
.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;
	text-decoration: none;
}
.ui-tabs-disabled {
    /*opacity: .4;*/
    /*filter: alpha(opacity=40);*/
	color: #f5f5f5;
}
.ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited {
    color: #aaa;
}
.ui-tabs-panel {
    border: 0px solid #fff;
    padding: 15px 30px;
    background: #fff url(images/tabs_shadow.png) no-repeat scroll 0 0; /* declare background color for container to avoid distorted fonts in IE while fading */
	min-height: 14.75em; 
	height: auto;
}
/* for Internet Explorer */
/*\*/
* html .ui-tabs-panel{
height: 14.75em;
}
/**/
.for_tbl{
	font-family:Verdana, Geneva, Arial, Helvetica, Sans-Serif,tahoma,ms sans serif;
	font-size:12px;
	color:#4D6A6A;
}

.for_tbl a{
	font-family:Verdana, Geneva, Arial, Helvetica, Sans-Serif,tahoma,ms sans serif;
	font-size:12px;
	color:#32A482;
	text-decoration: underline;
	letter-spacing: 1px;
}

	/* Adds special style to an unvisited link. */
	.for_tbl a:link
		{
			font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
			text-decoration: underline;
			letter-spacing: 1px;
			  color: #32A482;
			  font-size:12px;
		}
	
	/* Adds special style to a visited link. */
	.for_tbl a:visited, a.visited
	{
		font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
		text-decoration: underline;
		letter-spacing: 1px;
		  color: #425C5C;
		  font-size:12px;
	}
	
	/* :hover - adds special style to an element when you mouse over it. */
	.for_tbl a:hover, a.hover
	{
		font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
		text-decoration: none;
		letter-spacing: 1px;
		  color: #316D65;
		  font-size:12px;
	}
