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


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

body {
	font-size: 11px;
	font-family: Verdana, 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: #999999; /* sets the color of all type in the website except for links and other sections overwritten */
	background-color: #ffffff; /* sets hex color of every link - www.colorpicker.com or photoshop to find hex values */
}

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

/* LINKS */

	a:link { text-decoration: none; color: #4c4b4b; }
	
	a:active { text-decoration: none; }
	
	a:visited { text-decoration: none; color: #4c4b4b; }
	
	a:hover { text-decoration: none; color: #c4eb10; }

	a img { border: none; }

/* Pre-Nav Text - Can be accessed in the Exhibit Settings */	
	
.top-section {
    width: 200px;
    margin-left: 20px;
    margin-bottom: 20px;
	padding-top: 40px;
	padding-right: 0px;
	padding-bottom: 50px;
	padding-left: 10px; /* matches padding left in #menu ul */
    color: #ffffff;
//  font-family: "HelveticaNeue-UltraLight","Helvetica Neue UltraLight","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-family: Georgia, serif;
    font-style: italic;
	font-size: 30px;
	background-image: url(img/logo.png);
    }


/* MENU */

	#menu {
		width: 250px; /* 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: 0px; /* change to match the padding-top in #content if you want them to align */
		padding-bottom: 50px;
		/* padding-left & right can be changed in #menu ul - below */
		font-size: 11px;
		font-family: Verdana, Arial, Sans-Serif;
	}
	
	/* This section controls each section made */ 
	#menu ul {
		list-style: none;
		margin : 0px;
		margin-right: 0px;
		margin-bottom: 0px; /* sets the space between each section */
		margin-left: 15px;
		/* sets the spacing around the menu - this is normally set to match padding options in #content but can be changed seperately */
		padding-right: 35px;
		padding-left: 25px;
	}

	#menu ul li {
		margin-top: 0px;
		margin-bottom: 5px;
	}
	
	/* The following sets the style for the section heading */
	#menu ul li.section-title {
//    font-family: "HelveticaNeue-UltraLight","Helvetica Neue UltraLight","Helvetica Neue",Helvetica,Arial,sans-serif;
    	font-family: Georgia, serif;
    	font-style: italic;
		font-size: 24px;
		padding: 0 0 0 0;
//		margin-left: -10px;
		color: #4b4b4b;
		/* Following lines adds a line about each section */
		border-top-color: #cccccc;
		border-top-style: dotted;
		border-top-width: 1px;
	}

	#menu li.active a {
		background:#c4eb10 none repeat scroll 0 0;
		color:#FFFFFF;
		text-decoration:none;
	}

	/* The following selectors style the "Built with Indexhibit" on the menu */	
		#menu ul.built {
			margin-bottom: 0;
		}
	
		#menu ul.built li {
			padding-top: 10px;
			border-top-color: #cccccc;
			border-top-style: solid;
			border-top-width: 0px;
			color: #c4c4c4;
			font-size: 10px;
			font-family: Verdana, Arial, Sans-Serif;
		}
		
		/* The following changes the link colors for only the "Built with Indexhibit" link */
		#menu ul.built a {
			color: #c4c4c4;
			font-size: 10px
		}
		
		#menu ul.built a:hover {
		 	text-decoration: underline;
			color: #c9ff23;
		}



/* CONTENT AREA */

	#content {
		height: 100%;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 250px; /* 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;
	    
	    /* sets the spacing around the content area - this is normally set to match padding options in #menu but can be changed seperately */
		padding-top: 50px;  /* change to match the padding-top in #menu if you want them to align */
		padding-right: 5px;
		padding-bottom: 25px;
		padding-left: 50px;
	}

	.container {
		margin-bottom: 25px;
	}

	#content p { /* sets the properties for all paragraphs in the content area */
		width: 490px;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 20px; /* sets the space between paragraphs */
		margin-left: 0px; 	
	    line-height: 16px; /* 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;
	}

strong {
  font-size: 28px;
  line-height: 32px;
  color: #666666;
//  font-family: "HelveticaNeue-UltraLight","Helvetica Neue UltraLight","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: normal;
}
/* HEADINGS */
	

	
	h1 { 
		font-family: Arial, Sans-Serif;
		font-size: 18px;
		color: #4a9ef2; /* This color overides the color set in "body". Delete this line if you want the colors of the headings to match the rest of your type */
		padding-bottom: 15px; /* sets the spacing between the heading and paragraph below */
		}

/* IMAGES */

	#img-container	{ 
		margin: 0 0 20px 0; 
		padding: 0; 
	}
	
	#img-container p	{ 
		width: 400px; 
		margin: 0; 
		padding: 0 0 12px 0;
	}
	
	.nothumb img {
		margin-top: 0px;  
		margin-right: 0px;
		margin-bottom: 20px;
		margin-left: 0px;
		border-color: #dbe2e0; /* erase the following 3 lines if you dont want borders on your images */
		border-width: 0px; 
		border-style:  solid;
	}
	
	#once { clear: left; }
	
