/*
	/parknpool/includes/styelsheets_0802/body_wrapper.css
	 
	Copyright (c) 2010 ParknPool Corp.

	Div layout designed to put relevant copy as close to top of page as possible.
	This allows the search engines to make a better judgement on the copy relevance...
	
	<body>
		<div id="bodyWrapper">
			<div id="bwContent>
				<table>
					<tr>
						<td>
							<div id="bwBreadCrumb"></div> // Not used.  Breadcrumb is still in header.
							<div id="bwContentIntro"></div>
							<div id="bwContentBody"></div>
							<div id="bwFtr></div>
						</td>
						<td>
							<div id="bwInfoNav"></div>
						</td>
					</tr>
				</table>
			</div> <!-- End bwContent -->
			<div id="bwPriNav"></div>
			<div id="bwHdr"></div>
		</div> <!-- End bodyWrapper -->
	</body>	
	
	The page layout resulting from the css defined below should display like this:
	
	-----------------------------------------| \
	| bwHdr                                  |  > Use padding-top with bwContent to create space for bwHdr.
	-----------------------------------------| /  Use absolute positioning to place bwHdr into space.
	| bwPrimNav | bwContentIntro | bwInfoNav | \ 
	|           |----------------|           |  > Use table with 1 row and 2 columns to position elements.
	|           | bwContentBody  |           | |
	|           |----------------|           | |
	|           | bwFtr          |           |/
	|----------------------------------------|
	\           /
	 ----------- > Use padding-left with beContent to create space for bwPrimNav.
	               Use absolute positing to place bwPriNav into space.

	2010/05/06 mv	Initial coding.
*/

/* Div ID styles - In alphabetical order */

#bodyWrapper {
	margin: 0 auto;
	width: 100%; /* Change width to 100% 2007/12/18 */
	min-width: 992px; /* Added 2007/12/18 to allow stretching. */
	position: relative; /* Added 2010/05/06 to allow absolute positioning of child elements. */
}

#bwBreadCrumb {
	padding: 0px 0px 10px 3px;
	text-align: left;
}

#bwContent {
	background: #fff;
	padding: 230px 0px 0px 230px;
	text-align: left;
	min-width: 530px !important;
	min-width /**/:730px;
}

#bwContentHome {
	background: #fff;
	padding: 200px 0px 0px 160px;
	text-align: left;
	min-width: 530px !important;
	min-width /**/:730px;
}

#bwContent h1 {
	font-size: 24px;
	font-weight: bold;
	text-align: left;
	padding-bottom: 10px;
}

#bwContent h2 {
	font-size: 18px;
	font-weight: normal;
	text-align: left;
	padding-bottom: 10px;
}

#bwContent p {
	padding-bottom: 15px;
}

#bwContent ul {
	padding-bottom: 7px;
}

#bwContent li {
	padding-bottom: 8px;
}

#bwContentBody {
	width: 100%
}

#bwContentIntro {
	width: 100%
}

#bwFtr {
	background:  url(../../images/pg_ftr_2008_02/ftr_bg.gif) repeat-x top;
	margin-top: 20px;
	width: 100%
}

#bwHdr {
	position: absolute; top: 0px; left: 0px;
	width: 100%
}

#bwInfoNav {
	margin: 10px 0px 10px 10px;
	text-align: center;
}

#bwPriNav {
	position: absolute;	top: 190px; left: 0px;
	text-align: center;
	width: 200px;
}

#bwPriNavHome {
	position: absolute;	top: 190px; left: 0px;
	text-align: center;
	width: 161px;
}

