/*** Basic Structure, Don't Change It ***/

		body {
			min-width: 630px;         /* 2 x (LC fullwidth + CC padding) + RC fullwidth */
		}

		#container {
			padding-left: 200px;      /* LC fullwidth */
			padding-right: 190px;     /* RC fullwidth + CC padding */
		}
		
		#container .column {
			position: relative;
			float: left;
		}
		
		#center {
			padding: 10px 20px;       /* CC padding */
			width: 100%;
		}
		
		#left {
			width: 180px;             /* LC width */
			padding: 0 10px;          /* LC padding */
			right: 240px;             /* LC fullwidth + CC padding */
			margin-left: -100%;
		}
		
		#right {
			width: 130px;             /* RC width */
			padding: 0 10px;          /* RC padding */
			margin-right: -100%;
		}
		
		#footer {
			clear: both;
		}
		
		/*** IE Fix ***/
		* html #left {
			left: 150px;              /* RC fullwidth */
		}

		/*** To Make the Columns Equal Height***/

		#container {
			overflow: hidden;
		}

		#container .column {
			padding-bottom: 1001em;     /* X + padding-bottom */
			margin-bottom: -1000em;     /* X */
		}

		/*** Footer Fix ***/

		* html body {
			overflow: hidden;
		}
		
		* html #footer-wrapper {
			float: left;
			position: relative;
			width: 100%;
			padding-bottom: 10010px;
			margin-bottom: -10000px;
			background: #FFF;         /*** Same as body background ***/
		}

		/*** What It Looks Like ***/

		body {
			margin: 0;
			padding: 0;
			background: #FFF;
			font-family: Arial, Veranda, sans-serif;
		}

		a:link {
			color:#999999; 
			text-decoration:none; 
			font-weight:bold;
		}
		a:visited {
			color:#999999; 
			text-decoration:none; 
			font-weight:bold;
		}
		a:active {
			color:#666666; 
			border-bottom: 1px dotted;
			font-weight:bold;
		}
		a:hover {
			color:#666666;
			border-bottom: 1px dotted;
			font-weight:bold;
		}

		#header {
			height: 200px;
			background-color: #D2D2D2;
			background-image: url(../Images/MainHeader.jpg);
			background-repeat: no-repeat;
			background-position: top left;
			text-align: left;
			border-bottom: 1px solid black;
		}

		#footer {
			height: 20px;
			background-color: #FFF;
			border-top: 1px solid #999;
			padding: 0.3em 0;
			color: #666666;
			text-align: center;
		}

		#header, #footer {
			font-size: large;
		}

		#left {
			background: #FFF;
		}

		#center {
			background: #FFF;
		}

		#right {
			background: #FFF;
		}

		#container .column {
			padding-top: 1em;
			text-align: justify;
		}

		#navbar {
			border: 4px double black;
			padding: 8px;
			background-color: #EFEFEF;
			text-align: center;
			width: 85%;
		}

		/*** All About Fonts ***/

		blockquote {
		      background-color: #EFEFEF;
		      padding: 1em;
		      font-size: 0.8em;
        }
		
		h1 {
			font-size: 2em;
			font-weight: bold;
		}
		
		h2 {
			font-size: 1.5em;
			font-weight: bold;
		}

		h3 {
			font-size: 1em;
			font-weight: bold;
		}

		p {
			font-size: 0.9em;
			font-weight: normal;
			line-height: 1.5em;
		}

		p.cite {
			font-size: x-small;
		}

		.snippet {
			font-size: small;
			text-align: left;
			line-height: 1em;
		}
