<style type="text/css" media="screen">{  }
/* This code and the JavaScript show() function and the menu definitions in the HTML were all taken
   from the Alsacreations webside at: http://tutorials.alsacreations.com/deroulant
*/
body {
    margin: 0;
    padding: 0;
    background: white;
    font-family: "High Tower Text", cursive
    font: 80% "High Tower Text", verdana, arial, sans-serif;
}
dl, dt, dd, ul, li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#menu {
    position: absolute; /* Menu position that can be changed at will */
    top: 0;
    left: 0;
    z-index:100;
    width: 100%; /* precision for Opera */
}
#menu dl {
    float: left;
    /* width: 12em; */
    width: 16.62%; /* IE 6 on WIN2K failed on 20% (the number of dl items divided into 100) so had to fudge this */
}
#menu dt {
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    font-style: italic;
    /* font-size: medium; */
    font-size: 15pt;
    background: #ccc;
    font-family: "High Tower Text", cursive
    /* border: 1px solid gray; */
    margin: 1px;
}
#menu dd {
    display: none;
    border: 1px solid gray;
}
#menu dt:hover, dd:hover {
    background: #eee;
}
#menu li {
    text-align: center;
    background: #fff;
    font-family: "High Tower Text", cursive
    font-weight: bold;
    font-style: italic;
    /* font-size: small; */
    font-size: 13pt;
}
#menu li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
    /* font-size: small; */
    font-size: 13pt;
    display: block;
    height: 100%;
    border: 0px none;
}
#menu dt a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
    /* font-size: small; */
    font-size: 15pt;
    display: block;
    height: 100%;
    border: 0px none;
}
#menu li a:hover, #menu li a:focus, #menu dt:hover, #menu dt a:hover, #menu dt a:focus {
    background: #eee;
}
#site {
    position: absolute;
    z-index: 1;
    top : 70px;
    left : 10px;
    color: #000;
    background-color: #ddd;
    padding: 5px;
    border: 1px solid gray; 
}
 -->
</style>