/* =============================================================
	WIDGET CAROUSEL - For modern brosers
 * ============================================================= */

.widget-carousel { overflow: hidden; }

.hide-ie7-9 { display: inline-block; }
	
.first {
	-webkit-animation: carousel 45s linear infinite;
	-moz-animation: carousel 45s linear infinite;
	-ms-animation: carousel 45s linear infinite;
	-o-animation: carousel 45s linear infinite;
	animation: carousel 45s linear infinite;
}

@keyframes carousel {
	from { margin-left: 0; }
	to { margin-left: -50%; }
	}
 
@-moz-keyframes carousel {
	from { margin-left: 0; }
	to { margin-left: -50%; }
	}
	
@-webkit-keyframes carousel {
	from { margin-left: 0; }
	to { margin-left: -50%; }
	}
 
@-ms-keyframes carousel {
	from { margin-left: 0; }
	to { margin-left: -50%; }
	}
 
@-o-keyframes carousel {
	from { margin-left: 0; }
	to { margin-left: -50%; }
	}
