@charset "utf-8";
/* CSS Document */

body {
    font-family:Tahoma, Geneva, sans-serif;
    font-size:12px;
    color:#333;
}

a {
    color:#666;
}

.button {
    display:inline-block;
    line-height:2.5em; /*  Esto es un comentario */
    padding:0 1.8em;
    text-decoration:none;
    color:#FFF;
    border: 1px solid #999;/* IE */
    border: rgba(0, 0, 0, .2) 1px solid;/* Saf4+, Chrome, FF3.6 */
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 1px 1px 3px 0px rgba(60, 60, 60, 0.5);
    -moz-box-shadow: 1px 1px 3px 0px rgba(60, 60, 60, 0.5);
    box-shadow: 1px 1px 3px 0px rgba(60, 60, 60, 0.5);
    text-shadow: 1px 1px 1px rgba(60, 60, 60, 0.7);
    filter: dropshadow(color=#000, offx=0, offy=1);
    background-repeat:no-repeat;
    
    background-image: -moz-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.3)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
    background-image: -o-linear-gradient(top, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0) 100%); /* Opera11.10+ */
    background-image: -ms-linear-gradient(top, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
    background-image: linear-gradient(top, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0) 100%); /* W3C */
    -webkit-transition:0.2s linear all;
    -moz-transition: 0.2s linear all;
    -o-transition: 0.2s linear all;
    transition: 0.2s linear all;
}
.button:hover {
    border: 1px solid #999;/* IE */
    border: rgba(0, 0, 0, .4) 1px solid;/* Saf4+, Chrome, FF3.6 */
    background-position:0 -3em;
}

.small.button{
    font-size:11px;
}

.medium.button{
    font-size:14px;
}
.big.button{
    font-size:16px;
    padding:0 2.2em;
}

.black.button{
    background-color: #000000;
}
.gray.button{
    background-color: #666666;
}
.gray-light.button{
    background-color: #aaaaaa;
}
.red.button{
    background-color: #e62727;
}
.orange.button{
    background-color: #ff5c00;
}
.magenta.button{
    background-color: #A9014B;
}
.yellow.button{
    background-color: #ffb515;
}
.blue.button{
    background-color: #00ADEE;
}
.pink.button {
    background-color: #e22092;
}
.green.button {
    background-color: #91bd09;
}
.rosy.button {
    background-color: #F16C7C;
}
.brown.button {
    background-color: #804000;
}
.purple.button {
    background-color: #800080;
}
.cyan.button {
    background-color: #46C7C7;
}
.gold.button {
    background-color: #D4A017;
}
