.TM {
	font-size: 55%;
	text-transform: uppercase;
	font-weight: bold;
	float: left;
}
.TM UL {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
/*Top level list items*/
.TM UL LI {
	background-color: #F3F3F3; /*overall menu background color*/
	display: inline;
	float: left;
	position: relative;
}
/*Top level menu link items style*/
.TM UL LI A {
	border: 1px solid #ffffff;
	color: black;
	display: block;
	padding: 1px 8px;
	text-decoration: none;
	width: 100px; /*Width of top level menu link items*/
}
/*1st sub level menu*/
.TM UL LI UL {
	display: block;
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	visibility: hidden;
}
/*Sub level menu list items (undo style from Top level List Items)*/
.TM UL LI UL LI {
	display: list-item;
	float: none;
}
/* Sub level menu links style */
.TM UL LI UL LI A {
	border: 1px solid #ccc;
	color: black;
	display: block;
	padding: 1px 5px;
	text-decoration: none;
	width: 155px; /*width of sub menu levels*/
}
/*All subsequent sub menu levels offset after 1st level sub menu */
.TM UL LI UL LI UL { 
	left: 159px; /* no need to change, as true value set by script */
	top: 0;
}
.TM UL LI A:hover {
	background-color: black;
	color: white;
}
/*Background image for top level menu list links */
.TM .SB {
	background: #F3F3F3 url(../I/M/SB.gif) no-repeat center right;
}
/*Background image for subsequent level menu list links */
.TM .SD {
	background: #F3F3F3 url(../I/M/SD.gif) no-repeat center right;
}
* html P#iepara {
	padding-top: 1em;
}
/* Holly Hack for IE \*/
* html .TM UL LI { 
	float: left;
	height: 1%;
}
* html .TM UL LI A {
	height: 1%;
}
/* End */