/*The basic MENU style */
#tabbedmenustyle{         
    padding: 3px 0;
    margin-left: 0;
    margin-top: 0.1em;
    margin-bottom: 0.1em; 
    font-weight: bolder;
}

/*what a Tab looks like - unselected */
.tab_generic_style {
    z-index: 1; 
    list-style: none;
    display: inline;
    margin: 0px;
    text-decoration: none;
    padding: 4px 0.5em;
    margin-left: 3px;
    border: 1px solid #778;
    border-bottom: 1px solid #778;
    cursor : pointer;
}

/* what a Tab looks like when its selected*/
.tab_generic_style_current {
	z-index: 1;
	list-style: none;
	display: inline;
	margin: 0px;
	text-decoration: none;
	padding: 4px 0.5em;
	margin-left: 3px;
	border: 1px solid #778;
	border-bottom: 0px;
	position: relative; 
    bottom: -2px;
}

/*The style wrapper for the body*/
.tabbedmenu_body{
    border: 1px solid black;
    background-color: white;
    padding: 3px;
}



