﻿ul.simplegmenu, ul.simplegmenu ul {
  width: 145px;                 /* sets the size of the menu blocks */
  /*border: 1px solid #FFF;*/      /* puts a black border around the menu blocks */
border : none;
  background-color:#FFF;/* transparent;*//*#FFF;*/ /*#8aa;*/      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  font-size:13px;
  font-weight:bold;
 /* padding:6px;*/
  /*width:150px;*/
  z-index:7000;
color:#000;
  
}
ul.simplegmenu li {
  list-style-type: none;       /* removes the bullet points */
  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: #000;                 /* sets the default font colour to white */
  background-color:transparent;/*#c1d2ee;*/
  height:15px;
  padding:6px;
    border: none;/*1px solid #FFF;      *//* puts a black border around the menu blocks */

  
}
ul.simplegmenu li >ul li
{
position:relative;
}
ul.simplegmenu 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 */
right:142px;  /*left: 142px;                 */ /* this must not be more than the width of the parent block, or the mouse will
padding-left:8px;
                                  have to move off the element to move between blocks, and the menu will close */
}
ul.simplegmenu li:hover, ul.simplegmenu li.CSStoHighlight {
 /* background-color: #ffa; */     /* gives the active menu items a yellow background */
  color: #FFF;                 /* makes the active menu item text black */ 
}
ul.simplegmenu 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.simplegmenu 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 */
}
/* and some link styles */
ul.simplegmenu li a { color: #000; display: block; width: 100%; text-decoration: none; }
ul.simplegmenu li a:hover,ul.simplegmenu li a:link,ul.simplegmenu li a:visited, ul.simplegmenu li a.CSStoHighLink { color: #000; }
ul.simplegmenu li:hover > a { color: #000; } /* supports links in branch headings - should not be display: block; */
#main ul.simplegmenu li a:hover,#main ul.simplegmenu li a:link,#main ul.simplegmenu li a:visited,#main ul.simplegmenu li a.CSStoHighLink { color: #000; }


.simplegmenuContainer
{
    position:fixed;
    right:0px;
    top:30%;
}
.simplegmenu
{
    display:none;
    float:left;
    background-color:#9f9f9f;
    color:#000;
}
