.filler 
{
	width: 0px;
	height: 150px;
	background-color: #0085ba;
	margin: 10px;

	animation: fillWidth 0.5s ease-in-out 0s 1 forwards;
}

.vfiller 
{
	width: 100%;
	height: 0px;
	background-color: #ccc;
	margin: 5px 0;

	animation: vFillWidth 0.5s ease-in-out 0s 1 forwards;
}

@keyframes fillWidth 
{
	0% {width: 0px;}
	100% {width: 20px;}
}

@keyframes vFillWidth 
{
	0% {height: 0px;}
	100% {height: 10px;}
}