﻿.custom_pending:after
	{
	overflow:			hidden;
	display:			inline-block;
	vertical-align:		bottom;
	-webkit-animation:	custom_pending_ellipsis steps(4,end) 900ms infinite;			
	animation:			custom_pending_ellipsis steps(4,end) 900ms infinite;
	content:			"\2026"; /* ascii code for the ellipsis character */
	width:				0px;
	}

@keyframes custom_pending_ellipsis
	{
	to
		{
		width: 20px;		
		}
	}

@-webkit-keyframes custom_pending_ellipsis
	{
	to
		{
		width: 20px;		
		}
	}