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

#posts_tabs{
	background:transparent url(img/posts_top.gif) no-repeat scroll left top;
	height:63px;
	width:355px;  
	font-family:helvetica, arial, sans-serif;    
	clear:both;
}


/* Skin */
 
/* ul */
.ui-tabs-nav {
	height:47px;
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	margin:0;
	padding:14px 0 0 3px;    
	
}     

/* li */   



.ui-tabs-nav li{
	float:left; 
	display:block;
	height:41px;
	width:86px;     
	text-align:center; 
	padding-top:8px;
}


.ui-tabs-nav a {
    margin: 0px 0 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    background-position: 100% 0;
    text-decoration: none;       
	font-size:17px; 
	font-weight:normal;
    white-space: nowrap; /* @ IE 6 */
    outline: 0; /* @ Firefox, prevent dotted border after click */    
	padding-top:5px;    
	color:#fff;
}

li.ui-tabs-selected{
	background:transparent url(img/posts_selected.gif) no-repeat scroll 2px top;
	color:#A0601C;
	height:40px;
	margin:0;
	padding:9px 0 0;
	position:relative;
	width:86px;
	z-index:2;
}

li.ui-tabs-selected a{
	color:#a0601c;
}

.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;
}
.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;
}
.ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
.ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited {
    color: #000;
}
.ui-tabs-panel {
	background:transparent url(img/posts_bottom.gif) no-repeat scroll left bottom;
	padding:10px 26px 26px;
	height:auto;      
	clear:both;
}
/*.ui-tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}*/

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

#posts_tabs .ui-tabs-panel li {
	background:transparent url(img/tabs_list_bullets.gif) no-repeat scroll left top;
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	margin-bottom:4px;
	margin-right:0;
	margin-top:0;
	padding:1px 0 7px 25px;
	position:relative;
	text-indent:0;
	white-space:normal;   
}          

#posts_tabs .ui-tabs-panel li a{
	color:#132806;
}