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


*/
* {
	margin: 0;
	padding: 0;
}
html, body { height:100%; }

body {
	text-align: center; 
	font-size: 12px;
	line-height: 14px;
	font-family: Arial, Verdana, 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: #333333; /* sets the color of all type in the website except for links and other sections overwritten */
	background: #FFF;
}

#wrapper { width: 850px; margin: 0 auto; top:0px; height:100%; text-align: left; }

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

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

	/* any img that is a link */
	a img { 
	border: none; 
	}
	
	
	a.footer:link { text-decoration: none; color: #333333; }
	a.footer:hover { color: grey; background: none; text-decoration:none; }
	a.footer:active { color: #333333; background: none; }
	a.footer:visited { text-decoration: none; color: #333333; }
	
	a.blog:link {line-height:200%; font-weight: bold; font-size: 14px; text-decoration: none; color: #333333; }
	a.blog:hover {line-height:200%;font-weight: bold; font-size: 14px; text-decoration: none; color: grey; }
	a.blog:active {line-height:200%; font-weight: bold; font-size: 14px; text-decoration: none; color: #333333; }
	a.blog:visited {line-height:200%; font-weight: bold; font-size: 14px; text-decoration: none; color: #333333; }
	
	 
		
		
	
/* Pre-Nav Text - Can be accessed in the Exhibit Settings */
	
	
	.top-section {
		width: 850px;
		padding-top: 50px;
		padding-right: 0px;
		padding-bottom: 5px;
		padding-left: 0px;
		font-size: 14px;
		line-height: 0px;
		color: #000000;
		font-family: Arial, Verdana, sans-serif;
		border-bottom: 5px solid #333333;
		background-color: none;
		text-align: left; 
		
	}


/* MENU */

	#menu {
		width: 120px;
    	float: right;
		overflow: false;
		top: 175px;
		left: 20px;
		bottom: 0;
		padding-top: 10px; /* change to match the padding-top in #content if you want them to align */
		padding-bottom: 10px;
		/* padding-left & right can be changed in #menu ul - below */
		color: #333333;
		text-align: left;
		line-height: 50%;
		background-color: none;
		
	}
	
	
	/* 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: 0px;
		padding-left: 0px;
		font-size: 12px;
		border-bottom: none;
	}
	

	#menu ul li {
		font-size: 12px;
		line-height: 13px;
		margin-top: 0px;
		margin-bottom: 2px;
		padding-top: 0px;
	}
	
	#menu ul li a { color: #999999; text-decoration: none; }
	
	#menu ul li a:active { color:#333333; background: none; }
	
	#menu ul li a:hover { color:#333333; background:none; text-decoration:none; }
	
	
	/* The following sets the style for the section heading */
	
	#menu ul li.section-title {
		font-size: 13px;
		border-bottom: none;
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px ;
		padding-left: 0px;
		margin-top: 8px;
		margin-bottom: non;
		color: #333333;
		cursor: pointer;
	}
	
	#menu ul li.section-title a:hover { color:#333333 text-decoration: none;} a:hover { color:#333333 text-decoration: none;}
	#menu ul li.section-title a { color:#333333 text-decoration: none;}
	
	/* The following selectors style the "Built with Indexhibit" on the menu */	
		
		#menu ul.built {
			margin-bottom: 0;
			font-size: 10px;
			color:#CCCCCC;
			
		}
	
		#menu ul.built li {
			padding-top: 25px;
			font-size: 12px;
			color:#999999;
			position: fixed;
			text-align: bottom;
		}
		
		/* The following changes the link colors for only the "Built with Indexhibit" link */
		#menu ul.built a {
			text-decoration: underline;
		}
		
		#menu ul.built a:hover { color:#333333; background:none; text-decoration:none; }
		

	/* This sets the style for Post-Nav Text which can be accessed in the Exhibit Settings */
		
		#copy {
			font-size: 9px;
			color: #373023;
			font-family: Arial;
			font-style: italic;
		}
		
		#copy ul li {
			margin-top: 5px;
			padding-top: 20px;
		}


/* CONTENT AREA */

	#content {
		width: 700px;
		margin-top: 20px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px; /* 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: 0px;  /* change to match the padding-top in #menu if you want them to align */
		padding-right: 20px;
		padding-bottom: 0px;
		padding-left: 0px;
		border-right: 1px solid #333333;
		background-color: none;
		text-align: center;
	}

	
	#content_home {
		width: 700px;
		margin-top: 20px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px; /* 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: 0px;  /* change to match the padding-top in #menu if you want them to align */
		padding-right: 20px;
		padding-bottom: 0px;
		padding-left: 0px;
		border-right: 1px solid #333333;
		background-color: none;
		text-align: center;
		float: right; 
	}
	
	#last {
		width: 720px;
		height: 80px;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
	    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: 20px;
		border: none;
		background-color: none;
		text-align: center;
		color:  #999999;
		font-size: 12px;
		font-family: Arial;
		overflow: hidden;
		}
	
	.container {
		margin-bottom: 0px;
	}
	
	
	#multilanguage {
		width: 700px;
		height: 5px;
		text-align: right;
		border: none;
		background-color: none;
		padding-bottom: 35px;
	}
	
	#content p { /* sets the properties for all paragraphs in the content area */
		width: 700px;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 10px; /* 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: 10px;
    margin-left: 0;
    text-align: justify;
	}

/* 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: Arial, Verdana, sans-serif;
		font-size: 40px;
		line-height: 20px;
		font-weight: normal;
		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-top: 15px;
		padding-bottom: 15px; /* sets the spacing between the heading and paragraph below */
	}
	
	h2 { 
	    font-family: Arial, Verdana, sans-serif;
		font-size: 30px;
		font-weight: normal;
		padding-bottom: 10px; /* sets the spacing between the heading and paragraph below */
		border: none;
		line-height: 30px;
		text-align: justify;
	}
	
	h3 { 
		font-size: 16px;
		padding-bottom: 8px; /* sets the spacing between the heading and paragraph below */
		border: none;
		line-height: 30px;
		text-align: justify;
		
	}
	
	h4 { 
		font-size: 14px; 
		font-weight: bold;
		line-height: 150%;
		
	}
	
div.titles { 
		padding-top: 0px; 
	}

div.titles2 { 
		padding-top: 20px; 
		padding-bottom: 0px;
	}


div.contact { 
		padding-top: 20px; 
		padding-bottom: 0px;
	}

div.contacts { 
		padding-top: 0px; 
		padding-bottom: 0px;
		line-height: 20px;
		text-align: left;
	}
	
/* IMAGES */

#img-container	{ 
		width: 700px; 
		margin: none; 
		padding: none;
		border: none;
	}

#img-containerHOME	{ 
		width: 700px; 
		margin: none; 
		padding: none;
		border: none;
		float: left;
	}
	
#img-container2	{ 
		width: 700px; 
		margin-right: none; 
		padding: none;
		border: none;
		text-align: center;
	}

#img-container2 a {
    display: block;
    float: left;
    width: 700px; 
    margin-right: 10px; 
    margin-bottom: 10px;
    padding:none;
    border-bottom: 1px dashed red;
    border-right: 1px solid #333333;
    overflow: hidden;
    text-align: center;
}


#img-container a {
    display: block;
    float: left;
    width: 700px;
    margin: 0 0px 0px 0;
    padding: 0;
    border: 0;
    overflow: hidden;
	border-bottom: none;
	}
	
	
	#img-container p	{ 
		width: 700px; 
		margin: none; 
		padding: none;
		border: none;
		
	}
	
	.nothumb img {
		margin-top: 0px;  
		margin-right: 0px;
		margin-bottom: 10px;
		margin-left: 0px;
	}
	
	#once { clear: left; }
	
	
/* SLIDE SHOW - Navigation */
	
	p.nav a {
		background-color: #000000;
		color: #ffffff;
		padding-top: 3px;
		padding-right: 9px;
		padding-bottom: 3px;
		padding-left: 9px;
		font-size: 11px;
		font-family: Times, "Times New Roman", serif;
	}
	
	
	p.nav a:hover {
		background-color: gray;
	}
	
span.grey {
		color: grey;
	}	

span.hometitle {
        top: 20px;
		font-family: Arial, Verdana, sans-serif;
		font-size: 35px;
		font-weight: normal;
		padding-top: 40px; /* sets the spacing between the heading and paragraph below */
		border: none;
		line-height: 40px;
		text-align: justify;
		color: #333333;
	}
	
p.nav span#num {
		letter-spacing: 2px;
		font-family: Times, "Times New Roman", serif;
		font-style: italic;
		padding-left: 20px;
	}
	
	.clear-both { clear: both; }
