/**
 * Buttons
 */

.btn {
	background-color: #ccc;
	text-transform: uppercase;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	padding: 7px 10px 7px;
}

.btn-primary {
	background-color: #f27d00;
}

.btn-secondary {
	background-color: #333;	
}

.btn-large {
	font-size: 18px;
	line-height: 24px;
	font-family: Calibri, Asap, Candara, "Helvetica Neue", Segoe, "Segoe UI", Optima, Arial, sans-serif;
	padding: 8px 14px 10px;
}

.btn-xlarge {
	font-size: 24px;
	font-family: Calibri, Asap, Candara, "Helvetica Neue", Segoe, "Segoe UI", Optima, Arial, sans-serif;
	padding: 4px 18px 7px;
}

.btn-wide {
	padding-left: 20px;
	padding-right: 20px;
}

.btn:hover {
	background-color: #333;
	color: #fff;
}

.btn-secondary:hover {
	background-color: #000;	
}

.btn.hover-invert:hover {
	background-color: #666;
	color: #fff;
}

.btn-social {
	display: block;
	float: left;
	width: 36px;
	height: 36px;
	background: #333 url(../img/sprite-icons-social-l.png) left top no-repeat;
	background-size: 118px 72px;
	margin: 0 5px 0 0;
}

.btn-close {
    background-color: #666;
    padding: 7px 10px 1px 8px;
    position: absolute;
    top: 0;
    right: 0;
}

.btn-close.btn-large {
    padding: 18px 18px 10px 17px;
}

.btn-close:hover {
    background-color : #f27d00;
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
	
	.btn-social {
		background-image: url(../img/sprite-icons-social.png);
	}

}

.btn-linkedin {

}

.btn-linkedin:hover {
	background-position: left bottom;
	background-color: #2876a1;
}

.btn-facebook {
	background-position: -41px top;
}

.btn-facebook:hover {
	background-position: -41px bottom;
	background-color: #3c5a9d;
}

.btn-twitter {
	background-position: -82px top;
}

.btn-twitter:hover {
	background-position: -82px bottom;
	background-color: #34b0da;
}

.btn.ajax-processed {
    padding-top: 4px;
    padding-bottom: 4px;
}