
	/**********************************************************************
	***  How to Accomplish a 'Table' Layout for a form with Divs  ***
	*****************************************************************/
	/* PlaceHolder is there because Firefox is doing something REALLY funky and ignoring the first class on my sheet */
	.PlaceHolder
	{
	
	}
	
	/* Rows in the Form */
	div.row
	{
		clear: both;
		padding-top: 5px;
		
		margin-left: auto;
		margin-right: auto;
	}
	
	/* Dividers in the Form */
	div.Divider
	{
		clear: both;
		padding-top: 3px;
		padding-bottom: 3px;
		
		margin-left: auto;
		margin-right: auto;
	}
		
	/* Columns in the Form Table */
	span.ColLabels
	{
		float: left;
		text-align: right;	
		padding-right: 0.2em;
	}
	
	span.ColFields
	{
		float: left;
		text-align: left;
		padding-right: 0.4em;
		_margin-right: 0em;	
	}
	
	span.RightCol
	{
		float: right;
	}
		
	
	/* Textboxes, dropdownlists, etc in the Fields column */
	.ColFields input
	{
		width: 100%;
	}
	
	.ColFields select
	{
		width: 105%;
	}
	
	.ColFields img
	{
		margin-top: 3px;
	}
	
    .smallLoadingIcon:after 
    {
        content: '';
        display: inline-block;
        background-image: url(../images/smallLoading.gif);
        width: 15px;
        height: 15px;
    }
	