/**
 * Contact Info Shortcode 
 */
.contact-info-shortcode {
	list-style: none !important;
}
.contact-info-shortcode li {
	position: relative;
	min-height: 33px;
	padding-left: 45px;
	padding-top: 1px;
	margin: 0 0 15px;
}
.contact-info:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 33px;
	height: 33px;
	
	background: url('images/contact-icons-light.png') no-repeat top left;
	
	content: " ";
}
.tabbed-content .contact-info:before {
	height: 34px;
	
	background-image: url('images/contact-icons-dark.png');
}
.street-address,
.city-zip,
.state {
	display: block;
}
.location:before {
	background-position: -50px 0;
}
.telephone:before {
	background-position: -100px 0;
}
.my-mail:before {
	background-position: 0 0;
}

/**
* Target Retina Devices
*/
@media (min--moz-device-pixel-ratio: 1.5),
    (-o-min-device-pixel-ratio: 3/2),
    (-webkit-min-device-pixel-ratio: 1.5),
    (min-device-pixel-ratio: 1.5),
    (min-resolution: 144dpi),
    (min-resolution: 1.5dppx) {
	
	.contact-info:before {
		background-image: url('images/contact-icons-light_@2x.png');	
		background-size: 150px 50px;	
	}
    .tabbed-content .contact-info:before {
		/* Reference the @2x Sprite */
		background-image: url('images/contact-icons-dark_@2x.png');
		/* Translate the @2x sprite's dimensions back to 1x */
		background-size: 150px 50px; 
	}

}
