
/* APPLE STYLE NAVIGATION MENU */
#page-header nav ul {
    font-family: 'Abel', "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 0;
    text-transform: uppercase;
}
.horizontal-navigation-bar nav {
    display: inline-block;
    margin: auto;
    position: relative;
    vertical-align: middle;
    width: auto;
}
body.banner-content-site-title-logo-tagline.canvas-setting-site-width .horizontal-navigation-bar nav, body.banner-content-page-title-description.canvas-setting-full-width .horizontal-navigation-bar nav, body.banner-content-empty.canvas-setting-full-width .horizontal-navigation-bar nav {
    padding-left: 0;
    padding-right: 0;
}

	

#main-navigation {
	/*margin:-20px 0;*/
	list-style:none;
	/* Lucinda Grande is the font used on the website from Apple. */
    font-family: 'Abel', "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
	letter-spacing: 0.5px;
	font-size:13px;
	/* Apply a subtle text-shadow to the text */
    text-shadow: 0 -1px 3px #202020;
	/* We want to add the shadow to the complete navigation menu. In order to do that, we'll need to set
    the correct width and height, and also the correct borders, in order to create the perfect drop shadow */
    width:1144px;
	/*height:36px;*/
	height:49px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
	-moz-box-shadow: 0px 3px 3px #cecece;
	-webkit-box-shadow: 0px 3px 3px #cecece;
	box-shadow: 0 3px 4px #8b8b8b;
}
#main-navigation li {
	display:block;
	float:left;
	border-right:1px solid #333;
	border-left:1px solid #666;
	width:162px;
	/*height:36px;*/
	height:49px;
	border-bottom:1px solid #575757;
	border-top:1px solid #797979;
	/* Gradient backgrounds for the buttons. Generated using http://gradients.glrzad.com/ */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #000), color-stop(0.5, #0f0f0f ), color-stop(0.51, #333), color-stop(1, #666));
	background-image: -moz-linear-gradient(center bottom, #000 0%, #0f0f0f 50%, #333 51%, #666 100%);
	background-color:#000; /* Fallback */
}
/* Set the states when hovering, except for the last item in the list (the search bar), since it doesn't need to change */
#main-navigation li:hover {
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3F3F3F), color-stop(0.5, #383838), color-stop(0.51, #434343), color-stop(1, #555555));
	background-image: -moz-linear-gradient(center bottom, #3F3F3F 0%, #383838 50%, #434343 51%, #555555 100% );
	background-color:#383838; /* Fallback */
	/* We use the inset of the box shadow to create a subtle inner glow when hovering */
    -moz-box-shadow: inset 0 0 5px 5px #535353;
	-webkit-box-shadow: inset 0 0 5px 5px #535353;
	box-shadow: inset 0 0 5px 5px #535353;
}
/* When the user clicks the button, we simply change the box inset (compared to the "hover") */
#main-navigation li:active {
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3F3F3F), color-stop(0.5, #383838), color-stop(0.51, #434343), color-stop(1, #555555));
	background-image: -moz-linear-gradient(center bottom, #3F3F3F 0%, #383838 50%, #434343 51%, #555555 100% );
	background-color:#383838; /* Fallback */
	-moz-box-shadow: inset 0 1px 2px 2px #000;
	-webkit-box-shadow: inset 0 1px 2px 2px #000;
	box-shadow: inset 0 1px 2px 2px #000;
}
#main-navigation li a {
	color:white;
	text-decoration:none;
	text-align:center;
	display:block;
	line-height:34px;
	outline:none;
}
/* Styling of the search field */
#main-navigation form input {
	width:76px;
	height:20px;
	margin-left:9px;
	margin-top:8px;
	border:none;
	padding-left:20px;
	padding-right:10px;
	color:#eee;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	/* We use the CSS3 multiple backgrounds for the input field: The magnifier image and the gradient background */    
    background-image: url("../images/magnifier.png"), -webkit-gradient(linear, left bottom, left top, color-stop(0, #747474), color-stop(0.5, #6E6E6E), color-stop(0.51, #7E7E7E), color-stop(1, #8D8D8D));
	background-image: url("../images/magnifier.png"), -moz-linear-gradient(center bottom, #747474 0%, #6E6E6E 50%, #7E7E7E 51%, #8D8D8D 100%);
	background-repeat: no-repeat;
	background-color:#6E6E6E; /* Fallback */
	-moz-box-shadow: inset 0 2px 1px 1px #363636;
	-webkit-box-shadow: inset 0 2px 1px 1px #363636;
	box-shadow: inset 0 2px 1px 1px #363636;
}
/* Rounded corner for the first in last item. Shorthand: Top left, Top right, Bottom right, Bottom left.
We also remove the borders, since they don't need them. */
#main-navigation li:first-child {
	-moz-border-radius:4px 0 0 4px;
	-webkit-border-radius:4px 0 0 4px;
	border-radius:4px 0 0 4px;
	border-left:none;
}
#main-navigation li:first-child > a {
	border-radius: 4px 0 0 4px;
}
/* The first child image - the logo - has to be centered. Because of the image dimensions, we manually need to shift it a bit. */
#main-navigation li:first-child a img {
	vertical-align:middle;
	margin-top:-2px;
}
#main-navigation li:last-child {
	/*-moz-border-radius:0 4px 4px 0;
	-webkit-border-radius:0 4px 4px 0;
	border-radius:0 4px 4px 0;
	border-right:none;
	
    width:124px;
	display:block;
	float:left;
	border-left:1px solid #629dff;
	height:36px;
	border-bottom:1px solid #3079ED;
	border-top:1px solid #4D90FE;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #2a6eda), color-stop(0.5, #4787ED), color-stop(0.51, #4D90FE), color-stop(1, #629dff));
	background-image: -moz-linear-gradient(center bottom, #2a6eda 0%, #4787ED 50%, #4D90FE 51%, #629dff 100%);
	background-color:#3079ED; */
	
	
	-moz-border-radius:0 4px 4px 0;
	-webkit-border-radius:0 4px 4px 0;
	border-radius:0 4px 4px 0;
	display:block;
	float:left;
	border-right:none;
	border-left:1px solid #666;
	width:160px;
	/*height:36px;*/
	height:49px;
	border-bottom:1px solid #575757;
	border-top:1px solid #797979;
	/* Gradient backgrounds for the buttons. Generated using http://gradients.glrzad.com/ */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #000), color-stop(0.5, #0f0f0f ), color-stop(0.51, #333), color-stop(1, #666));
	background-image: -moz-linear-gradient(center bottom, #000 0%, #0f0f0f 50%, #333 51%, #666 100%);
	background-color:#000; /* Fallback */
}
#main-navigation li:last-child:hover {
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3079ED), color-stop(0.5, #4787ED), color-stop(0.51, #4D90FE), color-stop(1, #629dff));
	background-image: -moz-linear-gradient(center bottom, #3079ED 0%, #4787ED 50%, #4D90FE 51%, #629dff 100%);
	background-color:#3079ED; /* Fallback */
	/* We use the inset of the box shadow to create a subtle inner glow when hovering */
    -moz-box-shadow: inset 0 0 5px 5px #2a6eda;
	-webkit-box-shadow: inset 0 0 5px 5px #2a6eda;
	box-shadow: inset 0 0 5px 5px #2a6eda;
}
#main-navigation li:last-child:active {
	background-color: #383838;
	background-image: -moz-linear-gradient(center bottom, #3079ED 0%, #4787ED 50%, #4D90FE 51%, #629DFF 100%);
	box-shadow: 0 1px 2px 2px #2a6eda inset;
}
#main-navigation li:last-child > a {
	border-radius: 0 4px 4px 0;
}
#main-navigation ul li.active-link > a {
	display:block;
	border-left:1px solid #629dff;
	border-right:1px solid #629dff;
	border-bottom:1px solid #3079ED;
	border-top:1px solid #4D90FE;
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #2a6eda), color-stop(0.5, #4787ED), color-stop(0.51, #4D90FE), color-stop(1, #629dff));
	background-image: -moz-linear-gradient(center bottom, #2a6eda 0%, #4787ED 50%, #4D90FE 51%, #629dff 100%);
	background-color:#3079ED;
	color: white !important;
}
/* Fade in animation (Webkit only) */
@-webkit-keyframes showMenu {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
#main-navigation {
	-webkit-animation: showMenu 1s;
	position:relative;
}

/* Footer */

#credits {
    background: none repeat scroll 0 0 white;
    border-top: 1px solid #949494;
    font-size: 12px;
    margin: -40px auto 15px;
    padding-top: 15px;
    width: 1140px;
    text-align: center;
}

.sqs-gallery-block-slideshow.sqs-gallery-has-controls .sqs-gallery-design-stacked {
    left: 2px;
    padding-bottom: 2px;
    margin: 0;
    width: 1136px;
    z-index: 0;
}
span.delimiter {
	display: none;
}
nav a:active, nav .active-link a, nav .folder .active-folder {
    color: #FFFFFF !important;
}
nav a:link, nav a:visited {
	color: #FFFFFF !important;
}
nav a:hover, nav a:focus {
    color: #FFFFFF !important;
}
/* Fixing Squarespace assigned values */

body.top-navigation-alignment-center.banner-content-empty.canvas-setting-full-width .horizontal-navigation-bar #site-title-wrapper, body.top-navigation-alignment-center.banner-content-empty.canvas-setting-full-width .horizontal-navigation-bar nav {
	padding:0;
}
#main-navigation a:hover, #main-navigation a:focus {
    color: #EEE !important;
}
