html,body{
      margin:0;
      padding:0;
      line-height: 1.5em;
      font-family:Arial,sans-serif;    
      font-size: 100%;
    }
    b{font-size: 110%;}
    em{color: red;}
    H1{
      color: black;
      font-family:Arial,sans-serif;
      font-size: 180%;    
    }
    H2{
      color: black;
      font-family:Arial,sans-serif;
      font-size: 170%;  
    }
    H3{
      color: black;
      font-family:Arial,sans-serif;
      font-size: 160%;  
    }
    #maincontainer{
      width: 1800px;   /*Width of main container*/
      margin: 0 auto; /*Center container on page*/
      padding:0;
    }
    #topsection{
      background: #EAEAEA;
      height: 55px; /*Height of top section*/
      padding-top: 15px;
    }
    #topsection h1{
      margin: 0;
      padding-top: 15px;
    }
    #userinfo{
      background: #0000AA;
      height: 25px;
      padding: 0;
      margin: 0;
      font-size:15px;
      color:white;
    }
    #contentwrapper{
      float: left;
      width: 100%;
    }
    #contentcolumn{
      margin-left: 200px; /*Set left margin to LeftColumnWidth*/
    }
    #leftcolumn{
      float: left;
      width: 200px; /*Width of left column*/
      margin-left: -1800px; /*Set left margin to -(MainContainerWidth)*/
      background: #C8FC98;
    }
    #footer{
      clear: left;
      width: 100%;
      background: black;
      color: #FFF;
      text-align: center;
      padding: 4px 0;
    }
    #footer a{
      color: #FFFF80;
    }
    .innertube{
      margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/
      margin-top: 0;
    }
/* Menu */
    .suckerdiv ul{
      margin: 0;
      padding: 0;
      list-style-type: none;
      width: 180px; /* Width of Menu Items */
      border-bottom: 1px solid #ccc;
      background: #fff;
      font-family:Arial,sans-serif; 
      font-size: 100%;
      /* overflow: hidden; *//*force hasLayout in IE7 */
      /*scroll:yes;*/
    } 
    .suckerdiv ul li{
      position: relative;
    } 
    /*Sub level menu items */
    .suckerdiv ul li ul{
     &nbsp;position: absolute;
      width: 180px; /*sub menu width*/
      top: 0;
      visibility: hidden;
      font-family:Arial,sans-serif; 
      font-size: 100%;
      /*overflow: hidden; *//*force hasLayout in IE7 */
      /*scroll:yes;*/
    }
    /* Sub level menu links style */
    .suckerdiv ul li a{
      display: block;
      color: black;
      text-decoration: none;
      background: #fff;
      padding: 3px 5px;
      border: 1px solid #ccc;
      border-bottom: 0;
      font-family:Arial,sans-serif; 
      font-size: 100%;
      overflow: hidden; /*force hasLayout in IE7 */
      /*scroll:yes;*/
    }
    .suckerdiv ul li a:visited{
      color: black;
    }
    .suckerdiv ul li a:hover{
      background-color: yellow;
    }
    .suckerdiv .subfolderstyle{
      background: url(arrow-list.gif) no-repeat center right;
    } 
    /* Holly Hack for IE \*/
 /*   html .suckerdiv ul li { float: left; height: 10%; }*/
 /*   html .suckerdiv ul li a { height: 10%; }*/
    /* End */