/**
* 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: #888888; /* sets the color of all type in the website except for links and other sections overwritten */
	background-color: #ffffff; /* sets the overall background color */
}

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

/* LINKS */
	
	
	/* colors for all links */
	a { 
	text-decoration: none; /* none = no underline, other options include line-through or overline */
	color: #888;
	outline: none;
	}
	a:active {
  	outline: none;
	}

	
	
	/* sets the properties for links when mouse rolls over */
	a:hover { 
 	text-decoration: none;
	}

	/* any img that is a link */
	a img { 
	border: none; 
	}

/* Pre-Nav Text - Can be accessed in the Exhibit Settings */
	
	
	.top-section {
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px; /* matches padding left in #menu ul */
		font-size: 24px;
		line-height: 24px;
		color: #666666;
		font-style: italic;
		font-family: Georgia, serif;
	}


/* MENU */

	#menu {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
	
	margin-top: 38px;
	
	

	}



	
	.bottom-section {}
		
	/* This section controls each section made */ 
	#menu ul {
		list-style-type:none;
		padding:0;
		display: inline;
		
	}
	#menu img {
			margin-bottom: 7px;
		
	}
	#menu ul li {
		display:inline;
		font-size: 19px;
		margin-right: 20px;
	}

	#menu ul li a {
		text-transform:uppercase;
		color: #b0b0b2;
	}
	
	/* The following sets the style for the section heading */
	#menu ul li.section-title {
		font-family: Georgia, serif;
		font-style: italic;
		font-size: 12px;
		padding-top: 5px;
		padding-right: 0px;
		padding-bottom: 5px;
		padding-left: 0px;
		display: none;

	}
	
	/* The following selectors style the "Built with Indexhibit" on the menu */	
		
		#menu ul.built {
			margin-bottom: 0;
			display: none;
		}
	
		#menu ul.built li {
			padding-top: 5px;
			border-top-color: #cccccc;
			border-top-style: solid;
			border-top-width: 1px;
			color: #bbbbbb;
		}
		
		

	/* 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: 10px;
			border-top-color: #cccccc;
			border-top-style: solid;
			border-top-width: 1px;
		}


/* CONTENT AREA */

	#content {
	
	margin-left: auto;
	margin-right: auto;
	width: 960px;
	padding-top: 40px;
	margin-bottom: 38px;
	}


	#content p { /* sets the properties for all paragraphs in the content area */
		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.
	*/
	

	
	h2 { 
		font-family: Georgia, serif;
		font-size: 20px;
		font-weight: normal;
		color: #666666;
		padding-bottom: 15px; /* sets the spacing between the heading and paragraph below */

	}
	
	h3 { 
		font-size: 16px;
		color: #0006FF;
	}
	
	h4 { 
		font-size: 12px; 
		color: #0006FF;
	}

/* 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; }
	
	
/* SLIDE SHOW - Navigation */
	
	p.nav a {
		background-color: #eeeeee;
		padding-top: 3px;
		padding-right: 9px;
		padding-bottom: 3px;
		padding-left: 9px;
		font-size: 11px;
		font-family: Georgia, serif;
		-moz-border-radius-bottomleft:3px;
		-moz-border-radius-bottomright:3px;
		-moz-border-radius-topleft:3px;
		-moz-border-radius-topright:3px;
	}
	
	p.nav a:hover {
		background-color: #cccccc;
	}
	
	p.nav span#num {
		letter-spacing: 2px;
		font-family: Georgia, serif;
		font-style: italic;
		padding-left: 20px;
	}
	
	
	
	
	
	
/* FILSTRIP (Max) */

	#filmstrip {
		margin-top:-20px;

	}
	
	
	#filmstrip a {
		display:block;
		float:left;
		margin-bottom:3px;
		margin-right:3px;
	}
	
	
	#filmstrip br {
		clear: both;
	}
	.clearfix {clear: both;}
	
	#tooltip{
	position:absolute;
	border:1px solid #333;
	background:#fff;
	padding:2px 5px;
	color:#333;
	display:none;
	}	
	#bildtext {margin-top: -12px;}
	
	#bildtext img {vertical-align:middle;}
	
	h1 {
  	background-image:url("http://maxberggren.com/indexhibit/ndxz-studio/site/img/EBJ-logo.png");
  	background-repeat:no-repeat;
  	height:33px;
  	width: 450px;
  	}
	h1 span {display:none;}

	#logo {
	border-bottom: solid 1px #000;
	margin-bottom: 8px;
  	padding-bottom: 8px;
  	height:33px;
	}
	
	h1 span {display:none;}

	#logo img {
	float: right;
	}
	#contact p {
	font-size: 30px;
	line-height: 36px;
	font-style: italic;
	color: #bbb;
	}
	#prevnext {margin-right: 10px;}