﻿ul.tabs {
    padding:14px 0 8px;
    margin:0;
    font-size: 0;
    list-style-type: none;
    text-align: center; /*set to left, center, or right to align the tabs as desired*/
	background: #ad0000;
	background: -moz-linear-gradient(top,  #ad0000 0%, #2b0000 100%);
	background: -webkit-linear-gradient(top,  #ad0000 0%,#2b0000 100%);
	background: linear-gradient(to bottom,  #ad0000 0%,#2b0000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ad0000', endColorstr='#2b0000',GradientType=0 );
    /*border:1px solid #CCC;*/
    border-bottom:none;
    border-radius: 15px 15px 0 0;
}        
ul.tabs li {
    display: inline;
    margin: 0;
    margin-right: 2px;/*distance between tabs*/
    font: normal 14px Arial;
	/*font-weight:bold;*/
	/*text-shadow: 1px 1px #000;*/
}        
ul.tabs li a {
    text-decoration: none;
    position: relative;
    padding: 8px 15px;
    color: #fff;
    border-radius: 10px 10px 0 0;
    outline:none;
}
ul.tabs li a:hover {
    /*text-decoration: underline;*/
    color: #fff880;
	/*font-style:italic;*/
}
ul.tabs li.selected a {
    position: relative;
    top: 0px;
    /*font-weight:bold;*/
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.75)));
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
	background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
	background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#bf000000',GradientType=0 );
    /*border: 1px solid #AAA;*/
    /*border-bottom: 1px solid #FFF;*/
    color: #fff880;
}        
ul.tabs li.selected a:hover, ul.tabs li.selected a:hover {
    text-decoration: none;
}
div.tabcontents {
    /*border: 1px solid #CCC;*/
	color:white;
	padding:20px;
    /*border-top-color:#AAA;*/
    border-radius: 0 0 10px 10px;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.8)), color-stop(100%,rgba(0,0,0,0.3))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.3) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.3) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.3) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.3) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc000000', endColorstr='#4d000000',GradientType=0 ); /* IE6-9 */
}