/* root element for tabs  */
ul.tabs {
	margin:0 !important;
	padding:0;
	height: 50px;
    list-style-image: none;
    list-style-type: none;    
}

/* single tab */
ul.tabs li {
	float: left;
	padding: 0;
	margin: 0;
    list-style-image: none !important;
    list-style-type: none !important;
}

/* link inside the tab. uses a background image */
ul.tabs a {
	float:left;
    font-family: arial;
	font-size: .9em;
	display: block;
    height: 50px;
	padding: 5px 20px;
	text-decoration: none;
    background: #fff url(../images/bgTabOn.png) repeat-x;
    border-right: 1px solid #fff;
    border-top: 1px solid #f4f4f4;
	color: #333;
	position:relative;
}

ul.tabs a:hover {
	background-color: #F7F7F7;
	color: #666;
}

/* selected tab */
ul.tabs a.current {
	background: #F5F5DF url(../images/bgGoldUp.png) repeat-x;
	color: #827d35;
    font-size: 1.1em;
    font-weight: bold;
    border-top: none;
	cursor: default;
}

/* tab pane */
.panes {
    height: 800px;
    position: relative;
}

.panes > div {
	display: none;
    width: 755px;
	min-height: 150px;
    background: #F5F5DF url(../images/bgGold.jpg) repeat-x;
    border-bottom: 1px solid #C1BF8E;
    padding: 12px;
    position: absolute;
}

.panes > div.small {
	display: none;
    width: 535px;
	min-height: 150px;
    background: #F5F5DF url(../images/bgGold.jpg) repeat-x;
    border-bottom: 1px solid #C1BF8E;
    padding: 12px;
    position: absolute;
}