﻿body {
	margin: 10px 0;	/* Adjust margins as needed */
}
#bounding-container {
	position: relative;	/* This is just to assist with any relative positioning or z-indexing below */
	width: 780px;		/* Fixed width */
	margin: auto;		/* Center it */
}
#contents-container {
	overflow: hidden;	/* This is part of getting colums to have equal display height; see below */
}
#contents-col {
	float: right;		/* Here in lies the trick: by floating this and the left colum to the right, they naturally flow in reverse order ;-) */
	/* This div started with a width of 580px ( 780px - 200px ), but had to be reduced to account for borders and padding below */
	width: 607px;		/* The width is also crucial to get things positioned correctly using the float property */
	/* If adding borders, be sure to shave off the width of the borders from the width of the div */
	/* If adding padding, be sure to shave off the width of the left and right padding from the width of the div */
	padding: 10px;		/* Padding is pretty much always called for here, eh? */
	/* This trick is used to get the colums displaying at equal length. The value for X is the largest */
	margin-bottom: -20000px;  /* X */
	padding-bottom: 20010px;  /* X + padding-bottom */
}
#nav-col {
	float: right;		/* Same as with the contents-col div */
	width: 150px;		/* Again, same as above, only if this is changed, remember to change the width of the contents-col */
	/* This trick is used to get the colums displaying at equal length. The value for X is the largest */
	margin-bottom: -20000px;  /* X */
	padding-bottom: 20000px;  /* X + padding-bottom */
}
#footer {
	position: relative;
	clear: both;		/* Clear the floats in the above two columns */
}
/*** IE6 Fixes ***/
/* IE 6 doesn’t clip the column backgrounds at the bottom of the container. They spill out over the footer if the page is not as tall as the viewport. */
/* To deal with this, we need a couple of fixes: */
* html body {
  overflow: hidden; /* There is a very small price to pay for this IE 6 fix: the scroll bar will still suggest there is content "way down there", though the appearence is otherwise what is desired. */
}
* html #footer-wrapper {
  float: left;
  position: relative;
  width: 100%;
  padding-bottom: 10010px;
  margin-bottom: -10000px;
  /*background: #fff;         /* Set this in the styling CSS */
}

body {
	background: #fff url(/images/pg-bg.jpg);
	font: 10px Arial, Verdana, Helvetica, Sans-Serif; /* Starting with 10px font-size makes it easy to "em" sizes later vis a vis a 10px base. */
											/* That is, if you want a 12px font-size somewhere, just assign 1.2em to get the same size, 
											   while alowing users to expand font sizes to their preference. 
											*/
}

#bounding-container {
}

#header {
	position: relative;
	height: 60px;
	background: #CEB4C3;
	border: 1px #AA7E97 solid;
	color: #3A2630;
}

#header .heading {
	position: relative;
	top: 15px;
	left: 15px;
	color: #3A2630;
	font-size: 3em;
	font-weight: bold;
}

#contents-container {
}

#contents-col {
	background: #f8f8f8;
	border-left: 1px #AA7E97 solid;
	border-right: 1px #AA7E97 solid;
	color: #49303D;
}

#contents-col h1 {
	margin-top: 0;
	font-size: 2em;
}

#contents-col h2 {
	margin-top: 0;
	font-size: 1.8em;
	color: #3D4328;
}

#contents-col p {
	font-size: 1.2em;
	line-height: 1.5em;
	text-align: justify;
}

#nav-col {
	background: #CEB4C3;
	border-left: 1px #AA7E97 solid;
	font-size: 1.2em;
}

#nav-col h4 {
	margin-top: 0;
	padding-left: 10px;
	font-size: 1.3em;
}

#nav-col ul {
	margin: 0;
	padding: 0;
	background-color: #C0C8A2;
	list-style:none;
	font-family: "Lucida Sans Unicode", Times, serif;
}

#nav-col ul li {
}

#nav-col ul li a {
	display: block;
	height: 20px;
	padding: 7px 3px 7px 10px;	/* See IE 6 fix below */
	/*padding-top: 7px;*/
	/*padding-right: 3px;*/
	/*padding-bottom: 3px;*/
	/*padding-left: 10px;*/
	font-weight: bold;
	/*line-height: 2.6em;*/
	color: #583A4A;
	text-decoration: none;
	border-bottom: 1px #AA7E97 solid;
}

#nav-col ul li a:hover {
	color: #F6F1F4;
	background-color: #AA7E97;
	border-bottom: 1px #C0C8A2 solid;
}

#footer {
	padding: 5px;
	background: #CEB4C3;
	border: 1px #AA7E97 solid;
	text-align: center;
	color: #3A2630;
}

* html #footer-wrapper {
  background: #fff url(/images/pg-bg.jpg);         /* Same as body background */
}

