/* Cascading Style Sheets                                                */
/* Definition file (two column layout with header and footer)            */
/* PageCss9.css                                                          */
/* 01 Jan 2008                                                           */
/* Chris Macgowan                                                        */
/*                                                                       */
/* This is a test css file used with TestPage5.php.  We are testing      */
/* some background color parameters.                                     */
/*                                                                       */
/* We are using the following resource in this resaerch:                 */
/* http://www.maxdesign.com.au/presentation/two-columns/final_right.htm  */
/*                                                                       */
/*                                                                       */
/* Modification History                                                  */
/* Date         Author                                                   */
/* --------------------------------------------------------------------- */
/* 09 Jul 2009  Macgowan                                                 */
/* Initial development.                                                  */
/*                                                                       */
/*                                                                       */
/*                                                                       */


#body
{
text-align: center;
background-color:yellow;
}


		#container
		{
			margin: 1em 5%;
			background-color: #FFF;
			background-image:  url(images/background.jpg);
			background-repeat: repeat-y;
			border: 1px solid #333;
			background-position: right;
		}

		#banner
		{
			background-color: #666;
			border-bottom: 1px solid #333;
		}

		#banner h1
		{
			margin: 0;
			padding: .5em;
		}

		#nav
		{
			float: right;
			width: 160px;
			margin-right: 10px;
			padding-top: 1em;
		}

		#nav p { margin-top: 0; }

		#content
		{
			padding-top: 1em;
			margin: 0 200px 0 2em;
		}

		#content h2 { margin-top: 0; }

		#footer
		{
			clear: both;
			background-color: #666;
			padding: 1em;
			text-align: right;
			border-top: 1px solid #333;
		}
