/* Caution! Ensure accessibility in print and other media types... */
/* Hide useless elements in print layouts... */
@media print {
    ul.tabNavigation {
        display: none;
    }
}

/* Skin */
ul.tabNavigation {
    /*font-family: "Trebuchet MS", Trebuchet, Verdana, Helvetica, Arial, sans-serif;
    font-size: 12px;*/
}
ul.tabNavigation {
    list-style: none;
    margin: 0;
    padding: 0 0 0 4px;
}
ul.tabNavigation:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
ul.tabNavigation li {
    float: left;
    margin: 0 0 0 1px;
    min-width: 84px; /* be nice to Opera */
}
ul.tabNavigation a, ul.tabNavigation a span {
    display: block;
    padding: 0 10px;
    background: url(../js/images/tab.png) no-repeat;
	line-height: 		100%;
	margin:				0;
}
ul.tabNavigation a {
    margin: 1px 0 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    color: #000;
    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.tabNavigation a.selected {
    position: relative;
    top: 1px;
    z-index: 2;
    margin-top: 0;
    color: #006600;
}
ul.tabNavigation a span {
    width: 64px; /* IE 6 treats width as min-width */
    min-width: 64px;
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-top: 6px;
    padding-right: 0;
}
*>ul.tabNavigation a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
ul.tabNavigation a.selected span {
    padding-bottom: 1px;
}
ul.tabNavigation a.selected, ul.tabNavigation a:hover, ul.tabNavigation a:focus, ul.tabNavigation a:active {
    background-position: 100% -150px;
}
ul.tabNavigation a {
    background-position: 100% -100px;
}
ul.tabNavigation a.selected span, ul.tabNavigation a:hover span, ul.tabNavigation a:focus span, ul.tabNavigation a:active span {
    background-position: 0 -50px;
}
ul.tabNavigation a span {
    background-position: 0 0;
}
ul.tabNavigation a.selected:link, ul.tabNavigation a.selected:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
ul.tabNavigation a:hover, ul.tabNavigation a:focus, ul.tabNavigation a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}

/* Additional IE specific bug fixes... */
* html ul.tabNavigation { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html ul.tabNavigation  { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}



#first, #second {
	background-color:	#FFFFFF;
	border-top:			#CCCCCC 1px dashed;
	padding-top:		15px;		
}*/