@charset "utf-8";
/* CSS Document */ 

/***BUTTONS***/

a.orangebutton{
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
}

a.orangebutton-old{
	background:#ff9900;
	width:800px;
	padding:8px;
	border-radius:8px;
	color:#fff; 
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9900), to(#eb8047));
    background-image: -webkit-linear-gradient(top, #ff9900, #eb8047); 
    background-image:    -moz-linear-gradient(top, #ff9900, #eb8047);
    background-image:     -ms-linear-gradient(top, #ff9900, #eb8047);
    background-image:      -o-linear-gradient(top, #ff9900, #eb8047);
	-moz-box-shadow:    2px 2px 4px #888;
	-webkit-box-shadow: 2px 2px 4px #888;
	box-shadow:         2px 2px 4px #888;
}
a.orangebutton:hover{
	color:#fff;
	background:#ffb400;
}
a.orangebutton:active{
	-moz-box-shadow:    inset 0 0 10px #000000;
   	-webkit-box-shadow: inset 0 0 10px #000000;
   	box-shadow:         inset 0 0 10px #000000;
}
a.bluebutton{
	background:#0077de;
	padding:8px;
	border-radius:8px;
	color:#fff; 
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0077de), to(#0D65A6));
    background-image: -webkit-linear-gradient(top, #0077de, #0D65A6); 
    background-image:    -moz-linear-gradient(top, #0077de, #0D65A6);
    background-image:     -ms-linear-gradient(top, #0077de, #0D65A6);
    background-image:      -o-linear-gradient(top, #0077de, #0D65A6);
	-webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
    -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
    box-shadow: rgba(0,0,0,1) 0 1px 0;
}
a.bluebutton:hover{
	color:#fff;
	background:#0D65A6;
}
a.bluebutton:active{
	-moz-box-shadow:    inset 0 0 10px #000000;
   	-webkit-box-shadow: inset 0 0 10px #000000;
   	box-shadow:         inset 0 0 10px #000000;
}
