
/*Example for a Menu Style*/
.menu {
	background-color: none;
	border-bottom:dotted 1px #CCCCFF;/*------ border removable ------*/
	height:auto;
	width:670px; /*--- original width: 680px; (minus padding, minus border)---*/
	padding-left: 10px;
	}

.menu ul { /* this is for the 1st level tab */
	margin:0px; 
	padding:0px; 
	list-style:none; 
	text-align:left;
	}
	
.menu li {
	display:inline; 
	line-height:auto;
	}
	
.menu li a {
	text-decoration:none;
	}
	
.menu li a.tabactive { /* mouse over effect for the tabs */
	position:relative;
	background-color: #eeeeee; 
	font-weight:normal; 

	}
	
#tabcontent1,#tabcontent2,#tabcontent3,#tabcontent4,#tabcontent5 {  /* this is the content of the tab */
	border:0px;
	width:670px; /*original width: 680px;*/
	padding-left: 10px;
	text-align:left;
	margin-top:2px;
	}