/* Navigation bar fixed in place at top of screen,
with centered group of navigation buttons.
See http://jsfiddle.net/25vaU/ for a demonstration
*/

/* This is a nice explanation of how to use line-height to
vertically center elements in divs:
http://stackoverflow.com/questions/4785871/css-vertical-align */

#nav_bar_anchor {
    display: none;
    background-color: white;
    position: fixed;
    overflow: hidden;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 2.5em;
    line-height: 2.5em;
    z-index: 4000;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.25);
}

.nav_element {
	display: inline;
	height: 1em;
	line-height: 1em;
	margin: 0.75em 0.4em;
}

.nav_bar_left {
	display: inline-block;
}

.nav_bar_right {
	display: inline-block;
	position: absolute;
	right: 0;
	margin-right: 1.0em;
}

/* The masthead is laid out just like any other navigation element,
but it is drawn a bit larger and has wider margins. */
#masthead {
	height: 1.25em;
	margin: 0.625em 1.5em;
}

/* Mondrian gallery filles up the entire screen */

#mondrian_gallery {
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.5em;
    margin-bottom: 0em;
}

/* Brightens images when the mouse hovers over them
See http://designshack.net/articles/css/joshuajohnson-2/ */

.brighten {
    border: 1px solid white;
}

.brighten:hover {
    border: 1px solid black;
}

/* Div that overlays the rest of the page;
see http://stackoverflow.com/questions/1718951/jquery-how-can-i-create-a-simple-overlay */

.overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

/* A curtain is a dark, transparent overlay */

#curtain {
    background-image: url('/static/image/curtain_smooth.png');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    text-align: center;
}

#loading_spinner {
	background-image: url('/static/image/loader.gif');
	background-position: center;
	background-repeat: no-repeat;
}

/* The slideshow should fill the entire width of the viewport */

.slideshow {
	z-index: 3000;
	width: 100%;
	height: 100%;
}

.slideshow img {
	min-width: 100%;
	min-height: 100%;
}

/* The contact and client key entry forms are also overlays */

#client_key_entry {
	display: none;
	background-color: white;
	z-index: 2000;
	max-width: 50%;
	max-height: 25%;
	width: 22em;
	height: 11em;
	right: 0;
	margin-top: 15em;
	margin-right: auto;
	margin-left: auto;
	border-width: 3.5px;
	border-style: double;
	text-align: center;
}

#client_key_entry img {
	height: 2.75em;
	margin: 1em; auto, 1em, auto;

}

#client_key_entry form {
	margin-bottom: 1em;
	margin-left: 1em;
	margin-right: 1em;
	text-align: center;
}

#contact {
	background: url('/static/image/contact_info.png') no-repeat center center;
	background-size: 30em;
	display: none;
	background-color: white;
	z-index: 2000;
	max-width: 75%;
	max-height: 25%;
	width: 35em;
	height: 8em;
	right: 0;
	margin-top: 15em;
	margin-right: auto;
	margin-left: auto;
	border-width: 3.5px;
	border-style: double;
	text-align: center;
}

/* Used your id for input text box to make font size bigger and box as long as text */

#client-key {
    font-size: 110%;
    width: 15.5em;
}

/* added a new id for submit button in html file then referenced it here */

input#submit {
    background-color: #888888;
    color: #ffffff;
    width: 10em;
    height: 2.5em;
    margin-top: 1em;
    border-bottom: 2 px solid #333333;
}

/* added a div and class for this in html file to apply the centering for button here */

.submitbutton {
    text-align: center;
}

/* added hover color change for submit button */

input#submit:hover {
    color:#ffffff;
    background-color: #666666;
}

/* Styles for the statistics page */

p.stats {
    display: block;
    line-height: 10 em;
}

img.stats {
    display: inline-block;
    line-height: 10 em;
    padding: 1 em;
}

/* Footer is also fixed position */

#footer {
	display: none;
	text-align: right;
    font-size: 0.6em;
    font-family: 'Gafata', sans-serif;
	width: 90%;
	margin-top: 0.5em;
	margin-bottom: 1em;
	margin-left: auto;
	margin-right: auto;
}

