/**
 * @file tabs.css 
 */
	.jstabs { text-align: left; }
	.jstabs ul.tabs {
		border-bottom: 1px solid #aaa;
		list-style: none;
		font-family: verdana;
		font-size: 8pt;
		height: 20px;
		margin: 0; padding: 0;
		position: relative;
		}
	.jstabs .tab {
		background: #eee;
		border: 1px #ccc solid;
		display: inline-block;
		height: 18px;
		margin: 0 0 0 3px; padding: 0;
		}
	.jstabs .tab a {
		border-bottom: 2px solid #ddd;
		color: #777;
		cursor: pointer;
		display: block;
		margin: 0; padding: 2px 5px;
		text-decoration: none;
		}
	.jstabs .tab a:hover { color: #000; }
	.jstabs .tab.active {
		background: #fff; 
		border-color: #aaa;
		border-bottom-color: #fff;
		height: 19px;
		}
	.jstabs .tab.active a { border: none; color: #333; }
	.jstabs > .content {
		background: #fff;
		padding: 5px;
		}
