    /**
 * Skyrim-inspired Menu
 */

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300);

#linkmenu1 {
    color: #424242;
    text-decoration: none;
    font-weight: normal;
}

#linkmenu1:hover, #categoriamenu1:hover > a {
    color: white;
    background-color: #034D7F;
    font-weight: bold;
}

#menu1 {
    width: 100%;
    height: 100%;
    float: left;
    font-size: 0.95em;
    min-height: 100%;
}

/*CATEGORIA DEL MENU*/
.categoriamenu1 {
    position: relative;
    
}

/*BOTON DE SUBCATEGORIA*/
.categoriamenu1 ul {
    width: 200px;
    position: absolute;
    overflow: hidden;
    display: none;
    left: 90%;
    top: 20%;
    float: none;
    background-color: white;
    
    border-right: 3px solid #034D7F;
    z-index: 20;
}

.categoriamenu1 a {
    display: block;
    padding: 0.5em 1em;
    white-space: nowrap;
}

.categoriamenu1:hover ul {
    display: block;
    background-color: white;
}

.categoriamenu1 ul a {
    position: relative;
    font-size: 1em;
}

.categoriamenu1 ul a:hover:before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: rgba(0,0,0,0.75);
    border: 1px solid #FFF;
    position: absolute;
    top: 0.5em;
    left: -0.75em;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}