/* root element for css-tabs  */
ul.css-tabs {
	list-style:none;
	margin:25px 0px 15px 0px !important;
	padding:0;
}

/* single tab */
ul.css-tabs li {
	float:left;
	text-indent:0;
	padding:0;
	margin:0px 10px 0px 0px !important;
	list-style-image:none !important;
	display: block;
}

/* link inside the tab. uses a background image */
ul.css-tabs a {
	display:block;
	text-indent: -3000px;
	height: 20px;
	background-position: bottom;
	background-repeat: no-repeat;
}

/* when mouse enters the tab move the background image */
ul.css-tabs a:hover {
	background-position: top;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.css-tabs a.current, ul.css-tabs a.current:hover, ul.css-tabs li.current a {
	cursor:default !important;
	background-position: top;
}

/* Different widths for css-tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
ul.css-tabs a.w1 			{ background-position: -519px -0px; width:134px; }
ul.css-tabs a.w1:hover 	{ background-position: -519px -31px; }
ul.css-tabs a.w1.current { background-position: -519px -62px; }

/* width 2 */
ul.css-tabs a.w2 			{ background-position: -366px -0px; width:154px; }
ul.css-tabs a.w2:hover 	{ background-position: -366px -31px; }
ul.css-tabs a.w2.current { background-position: -366px -62px; }


/* width 3 */
ul.css-tabs a.w3 			{ background-position: -193px -0px; width:174px; }
ul.css-tabs a.w3:hover 	{ background-position: -193px -31px; }
ul.css-tabs a.w3.current { background-position: -193px -62px; }

/* width 4 */
ul.css-tabs a.w4 			{ background-position: -0px -0px; width:194px; }
ul.css-tabs a.w4:hover 	{ background-position: -0px -31px; }
ul.css-tabs a.w4.current { background-position: -0px -62px; }
/* initially all panes are hidden */ 
div.css-panes div.css-pane {
	display:none;		
}
.bysean {
	background-image: url(../images/by-sean.gif);
	width: 190px;
}
.bymax {
	background-image: url(../images/by-max.gif);
	width: 187px;
}
.bywill {
	background-image: url(../images/by-will.gif);
	width: 227px;
}
.byluke {
	background-image: url(../images/by-luke.gif);
	width: 201px;
	margin-left: 5px;
}