/**
 * jQuery MotionCAPTCHA Demo CSS
 * josscrowcroft.com/projects/motioncaptcha-jquery-plugin/
 *
 * These rules aren't necessary for the plugin to operate, but they look nice enough.
 *
 * The demo styles are based on http://www.premiumpixels.com/freebies/coming-soon-splash-page-psd/
 */


/* MotionCAPTCHA canvas */
#mc-canvas {
	margin:0 auto 20px;
	padding:1px;
	display: block;
	border: 4px solid #433e45;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
}
/* Red border when invalid */
#mc-canvas.mc-invalid {
	border: 4px solid #aa4444;
}
/* Green border when valid */
#mc-canvas.mc-valid {
	border: 4px solid #44aa44;
}
