@charset "utf-8";

	
    /* CSS Document */
          
    /* CSS that controls how the quick navigation bar looks and how it works*/
    ul.makeQuickMenu, ul.makeQuickMenu ul{          
    width:150px;                 /* sets the size of the menu blocks */        
    padding-left:0px;           /* stops the usual indent from ul */
    margin-left:0px;            /* Opera 7 final's margin and margin-box model cause problems */        
    float:left;
    font-family:Helvetica, Verdana, Arial, sans-serif;  
    list-style-type:none; 
    list-style-image:none;    
    z-index:150;
    }
    ul.makeQuickMenu li{        
    margin:0px;                 /* Opera 7 puts large spacings between li elements */
    position:relative;          /* makes the menu blocks be positioned relative to their parent menu item the lack of offset makes these appear normal, but it will make a difference to the absolutely positioned child blocks */          
    color:#550D8A;	        
    font-size:12px;    
    width:150px;
    list-style-type:none; 
    list-style-image:none; 
    }
    ul.makeQuickMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
    display:none;               /* hides child menu blocks - one of the most important declarations */        
    position:absolute;          /* make child blocks hover without leaving space for them */
    top:-2px;                    /* position slightly lower than the parent menu item */
    left:150px;                  /* this must not be more than the width of the parent block, or the mouse will
                                    have to move off the element to move between blocks, and the menu will close */
    width:150px; 
    }
    ul.makeQuickMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
    display: block;              /* specially to go with the className changes in the behaviour file */
    }
    ul.makeQuickMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                    the > targets only the child ul, not any child uls of that child ul */
    display: block;              /* makes the child block visible - one of the most important declarations */
    
    }
    ul.makeQuickMenu li:hover, ul.makeQuickMenu li.CSStoHighlightQuick {
    /*background:#fff;*/
    }
    ul.makeQuickMenu li a li a{ 
    color:#550D8A; 
    display:block; 
    text-decoration:none;       
    }
    ul.makeQuickMenu li a:hover, ul.makeMenu li a.CSStoHighLink{
    text-decoration:none; 
    color:#550D8A;       
    }
    ul.makeQuickMenu li:hover > a { 
    color:#550D8A; 
    }
    #first-level-padding{
    margin-top:22px;
    margin-left:-150px;
    background-color:#FFF;
    width:150px; 
    padding-left:10px;
    }
    #first-level{
    margin-left:-150px;
    background-color:#FFF;
    width:150px;
    padding-left:10px;
    }
    .center{
    text-align:center;
    }
