        /*  CSS Code navigation.css */
        /*  Description: look and feel of the menus on this website, horizontally and vertically */
        /*  Version: 1.0 */
        /*  All source code & concepts (c) copyright 2008, 2010 by ItNix, LLC. */
        /*  All rights reserved worldwide. */
        /*  Changed by: Ivan Carrazco */


/** By default a menu is displayed vertically */
/*
ul.menu {
  position: relative;
  display: block;
  width: 209px;
  list-style-type: none;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  background-color: #FFFFFF;
  border: none;
  z-index: 1;
}

  ul.menu li {
    float: left;
  }


  ul.menu li, ul.menu li a {
    position: relative;
    display: block;
    width: 209px;
    height: 40px;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    border: none;
}



  ul.menu li a img {
    width: 209px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    border: none;
    margin: 0px;
    padding: 0px;
    display: block;
  }

  ul.menu li a:hover img, ul.menu li:hover a img {
    border-left: 1px solid transparent;
    left: -1px;
    top: -40px;
  }
*/
/** Different version of menu **/


ul.horizontal {
  list-style-type: none;
  width: 100%;
  position: relative;
  display: block;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  border: none;
}

  ul.horizontal li {
    position: relative;
    display: block;;
    float: left;
    width: auto;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 251px;
    height: 52px;
    overflow: hidden;
    font-family: Times, Verdana, Helvetica, Arial;
  }

  ul.horizontal li a {
    display: block;
    text-decoration: none;
    height: 52px;
    color: #FFFFFF;
    font-size: 24px;
    padding: 14px 0px 14px 45px;
    background: transparent url( '../../images/buttons/listimg2.jpg' ) scroll no-repeat;
    background-position: 0px 0px;
  }

  ul.horizontal li img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 42px;
    height: 104px;
  }

  ul.horizontal * a:hover  {
    color: #F7CE4A;
    background-position: 0px -52px;
  }

