﻿.RSMenu ul {
  text-align: left;
  display: inline;
  margin: 0;
  padding: 10px 0px 2px 0;
  list-style: none;
  /*-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);*/
}
.RSMenu ul li {
    font-family: 'Trebuchet MS';
    font: 13px/8px 'Trebuchet MS';
    font-weight: bold;
    display: inline-block;
    position: relative;
    padding: 8px 8px;
    background: #DFDFD0;
    cursor: pointer;
    border-right: 1px solid white;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; /*border-radius:5px;*/
    border-bottom-right-radius: 10px;
}
.RSMenu ul li:hover {
    background: #CACACA;
    color: green;
    font-size: 12.5px;
    border-bottom-width: thin;
    border-bottom-style: solid;
    border-bottom-color: darkgray;
    border-top-width: thin;
    border-top-style: solid;
    border-top-color: darkgray;
}
.RSMenu ul li ul {
  padding: 0;
  position: absolute;
  /*top: 48px;*/
  left: 0;
  width: 150px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
}
.RSMenu ul li ul li { 
  background: #555; 
  display: block; 
  color: #fff;
  text-shadow: 0 -1px 0 #000;
}
.RSMenu ul li ul li:hover { background: #666; }
.RSMenu ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
}
.PageHeading {
    font-size:18pt;
    color:green;
    font-weight:bold;
    padding-left:8px;
}
.RSMenu ul li a {
    text-decoration: none;
    color:#444040;
}
.RSMenu a:visited{
    text-decoration: none;
    color:blue;
}
.MenuSelect {
    background-color: #d8e5a6;
    color: black;
}
