/*----------LINKS-----------*/
.btn1 a { 
width: 230px; 
padding: 4px 20px 4px 20px; 
font-family: Arial; 
font-size: 14px; 
text-decoration: none; color: #000000; 
text-shadow: -1px -1px 2px silver; 
background: -webkit-linear-gradient(silver, white);
background: -moz-linear-gradient(silver, white);
background: -o-linear-gradient(silver, white);
border: 1px solid #424242; 
border-radius: 3px; -moz-border-radius: 3px; 
-webkit-border-radius: 3px; 
}
.btn1 a:hover { 
text-decoration: none; color: #ffffff; 
text-shadow: -1px -1px 2px silver; 
background: -webkit-linear-gradient(orange, brown);
background: -moz-linear-gradient(orange, brown);
background: -o-linear-gradient(orange, brown);
border: 1px solid #424242; 
}

.btn2 a { 
text-align:center;
width: 250px; 
padding: 4px 20px 4px 20px; 
font-family: Arial; 
font-size: 14px; 
text-decoration: none; color: #ffffff; 
box-shadow: 1px 2px 5px #424242; 
background: -webkit-linear-gradient(#DF7401, #FACC2E);
background: -moz-linear-gradient(orange, yellow);
background: -o-linear-gradient(orange, yellow);
border: 1px solid #FE2E2E; 
border-radius: 3px; -moz-border-radius: 3px; 
-webkit-border-radius: 5px; 
}
.btn2 a:hover { 
text-decoration: none; color: #000000; 
background: -webkit-linear-gradient(white, silver);
background: -moz-linear-gradient(silver, white);
background: -o-linear-gradient(silver, white);
border: 1px solid black; 
}




/* --------------- BOTONES --------------- */

.boton, .boton:visited { /* botones genéricos */
padding: 5px 10px 6px;
color: black;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
border-top: 0px;
border-left: 0px;
border-right: 0px;
border-bottom: 1px solid rgba(0,0,0,0.25);
border-radius:5px;
position: relative;
cursor:pointer;
}

button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
border: none;
}

.boton:hover { /* el efecto de hover */
background-color: #111
color: #FFF;
}

.boton:active{ /* el efecto del click */
top: 1px;
}

.mediano.boton, .mediano.boton:visited {
font-size: 14px ;
}

.naranja.boton, .naranja.boton:visited { 
background-color:#FFFF99; }
.naranja.boton:hover{ 
background-color: #D45500; }