/* width of menu is set by going to home page

   click edit home properties and change dropmenuWidth

   if there is no value there, it will be 160 px wide

*/


#dropmenudiv {

  /* you can change these properties */

  background: #ffffff;
  background-repeat: repeat-x;
  background-position: top left;
  border: 1px solid #B9BABE;
  border-bottom: none;
  padding: 0px 0px 0px;
  font-size: 11px;


  /* control width here - overridden in dropmenu.jsp */

  width: 200px!important;
  position: absolute;
  z-index: 100;

}

#dropmenudiv a {

  /* you can change these properties */

  color: #1D2F47;
  padding: 5px;
  border-bottom: 1px solid #B9BABE;
  background-color: #FFFFFF;
  text-decoration: none;
  /* please don't mess */

  display: block;
  cursor:  pointer;


}

#dropmenudiv a:hover {

  /* you can change these properties */

  color: #1D2F47;
  background-color: #DFE5E3;
  border-bottom: 1px solid #B9BABE;
  cursor:  pointer;
  text-decoration: none;
}


