/*** Adapted from "A List Apart Article 211 - In Search of the Holy Grail", by Matthew Levine ***/
/*** Example 2 ***/

		/* General Styles */
        /* LC=left column; CC=centre column; RC=right column; FW=width+padding+border */

body {
		min-width: 704px;         /* 2 x (LC FW + CC padding) + RC FW */
		background-color: #9c9; /* websafe pale green */
        color: black;
        margin: 0px;
        padding: 0px;
        font-family: tahoma, sans-serif;
		font-size: 18px;
        }
h1 {
		font-size: 1.5em;
        }
p {
		font-size: 1em;
		}
#Content {
			padding: 0px;
		}
        
		/* Top styles */
#header {
        margin: 0 auto;
        }
#header p {
        text-align: center;
        font-family: "Times New Roman", serif;
        font-size: 1.2em;
        font-style: italic;
        font-weight: bold;
        color: black;
        background-color: white;
        position: relative;
        top: -10px;
        }

        /* Heading styles */
#header h1 {
        text-align: center;
		color: black;
        background-color: white;
        line-height: 1.5em;
        }
#path {   /* You are here */
		position: absolute;
        top: 10px;
        left: 10px;
        font: 0.8em/1em "Courier New", serif;
        }
        
        /* Link styles */
a:link {
		color: black;
        background-color: white;
        }
a:visited {
		color: black;
        background-color: white;
        }
a:hover {
		color: black;
        background-color: white;
        }
a:active {
		color: black;
        background-color: white;
        }
a.extlink:hover {
		color: black;
        background-color: white;
		}

		/* Main content styles */
#main {
		padding: 0px 20px;       /* CC padding */
		width: 100%;
        text-align: justify;
        background-color: white;
		color: black;
        }
#main p img, #main li img {   /* Back to top */
        display: none;
        }
.pic1 {  /* Page icon */
		float: left;
        margin: 10px 10px 10px 0px;
        border: 1px dashed gray;
        }
.pic2 {  /* Garden image */
		float: left;
        top: -200px;
        margin-right: 10px;
        margin-bottom: 10px;
        }

        /* Footer styles */
#foot {
		display: none;
        }
		
		/* Navigation styles */
        /* General */
#NavInt1, #NavExt1 {
		display: none;
        }
