/*
Casscading Style Sheet
CSS1
Web site:	www.ruffnerlaw.com
Created by:	Jamie Peloquin
			Axon Design Management
Created on:	07/25/2003
Updated:	07/25/2003 
*/

/*
This file sets the basic (CSS1) properties of the page. 
In CSS2 browsers, this sheet is superceeded by "advanced.css"
*/

/*
COLORS:
	Light Blue:		#BDF
	Blue:			#36C
	Medium Blue:	#69F
	Medium Green:	#8B8
	Light Green:	#EFD
*/

/* == PAGE == */
	html, body {
		margin: 0;
		padding: 0;
		background-color: white;
	}
	
	body {
		background-image: url(/images/global/page-background-basic.gif);
		background-repeat: repeat-x;
		color: #333;
		font-family: Georgia, serif;
		font-size: 14px;
	}

	.hide {
		display: none !important; /*Hides objects in a CSS-compliant browser */
	}
	
	.clear-all {
		clear: both;
	}


/* == HEADER == */
	div#page-header {
		background-color: #BDF;
	}


/* == BODY == */
	h1, h2 {
		font-family: Verdana, Lucida Sans, sans-serif;
		font-weight: bold;
	}

	h1 {
		font-size: 18px;
		color: #36C;
	}

	h2 {
		font-size: 14px;
		color: #8B8;
	}

	h3 {
		font-family: Georgia, serif;
		font-size: 12px;
		font-weight: bold;
		color: #8B8;
	}
	
	a {
		color: #8B8;
		text-decoration: underline;
	}
	

/* == NAVIGATION == */
	#page-navigation {
		margin-top: 14px;
		margin-bottom: 14px;
	}
	
	#page-navigation a {
		font-family: Verdana, Lucida Sans, sans-serif;
		font-size: 12px;
		font-weight: bold;
		color: #999;
		text-decoration: underline;
	}
	


/* == FOOTER == */
	#page-footer {
		text-align: center;
		font-size: 10px;
	}







