/* Drop-down created by http://www.cssplay.co.uk/menus/final_drop.html */

/* Set up the default font and ovrall size to include image */
.menu {
font-family: Comic Sans MS; 
width:600px; 
position:relative; 
font-size:0.85em;
padding-bottom:5px;
padding-top:10px;
left:10px;
z-index:2000;
}
/* get rid of the default padding - margin and bullets */
.menu ul {
padding:0; 
margin:0;
list-style-type: none;
}
/* make menu horizontal */
.menu ul li {
float:left;
position:relative;
}
/* set up the default top level links */
.menu ul li a, .menu ul li a:visited {  /*  THE WHITE LINE - MAIN MENU BLOCK  */
text-align:center;
display:block; 
text-decoration:none; 
width:80px; 
height:2.5em; 
cursor:pointer;
padding-left:0px; 
line-height:2.3em;
}
.menu a.mainmenu{
	color:#000000;  /*  COLOR OF THE MAIN MENU non-mouse-over */
	background: #FF9933 url(../tspics/menu-off.gif) bottom center no-repeat; /*  BACKGROUND OF MAIN MENU non-mouse-over */
	border: 1px solid #FF9933;
	border-width:0px 2px 0px 2px;
}
.menu a.mainmenu_active{
	color:#ffffff;  /*  COLOR OF THE MAIN MENU ON-mouse-over */
	background: #FF9933 url(../tspics/menu-on.gif) bottom center no-repeat; /*  BACKGROUND OF MAIN MENU ON-mouse-over */
	border: 1px solid #FF9933;
	border-width:0px 2px 0px 2px;
}

.menu ul li a#menu_selected, .menu ul li a#menu_selected:visited { 
	color:#ffffff;
}

/* hack for IE5.5 to correct the faulty box model */
* html .menu ul li a, .menu ul li a:visited {
width:90px;
w\idth:80px;
}
/* hide the drop down menu */
.menu ul li ul {
display: none;
}
/* remove all table style so that it does not interfere with the menu */
table {
margin:-1px; 
border-collapse:collapse;
font-size:1em;
}

/* first line for IE7 and non-IE browsers, second line for IE5.5 and IE6 */

/* style the top level hover */
.menu ul li:hover a,
.menu ul li a:hover {
color:#fff; /* MAIN MENU MOUSE-OVER TEXT COLOR */
background: url(../tspics/menu-on.gif) bottom center no-repeat;

}
/* make the drop down menu show and correctly position it */
.menu ul li:hover ul,
.menu ul li a:hover ul {   /*  POP-UP GREY BOX UNDER MAIN MENU */ 
display:block; 
position:absolute; 
top:2.4em;
margin-top:1px;
left:-10px; /* POSITION OF POP-UP BOX */
width:150px;
}

* html .menu ul li a:hover ul {
left:-33px; /* for IE */
margin-top:0;
marg\in-top:1px;
}

.menu ul li:hover ul li ul,
.menu ul li a:hover ul li a ul {
/*display: none;*/
visibility:hidden; 
position:absolute; 
height:0; 
width:0;
}

/* style the drop down links with no hover */
.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {
display:block; 
background: url(../tspics/submenu_off.gif) bottom center no-repeat;
color:#b80000;  /* POP-UP MENU TEXT COLOR */
font-weight:normal;
height:auto; 
line-height:1.0em; 
padding:5px 10px; 
width:85px  /* WIDTH OF A POP-UP BOX */
}
* html .menu ul li a:hover ul li a {
width:150px;
w\idth:129px;
}
.menu ul li:hover ul li a.drop,
.menu ul li a:hover ul li a.drop {
background: url(../tspics/menu_on.gif) bottom center no-repeat;
}
/* style the drop down menu links when hovered */
.menu ul li:hover ul li a:hover,
.menu ul li a:hover ul li a:hover {
background: url(../tspics/submenu_on.gif) bottom center no-repeat;
color:#000;
}
.menu ul li:hover ul li:hover ul,
.menu ul li a:hover ul li a:hover ul {
/*display:block; */
visibility:visible;
position:absolute;
left:150px;
top:0;
width:150px;
}
.menu ul li:hover ul li:hover ul.left,
.menu ul li a:hover ul li a:hover ul.left {
left:-150px;
}
