@charset "utf-8";
/* CSS Document */
	
	#tabSet {
		 font-family: Segoe UI, Arial, Helvetica, sans-serif	;
		 font-size:12px;
		 margin-top::20px;
	}
    
	#tabSet ul {
		list-style: none;
		padding: 0;
		margin: 0;
    }
    
	#tabSet li {
		float: left;
		border: 1px solid #bbb;
		border-bottom-width: 0;
		margin: 0;
		
    }
    
	#tabSet a {
		text-decoration: none;
		display: block;
		background: #eee;
		padding: 0.24em 1em;
		color: #00c;
		width: 12em;
		text-align: center;
    }
	
	#tabSet a:hover {
		background: #ddf;
	}
	
	#tabSet #selected {
		border-color: black;
	}
	
	#tabSet #selected a {
		position: relative;
		top: 1px;
		background: white;
		color: black;
		font-weight: bold;
	}
	
	#contentForTabs {
		border: 1px solid black;
		clear: both;
		padding: 0 1em 2em;
		
	}
	



