@charset "utf-8";
/*	--------------------------------------------------
	Buttons
	-------------------------------------------------- */
.button {
	background: #00a6fc;
	display: inline-block;
	text-align: center;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	line-height: 1;
	font-family: "Helvetica Neue", "Helvetica", Arial, Verdana, sans-serif;
	cursor: pointer;
	border: none;
	outline: none;
	margin: 0;
	padding-top: 5px;
	padding-right: 34px;
	padding-bottom: 5px;
	padding-left: 34px;
}

.button a:link, .button a:hover, .button a:visited, .button a:focus, .button a:active,
a .button:link, a .button:hover, a .button:visited, a .button:focus, a .button:active  {
	text-decoration: none !important;
}

/* Don't use native buttons on iOS */
input[type=submit].button, button.button { -webkit-appearance: none; }

/* Hide inner focus effect in Firefox */
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;
}

.button.nice { 
	background: #00a6fc url(../images/misc/button-gloss.png) repeat-x 0 -31px;
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
	text-shadow: 0 -1px 1px rgba(0,0,0,0.28);
	background: #00a6fc url(../images/misc/button-gloss.png) repeat-x 0 -31px, -moz-linear-gradient(top, rgba(255,255,255,.4) 0%, transparent 100%);
	background: #00a6fc url(../images/misc/button-gloss.png) repeat-x 0 -31px, -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.4)), color-stop(100%,transparent));
	border: 1px solid #0593dc;
	-webkit-transition: background-color .15s ease-in-out;
	-moz-transition: background-color .15s ease-in-out;
	-o-transition: background-color .15s ease-in-out;
}

.button.radius {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.button.round {
	-moz-border-radius: 1000px;
	-webkit-border-radius: 1000px;
	border-radius: 1000px;
}

.button.full-width {
	width: 100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
	text-align: center;
}

.button.left-align {
	text-align: left;
	text-indent: 12px;
}

/* Sizes ---------- */
.tiny.button			{ font-size: 10px; padding: 6px 8px 7px; width: auto; }
.small.button 			{ font-size: 11px; padding: 6px 15px 6px; width: auto; }
.medium.button 			{ font-size: 15px; padding: 8px 34px 9px; }
.large.button 			{ font-size: 18px; padding: 11px 48px 13px; width: auto; }
.xlarge.button 			{ font-size: 21px; padding: 11px 48px 13px; width: auto; }
.xxlarge.button 		{ font-size: 24px; padding: 11px 48px 13px; width: auto; }

/* Nice Sizes ---------- */
.nice.tiny.button 		{ background-position: 0 -37px; }
.nice.small.button 		{ background-position: 0 -34px; }
.nice.large.button 		{ background-position: 0 -30px; }

/* Colors ---------- */
.blue.button			{ background-color: #00539F; color: #FFFFFF !important; }
.red.button				{ background-color: #e91c21; color: #FFFFFF !important; }
.white.button			{ background-color: #FFFFFF; color: #333 !important; }
.gray.button			{ background-color: #DDDDDD; color: #333 !important; }
.black.button			{ background-color: #141414; color: #FFFFFF !important; }
.darkred.button			{ background-color: #CC0000; color: #FFFFFF !important; }
.darkblue.button		{ background-color: #2F56A4; color: #FFFFFF !important; } 
.lightblue.button		{ background-color: #8EABD5; color: #FFFFFF !important; } 
.mediumblue.button		{ background-color: #628BC5; color: #FFFFFF !important; } 

.green.button			{ background-color: #598F23; color: #FFFFFF !important; }
.green2.button			{ background-color: #427630; color: #FFFFFF !important; }
.orange.button			{ background-color: #FBA300; color: #FFFFFF !important; } 
.orange2.button			{ background-color: #DD8F00; color: #FFFFFF !important; }

/* Nice Colors ---------- */
.nice.blue.button		{ border: 1px solid #0593dc; }
.nice.red.button		{ border: 1px solid #b90b0b; }
.nice.white.button		{ border: 1px solid #EFEFEF; text-shadow: none !important; }
.nice.gray.button		{ border: 1px solid #DDDDDD; text-shadow: none !important; }
.nice.black.button		{ border: 1px solid #000; background-color:#333; }
.nice.darkred.button	{ border: 1px solid #b90b0b; }
.nice.darkblue.button	{ border: 1px solid #1D4699; }
.nice.lightblue.button		{ border: 1px solid #628BC5; } 
.nice.mediumblue.button		{ border: 1px solid #4372B5; } 

.nice.green.button		{ border: 1px solid #427630; }
.nice.green2.button		{ border: 1px solid #3A692A; }
.nice.orange.button		{ border: 1px solid #E39300; }
.nice.orange2.button	{ border: 1px solid #C68000; }

/* Hovers ---------- */
.button:hover, .button:focus 					{ background-color: #0192dd; color: #fff !important; }
.blue.button:hover, .blue.button:focus			{ background-color: #263C73; color: #fff !important; }
.red.button:hover, .red.button:focus 			{ background-color: #d01217; color: #fff !important; }
.white.button:hover, .white.button:focus		{ background-color: #dadada; color: #333 !important; }
.gray.button:hover, .gray.button:focus			{ background-color: #e9e9e9; color: #333 !important; }
.black.button:hover, .black.button:focus		{ background-color: #000; color: #fff !important; }
.darkred.button:hover, .darkred.button:focus 	{ background-color: #990000; color: #fff !important; }
.darkblue.button:hover, .darkblue.button:focus 	{ background-color: #3765C1; color: #fff !important; }
.lightblue.button:hover, .lightblue.button:focus		{ background-color: hsla(215,60%,70%,1.00); color: #FFFFFF !important; } 
.mediumblue.button:hover,  .mediumblue.button:focus		{ background-color: hsla(215,60%,58%,1.00); color: #FFFFFF !important; } 

.green.button:hover, .green.button:focus		{ background-color: #65A328; color: #fff !important; }	
.green2.button:hover, .green.button:focus		{ background-color: #4F8E3A; color: #fff !important; }	
.orange.button:hover, .orange.button:focus 		{ background-color: #FFB223; color: #fff !important; }
.orange2.button:hover, .orange2.button:focus 	{ background-color: #ED9900; color: #fff !important; }

/* Hovers ---------- */
.nice.button:active 	{ 
	-moz-box-shadow: inset 0 1px 0 rgba(0,0,0,.15);
	-webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,.15);
	box-shadow: inset 0 1px 0 rgba(0,0,0,.15);
}
.button:active, .button:focus {
	border: none;
	outline: none;
}
/* Disabled ---------- */
.button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover { 
	cursor: default; 
	background-color: #dadada; 
	color: #999 !important; 
	border: 1px solid #999; 
	text-shadow: none; 
	/* opacity: 0.6; */
} 

/* Correct FF button padding */
@-moz-document url-prefix("http://") {
	input[type=submit].button::-moz-focus-inner, button.button::-moz-focus-inner { border: 0; padding: 0; }
	input[type=submit].tiny.button		{ padding: 5px 14px 7px; }
	input[type=submit].small.button		{ padding: 7px 20px 8px; }
	input[type=submit].medium.button	{ padding: 8px 34px 9px; }
	input[type=submit].large.button		{ padding: 9px 48px 10px; }
}