/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar


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

body {
	font-size: 10px;
	font-family: Verdana, sans-serif;
	background: #fff;
}

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

/* LINKS */
	
	
a:link { text-decoration: none; color: #666; }
a:active { text-decoration: none; color: #666;}
a:visited { text-decoration: line-through; color: #666; }
a:hover { text-decoration: none; background:#FFFFFF;} FFFF00

a img { border: none; }

/* Pre-Nav Text - Can be accessed in the Exhibit Settings */
	
	
	.top-section {
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 15px;
		padding-left: 0;
		font-size: 10px;
		line-height: 0x;
		color: #666;
		font-style: italic;
		font-family: Verdana, sans-serif;
	}


/* MENU */

	#menu {
    		width: 190px;
    		overflow: auto;
    		top: 30px;
    		bottom: 30px;
    		left: 30px;
    		position: fixed;
    		height: 100%;
    		background-color: white; 
    		padding-top: 60px;
    		padding-left: 20px;
    		padding-right: 20px;
    		opacity: .75;
}
	
	/* This section controls each section made */ 
	#menu ul {
		list-style: none;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 24px; /* 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: 0;
		padding-left: 0;
	}

	#menu ul li {
		margin-top: 0px;
		margin-bottom: 4px;
	}
	
	/* The following sets the style for the section heading */
	#menu ul li.section-title {
		font-size: 10px;
		font-style: italic;		
		padding-top: 5px;
		padding-right: 0px;
		padding-bottom: 5px;
		padding-left: 0px;
		color: #000000;
		/* Following lines adds a line about each section */
		border-top-color: #cccccc;
		border-top-style: solid;
		border-top-width: 1px;

	}

	/* This sets the style for Post-Nav Text which can be accessed in the Exhibit Settings */
		
		#copy {
			font-size: 9px;
			color: #bbbbbb;
			font-family: Georgia, serif;
			font-style: italic;
			margin-top: 5px;
			padding-top: 0px;
			border-top-color: #cccccc;
			border-top-style: solid;
			border-top-width: 1px;
		}

.bottom-section {
		top: 0px;
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0;
		font-size: 9px;
		line-height: 0px;
		color: #666;
		font-style: italic;
		font-family: Verdana, sans-serif;
	}

	/* The following selectors style the "Built with Indexhibit" on the menu */	
		
		#menu ul.built {
			margin-top: 0;
		}
	
		#menu ul.built li {
			padding-top: 5px;
			border-top-color: #cccccc;
			border-top-style: solid;
			border-top-width: 1px;
			color: #bbbbbb;
		}
		
		/* The following changes the link colors for only the "Built with Indexhibit" link */
		#menu ul.built a {
			color: #cccccc;
			text-decoration: none;
		}
		
		#menu ul.built a:hover {
		 	text-decoration: none;
			color: #bbbbbb;
			background: none;
		}




/* CONTENT AREA */

	#content {
		height: 100%;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 240px; /* 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: 23px;  /* change to match the padding-top in #menu if you want them to align */
		padding-right: 0px;
		padding-bottom: 25px;
		padding-left: 40px;
	}

	.container {
		margin-bottom: 25px;
	}

	#content p { /* sets the properties for all paragraphs in the content area */
		width: 600px;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 20px; /* sets the space between paragraphs */
		margin-left: 0px; 	
	    line-height: 18px; /* 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 */
	
	
	h1 { 
		font-family: Arial, Helvetica, sans-serif;
		font-size: 60px;
		padding-bottom: 15px; /* sets the spacing between the heading and paragraph below */
	}
	
	h2 { 
		font-family: Georgia, serif;
		font-size: 60px;
		font-weight: normal;
		padding-bottom: 15px; /* sets the spacing between the heading and paragraph below */

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


/* 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: 1px; 
		border-style:  solid;
	}
	
	#once { clear: left; }