/* a collection of buttons */

a.button{
	display: block;
	position: relative;
}

a.download{
	/* inherits from button most of the time */
	width: 230px;
	height: 88px;
	border: 1px solid black;

	border-radius: 4px;
	-moz-border-radius: 4px;
	padding: 5px;
	margin: 10px;

	transition: background 0.5s;
	-moz-transition: background 0.5s;
	-webkit-transition: background 0.5s;
	-o-transition: background 0.5s;
	
	text-decoration: none;
	color: #FAFAFA !important;
	text-align: center;	
}

a.preferred{
	/*display: inline !important;*/
	margin-top: 30px !important;
	margin-left: 75px;
	padding-left: 20px;
	border-color: #254C0B;
	
	background: rgb(140,206,64);
	background: -moz-linear-gradient(top,  rgba(140,206,64,1) 0%, rgba(76,155,23,1) 95%, rgba(52,107,16,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(140,206,64,1)), color-stop(95%,rgba(76,155,23,1)), color-stop(100%,rgba(52,107,16,1)));
	background: -webkit-linear-gradient(top,  rgba(140,206,64,1) 0%,rgba(76,155,23,1) 95%,rgba(52,107,16,1) 100%);
	background: -o-linear-gradient(top,  rgba(140,206,64,1) 0%,rgba(76,155,23,1) 95%,rgba(52,107,16,1) 100%);
	background: -ms-linear-gradient(top,  rgba(140,206,64,1) 0%,rgba(76,155,23,1) 95%,rgba(52,107,16,1) 100%);
	background: linear-gradient(top,  rgba(140,206,64,1) 0%,rgba(76,155,23,1) 95%,rgba(52,107,16,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8cce40', endColorstr='#346b10',GradientType=0 );	
}
a.preferred:hover{
	background: rgb(150,216,69);
	background: -moz-linear-gradient(top,  rgba(150,216,69,1) 0%, rgba(83,165,24,1) 95%, rgba(52,107,16,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(150,216,69,1)), color-stop(95%,rgba(83,165,24,1)), color-stop(100%,rgba(52,107,16,1)));
	background: -webkit-linear-gradient(top,  rgba(150,216,69,1) 0%,rgba(83,165,24,1) 95%,rgba(52,107,16,1) 100%);
	background: -o-linear-gradient(top,  rgba(150,216,69,1) 0%,rgba(83,165,24,1) 95%,rgba(52,107,16,1) 100%);
	background: -ms-linear-gradient(top,  rgba(150,216,69,1) 0%,rgba(83,165,24,1) 95%,rgba(52,107,16,1) 100%);
	background: linear-gradient(top,  rgba(150,216,69,1) 0%,rgba(83,165,24,1) 95%,rgba(52,107,16,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#96d845', endColorstr='#346b10',GradientType=0 );
}
a.preferred:active{
	position: relative;
	top: 2px;
}
a.preferred .large{
	font-size: 190%;
}
a.preferred .small{
	color: #172B06;
	font-size: 110%;
}
a.preferred .spacer{
	height: 20px;
}

a.quick_button{
	font-size: 12px;
	width: 160px;
	height: 60px;
	margin: auto;	

	/* blue */
	background-color: #2C57AC;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7CA4EA, endColorstr=#2153AF);
	                            background: -moz-linear-gradient(top,#7CA4EA,             #2153AF);
	background: -webkit-gradient(linear, left top, left bottom, from(#7CA4EA),         to(#2153AF));	
	/*background-image: url('images/download.png') no-repeat right top;*/	
}

a.quick_button:hover{
	   -moz-box-shadow: 0 0 8px 4px #FFF;
	-webkit-box-shadow: 0 0 8px 4px #FFF;
	        box-shadow: 0 0 8px 4px #FFF;
}

a.quick_button .small{
	color: #0F1E38 !important;
	font-size: 100% !important;
}


a.beta{
	/* orange */
	background-color: #FAB654;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FCD397, endColorstr=#F8A42A);
	                            background: -moz-linear-gradient(top,#F4BD70,             #F79000);
	background: -webkit-gradient(linear, left top, left bottom, from(#FCD397),         to(#F8A42A));	
}

a.beta .large{
	
}

a.beta .small{
	color: #89540F !important;
}

a.portable{
	/* purple */
	background-color: #BD30FF;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CC7AFF, endColorstr=#9D2DE2);
	                            background: -moz-linear-gradient(top,#CC7AFF,             #9D2DE2);
	background: -webkit-gradient(linear, left top, left bottom, from(#CC7AFF),         to(#9D2DE2));	
}

a.portable .large{

}

a.portable .small{
	color: #3F1A56 !important;
}

/* goat on download button */
.button_goat{
	position: absolute;
	top: -21px;
	left: -75px;
}

.spacer{
	height: 180px;
}

/* styling */
.large{
	font-weight: bold;
	font-size: 170%;
}

.italic{
	font-style: italic;
}

.underline{
	text-decoration: underline !important;
}
