
/* navigation.css */

  #main_nav {
    width: 180px;
    /*height: 164px;*/
    height: 168px;
    background: url('../images/nav-bg.png') repeat scroll top left;
    position: absolute;
/*    left: -180px;*/
    left: 0;
    /*bottom: -120px;*/
    bottom: 70px;
  }
  
  #main_nav.open {
    height: 200px;
  }
  
    #hover_selector {
      background: url('../images/main_nav_hover.png') no-repeat scroll top left;
      width: 140px;
      height: 24px;
      position: absolute;
      right: 0;
      top: 7px;
      z-index: 5;
    }
    #main_nav ul {
      margin-top: 7px;
      margin-right: 14px;
      position: absolute;
      right: 0;
      z-index: 10;
      width: 180px;
    }
    #main_nav ul li {
      display: inline;
      float: right;
      clear: right;
    }
    #main_nav ul li a {
      text-align: right;
      width: 140px;
      font-size: 11px;
      height: 26px;
      line-height: 26px;
      display: block;
      color: white;
      text-transform: uppercase;
        text-decoration: none;
    }

    #main_nav ul li.sub {
      background: #fff;
      margin-right: -14px;
      /*margin-left: 14px;*/
      padding-right: 14px;
    }
    
    #main_nav ul li.sub a {
      color: #da9d1a !important;
      /*margin-right: 14px;*/
      width: 126px;
    }
    
    
