/* ================================================================
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/dropdown-nonIE6.html
Copyright (c) Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any
way to fit your requirements.

New URL:
http://www.cssplay.co.uk/menus/basic-dropdown.html

=================================================================== */

.menu_container {
      /*
      margin:0 auto 300px auto;
      width:750px;
      height:25px;
      */

      margin:20 auto 0 auto;
      width:1062px;
      /* width: 945 (inside table cell) / 8 elements = 118 */
      height:0px;

      position:relative;
      z-index:100;
      }

.menu, .menu ul {
      /*
      padding:0;
      margin:0;
      */

      padding:0;
      margin:0;
      line-height:100%;

      list-style: none;
      position:absolute;
      }

.menu ul {
      /*
      width:150px;
      padding:0 20px 20px 20px;
      */

      width:78px;
      padding:0 20px 20px 20px;
      line-height:100%;

      left:-9999px;
      /* background:url(trans.gif); */
      opacity:0;
      -o-transition: opacity 0.6s ease-in-out;
      -moz-transition: opacity 0.6s ease-in-out;
      -webkit-transition: opacity 0.6s ease-in-out;
      }

.menu ul ul {
      /*
      padding:20px 20px 20px 0;
      */

      line-height:100%;

      padding:20px 0px 20px 0;
      }

.menu a {
      /*
      width:139px;
      padding-left:10px;
      margin:0 -1px -1px 0;
      */

      width:117px;
      padding-left:5px;
      margin:0 -5px -1px 0;
      line-height:100%;

      display:block;
      font:normal bold 12px/24px arial,sans-serif;
      color:#fff;
      text-decoration:none;

      border:1px solid;

      border-top-color:black;
      border-bottom-color:#003334;

      border-left-color:white;
      border-right-color:#003334;

      /* background:#876; */
      background:#003334;
      }

.menu li {
      float:left;

      line-height:100%;
      }

.menu li.fly > a {
      /* background:#876 url(/site/assets/site_images/arrow.gif) no-repeat 130px center; */
      }

/* new from pfb */

.menu li.fly:hover > a {
      /* color:#fc0; */
      color:yellow;
      /* background-color:#655; */
      background-color:#440800;
      }

/* end of new */

.menu li:hover {
      position:relative;
      z-index:100;
      }

.menu li:hover > a {
      /* background-color:#655; */
      background-color:#440800;
      color:white;

      /* border-color:#fc0; */

      /* border-color:white; */

      border-top-color:black;
      border-bottom-color:#003334;
      border-right-color:#003334;
      }

.menu li:hover > ul {
      /*
      top:26px;
      left:-20px;
      */

      top:26px;
      /*left:-20px;*/
      left:-20px;

      z-index:-1;
      opacity:1;
      }

.menu li:hover li:hover > ul {
      /*
      left:145px;
      top:-20px;
      */

      /*left:117px;*/
      left:117px;
      top:-20px;

      z-index:100;
      opacity:1;
      }

.menu li.right:hover li:hover > ul {
      /*
      left:-165px;
      top:-20px;
      padding:20px 0 20px 20px;
      */

      /* left:-133px; */
      left:-133px;
      top:-20px;
      padding:20px 0 20px 20px;

      z-index:100;
      opacity:1;
      }

/* =================================================================== */

