/* Contains the entire tabbed section */
.tabbed {
	}

/* List of tabs */.tabbed ul.tabs {
	float: left;
	display: inline;
	width: 100%;
	margin: 0;
	padding: 0;
	}
.tabbed ul.tabs li {
	list-style: none;
	float: left;
	margin: 0;
	padding: 0;
	margin-bottom:20px;
	}
.tabbed ul.tabs li a {
	overflow: hidden;
	display: block;
	margin-top: 0;
	margin-right:5px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	background-color:#666;
	background-image:url(../images/tabbg1.gif);
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #C93;
	border-bottom-color: #C93;
	border-left-color: #C93;
	font-weight:bold;
	color:#900;
	}
.tabbed ul.tabs li a:hover {
	color:#000;
	font-weight:bold;
	cursor:pointer;
	background-image:url(../images/tabbg2.gif);
	}

/* The current selected tab */
.tabbed ul.tabs li a.tab-current {
	background-color:#FFF;
	color:#000;
	border:1px solid #C93;
	margin-top:-3px;
	background-image:none;
	padding-bottom:8px;
	border-top:none;
	}

/* The content shown when a tab is selected */
.tabbed div {
	float: left;
	display: block;
	width: 100%;
	margin-top:-2px;
	}

/* Set the CSS to make sure the other tabs' content isn't shown other than the first */
.tabbed div.t2, .tabbed div.t3, .tabbed div.t4, .tabbed div.t5, .tabbed div.t6, .tabbed div.t7, .tabbed div.t8, .tabbed div.t9 {
	display: none;
	margin-top:10px; padding-top:10px; padding-bottom:18px;	
	border-bottom:3px #C93 solid;
	border-top:1px dashed #c93;
	}

.tabbed div.t1	{
	border-top:1px dashed #c93;
	margin-top:10px;
	padding-top:10px;
	padding-bottom:18px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #C93;
}
/* Content for inside your tabs' divs */
.tabbed div ul {
	}
.tabbed div p {
	}
.tabbed div div {
	}
	

