/**
* 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, Arial, 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 */
	color: #00000; /* sets the color of all type in the website except for links and other sections overwritten */
	background-color: #FFFFFF; /* sets the overall background color */
	overflow-x: hidden;
	overflow-y: scroll;
}

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


DIV.iframe_scroll {
overflow: hidden;
}



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

/* Pre-Nav Text - Can be accessed in the Exhibit Settings */
	
	
	
.top-section {
		font-family: Helvetica, Arial, Verdana, Sans-Serif;
		font-style: italic;
		text-transform: uppercase;
		font-size: 13px;
		font-weight: bold;
		padding-top: 12px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 10px;
		width: 0px;
		color: 000000;
	}

/* MENU */

	#menu {
		width: 140px; /* sets the width of your left hand bar - if you change this also change the LEFT margin in #content to match */
		overflow: hidden;
		top: 0px;
		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: 0px; /* change to match the padding-top in #content if you want them to align */
		padding-bottom: 0px;
		/* padding-left & right can be changed in #menu ul - below */
		font-size: 11px;
		text-align: right; 
		padding-right: 2px;
	}
	
	/* This section controls each section made */ 
	#menu ul {
		list-style: none;
		margin-top: 4px;
		margin-right: 0px;
		margin-bottom: 4px; /* 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: 1px;
		padding-left: 0px;
		padding-top: 4px;
		line-height: 16px;
	}	

	#menu ul li {
		margin-top: 2px;
		margin-bottom: 0px;
		padding-left: 0px;
	}
	
	/* The following sets the style for the section heading */
	#menu ul li.section-title {
		font-family: Helvetica, Arial, Verdana, Sans-Serif;
		font-size: 14px;
		font-weight: bold;
		padding-top: 2px;
		padding-right: 6px;
		padding-bottom: 4px;
		padding-left: 0px;
		width: 140px;
		color: 000000;
		font-style: regular;
		border-top-color: #000000;
		border-top-style: solid;
		border-top-width: 1px;

	}

/* CONTENT AREA */

	#content {
		height: 100%;
		width: 780px;
		margin-top: 14px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 160px; /* 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: 0px;
	    
	    /* sets the spacing around the content area - this is normally set to match padding options in #menu but can be changed seperately */
		padding-top: 6px;  /* change to match the padding-top in #menu if you want them to align */
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
		border-top-color: #000000;
		border-top-style: solid;
		border-top-width: 1px;
	}

	.container {
		margin-bottom: 2px;
	}

	#content p { /* sets the properties for all paragraphs in the content area */	
	    line-height: 10px; /* use this the change the leading (space between lines) */
	    font-size: 11px;
		color: #000000;
		font-family: Helvetica, Arial, Verdana, Sans-Serif;
	}

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

.slide_desc_v { 
	position: absolute; 
	top: 644px; 
	left: 160px; 
	width: 585px;
	padding-top: 4px;
	padding-bottom: 8px;
	font-weight: normal;
}
/*.slide_header { position: absolute; top: 50px; left: 198px; width: 480px; }*/

.nav_v { position: absolute; top: 0px; left: 500x; }	

.headline {
		float: left;
		clear: left; 
		font-family: Helvetica, Arial, Verdana, Sans-Serif;
		font-weight: normal;
		font-size: 12px;
		color: 000000;
		}		

/* HEADINGS */
	
	/*
	when typing your text/descriptions follow this format to use these heading types	
	start with h1 as your largest most important heading. you may not need all 4 but they are here if you do.
	*/
	
	h1 { 
	padding-bottom: 15px; /* sets the spacing between the heading and paragraph below */
	font-family: Helvetica, Arial, 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 */
	font-size: 20px;
	font-weight: normal;
	color: #000000;
	}
	
	h2 { 
	font-family: Helvetica, Arial, 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 */
	font-size: 14px;
	font-weight: normal;
	color: #000000;

	}
	
	h3 { 
	font-family: Helvetica, Arial, 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 */
	font-size: 12px;
	font-weight: normal;
	line-height: 0px;
	color: #000000;	
	}
	
	
		
	h4 { 
	font-family: Helvetica, Arial, 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 */
	font-size: 10px;
	font-weight: normal;
	color: #000000;
	line-height: 13px;
	}
	
	h5 { 
	font-family: Helvetica, Arial, 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 */
	font-size: 9px;
	line-height: 12px;
	font-weight: normal;
	color: #000000;
	padding-top: 4px;
	}
	
	
	h6 { 
	font-family: Helvetica, Arial, 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 */
	font-size: 8px;
	font-weight: normal;
	color: #000000;	
	}

/* IMAGES */

	#img-container	{ 
		margin: 36px 0 20px 0; 
		position: absolute; 
		top: 0px; 
		left: 160px; 		
	/*	padding: 0; */
		padding-top: 4px;
		padding-bottom: 4px;
	}
	
	#img-container p	{ 
		width: 780px; 
		padding: 0 0 0 0;
	}
	
	.nothumb img {
		margin-top: 0px;  
		margin-right: 0px;
		margin-bottom: 20px;
		margin-left: 0px;
	}
	
	#once { clear: left; }
		
/* SLIDE SHOW - Navigation */
	
	p.nav a {
		font-size: 9px;
		font-family: Helvetica, Arial, Sans-Serif;
	}
	
	p.nav a:hover {
	}
	
	p.nav span#num {
		letter-spacing: 2px;
		font-family: Helvetica, Arial, Sans-Serif;
		font-size: 9px;
		font-style: normal;
		padding-left: 2px;
	}
	
/* About Type */

.abouttype { 
	position: absolute; 
	top: 35px; 
	left: 160px; 
	width: 400px;
	padding-bottom: 8px;
	font-weight: normal;
	line-height: 14px;
	padding-top: 3px;
	}