@charset "utf-8";
/* CSS Document media=all this is for the html validator*/
    #tabmenu ul {
		list-style: none;
		padding: 0;
		margin: 0;
    }

	#tabmenu li {
		float: left;
		border: 1px solid #bbb;
		border-bottom-width: 0;
		margin: 0;
    }

	#tabmenu a {
		text-decoration: none;
		display: block;
		padding: 0.24em 1em;
		color: #000000;
		text-align: center;
		width:100px;
		height:20px;
	  }

	#tabmenu a:hover {
		background: #197bc4;
	}

	#tabmenu .selected {
		border-color: black;
	}

	#tabmenu .selected a {
		position: relative;
		top: 1px;
		background: white;
		color: black;
		font-weight: bold;
	}
	#tabmenu .unselected {
		position: relative;
		top: 1px;
		background: #ddf;
		color: black;
		font-weight: normal;
	}


