/* Hide useless elements in print layouts... */
@media print {
    ul#Profile {
        display: none;
    }
}

/* Skin */
.ui-tabs-nav, .ui-tabs-panel {
    
}
ul#Profile {
	width:614px;
    list-style: none;
	background-color:#FFF;
	height:25px;
	min-height:25px;
	margin:0;
}

ul#Profile:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
ul#Profile li {
    float: left;
    margin: 0 0 0 2px;
    min-width: 85px; /* be nice to Opera */
	font-size:11px;
}

ul#Profile li#tab-user-home{margin-left:0;}

ul#Profile a, ul#Profile a span {
    display: block;
    padding: 0 10px 0 0;
    background: url(tab-user.png) no-repeat;
}

ul#Profile a {
    padding-left: 0;
    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 */
}

ul#Profile a.tab_active{
    position: relative;
    /*top: 1px;*/
    z-index: 2;
    margin-top: 0;
    color: #000;
}

ul#Profile a span {
    width: 65px; /* IE 6 treats width as min-width */
    min-width: 65px;
    height: 19px; /* IE 6 treats height as min-height */
    min-height: 19px;
    padding-top: 6px;
    padding-left:10px;
	padding-right:0;
}

*>.ui-tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}

ul#Profile a.tab_active, ul#Profile a:hover, ul#Profile a:focus, ul#Profile a:active {
    background-position: 100% -98px;
	color:#000;
}
ul#Profile a{
    background-position: 100% -63px;
}

ul#Profile a.tab_active span, ul#Profile a:hover span, ul#Profile a:focus span, ul#Profile a:active span {
    background-position: 0 -32px;
}


ul#Profile a span{
    background-position: 0 0;
}

ul#Profile a:hover, ul#Profile a:focus, ul#Profile a:active{ /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}

.ui-tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}

/* Additional IE specific bug fixes... */
* html ul#Profile { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html ul#Profile  { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}