/**
* CSS
* 
* @version 1.0
* @author Stasieczek 



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

body {
	font-size: 12px;
	font-family: Helvetica, Sans-Serif; 
}

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

/* LINKS */
	
	
	/* colors for all links */
	a:link { 
	text-decoration: none;
	color: #000000;
	}
	
	a:active { 
	text-decoration: none;
	}
	
	a:visited { 
	text-decoration: none;
	color: #000000;
	}
	
	a:hover { 
 	text-decoration: none;
	color: #000000;
	background: #fff000;
	}

	
	a img { 
	border: none; 
	}
	
	
	.top-section {
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px; /* matches padding left in #menu ul */
		font-size: 0px;
		line-height: 0px;
		color: #FFFFFF;
		font-style: none;
		font-family: helvetica, serif;
	}


/* MENU */

	#menu {
		width: 200px;
		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: 25px;
		padding-bottom: 25px;
		padding-left: 0px;
		padding-right: 0px;
		font-size: 11px;

	}
	
	/* This section controls each section made */ 
	#menu ul {
		list-style: none;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 5px;
		margin-left: 0px;
		padding-right: 10px;
		padding-left: 10px;
	}

	#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: Helvetica, serif;
		font-weight:bolder;
		font-size: 12px;
		padding-top: 5px;
		padding-right: 0px;
		padding-bottom: 3px;
		padding-left: 0px;
		color: #000000;
		text-align:left;
		/* Following lines adds a line about each section */
		border-top-color: #000000;
		border-top-style: solid;
		border-top-width: 15px;
		border-bottom-color: #000000;
		border-bottom-style: solid;
		border-bottom-width: 0px;

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

	/* This sets the style for Post-Nav Text which can be accessed in the Exhibit Settings */
		
		#copy {
			font-size: 12px;
			color: #000000;
			font-family: helvetica, serif;
			font-style: none;
			margin-top: 25px;
			padding-top: 0px;
			border-top-color: #000000;
			border-top-style: solid;
			border-top-width: 0px;
		}


/* CONTENT AREA */

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

	.container {
		margin-bottom: 25px;
	}

	#content p { /* sets the properties for all paragraphs in the content area */
		width: 900px;
		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 */
	
	/*
	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-family: helvetica, serif;
		font-size: 32px;
		color: #000000; /* 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 */
	}
	
	h2 { 
		font-family: Helvetica, serif;
		font-size: 20px;
		font-weight: normal;
		color: #000000;
		padding-bottom: 15px; /* sets the spacing between the heading and paragraph below */

	}
	
	h3 { 
		font-family: Helvetica, serif;
		font-size: 16px;
		color: #000000;
	}
	
	h4 {
		font-family: Helvetica, serif;
		font-size: 12px; 
		color: #000000;
	}

/* IMAGES */

	#img-container	{ 
		margin: 0 0 0 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: #ffffff; /* erase the following 3 lines if you dont want borders on your images */
		border-width: 0px; 
		border-style:  solid;
	}
	
	#once { clear: left; }
	
	
/* SLIDE SHOW - Navigation */
	
	p.nav a {
		background-color: #FFFFFF;
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
		font-size: 12px;
		font-color: #FFFFFF;
		font-family: Helvetica, serif;
		-moz-border-radius-bottomleft:20px;
		-moz-border-radius-bottomright:20px;
		-moz-border-radius-topleft:20px;
		-moz-border-radius-topright:20px;
	}
	
	p.nav a:hover {
	text-decoration: none;
	color: #FFFFFF;
	background-color: #000000;
	}
	
	p.nav span#num {
		letter-spacing: 2px;
		font-family: Helvetica, serif;
		font-style: none;
		padding-left: 20px;
	}