/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
*/
* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 12px;
	font-family: "terfens-1","terfens-2",sans-serif;
	color:#666666;
	background: #f8faef;
}

body.section-1 { }
body.section-2 { }
body.section-3 { }

/* colors for all links */
	a:link {
	text-decoration: none; /* none = no underline, other options include line-through or overline */
	color: #ff7e00; /* sets hex color of every link - www.colorpicker.com or photoshop to find hex values */
	
	}
	
	a:active {
	text-decoration: none;
	color:#333333;
	background-color: #CCCCCC;
	}
	
	/* 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: #ff7e00; /* the color can also be changed */
	background: #FFffff;
	}
	
	/* sets the properties for links when mouse rolls over */
	a:hover {
	text-decoration: none;
	color: #ff7e00;
	background:#FFFFFF;
	font-style: italic;
	}

	/* any img that is a link */
	a img {
	border: none;
	background: #FFFFFF;
	color: #ff7e00;
	}



/* Pre-Nav Text - Can be accessed in the Exhibit Settings */
	
	
.top-section {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
	font-size: 20px;
	line-height: 24px;
	color: #666666;
	font-family:Trebuchet MS, Sans-Serif;
	}


#menu {
    width: 215px;
    overflow: auto;
    position: fixed;
    height: 100%;
	background-color: #f8faef;
	list-style: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px; /* 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: 26px;
	padding-left: 18px;/* moving the whole menu towards left */
	padding-bottom: 5px;	

}

#menu ul {
	list-style: none;
	font-size: 12px;
	margin-top: 2px;
	margin-bottom: 2px;
	
}

#menu ul li.section-title {
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	margin-bottom: 15px;
	color: #666666;
	letter-spacing: normal;
	/* Following lines adds a line about each section */
	border-bottom-color: #ff7e00;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	
}

#content {
   height: 100%;
		margin-top: 50px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 210px; /* sets the space so the content starts right when the menu ends - if you change this also change the width of #menu to match */
	    top: 0;
		bottom: 0;
	    
	    /* sets the spacing around the content area - this is normally set to match padding options in #menu but can be changed seperately */
		padding-top: 30px;  /* change to match the padding-top in #menu if you want them to align */
		padding-right: 50px;
		padding-bottom: 0px;
		padding-left: 50px; /* space between menu and content */
	}
}

.container {
    padding: 5px 5px 25px 5px;
}

#content p { width: 400px;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 10px; /* sets the space between paragraphs */
		margin-left: 0px; 	
	    line-height: 16px; /* use this the change the leading (space between lines) */
}

p {
    margin: 0 0 9px 0;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 15px; }
h4 { font-size: 12px; }
h5 { font-size: 11px; } 

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

#once { clear: left; }