img.logo {
 height:91px;
 position:absolute;    /* fixed */
 right:10px;
 top:0;
 width:84px;
}

/* Across the Top */
#banner{
 height:100px;
 left:100px;
 position:absolute;    /* fixed */
 right:100px;
 top:0;
}

#banner h5{
 position:absolute;    /* wrt containing block */
 right:0;
 top:0;
}

/* Across Bottom */
#copyright
{
 bottom:0;
 height:20px;
 position:absolute;    /* fixed */
 right:5px;
 width:15em; /* big values cause horizontal scrollbars in IE7 */
}

/* Main Display Area */
#main{/* width:100% causes scrollbars with IE7 */
 height:400px;
 left:100px;
 position:absolute;    /* fixed */
 top:100px;
 width:400px;
 z-index:0;
}

/* Down Left-Hand Side */
#contents{ 
 left:0;
 position:absolute;    /* fixed */
 text-align:center;
 top:100px;
 width:100px;
}

#contents li.section{/* section headings */
 font-size:small;
 font-style:italic;
 font-weight:bold;
 margin-top:1em;
 z-index:-1;
}

ul li ul li{display:inline;}/*get rid of vertical gaps */
ul{
 list-style-type:none;       /* remove all bullets */
 margin-left:0;
 padding-left:0;
}

ul.down{
 left:0;
 top:16px;
 z-index:2;
}

ul.toright{
 top:0;
 left:92px;
}

ul li
{
 position:relative;
 width:90px;
}

ul li ul             /* make submenu hide */
{
 display:none;
 position:absolute; /*prevents reformatting of menu on hover*/
}

/*ul li:hover ul{display:block;}*/

