/* 
    Document   : estiloMenu
    Created on : 09/05/2009, 03:18:59 PM
    Author     : LuisMartin
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}

#menuTop {
    width: 100%;
    background: transparent;
    margin-top:5px;
    margin-bottom:5px;
    text-align:center;
    color:blue;
}

#menuTop ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font: bold 11px Arial;
}

#menuTop ul li {
    display: inline;
    text-transform:uppercase;
}

#menuTop ul li a {
    text-decoration: none;
    padding: .2em 1em;
    color: #fff;
    background-color: #6699cc;
    letter-spacing: 1px;
    border-bottom: 3px solid transparent;
}

#menuTop ul li a:hover
{
    color: #fff;
    background-color: #369;
}

#menuTop ul #current a{ /*currently selected tab*/
    background-color: #D25A0B; /* D25A0B Brown color theme*/
    border-color: #D25A0B; /*Brown color theme*/
}

.linea{
clear: both;
padding: 0;
width: 100%;
height: 10px;
line-height: 10px;
background: #D25A0B; /*Brown color theme*/
margin:0;
color: #ffffff;
font-variant: small-caps;
font-weight: bold;
font-style: normal;
font-size: 10px;
font-family: Verdana,Arial,Helvetica,sans-serif;
}

.lineaAbajo{
clear: both;
padding: 0;
width: 100%;
height: 5px;
line-height: 5px;
background: #D25A0B; /*Brown color theme*/
margin:0;

}

#menuBottom{
  height:20px;
  text-align:center;
  font: bold 11px Arial;
  letter-spacing: 1px;
  clear:both;
}

#menuBottom ul {
    list-style-type: none;
    font: normal 11px Arial;
    margin-top: 0px;
    padding: 0px;
}

#menuBottom ul li {
    display: inline;
    text-transform:capitalize;
}

#menuBottom ul li a {

    text-decoration: none;
    padding: .2em;
    color: #fff;
    letter-spacing: 1px;
}

#menuBottom ul li a:hover{
    text-decoration:underline;
}






