/*-------------------------------------------------------------------------------------------
	It is imparative as a web development company that we use clean CSS and that we use it 
	to our full potential. The idea is to use basic tables for layout, and have CSS control
	100% the rest of your content, from content layout, fonts, navigations and everything 
	possible! To get more information on CSS use these links:
	-- Everything CSS - http://www.w3.org/Style/CSS/
	-- Learn CSS - http://www.w3.org/Style/CSS/learning
	-- CSS Specs - http://www.w3.org/Style/CSS/#specs 
	Take charge and educate yourself on usefull CSS implementation.
---------------------------------------------------------------------------------------------*/	


/*------------------------------------
	This is the body tags
	you must use this to set
	the website parameters, do
	NOT put info inside of the
	<body> tag, use css instead.
------------------------------------*/	
body {
	background-color:white;
	margin-top:0px;
	margin-bottom:0px;
	margin-left:0px;
	margin-right:0px;
	height:100%;
	text-align:center;
	}
	
/*------------------------------------
	Set your links here. There are 
	two examples. The main links for
	the website and a specific link
	class to use. 
------------------------------------*/		
	
A:link {
		text-decoration:none; 
		color: navy;}
			
A:visited {
		text-decoration:none;
		color: navy;}
		
A:hover {
		text-decoration: none;
		color: red;}	
/*------------------------------------
	Text formatting. Use this area for 
	all of your text formatting. Use 
	this for coontent tags, footer tags, 
	etc.
------------------------------------*/	
			
.container {
	width: 893px;
	height:100%;
	}

.content {
	float:right;
	width:534px;
	height:738px;
	padding:10px;
	background-image:url(/images/bg-right.jpg);
	background-position: bottom-center;
	background-repeat: no-repeat;
	border:0px;
	text-align:left;
	font-size:12px;
	font-family:arial;
	color: black;
	}

.div_left {
	padding:10px 0px 10px 0px;
	float: left;
	border:0px;
	text-align:left;
	}

.div_right {
	padding:10px 0px 10px 0px;
	float: right;
	border:0px;
	text-align:right;
	}

.footer {
	font-size:10px;
	font-family:arial;
	}
			
.red {
	color:#B71E3C;
	font-weight:bold;
	font-size:16px;
	}
			
/*------------------------------------
	In many of our websites, we format
	the submit buttons. Below is 
	example css to format those buttons.
------------------------------------*/	


.formbutton {
	background-color: green;
	font-size:9px;
	font-weight:bold;
	color: #ffffff;
	border: 2px solid #ffffff;
	padding: 3px;
	}

			
/*------------------------------------
	If you are formatting tables, 
	IE, backgrounds, text, or anything
	as such, use the code samples
	listed below. 
------------------------------------*/	





/*------------------------------------
	Use the code below if you will be using
	an additional css file seperate from
	this file. This can be used for our
	dropdown menu system or the tab
	content system. Customize for your
	own development.  
------------------------------------*/	

/* Google Map Tool Tip */
.tooltip{
	background-color:#FFFFFF;
	border:2px solid #CCCCCC;
	padding:5px;
	white-space:nowrap;
}

/* @import url('dropdown_menu.css'); /* IE4 can understand, but not NN4 */



