/* 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 {
    position: absolute;
    top: -10000px;
    left: -10000px;
	display:block;
/*	display:none; */
    }
}

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

/* Skin */
.ui-tabs-nav, .ui-tabs-panel {
    font-size: 11px;
}
#defaultTabs .ui-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
#propertyTabs .ui-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 18px 0px 0px 0px;
	width:170px;
	float:right;
	border:none;
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
#defaultTabs .ui-tabs-nav li {
    float: left;
    margin: 0 1px 0 0px;
}
#propertyTabs .ui-tabs-nav li {
    float:none;
    margin: 0px;
}
.ui-tabs-nav a, .ui-tabs-nav a span {
    display: block;
    padding: 0px 0px 0px 0px;
}

.ui-tabs-nav a span {
	background-color:#D4E4C4;
	border-top:3px solid #FFFFFF;
    padding-top: 2px;
    padding: 2px 15px 1px 15px;
	
}

#propertyTabs .ui-tabs-nav a span {
	background-color:#EFF4E4;
	border-top:3px solid #FFFFFF;
	border-left:none;
	border-right:none;
	border-bottom:none;
	padding:3px 5px 2px 5px;
	display:block;
}
#propertyTabs .ui-tabs-nav a span em {
	font-style:normal; font-weight:normal;
	font-size:10px;
}

.ui-tabs-nav a:hover span {
	background-color:#666666;
	color:#FFFFFF;
	
}

#propertyTabs .ui-tabs-nav a:hover span {
	background-color:#666666;
	color:#FFFFFF;
	
}


.ui-tabs-nav a:hover {text-decoration:none;}

#defaultTabs .ui-tabs-nav a {
    color: #006600;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
}
#defaultTabs .ui-tabs-nav .ui-tabs-selected a span {
    position: relative;
    top: 1px;
    z-index: 2;
    color: #000000;
	border-top:1px solid #669900;
	border-left:1px solid #669900;
	border-right:1px solid #669900;
	background-color:#FFFFFF ;
	padding:3px 15px 2px 15px;

}
#propertyTabs .ui-tabs-nav a {
    color: #666666;
    font-weight: bold;
    text-align: left;
    text-decoration: none;
	white-space:normal;
    outline: 0; /* prevent dotted border in Firefox */
}
#propertyTabs .ui-tabs-nav .ui-tabs-selected a span {
    position: relative;
    top: 0px;
    z-index: 2;
    color: #000000;
	border-top:3px solid #FFFFFF;
	border-left:none;
	border-right:none;
	border-bottom:none;
	background-color:#D4E2C3 ;
	padding:3px 5px 2px 5px;

}

*>.ui-tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
#defaultTabs .ui-tabs-panel {
    border: 1px solid #669900;
	padding:7px;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
	/* min-height:300px; height:300px; border:1px solid #ff0000;  background-color:#CCCCCC; doverflow:hidden; */
}
#propertyTabs .ui-tabs-panel {
width:490px; float:left; border:none;
}
.ui-tabs-loading em {
    padding: 0 0 0 0px;
	font-style:normal;
	background-color:#FF0000; color:#FFFFFF;
}

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

