
/* nav menu styles */

#nav { 
  display: block; 
  width: 280px; 
  margin: 0 auto; 
  -webkit-box-shadow: 3px 2px 3px rgba(0,0,0,0.7);
  -moz-box-shadow: 3px 2px 3px rgba(0,0,0,0.7);
  box-shadow: 3px 2px 3px rgba(0,0,0,0.7);
}

ol, ul { list-style: none;margin:0px;padding:0px;-webkit-padding-start: 0px;-webkit-margin-before: 0px;-webkit-margin-after: 0px;-webkit-margin-start: 0px;-webkit-margin-end: 0px;}

#nav li { }

#nav > li > a { 
  display: block; 
  padding: 10px 10px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #33499c;
  background-color: #33499c;
  background: -webkit-gradient(linear, left top, left bottom, from(#33499c), to(#151b4f ));
  background: -webkit-linear-gradient(top, #33499c, #151b4f);
  background: -moz-linear-gradient(top, #33499c, #151b4f);
  background: -ms-linear-gradient(top, #33499c, #151b4f);
  background: -o-linear-gradient(top, #33499c, #151b4f);
  background: linear-gradient(top, #33499c, #151b4f);
}
#nav > li > a:hover, #nav > li > a.open { 
  color: #e9e9e9;
  border-bottom-color: #384f76;
  background-color: #6985b5;
  background: -webkit-gradient(linear, left top, left bottom, from(#6985b5), to(#456397));
  background: -webkit-linear-gradient(top, #6985b5, #456397);
  background: -moz-linear-gradient(top, #6985b5, #456397);
  background: -ms-linear-gradient(top, #6985b5, #456397);
  background: -o-linear-gradient(top, #6985b5, #456397);
  background: linear-gradient(top, #6985b5, #456397);
}

#nav li ul { display: none; background: #4a5b78; }

#nav li ul li a { 
  display: block; 
  background: none;
  padding: 10px 0px;
  padding-left: 30px;
  font-size: 13px;
  text-decoration: none;
  font-weight: bold;
  color: #e3e7f1;
  text-shadow: 1px 1px 0px #000;
}
#nav li ul li a:hover {
  background: #394963;
}