@charset "UTF-8";
/* CSS Document */

html, body {
	height:100%;
	min-height:100%;
}

body{
	-webkit-transform: translate3d(0,0,0); 
	-moz-transform: translate3d(0,0,0); 
	transform: translate3d(0,0,0); 
}

i.bokeh{
	position: absolute;
	border-radius: 50%;
	animation: bokehEffect  infinite;
	-webkit-animation: bokehEffect  infinite;
	-moz-animation: bokehEffect  infinite;
}


@-webkit-keyframes bokehEffect {
	from {
		opacity: 0;
	}

	25%{
		opacity: 0.3;
		transform: scale3d(3, 3, 4);
	}

	50%{
		opacity: 0.75;
	}

	75%{
		opacity: 1;

	}

	to{
		opacity: 0;
	}
}

@-moz-keyframes bokehEffect {
	from {
		opacity: 0;
	}

	25%{
		opacity: 0.3;
		transform: scale3d(3, 3, 4); */
	}

	50%{
		opacity: 0.75;
	}

	75%{
		opacity: 1;

	}

	to{
		opacity: 0;
	}
}


@keyframes bokehEffect {
	from {
		opacity: 0;
	}

	25%{
		opacity: 0.3;
		transform: scale3d(3, 3, 4);
	}

	50%{
		opacity: 0.75;
	}

	75%{
		opacity: 1;

	}

	to{
		opacity: 0;
	}
}