/* ************************************************************************** */
/* 123reg Hacks, Aug 2006 Relaunch Stylesheet » www.123-reg.co.uk	     	  */
/* Author: Pipex Communications UK Ltd, (c)2006 PIPEX Communications UK Ltd   */
/* Version 2.1									  			  				  */
/* ************************************************************************** */

/* mac (safari) : animated gif hack (1st September 2006) ----- */
/*
HACK: Safari (all current versions) will ignore the selector (and rules within it) with
the (#) sign after the semi-colon, it will also ignore any subsequently defined selectors
SOURCE: http://www.simiandesign.com/blog-fu/2005/11/safari_css_hack.php
RULE EFFECT: display wait animated gif <img> tag in safari, and as css background image 
			 for all other browsers (hiding img tag)
RATIONALE: safari bug and ie bugs - safari wont consistently display an animated gif as a
		   css background image, ie wont animate said gif (on form submit) when used in an
		   image tag (caching issue?)
*/
/* for safari */
#wait_display_1,
#wait_display_2 { 
	padding: 0 !important;
}
#wait_display_1 img,
#wait_display_2 img { 
	display: inline; 
	margin-left: 3px;
	vertical-align: middle;
}
/* for the masses */
#wait_display_1,
#wait_display_2 { 
	padding-right: 47px !important;# 
}
#wait_display_1 img,
#wait_display_2 img { 
	display: none; 
}