body {
	margin:0;
	padding:0;
	border:0;			/* This removes the border around the viewport in old versions of IE */
	width:100%;
	background:#fff;
	min-width:600px;    	/* Minimum width of layout - remove line if not required */
					/* The min-width property does not work in old versions of Internet Explorer */
}

.hidden {
	display:none;
}

.shown {
	display:block;
}


/* header styles */
#header {
	clear:both;
	float:left;
	width:100%;
}
#header {
	border-bottom:1px solid #000;
}
#header p,
#header h1 {
	padding:.4em 15px 0 15px;
	margin:0;
}

#header h2 {
	padding: 0 15px 0 15px;
	font-style:italic;
}

/* column container */
.colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:100%;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
}
/* common column settings */
.colright,
.colmid,
.colleft {
	float:left;
	width:100%;
	position:relative;
}
.col1,
.col2,
.col3 {
	float:left;
	position:relative;
	padding: 0 0 1em 0; /* recall shorthand notation is: top right bottom left */
	overflow:hidden;
}

.col2 { padding-top: 1em } /* added by me to force a top padding on my navbar */

/* 2 Column (left menu) settings */
.leftmenu {
	background:#f4f4f4;		/* right column background colour */
}
.leftmenu .colleft {
	right:85%;			/* right column width */
	background:#A2B5F4;	/* left column background colour */
	border-right: 1px solid gray;
}
.leftmenu .col1 {
	width:81%;			/* right column content width */
	left:102%;			/* 100% plus left column left padding */
}
.leftmenu .col2 {
	width:14%;			/* left column content width (column width minus left and right padding) */
	left:5%;			/* (right column left and right padding) plus (left column left padding) */


}

/* my navbar styles */

#leftNavbar ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 125%;
	line-height: 130%;	
	display:block
}

.listBulletActive {
	background-color:#369;
	color:#fff;
}

.listBulletInactive {
	background-color:#A2B5F4;
	color:#000000;
}

/* my subnavbar styles */

/* Note the change in list styles in this version of css, the id's were changed to SubNavbarList from the previous id of SubNavbar */

#subNavbarList ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	float:right;
}

#subNavbarList li {
	/*display: inline;*/
	padding: .2em 1em;
	color: #fff;
	font-size: 85%;
	text-align: right;
}

.subListBulletActive {
	background-color:#369;
	color:#fff;
}

.subListBulletInactive {
	background-color:#036;
	color:#FFFFFF;
}

/* presentation content styles */
/* recall margin shorthand notation is: top right bottom left */

#displayField p {
	line-height: 130%;
	font-size: 150%;
}

#displayField h1, h2, h3 {
	margin:0;
	padding:0;
	line-height:100%;
}

#displayField h1 { font-size:200%; } 

#displayField ul {
	margin-top:.2em;
	line-height: 130%;
	font-size:160%;
}


#displayField ul ul {
	line-height:115%;
	font-size:80%;	
}

#displayField .imageLink {
	color:#0000FF;
}

/* styles for presentation content in fullscreen mode... ugly, I know! */

#bodyFullscreen {
	line-height: 130%;
	font-size: 100%;
}

#bodyFullscreen h1, h2, h3 {
	margin:0;
	padding:0;
	line-height:100%;
}

#bodyFullscreen h1 { font-size:200%; } 

#bodyFullscreen ul {
	margin-top:.4em;
	line-height: 120%;
	font-size:160%;
}


#bodyFullscreen ul ul {
	line-height:115%;
	font-size:80%;	
}

#bodyFullscreen .imageLink {
	color:#0000FF;
}


/* Footer styles */
#footer {
	clear:both;
	float:left;
	width:100%;
	border-top:1px solid #000;
}
#footer p {
	padding:10px;
	margin:0;
}



