/*
------------------------------------------
Proline Contracting Cascading Style Sheet
------------------------------------------

Simple table layout with 4 rows:
	- header
	- navigation
	- body
	- footer

The table is the height of the window, with
the body stretching with the windows's 
strectching height.

The width is fixed b/c of the header graphic 
design @ 750px.

*/


/********************************/
/*       General Settings       */
/********************************/

html {
	height: 100%; }

body { 
	height: 100%;
	margin: 0px;
	padding:0px;
/*	background-image: url("images/bg.gif");
	background-repeat: repeat;  */
}

#layout {
	width: 750px;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;}

img {
	border: 0px;}

a {
	text-decoration: none; }
	

/********************************/
/*           Header             */
/********************************/

#header {
	height: 175px;
	vertical-align: top;
	border: 1px solid #999999;
/*	background-image: url("images/header.jpg");
	background-repeat: x-repeat; */
	} 

.bodybold {
	font-family: sans-serif; 
	font-weight: bold;
	font-size: 12px;
	line-height: 14px;
	color: #000000; 
	padding: 110px 0px 0px 36px;
	margin: 0px; }

#header a, 
#header a:visited {
	font-family: sans-serif; 
	font-size: 12px;
	line-height: 14px;
	color: #999999;
	text-decoration: none; }

#header a:hover, 
#header a:visited:hover {
	font-family: sans-serif; 
	font-size: 12px;
	line-height: 14px;
	color: #999999;
	text-decoration: underline; }


/********************************/
/*        Navigation            */
/********************************/

#nav {
	height: 26px;
	background-color: #000000;
	color: #F1E9DA; 
	text-align: center; }

#nav a,
#nav a:visited {
	font-family: sans-serif;
	font-size: 14px;
	line-height: 25px;
	padding: 0px;
	margin: 0px;
	color: #F1E9DA; }

#nav a:hover,
#nav a:visited:hover {
	color: #A9483D; }


/********************************/
/*           Body               */
/********************************/

#body {
	height: 100%;
	background-color: #F1E9DA;
	vertical-align: top; }

#body p,
#body li,
#body h1, 
#body h2, 
#body h3, 
#body h4, 
#body h5,  
#body h6 {
	padding: 0px 20px 0px 20px;
	font-family: sans-serif; }
	
p,li,td {
font-size: 13px;
font-family: sans-serif; }



/********************************/
/*           Footer             */
/********************************/

#footer {
	height: 30px;
	background-color: #000000;
	text-align: center; 
	font-family: serif; 
	font-size: 12px;
	color: #CCCCCC; }
	
	
