ul.tabs {
		margin: 0;
		padding: 0;
        margin-top: 10px;
		float: left;
		list-style: none;
		height: 32px;
		border-bottom: 1px solid #330000;
     }
	ul.tabs li {
        border-radius: 10px 10px 0px 0px;
        -moz-border-radius: 10px 10px 0px 0px;
        -khtml-border-radius: 10px 10px 0px 0px;
        -webkit-border-radius: 10px 10px 0px 0px;
        transition: background, color 0.5s ease-out;
        -moz-transition: background, color 0.5s, ease-out;
        -webkit-transition: background, color 0.5s, ease-out;
        -o-transition: background, color 0.5s, ease-out;
		float: left;
		margin: 0;
		cursor: pointer;
        padding: 3px 5px ;
		height: 31px;
		line-height: 31px;
		border: 1px solid #330000;
		border-left: 1px solid #330000;
        font-family: Arial, Helvetica, Tahoma, Verdana, sans-serif;
        font-size: 11px;
		font-weight: bold;
		background: #663300;
		overflow: hidden;
		position: relative;

	}
	ul.tabs li:hover {
		background: #330000;
        color: #666666;
	}
	ul.tabs li.active{
		background: #FFFFFF;
		border-bottom: 0px solid #FFFFFF;
        position: relative;
        height: 26px;
        top: 5px;

	}
	.tab_container {
		border: 1px solid #330000;
		border-top: none;
		clear: both;
		float: left;
		width: 700px;
		background: #FFFFFF;
	}
	.tab_content {
		padding-top: 20px;
        padding-bottom: 21px;
        padding-left: 20px;
        padding-right: 20px;
		display: none;
        font-family: Arial, Verdana;
        font-size: 14px;
        text-decoration: none;
        font-weight: none;
        color: #000000;
        text-align: left;
        /* border-top: 1px solid #330000; */
	}
