/* ----------------------------------------------------
	Major Rentals
	Date Created: 05th 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-color: #fff;
		
		color: #003c82;
		font-size: 70%;
		font-family: Verdana, Arial, Helvetica, sans-serif;
   }
   
	/* Standard Repeatable Elements */

	h1,
	h2,
	h3
	{
		margin: 0 0 10px 0;
		padding: 0;
		
		color: #003c82;
		font-weight: bold;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 150%;
	}
	
	h1
	{
		font-size: 180%;
	}
	
	h2
	{
		display: block;
		width: 100%;
		padding: 5px 0 5px 5px;
		
		background-color: #003c82;
		
		color: #fff;
		font-size: 120%;
	}
	
	h3
	{
		color: #4e4b49;
		font-size: 110%;
		letter-spacing: 1px;
	}
	
	p
	{
		margin-top: 5px;
		margin-bottom: 10px;
		
		font-size: 12px;
		line-height: 130%;
	}
	
	strong
	{
		color: #003c82;
	}
	
	a:link,
	a:visited
	{
		color: #fff;
	}
		
	a:hover
	{
		color: #003c82;
	}
	
	a img
	{
		border: none;
	}
	
	img.fleft
	{
		float: left;
		margin-right: 10px;
	}
	
	ul
	{
		margin: 15px 0px 20px 0px;
		padding: 0;
		list-style-type: none;
	}
	ul li
	{
		margin: 0 0 5px 15px;
		padding: 0 0 0 18px;
		
		background-image: url(../images/bullet.gif);
		background-repeat: no-repeat;
		background-position: 0px 4px;
	}
	
	li ul
	{
		padding: 5px 0 5px 18px;
		
		font-size: 80%;
	}
	
	/* 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;
	}