/**
* CSS
* 
* responsive theme
* version 0.1b
* author JP Kelly - smallGod
* author Ed Nacional
* author Gregory Cadar
* author Jeffery Vaska
*
*/




/*****************************
      BEGIN NDXZ CSS
*****************************/


* {
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: none
}

body {
	font-size: 16px !important;
	font-family: 'Roboto Condensed', 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: #000; /* sets the color of all type in the website except for links and other sections overwritten */
	background-color: #ffff !important; /* sets the overall background color */
}

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: #000; /* sets hex color of every link - www.colorpicker.com or photoshop to find hex values */
	
	}
	
	a:active { 
	text-decoration: 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: #000; /* the color can also be changed */
	/*background: #e0e0e0;  this changes the background of a visited link, you can also get rid of the the back ground an color and there will be no change if a link has been visited */ 
	}
	
	/* sets the properties for links when mouse rolls over */
	a:hover { 
	color: #bbb; 
	}

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

.video {
	width: 100% !important;
	max-width: 1000px !important;
	height: 541px !important;
}

@media (max-width:1000px) {
	.video {
		height: auto !important;
	}
}


/* Pre-Nav Text - Can be accessed in the Exhibit Settings - this the text that appears at the top of the menu area */
	
	.top-section {
		padding-left: 12px;
		padding-bottom: 5px;
		/*padding-left: 25px;  matches padding left in #menu ul */
		font-size: 18px;
		line-height: 18px;
	    color: #000;
		margin-top: 10px !important;
		font-weight: normal; /* can be normal */
		font-style: normal; /* can be italic */
		font-family: 'Roboto Condensed', sans-serif;
	
	}

	.top-section a{

		font-weight:normal;
		font-size:17px !important;
		color: #000;
        /* applies to links in the Pre Nav Text - delete or change to bold if you want Pre Nav Text links bold */
	}


/* MENU */


#menu {
/*	max-width: 225px;
*/	 }



	#menu {
		/*float:left;*/
	  z-index: 1000;  /*sets the width of your left hand bar - if you change this also change the LEFT margin in #content to match */
		top: 0;
		bottom: 0;
		left: 0;
    background-color: #fff;
		/*width: 100% !important;
		position: fixed;  this make the menu stay in place while the content section scrolls*/
		height: 150px;
		/*background-color: #fff; /*background color of the menu area */
		/*opacity: 0.8;*/
		padding-top: 10px; /* change to match the padding-top in #content if you want them to align */
		/*padding-bottom: 25px;*/
		/*padding-left & right can be changed in #menu ul - below */
		font-size: 14px;
    padding-left: 0px;

	}
	
	/* This section controls each section made */ 
	#menu ul {
		margin-right: 10px;
		margin-bottom: 40px; /* sets the space between each section */
		margin-left: 12px;
		/* sets the spacing around the menu - this is normally set to match padding options in #content but can be changed seperately */
		padding-right:0px;
		font-family: 'Roboto Condensed', sans-serif;
		/*padding-left: 25px;*/
		
	}

	#menu ul li {
		margin-left: 0px;
		margin-top: 10px;
		margin-bottom: 4px;
		
	}
	
	/* The following sets the style for the section heading */
	#menu ul li.section-title {
		margin-left: 0px;
		font-family: 'Roboto Condensed', sans-serif;
		font-style: normal; /* can be italic */
		font-weight: normal; /* can be normal */
		font-size: 16px;
		margin-top: 10px !important;
		padding-right: 0px;
		color: #B3B3B3;
		/* Following lines adds a line about each section */
		/*border-top-color: #cccccc;
		border-top-style: solid;
		border-top-width: 1px;*/

	}
	
@media (max-width:960px) {
	
	#menu {
		z-index: 1002;
   position: relative !important;
		height: 20px !important;
		background-color: #ffff !important;
		padding-top: 65px;
			padding-right: 0px !important;
		margin-right: 0px !important;
		margin-left: 0px !important;
		padding-bottom: 25px !important;
		margin-top: 0px;
		 }
	
	#menu ul {
		margin-right: 0px !important;
				margin-top: 0px;
		width: 100% !important;
		overflow: hidden !important;
		padding-right: 0px !important;
		text-align: left;
		margin-left: 0px !important;
		background-color: #fff !important;
			margin-bottom: 18px !important;
	}
	
		#menu ul li {
			margin-left: 0px;
			margin-right: 0px !important;
			margin-top: 0px;
		margin-bottom: 1px;
		font-size: 14px !important;
		font-family: 'Roboto Condensed', sans-serif;
			background-color: #ffff !important;
	}
	
		/* The following sets the style for the section heading */
	#menu ul li.section-title {
		background-color: #ffff !important;
		align-content: left !important;
		width: 100% !important;
		margin-right: 0px !important;
		font-family: 'Roboto Condensed', sans-serif;
		font-style: normal; /* can be italic */
		font-weight: normal; /* can be normal */
		font-size: 16px !important;
    margin-top: 0px !important;
		margin-left: 0px !important;
		padding-right: 0px;
		/*padding-bottom: 5px;*/
		padding-left: 0px;
		color: #B3B3B3;
		/* Following lines adds a line about each section */
		/*border-top-color: #cccccc;
		border-top-style: solid;
		border-top-width: 1px;*/

	}
	
	.top-section {
		z-index: 1002;
		margin-top: -30px !important;
		padding-right: 0px;
		padding-bottom: 0px;
	  margin-left: 0px !important;
		/*padding-left: 25px;  matches padding left in #menu ul */
		font-size: 1.5em;
		line-height: 18px;
		background-color: #fff !important;
		color: #656461;
		font-weight: normal; /* can be normal */
		font-style: normal; /* can be italic */
		font-family: 'Roboto Condensed', sans-serif;

	
	}
	.top-section a{
				z-index: 1002;
		background-color: #fff !important;
		position: fixed !important;
		width: 100%;
		margin-top: -25px !important;
		margin-left: -35px;
		margin-bottom: 0px !important;
		padding-left: 20px;
		line-height: 18px;
		font-style: normal; /* can be italic */
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: normal; /* applies to links in the Pre Nav Text - delete or change to bold if you want Pre Nav Text links bold */
	}
	
}
	
	
	/* The following selectors style the "Built with Indexhibit" on the menu */	
		
		#menu ul.built {
			margin-bottom: 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: #bbbbbb;
		}
		
		#menu ul.built a:hover {
		 	text-decoration: underline;
			color: #390660;
		}

	/* This sets the style for Post-Nav Text which can be accessed in the Exhibit Settings */
		
		.bottom-section {
			font-size: 10px;
			color: #bbbbbb;
			font-family: 'Roboto Condensed', sans-serif;
			font-style: normal;
			/* margin-top: 5px;
			padding-top: 10px;
			border-top-color: #cccccc;
			border-top-style: solid;
			border-top-width: 1px; */
		}


/* CONTENT AREA */

	#content {
		margin-top: 25px;
		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;
	    color: #666;
			font-family: 'Roboto Condensed', sans-serif;
		font-size: 16 !important;
	    position: relative;
	    /* sets the spacing around the content area - this is normally set to match padding options in #menu but can be changed seperately */
		  /* change to match the padding-top in #menu if you want them to align */
		padding-right: 5px;
		padding-bottom: 25px;
		/*padding-left: 40px;*/
	}
	
@media (max-width:960px) {
	#content {
		margin-top:380px;
		margin-left: 10px !important;
		width: 100% !important;
	}
}	
	#idxz_text {
		/*min-width:200px; max-width:300px;*/
		padding-right: 25px;
		margin-bottom:15px;
			font-family: 'Roboto Condensed', sans-serif;
		font-size: 16 !important;
	}

	.container {
		margin-bottom: 25px;
			font-family: 'Roboto Condensed', sans-serif;
		font-size: 16 !important;
	}



#content {width: 960px}

	#content p { /* sets the properties for all paragraphs in the content area */
			font-family: 'Roboto Condensed', sans-serif;
		font-size: 14px !important;
		font-weight: normal !important;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 12px; /* sets the space between paragraphs */
		margin-left: 0px; 	
		font-size: 12px;
	    line-height: 21px; /* use this the change the leading (space between lines) */
	}

	p { /* sets the properties for all paragraphs  */
			font-family: 'Roboto Condensed', sans-serif;
		font-size: 16 !important;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 5px;
    margin-left: 0;
		text-align:justify;
		font-size: 10px;
	}

@media (max-width:960px) {
	#content p {
			font-family: 'Roboto Condensed', sans-seri !important;
		font-size: 1.2em;
		width: 95% !important;
		text-align: left !important;
		
	}
	.desp {width:90%;}
	#thumb-container
	{
		margin-left:-3px;
	}
	

	@media (max-width:960px) {
		
		#img-container .picture {width: 95% !important; padding-top: 10px;}
		#img-container .picture_holder {width: 100% !important; padding-top: 10px; }
		#img-container #text { float: left; width: 100%; margin-right:0px; margin-left: 2px !important; margin-top: 15px;} 
 
		#img-container  
  { width: 100% !important; }
}

/* 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: 'Roboto Condensed', sans-serif;
		font-size: 42.358px;
		font-weight: normal;
		color: #767470; /* 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 */
		margin-top: 0px;
		padding-bottom: 10px; /* sets the spacing between the heading and paragraph below */
	}
	
	h2 { 
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 26.179px;
		font-weight: normal;
		color: #656461; /* 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 */
		margin-top: 0px;
		padding-bottom: 9px; /* sets the spacing between the heading and paragraph below */

	}
	
	h3 { 
		font-family: 'Helvetica Neue', sans-serif;
		font-size: 16.18px;
		color: #4b4a47; /* 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 */
		font-weight: normal;
		margin-top: 0px;
		padding-bottom: 8px; /* sets the spacing between the heading and paragraph below */
	}
	
	h4 { 
		font-family: 'Helvetica Neue', sans-serif;
		font-size: 10px;
		font-weight: bold;
		color: #656461; /* 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 */
		margin-top: 3px;
		padding-bottom: 7px; /* sets the spacing between the heading and paragraph below */
	}

/* IMAGES */

	#img-container	{ 
		margin: 0 0 20px 0; 
		padding: 0; 
	}
	
@media (max-width:767px) {
	#img-container	{ 
		margin: 0 0 0px 0 !important; 
		padding: 0; 
	}
	
	h1 { 
		font-family: "Helvetica Neue", "Helvetica", Arial, Verdana, sans-serif;
		font-size: 42.358px;
		font-weight: normal;
		color: #767470; /* 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 */
		margin-top: 0px;
		padding-bottom: 10px; /* sets the spacing between the heading and paragraph below */
	}
	
	h2 { 
		font-family: "Helvetica Neue", "Helvetica", Arial, Verdana, sans-serif;
		font-size: 26.179px;
		font-weight: normal;
		color: #656461; /* 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 */
		margin-top: 0px;
		padding-bottom: 9px; /* sets the spacing between the heading and paragraph below */

	}
	
	h3 { 
		font-family: "Helvetica Neue", "Helvetica", Arial, Verdana, sans-serif;
		font-size: 16.18px;
		color: #4b4a47; /* 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 */
		font-weight: normal;
		margin-top: 0px;
		padding-bottom: 8px; /* sets the spacing between the heading and paragraph below */
	}
	
	h4 { 
		font-family: "Helvetica Neue", "Helvetica", Arial, Verdana, sans-serif;
		font-size: 1.5em;
		font-weight: normal;
		color: #656461; /* 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 */
		margin-top: 3px;
		padding-bottom: 7px; /* sets the spacing between the heading and paragraph below */
	}
}
	
	#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 EXHIBITION FORMAT - Navigation */
	
	p.nav a {
		background-color: #eeeeee;
		padding-top: 3px;
		padding-right: 9px;
		padding-bottom: 3px;
		padding-left: 9px;
		font-size: 10px;
		color: #656461;
		font-family: Verdana, Geneva, sans-serif;
		-moz-border-radius-bottomleft:3px;
		-moz-border-radius-bottomright:3px;
		-moz-border-radius-topleft:3px;
		-moz-border-radius-topright:3px;
		border-radius: 3px;
	}
	
	p.nav a:hover {
		background-color: #dadada;
		color: #f90;
	}
	
	p.nav span#num {
		letter-spacing: 2px;
		font-family: Verdana, Geneva, sans-serif;
		font-style: normal;
		padding-left: 20px;
	}
	
	
/* THICKBOX EXHIBITION FORMAT - Navigation */

	#TB_window, #TB_caption, #TB_secondLine, #TB_window {
		color: #656461;
	}
		
	#TB_prev a:link, #TB_next a:link {
		background-color: #eeeeee;
		padding-top: 3px;
		padding-right: 9px;
		padding-bottom: 3px;
		padding-left: 9px;
		font-size: 10px;
		color: #656461;
		font-family: Verdana, Geneva, sans-serif;
		-moz-border-radius-bottomleft:3px;
		-moz-border-radius-bottomright:3px;
		-moz-border-radius-topleft:3px;
		-moz-border-radius-topright:3px;
		border-radius: 3px;
	}
	
	#TB_prev a:hover, #TB_next a:hover {
		background-color: #dadada;
		color: #f90;
	}


/*****************************
      END NDXZ CSS
*****************************/