﻿body 
{
   margin: 0px;
  padding: 0px;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 12px;
  color: #FFFFFF;
  background: #b11e15 url('../Img/bg_patterns.png') repeat;
}

/* menus */

 
 nav
{
  /*display: block;*/
  margin: 0  auto 5px;
  border: 1px solid #222;
  position: relative;
  background: #252525;
 
  width: 900px;

}

nav ul{
   padding: 0;
   margin: 0;
   
}

nav ul:after {
   content: ".";
   display: block;
   height: 0;
   clear: both;
   visibility: hidden;
}

nav li {
   position: relative;
   float: left;
   list-style-type: none;
    
}

nav li a
{
  display: block;
  padding: 10px 20px;
  border-left: 1px solid #999;
  border-right: 1px solid #222;
  color: #FFFFFF;
  text-decoration: none;
}

nav li a:focus {
   outline: none;
   text-decoration: underline;
   
}

nav li:first-child a {
   border-left: none;
}
nav li.ultimo a {
   border-right: none;
}

nav li:hover ul {
   display: block;
   
}

nav a span{
    display: block;
    float: right;
    margin-left: 5px;
}
nav ul ul
{
  display: none;
  width: 100%;
  position: absolute;
  left: 0;
  background: #1D1D1D;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 2px 2px 2px rgba(0,0,0,.8);
}
nav ul ul li{
    float: none;
     border-left:1px solid rgba(0,0,0,0.1);
    border-right: 1px solid rgba(0,0,0,0.1);
}

nav ul li ul li a:hover /* DESPLEGADO AL UBICAR MOUSE */
{
  border-width: 1px;
  border-color: #666666;
  font-size: 8pt;
  color: #BCE2FE !important;
  padding-left: 28px;
  background: url('../Img/arrow.png') no-repeat 15px center !important;
  border-bottom-style: solid;
}
nav ul ul li.ultimo {
    border-left:1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-bottom-left-radius:4px;
    border-bottom-right-radius:4px;
}
nav ul ul a{ /* DESPLEGADO NORMAL */
    padding:  5px 10px;
    border-left: none;
    border-right: none;
    font-size: 8pt;
    border-width: 1px;
  border-color: #666666;
    border-bottom-style: solid;
}
nav ul ul a:hover; {
    background-color: #FBE080;
 
}

