/* CSS Document */

#oval_large {width:750px; height:526px; border: 4px solid #660033; position:absolute; right:0px; 
	-moz-border-radius: 375px / 263px;
	-webkit-border-radius: 375px / 263px;
	border-radius: 375px / 263px;
	animation-name: oval_large_move;
	animation-duration:2s;
	animation-iteration-count:infinite;
	animation-direction:alternate;
	animation-delay:2s;}

@keyframes oval_large_move {
	from {top:0px;}
	to {top:20px;}
}

#oval_medium {width:250px; height:175px; border:4px solid #660033; position:absolute; left:25px; top:425px; background:#ffffff; 
	-moz-border-radius: 135px / 97px;
	-webkit-border-radius: 135px / 97px;
	border-radius: 135px / 97px;
	animation-name: oval_medium_move;
	animation-duration:2s;
	animation-iteration-count:infinite;
	animation-direction:alternate;
	animation-delay:1s;}
	
@keyframes oval_medium_move {
	from {top:425px;}
	to {top:445px;}
}

#oval_small {width:126px; height:87px; border:4px solid #660033; position:absolute; top:550px; background:#ffffff; 
	-moz-border-radius: 73px / 53px;
	-webkit-border-radius: 73px / 53px;
	border-radius: 73px / 53px;
	animation-name: oval_small_move;
	animation-duration:2s;
	animation-iteration-count:infinite;
	animation-direction:alternate;
	}
	
@keyframes oval_small_move {
	from {top:550px;}
	to {top:570px;}}
	
#text_bubble {width:550px; position:absolute; top:200px; right:100px;}

#align_center {text-align:center; line-height:54px;}
	
	