/* ----------------------------------------------------
	Payten and Rodger
	Date Created: 7th March 2007
	Version: 1.0
   --------------------------------------------------*/
   
   @import url(structure.css);
   @import url(formelements.css);
   @import url(templates.css);
   
   /*Common Elements */
   
   body
   {
   		margin: 15px 0;
		padding: 0;
		
		background-image: url(../images/background-img.gif);
		background-color: #002c55;
		
		color: #fff;
		font-size: 70%;
		font-family: Verdana, Arial, Helvetica, sans-serif;
   }
   
	/* Standard Repeatable Elements */

	h1,
	h2,
	h3
	{
		margin: 0 0 10px 0;
		
		
		color: #fff;
		font-weight: bold;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 150%;
	}
	
	h2
	{
		text-transform: uppercase;
	}
	
	h3
	{
		font-size: 110%;
	}
	
	p
	{
		margin-top: 5px;
		margin-bottom: 10px;
		
		font-size: 12px;
		line-height: 130%;
	}
	
	small
	{
		line-height: 90%;
	}
	
	img.fleft
	{
		float: left;
		margin: 0 10px 10px 0;
	}
	
	img.fright
	{
		float: right;
		margin: 0 10px 10px 0;
	}
	
	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 */

	/*=========================================================================*/

	/* [Definition Lists Styles] */
	
	dl.half
	{
		clear: both;
		height: 1%;
		margin: 10px auto;
		padding: 0;
	}
		dl.half dt
		{
			float: left;
			clear: both;
			width: 25%;
			margin: 0 0 3px 0;
			padding: 0 0 3px 0;
			
			font-weight: bold;
		}
		
		dl.half dd
		{
			width: 73%;
			margin: 0 0 3px 25%;
			padding: 0 0 3px 0;
		}
					
		dl.half dl
		{
			clear: none;
			margin: 0;
		}
		
		dl.half dl dt,
		dl.half dl dd
		{
			clear: none;
			margin-bottom: 0;				
			padding-bottom: 0;				
		}
	
	.colsub-left
	{
		width: 48%;
		float: left;
	}
	
	.colsub-right
	{
		width: 48%;
		float: right;
	}