/* ----------------------------------------------------
	Suspended Account
	Date Created: 9th March 2007
	Version: 1.0
   --------------------------------------------------*/
   
   @import url(structure.css);
   @import url(formelements.css);
   
   /*Common Elements */
   
   body
   {
   		margin: 30px 0;
		padding: 0;
		
		background-image: url(../images/background-img.gif);
		background-color: #002e48;
		
		color: #fff;
		font-size: 70%;
		font-family: Verdana, Arial, Helvetica, sans-serif;
   }
   
	/* Standard Repeatable Elements */

	h1
	{
		margin: 0;
		padding: 0;
		
		font-size: 26px;
		font-weight: normal;
		
		font-family: Arial, Helvetica, sans-serif;
	}
	
	p
	{
		margin-top: 5px;
		margin-bottom: 10px;
		
		font-size: 11px;
		line-height: 100%;
	}
	
	small
	{
		line-height: 90%;
	}
	
	a img
	{
		border: none;
	}
	
	a:link,
	a:visited
	{
		color: #fff;
	}
		
	a:hover
	{
		color: #002c55;
	}
	
	ul
	{
		margin: 15px 0px 20px 0px;
		padding: 0;
	}
	ul li
	{
		margin-left: 26px;
	}
	
	table
	{
		margin: 15px 0;
	}
	
	table tr.table-header
	{
		background-color: #ccc;
	}
	
	/* Hide Text Element */
	.offleft
	{
		position: absolute;
		left: -5000px;
		width: 4000px;
	}
	
	/* Floats */
	
	.fleft
	{
		float: left;
	}
	
	.fright
	{
		float: right;
	}
	
	/* Clear Elements */
	
	.cboth
	{
		clear: both;
	}
	
	.cleft
	{
		clear: left;
	}
	
	.cright
	{
		clear: right;
	}
	
	/* Margins */
	
	.mbottom
	{
		margin-bottom: 15px;
	}
	
	.mtop
	{
		margin-top: 15px;
	}
	
	.mleft
	{
		margin-left: 15px;
	}
	
	.mright
	{
		margin-right: 15px;
	}
	
	/* Alignments */
	
	.aleft
	{
		text-align: left;
	}
	
	.aright
	{
		text-align: right;
	}
	
	.acenter
	{
		text-align: center;
	}
	
	/* Split Coloumns */
	
	.col-left
	{
		width: 48%;
		float: left;
	}
	
	.col-right
	{
		width: 48%;
		float: right;
	}