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

#rotate
{
	width:575px;
	clear:both;
}

/* Skin */
.ui-tabs-nav, .ui-tabs-panel {
    font-family: "Trebuchet MS", Trebuchet, Verdana, Helvetica, Arial, sans-serif;
    font-size: 13px;
	 line-height:19px;
}
.ui-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 5px 0 0 0;
	 width:575px;
	 float:right;
	 border-top:1px solid #666;
}

.ui-tabs-nav li {
    margin: 0 0 0 1px;
	 float:right;
}
.ui-tabs-nav li a {
    display: block;
	 outline: 0; /* prevent dotted border in Firefox */
}
.ui-tabs-nav a {
    margin: 1px 0 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    color: #666;
	 font-family: Georgia,Arial, Helvetica, sans-serif;
	 text-align:right;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
}

.ui-tabs-nav li a:active, .ui-tabs-nav li a:focus
{
	outline:none;
}

.ui-tabs-nav .ui-tabs-selected a {
    position: relative;
    top: 1px;
    z-index: 2;
    margin-top: 0;
	 outline: 0; /* prevent dotted border in Firefox */
}


.ui-tabs-panel {
	width: 575px;
	height:255px;
   padding: 0;
   background: #000; /* 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;
}

