/* 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:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav li {
    float: left;
    margin: 0 5px 0 1px;
    min-width: 84px; /* be nice to Opera */
}
.ui-tabs-panel {
	border-left	: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
    padding: 1em 8px;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
    overflow: hidden;
}

.ui-tabs-panel:after{
    content		: "";
    display		: block;
    clear		: both;
    height		: 1px;
    overflow	: hidden;
	}

/*\*/
* html .ui-tabs-panel{
    height		: 1em;
    overflow	: visible;
    }
/**/

/* 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;
}

#ui-tab{
	margin-bottom: 20px;
	}
	
/* tabs
============================================== */
#tab_01{
	border-top	: 5px solid #30ABE2;
	}
	
#tab_02{
	border-top	: 5px solid #84AF43;
	}
	
#tab_03{
	border-top	: 5px solid #E95596;
	}
	
.tabmore{
	margin		: 5px 0;
	}