/* Drop Down*/

 
  

  /* Set look and feel of main nav */

  .nav {
    margin-left:0px; /* Adjust for centering */
    display: inline-block;
    cursor:pointer;
  }



  /* spacing between links */

  .nav a,.nav li {
      display: block;
      margin: 0;
      padding: 0px 29px; /* vspace | hspace between links */
      text-decoration: none;
  }





  .nav .current a, .nav li:hover > a {
    color:#fff;
  }



  /* set menu look on initial rollover*/

  .nav ul {
      background: repeat-x scroll 0 0 #fff /* rollover  submenu box color*/;
      display: none;
      left: 0px; /* Left offset of submenu box */
      margin: 0;
      padding: 0;
      position: absolute;
      top: 25px; /* vertical offset of menu items !! Match Height Of Header then subtract 1px*/
      width: 220px;/* width of submenu box item */
      /* border:1px solid #aaa; */
      text-transform:none !important;
      opacity:1;
      filter:alpha(opacity=100);
      -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
      -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
      box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);

  }



  .nav ul a{
    font-size:12pt;
    line-height:20px;
    padding-top:5px;
    padding-bottom:5px;
    text-transform:none !important;
    font-family: 'Open Sans', sans-serif;
    color:#555;
    font-weight:600;
  }



  /* set item roll over */

  .nav ul a:hover {
      border-radius: 0 0 0 0;
      margin-left: 0;
      padding-bottom:0px;
      font-weight:600;
      color: #fff !important; /* Text color of highlighted roll over sublink*/
      background-color:#4565ba;
      line-height:20px;
      padding-top:5px;
      padding-bottom:5px;
  }


  

  /* Font Size Of SubMenu Items */

  .nav li:hover > ul {
      display: block;
      text-align:left;
  }



  .nav li {

      float: left;
      list-style: none outside none;
      margin: 0 0;
      padding: 0 0 0px;
      position: relative; 
  }

  



  

  .nav ul li {

      margin: 0;
      padding: 0;
      width:220px;
      border-bottom:1px solid #eee;

  }

  .nav ul li:last-child{
    border-bottom:none;
  }

  

  .nav ul ul {

      left: 220px;
      top: 0px;
      width: 220px;

  }



  .nav ul li:first-child > a {

      border-top-left-radius: 0px;

      border-top-right-radius: 0px;

      

  }

  

  .nav ul li:last-child > a {

      border-bottom-left-radius: 0px;

      border-bottom-right-radius: 0px;

  }

  

  .nav:after {

      clear: both;

      content: ".";

      display: block;

      height: 0;

      line-height: 0;

      visibility: hidden;

  }



  

  /* End Dropdown */ 

