/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
* @author Edited by Ed Nacional (www.ednacional.com)


*/
* {
	margin: 0;
	padding: 0;
}

body { font-size: 12px; font-family: Helvetica, Sans-Serif; /* choose overall font - go to www.typetester.org to test sizes and see the list of safe fonts - If the user doesnt have the first one, it try the second, and goes along the list until it finds a font that the computer has installed */
	background-color: #ffffff; /* sets the overall background color */
}

body.section-1 { color: black; }
body.section-2 { color: black; }
body.section-3 { color: black; }

/* LINKS */
	
	
	/* colors for all links */
	a:link { 
	text-decoration: none; /* none = no underline, other options include line-through or overline */
	color: gray; /* sets hex color of every link - www.colorpicker.com or photoshop to find hex values */
	}
	
	a:active { color: blue; text-decoration: none; }
	
	/* highlights links that you have already clicked. This can be helpful for users to identify which items they have already seen*/
	a:visited { text-decoration: none; color: black; /* this changes the background of a visited link, you can also get rid of the the back ground an color and there will be no change if a link has been visited */ 
	}
	
	/* sets the properties for links when mouse rolls over */
	a:hover { color: aqua; text-decoration: underline; }

	/* any img that is a link */
	a img { 
	border: none; 
	}

/* Pre-Nav Text - Can be accessed in the Exhibit Settings */
/* MENU */

	#menu {
	color: black;
	width: 215px; /* 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: white;
	padding-left: 25px;
	padding-top: 25px;
}
	
	/* This section controls each section made */
#menu ul { color: black; margin: 0 0 12px 0; list-style: none; }
#menu ul li.section-title {
	background-color: #D6e6b7;
	margin-bottom: 2px;
	margin-top: 2px;
}
/* The following sets the style for the section heading */
/* The following selectors style the "Built with Indexhibit" on the menu */
/* The following changes the link colors for only the "Built with Indexhibit" link */
/* This sets the style for Post-Nav Text which can be accessed in the Exhibit Settings */
/* CONTENT AREA */

	#content {
	color: black;
	height: 100%;
	top: 0;
	margin-top: 26px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 265px;
}
.container { padding: 5px 5px 25px; }

	#content p { /* sets the properties for all paragraphs in the content area */
		width: 400px; margin-bottom: 9px; /* use this the change the leading (space between lines) */
	}

	p { /* sets the properties for all paragraphs  */
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 9px;
    margin-left: 0;
	}

/* HEADINGS */
	
	/*
	when typing your text/descriptions follow this format to use these heading types
	
	<h1>This is the text i want to be a heading which</h1>
	
	start with h1 as your largest most important heading. you may not need all 4 but they are here if you do.
	*/
	
	h1 { font-size: 32px; color: fuchsia; /* sets the spacing between the heading and paragraph below */
	}
	
	h2 { color: fuchsia; font-size: 24px; /* sets the spacing between the heading and paragraph below */

	}
	
	h3 { font-size: 16px; }
	
	h4 { font-size: 12px; }

/* IMAGES */

	#img-container	{ 
		margin: 0 0 0; 
		padding: 0; 
	}
	
	#img-container p	{ 
		width: 400px; 
		margin: 0; 
		padding: 0 0 12px 15px;
	}
#once { clear: left; }
