/*
 * tabstrip-default.css
 * Default styling for tabstrips
 * Designed to look like windows-xp tabs
 */

ul.tabstrip {
	border-bottom: 1px #AAA solid;
	padding: 0;
	margin: 0;
	height: 24px;
}

ul.tabstrip li {
	float: left;
	list-style: none;			
	text-align: center;
	background: url(tabstrip/norm.png) left top no-repeat;
	height: 20px;
	width : 70px;
	margin: 4px 2px;
	cursor: pointer;
}

ul.tabstrip li a {
	line-height: 20px;
}

ul.tabstrip li.over {
	background-image: url(tabstrip/over.png);
}


ul.tabstrip li.current, ul.tabstrip li.sel {
	background-image: url(tabstrip/sel.png);
	height: 25px;
	width : 74px;
	margin: 0px 0px -1px 0px;
	top: 1px;
}