/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
*/
* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 11px;
	font-family: georgia, serif;
	background: #fff;
}

body.section-1 { }
body.section-2 { }
body.section-3 { }

a:link { text-decoration: none; color: #0099FF }
a:active { text-decoration: none; color: #0099FF }
a:visited { text-decoration: none; color: #0099FF; }
a:hover { text-decoration: underline; }

a img { border: none; }

/* MENU */

	#menu {
		width: 225px; /* sets the width of your left hand bar - if you change this also change the LEFT margin in #content to match */
		overflow: auto;
		top: 0;
		bottom: 0;
		left: 0;
		position: fixed; /* this make the menu stay in place while the content section scrolls*/
		height: 100%;
		background-color: #ffffff;
		padding-top: 10px; /* change to match the padding-top in #content if you want them to align */
		padding-bottom: 25px;
		/* padding-left & right can be changed in #menu ul - below */
		font-size: 11px;
	}
	
	/* This section controls each section made */ 
	#menu ul {
		list-style: none;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 10px; /* sets the space between each section */
		margin-left: 0px;
		/* sets the spacing around the menu - this is normally set to match padding options in #content but can be changed seperately */
		padding-right: 25px;
		padding-left: 15px;
	}

	#menu ul li {
		margin-top: 0px;
		margin-bottom: 4px;
		color:#999999;
		line-height: 11px;
		padding-left: 6px;
	}
	
	/* The following sets the style for the section heading */
	#menu ul li.section-title {
		font-family: Georgia, "Times New Roman", Times, serif;
		font-style: italic;
		font-size: 12px;
		padding-top: 4px;
		padding-right: 0px;
		padding-bottom: 5px;
		padding-left: 0px;
		color: #333333;
		/* Following lines adds a line about each section */
		border-top-color: #E4E4E4;
		border-top-style: dotted;
		border-top-width: 1px;

	}
	
	#menu li.active a{ 
		color: #FFF;
		background-color:#0099ff;
	
	}
	
	#menu li.visited { 
		color: #999999; 
	
	}
	
	/* The following selectors style the "Built with Indexhibit" on the menu */	
		
		#menu ul.built {
			margin-bottom: 0;
			font-size:10px;
		}
	
		#menu ul.built li {
			padding-top: 5px;
			border-top-color: #e4e4e4;
			border-top-style: dotted;
			border-top-width: 1px;
			font-size:10px;
			color: #bbbbbb;
		}
		
		/* The following changes the link colors for only the "Built with Indexhibit" link */
		#menu ul.built a {
			color: #bbbbbb;
		}
		
		#menu ul.built a:hover {
		 	text-decoration: none;
			color: #FFFFFF;
		}

	/* This sets the style for Post-Nav Text which can be accessed in the Exhibit Settings */
		
		#copy {
			font-size: 8px;
			color: #bbbbbb;
			font-family: Helvetica, Arial, Sans-Serif;
			font-style: normal;
			margin-top: 5px;
			padding-top: 10px;
			border-top-color: #cccccc;
			border-top-style: solid;
			border-top-width: 0px;
		}

#content {
    height: 100%;
    margin: 0 0 0 215px;
    top: 0;
}

.container {
    padding: 10px 5px 0px 5px;
}

#content p { width: 650px; margin-left: 50px; margin-top: 9px; margin-bottom: 9px; }

p {
    margin: 0 0 9px 0;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 16px; }
h4 { font-size: 12px; }

#img-container	{ margin: 0; margin-left: 50px; padding: 0; }
#img-container p	{ width: 400px; margin: 0; padding: 0 0 12px 0; }

#once { clear: left; }
