/**
* 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: 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: #000000; /* sets the color of all type in the website except for links and other sections overwritten */
	background-color: #ffffff; /* sets the overall background color */
	/*background-image: url(http://www.4kilos.com/files/call-vermell-3.jpg); */
	background-attachment: fixed;
	overflow: auto;
}


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

	/* any img that is a link */
	a img { 
	/*background-color: white; */
	border: none;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	}


/* Pre-Nav Text - Can be accessed in the Exhibit Settings */
	
	
	.top-section {
		padding-top: 15px;
		padding-right: 0px;
		padding-bottom: 15px;
		padding-left: 0px; /* matches padding left in #menu ul */
		font-size: 11px;
		line-height: 15px;
		color: #000000;
		font-style: none;
		font-family: Helvetica, Arial, Sans-Serif;
	}

	.top-section a {
	background: none; /* removes pre-nav link bar */
	}
		

/* MENU */
#the-background {
				position: fixed;
				overflow: hidden;
				z-index:1;
				width: 100%;
				height:100%;
				top:0;
				left:0;
			}

			#wrapper {
				position: absolute;
				z-index: 1;
				width: 100%;
				height: 100%;
				top: 0;
				left:0;
			}


	#menu {
		width: 190px; /* sets the width of your left hand bar - if you change this also change the LEFT margin in #content to match */
		overflow: auto;
		top: 30px;
		bottom: 30px;
		left: 30px;
		position: fixed; /* this make the menu stay in place while the content section scrolls*/
		/*height: auto;*/
		/*background-image: url(http://www.jtfridsma.com/files/menubg.png);*/
		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;

	}
	
	/* This section controls each section made */ 
	#menu ul {
		list-style: none;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px; /* 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: 15px;
		padding-left: 15px;
	}

	#menu ul li {
		margin-top: 0px;
		margin-bottom: 2px;
	}
	
	/* The following sets the style for the section heading */
	#menu ul li.section-title {
		font-family: Helvetica, Verdana, Arial, sans-serif;
	color: #000;
	font-size: 14px;
	font-weight: bold;
	line-height: 15pt; 
	border-top-style: dotted; 
	border-top-width: 1px; 
	letter-spacing: normal; 
	word-spacing: 0px; 
	font-size: 11px; }
	}
	
	/* The following selectors style the "Built with Indexhibit" on the menu */	
		
		#menu ul.built {
			margin-bottom: 0;
		}
	
		#menu ul.built li {
			padding-top: 15px;
			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;
			background: none;
			padding-left: 0px;
			padding-right: 0px;
			padding-top: 15px;
		}

	/* This sets the style for Post-Nav Text which can be accessed in the Exhibit Settings */
		
		#copy {
			font-size: 11px;
			color: #000000;
			font-family: Helvetica, Arial, Sans-Serif;
			font-style: none;
			margin-top: 15px;
			padding-top: 0px;
		}


/* CONTENT AREA */

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

	.container {
		margin-bottom: 0px;
	}

	#content p { /* sets the properties for all paragraphs in the content area */
		width: 400px;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 15px; /* sets the space between paragraphs */
		margin-left: 0px; 	
	    line-height: 15px; /* use this the change the leading (space between lines) */
	}

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

/* HEADINGS */
	
	h1 { 
		font-size: 11px;
		font-style: bold;
		padding-bottom: 0px; /* sets the spacing between the heading and paragraph below */
	}
	
	h2 { 
		font-size: 11px;
		font-weight: normal;
		font-style: italic;
		padding-bottom: 0px;
	}
	
	

/* IMAGES */

	#img-container	{ 
		margin: 0 0 20px 0; 
		padding: 0; 
	}
	
	#img-container p	{ 
		background-color:#FFF;
		width: 400px;
		height:auto;
		margin: 15; 
		padding: 0 0 12px 0;
		
	}
	
	.nothumb img {
		margin-top: 15px;  
		margin-right: 15px;
		margin-bottom: 15px;
		margin-left: 15px;
	}
	
	/*#once { clear: left; }*/
	
	
/* SLIDE SHOW - Navigation */
	
	p.nav a {
		padding-top: 3px;
		padding-right: 9px;
		padding-bottom: 3px;
		padding-left: 9px;
		font-size: 11px;
		font-family: Helvetica, Arial, Sans-Serif;
		color: #000;
	}
	
	p.nav a:hover {
		color: #FFF;
		background-color: #360;
	}
	
	p.nav span#num {
		letter-spacing: 2px;
		font-family: Helvetica, Arial, Sans-Serif;
		font-style: normal;
		font-size: 11px;
		padding-left: 10px;
	}