﻿/* Credits: Dynamic Drive CSS Library */
/* URL: http://www.dynamicdrive.com/style/ */
a.gaRoundedButton {
    background: transparent url('imagenes/gaRBgris-left.gif') no-repeat top left;
    display: block;
    float: left;
    line-height: 16px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 24px) */
    height: 24px; /* Height of button background height */
    padding-left: 11px; /* Width of left menu image */
    text-decoration : none;
}

a:link.gaRoundedButton, a:visited.gaRoundedButton, a:active.gaRoundedButton{
    color: #292929; /* texto gris oscuro */
}

a.gaRoundedButton span{
    background: transparent url('imagenes/gaRBgris-right.gif') no-repeat top right;
    display: block;
    padding: 4px 11px 4px 0; /*Set 11px below to match value of 'padding-left' value above*/
}

a.gaRoundedButton img {
    float:left;
    margin-right: 5px;
    height: 16px;
}

a.gaRoundedButton:hover{ /* Hover state CSS */
    background-position: bottom left;
}

a.gaRoundedButton:hover span{ /* Hover state CSS */
    background-position: bottom right;
    color: black;
}

.gaRBbuttonwrapper{ /* Container you can use to surround a CSS button to clear float */
    overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
    width: 100%;
}