/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99998;
	width: 100%;
	height: 100%;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-wrap  {
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
}
.nivo-lightbox-content {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-title-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	text-align: center;
}
.nivo-lightbox-nav { display: none; }
.nivo-lightbox-prev {
	position: absolute;
	top: 50%;
	left: 0;
}
.nivo-lightbox-next {
	position: absolute;
	top: 50%;
	right: 0;
}
.nivo-lightbox-close {
	position: absolute;
	top: 2%;
	right: 2%;
}

.nivo-lightbox-image { text-align: center; }
.nivo-lightbox-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
}
.nivo-lightbox-content iframe {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-inline,
.nivo-lightbox-ajax {
	max-height: 100%;
	overflow: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}
.nivo-lightbox-error {
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
	display: table-cell;
	vertical-align: middle;
}

/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	    -ms-transition: all 0.2s ease-in-out;
	     -o-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}

/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	-webkit-transform: scale(0.7);
	   -moz-transform: scale(0.7);
	    -ms-transform: scale(0.7);
	        transform: scale(0.7);
}
.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	   -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	    -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	     -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
	-webkit-transform: translateX(-10%);
	   -moz-transform: translateX(-10%);
	    -ms-transform: translateX(-10%);
	        transform: translateX(-10%);
}
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
	-webkit-transform: translateX(10%);
	   -moz-transform: translateX(10%);
	    -ms-transform: translateX(10%);
	        transform: translateX(10%);
}
.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transform: translateY(-10%);
	   -moz-transform: translateY(-10%);
	    -ms-transform: translateY(-10%);
	        transform: translateY(-10%);
}
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
	-webkit-transform: translateY(10%);
	   -moz-transform: translateY(10%);
	    -ms-transform: translateY(10%);
	        transform: translateY(10%);
}
.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}

/*
 * Nivo Lightbox Default Theme v1.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
.nivo-lightbox-theme-default.nivo-lightbox-overlay { 
	background: #666;
	background: rgba(0,0,0,0.9); 
}
.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url('../../system/modules/nivo_lightbox/assets/themes/default/loading.gif') no-repeat 50% 50%; }

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-nav:hover { 
	opacity: 1; 
	/*background-color: rgba(0,0,0,0.5);*/
}
.nivo-lightbox-theme-default .nivo-lightbox-prev { 
	background-image: url('../../system/modules/nivo_lightbox/assets/themes/default/prev.png'); 
	border-radius: 0 3px 3px 0;
}
.nivo-lightbox-theme-default .nivo-lightbox-next { 
	background-image: url('../../system/modules/nivo_lightbox/assets/themes/default/next.png'); 
	border-radius: 3px 0 0 3px;
}

.nivo-lightbox-theme-default .nivo-lightbox-close {
	display: block;
	background: url('../../system/modules/nivo_lightbox/assets/themes/default/close.png') no-repeat 5px 5px;
	width: 16px;
	height: 16px;
	text-indent: -9999px;
	padding: 5px;
	opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-close:hover { opacity: 1; }

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { bottom: -7%; }
.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-image img {
	background: #fff;
	-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
	   -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
	        box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
}
.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	background: #fff;
	padding: 40px;
	-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
	   -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
	        box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
}

@media (-webkit-min-device-pixel-ratio: 1.3),
       (-o-min-device-pixel-ratio: 2.6/2),
       (min--moz-device-pixel-ratio: 1.3),
       (min-device-pixel-ratio: 1.3),
       (min-resolution: 1.3dppx) {

	.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { 
		background-image: url('../../system/modules/nivo_lightbox/assets/themes/default/loading@2x.gif'); 
		background-size: 32px 32px;
	}
	.nivo-lightbox-theme-default .nivo-lightbox-prev { 
		background-image: url('../../system/modules/nivo_lightbox/assets/themes/default/prev@2x.png'); 
		background-size: 48px 48px;
	}
	.nivo-lightbox-theme-default .nivo-lightbox-next { 
		background-image: url('../../system/modules/nivo_lightbox/assets/themes/default/next@2x.png'); 
		background-size: 48px 48px;
	}
	.nivo-lightbox-theme-default .nivo-lightbox-close { 
		background-image: url('../../system/modules/nivo_lightbox/assets/themes/default/close@2x.png'); 
		background-size: 16px 16px;
	}
	
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

button {
  overflow: visible;
}


button,
select {
  text-transform: none;
}

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}
/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/

/* Grid */
.container {
	position: relative;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.column, .columns {
	width: 100%;
	float: left;
	box-sizing: border-box;
}
/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
}
/* For devices larger than 400px */
@media (min-width: 400px) {
.container {
	width: 85%;
	padding: 0;
}
}

/* For devices larger than 768px */
@media (min-width: 768px) {
.container {
	width: 80%;
}
.column,  .columns {
	margin-left: 4%;
}
.column:first-child,  .columns:first-child {
	margin-left: 0;
}
.first {
	margin-left: 0;
}
.one.column,  .one.columns {
	width: 4.66666666667%;
}
.two.columns {
	width: 13.3333333333%;
}
.three.columns {
	width: 22%;
}
.four.columns {
	width: 30.6666666667%;
}
.five.columns {
	width: 39.3333333333%;
}
.six.columns {
	width: 48%;
}
.seven.columns {
	width: 56.6666666667%;
}
.eight.columns {
	width: 65.3333333333%;
}
.nine.columns {
	width: 74.0%;
}
.ten.columns {
	width: 82.6666666667%;
}
.eleven.columns {
	width: 91.3333333333%;
}
.twelve.columns {
	width: 100%;
	margin-left: 0;
}
.one-third.column {
	width: 30.6666666667%;
}
.two-thirds.column {
	width: 65.3333333333%;
}
.one-half.column {
	width: 48%;
}
/* Offsets */
  .offset-by-one.column,  .offset-by-one.columns {
	margin-left: 8.66666666667%;
}
.offset-by-two.column,  .offset-by-two.columns {
	margin-left: 17.3333333333%;
}
.offset-by-three.column,  .offset-by-three.columns {
	margin-left: 26%;
}
.offset-by-four.column,  .offset-by-four.columns {
	margin-left: 34.6666666667%;
}
.offset-by-five.column,  .offset-by-five.columns {
	margin-left: 43.3333333333%;
}
.offset-by-six.column,  .offset-by-six.columns {
	margin-left: 52%;
}
.offset-by-seven.column,  .offset-by-seven.columns {
	margin-left: 60.6666666667%;
}
.offset-by-eight.column,  .offset-by-eight.columns {
	margin-left: 69.3333333333%;
}
.offset-by-nine.column,  .offset-by-nine.columns {
	margin-left: 78.0%;
}
.offset-by-ten.column,  .offset-by-ten.columns {
	margin-left: 86.6666666667%;
}
.offset-by-eleven.column,  .offset-by-eleven.columns {
	margin-left: 95.3333333333%;
}
.offset-by-one-third.column,  .offset-by-one-third.columns {
	margin-left: 34.6666666667%;
}
.offset-by-two-thirds.column,  .offset-by-two-thirds.columns {
	margin-left: 69.3333333333%;
}
.offset-by-one-half.column,  .offset-by-one-half.columns {
	margin-left: 52%;
}
}
/* Base Styles */
/* NOTE: html is set to 62.5% so that all the REM measurements throughout Skeleton are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
	font-size: 62.5%;
}
body {
	color: #121212;
	font: 400 1.8em/1.5 'Lato', Arial, Helvetica, sans-serif;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 2rem;
	font-weight: 600;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
h1 {
	font-size: 3.6rem;
	line-height: 1.2;
	letter-spacing: -.1rem;
}
h2 {
	font-size: 3.0rem;
	line-height: 1.25;
	letter-spacing: -.1rem;
}
h3 {
	font-size: 2.8rem;
	line-height: 1.3;
	letter-spacing: -.1rem;
}
h4 {
	font-size: 2.4rem;
	line-height: 1.35;
	letter-spacing: -.08rem;
}
h5 {
	font-size: 1.8rem;
	line-height: 1.5;
	letter-spacing: -.05rem;
}
h6 {
	font-size: 1.5rem;
	line-height: 1.6;
	letter-spacing: 0;
}


/* Larger than phablet */
@media (min-width: 768px) {
h1 {
	font-size: 3.0rem;
}
h2 {
	font-size: 2.8rem;
}
h3 {
	font-size: 2.4rem;
}
h4 {
	font-size: 2.0rem;
}
h5 {
	font-size: 2.0rem;
}
h6 {
	font-size: 1.5rem;
}
}
p {
	margin-top: 0;
}

/* Forms */
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
	height: 38px;
	padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
	background-color: #fff;
	border: 1px solid #D1D1D1;
	border-radius: 4px;
	box-shadow: none;
	box-sizing: border-box;
}
/* Removes awkward default styles on some inputs for iOS */
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
textarea {
	min-height: 65px;
	padding-top: 6px;
	padding-bottom: 6px;
}
input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
	border: 1px solid #ba2b57;
	outline: 0;
}
label, legend {
	display: block;
 margin-bottom: .5rem;
	font-weight: 400;
}
fieldset {
	padding: 0;
	border-width: 0;
}
input[type="checkbox"], input[type="radio"] {
	display: inline;
}
label > .label-body {
	display: inline-block;
 margin-left: .5rem;
	font-weight: normal;
}
/* Lists */
ul {
	list-style: circle inside;
}
ol {
	list-style: decimal inside;
}
ol, ul {
	padding-left: 0;
	margin-top: 0;
}
ul ul, ul ol, ol ol, ol ul {
	margin: 1.5rem 0 1.5rem 3rem;
	font-size: 90%;
}
li {
	margin-bottom: 0.25rem;
}
/* Code */
code {
 	padding: .2rem .5rem;
 	margin: 0 .2rem;
	font-size: 90%;
	white-space: nowrap;
	background: #F1F1F1;
	border: 1px solid #E1E1E1;
	border-radius: 4px;
}
pre > code {
	display: block;
	padding: 1rem 1.5rem;
	white-space: pre;
}
/* Tables */
th, td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #E1E1E1;
}
th:first-child, td:first-child {
	padding-left: 0;
}
th:last-child, td:last-child {
	padding-right: 0;
}
/* Spacing */
button, .button {
	margin-bottom: 1rem;
}
input, textarea, select, fieldset {
	margin-bottom: 1.5rem;
}
pre, blockquote, dl, table, p, ul, ol, form {
	margin-bottom: 2rem;
}
figure {
	margin-bottom: 0;
	margin: 0;
}
/* Utilities */
.u-full-width {
	width: 100%;
	box-sizing: border-box;
}
.u-max-full-width {
	max-width: 100%;
	box-sizing: border-box;
}
.u-pull-right {
	float: right;
}
.u-pull-left {
	float: left;
}
/* Misc */
hr {
	margin-top: 3rem;
	margin-bottom: 3.5rem;
	border-width: 0;
	border-top: 1px solid #E1E1E1;
}
/* Clearing */

/* Self Clearing Goodness */
.container:after, .row:after, .u-cf {
	content: "";
	display: table;
	clear: both;
}
#header {
	border-bottom: 1px dotted #415465;	
}

.logo {
	text-align: center;
	padding: 20px 0px 25px;
}
.belowLogo {
	text-align: center;
	margin: 0px auto 25px;
}

#HomeSlideshow {
	border-bottom: 0px solid #5c6975;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.35);
-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.35);
box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.35);
padding-top: 5px;
padding-bottom: 5px;
}

#HomeSlideshow h1, #HomeSlideshow h2, #HomeSlideshow h3 {
	text-shadow: 2px 1px 1px #333;
}
.phone {
	padding: 0px 20px 0px 0px;
}
.cta {
	padding: 0px;
}

#Fullwidth-Content {
	width: 100%;
	position: relative;
	border-bottom: 1px dotted #5c6975;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.35);
-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.35);
box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.35);
margin-top: 5px;
}

#Fullwidth-Content:after {
	content: "";
	display: table;
	clear: both;
	
}

.fw-wrap {
	text-align: center;
	width: 100%;
	position: relative;
	
}

.fw-image {
	
}
.fw-text {
	position: absolute;
	top: 35%;
	text-align: center;	
	z-index: 10;
	width: 100%;
}
.fw-text h2 {
	text-shadow: 2px 1px 1px #333;
	color: #fff !important;
	font-size: 3.6rem;
	padding: 0px 25px;
}

.fw-text h2.red {
	text-shadow: 2px 1px 1px #ccc;
	color: #ba2b57 !important;
	font-size: 3.6rem;
}
#closets-header {
	
}
#entertainment-header {
	
}
#home-office-header {
	
}
#laundry-header {
	
}
#mudroom-header {
	
}
#other-spaces-header {
	
}
#about-us-header {
	
}
#container {
	margin-bottom: 25px;
	margin-top: 25px;	
}
.process img {
	border-radius: 6px;
     -moz-border-radius: 6px;
     -webkit-border-radius: 6px;
	 border: 1px #ba2b57 solid;
}
.process h1 {
	text-align: center;
	padding-bottom: 0.3rem;
	border-bottom: 1px dotted #ba2b57;
	text-transform: uppercase;
}
.process .image_container {
	text-align: center;
}
.process p {
	text-align: left;	
}

#footer  {
	padding: 25px 0px;
	background: #EEEFF0;
	border-top: 1px dotted #a2a8ae;
}

.copyright {
	padding: 25px 0px;
}

.addthis_sharing_toolbox {
	margin: 25px 0px;
	display: block;
	clear: both;
}

/* Layout Colour Classes */
.masonry {
	width: 101%;
	overflow: hidden;
	margin-left: -0.5%;
	margin-bottom: -0.65em;
}
.masonry_gallery {
	width: 19%;
	float: left;
	margin: 0px 0.5% 0.65em;
}
 @media only screen and ( max-width: 768px ) {
.masonry_gallery {
	width: 49%;
	margin-bottom: 0.25em;
}
.fw-text {
	position: absolute;
	top: 30%;
	text-align: center;	
	z-index: 10;
	width: 100%;
}
.fw-text h2 {
	text-shadow: 2px 1px 1px #333;
	color: #fff !important;
	font-size: 2.4rem;
}
.fw-text h2.red {
 font-size: 2.4rem;
}
}
@media only screen and ( max-width: 480px ){
.masonry {
	width: 100%;
	margin-left: 0;
}
.masonry_gallery {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}
.phone {
	padding: 0px;
	margin: 0px 0px 15px;
}

.fw-text h2 {
	font-size: 1.6rem;
}
.fw-text h2.red {
 font-size: 1.6rem;
}

}

.invisible {
	display: none;	
}

a, button, input[type="button"], input[type="reset"], input[type="submit"], .button {
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition:    all 0.5s ease-in-out;
	-ms-transition:     all 0.5s ease-in-out;
	-o-transition:      all 0.5s ease-in-out;
	transition:         all 0.5s ease-in-out;
}

/* Links */
a {
	color: #ba2b57;
	text-decoration: none;
}
a:hover {
	color: #750024;
	text-decoration: none;
}
/* Buttons */
.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
	display: inline-block;
	height: 40px;
	padding: 0 30px;
	color: #fff;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	line-height: 40px;
 	letter-spacing: .1rem;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	background-color: #415465;
	border-radius: 4px;
	border: 1px solid #415465;
	cursor: pointer;
	box-sizing: border-box;
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
	color: #fff;
	border-color: #5c6975;
	outline: 0;
	background-color: #5c6975;
}
.button.red {
	background-color: #ba2b57;
	border: 1px solid #ba2b57;
}

.button.red:hover {
	background-color: #445360;
	border: 1px solid #445360;
}

hr {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
    background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
    background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
    background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
}
strong {
	font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
	text-shadow: 2px 1px 1px #ccc;
	color: #BA2B57;
}

.hidden {
	display:none;
}

/* Accordion -------------------------------- */

.ce_accordion {
	margin: 0px 0px 10px;
	padding: 10px;
	border: 1px solid #CCCFD2;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-khtml-border-radius: 4px;
}
.ce_accordion p {
	margin-bottom: 0;
}
.toggler {
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
	line-height: 1;
}
.accordion {
	padding: 10px 15px 0px;
	margin: 10px 0px 0px;
	border-top: 1px dotted #5c6975;
}
.ce_accordion .ui-state-default .ui-icon:after {
content: "\f067";
display: inline-block;
-webkit-font-smoothing: antialiased;
font: normal 1em/1 'FontAwesome';
vertical-align: middle;
color: #a2a8ae;
padding-right: 10px;
}

.ce_accordion .ui-state-active .ui-icon:after {
content: "\f068";
display: inline-block;
-webkit-font-smoothing: antialiased;
font: normal 1em/1 'FontAwesome';
vertical-align: middle;
color: #a2a8ae;
padding-right: 10px;
}

.rounded {
		-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
-khtml-border-radius: 6px;
}

/* Align Class
-------------------------------------------------------- */

.alignleft {
	float: left;
	text-align: left;
}
.alignright {
	float: right;
	text-align: right;
}
img.alignleft {
	margin: 0 15px 5px 0;
}
img.alignright {
	margin: 0 0 5px 15px;
}

/*
Site Navigation
---------------------------------------------------------------------------------------------------- */
.nav ul, .nav ul ul {
	margin: 0;
}
.level_1 {
	line-height: 1;
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: center;
}
.level_1 li {
	border-width: 0;
	display: inline-block;
	margin: 0;
	padding-bottom: 0;
	text-align: left;
}
.level_1 a {
	border: none;
	color: #fff;
	display: block;
	padding: 16px 15px 15px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}
.level_1 a:hover, .level_1 .current-menu-item > a {
	color: #333;
	text-decoration: none;
}
.level_1 .level_2 {
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 290px;
	z-index: 99;
}
.level_1 .level_2 a {
	border:0px;
	border-top: none;
	border-bottom: 1px solid #a2a8ae;
	letter-spacing: 0;
	padding: 14px 16px;
	position: relative;
	width: 255px;
}
.level_1 .level_2 li.last a {
	border:0px;
	border-top: none;
	border-bottom: 0px solid #a2a8ae;
}
.level_1 li:hover {
	position: static;
}
.level_1 li:hover > .level_2 {
	left: auto;
	opacity: 1;
}
/* Primary Navigation
--------------------------------------------- */
.nav-primary {
	background: #415465;
	width: 100%;
	border-radius: 8px 8px 0px 0px;
-moz-border-radius: 8px 8px 0px 0px;
-webkit-border-radius: 8px 8px 0px 0px;
border: 0px solid #445360;
}


.nav-primary .level_1 a {
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	font-weight: 600;
}
.nav-primary .level_1 > li > a {
	letter-spacing: 0px;
	text-transform: uppercase;
}
.nav-primary a:hover, .nav-primary .current-menu-item > a, .nav-primary .level_2 .current-menu-item > a:hover {
	color: #a2a8ae;
}
.nav-primary .level_2 {
	background-color: #415465;
}
.nav-primary .level_2 a {
	padding: 14px 16px;
}
.nav-primary .level_2 .current-menu-item > a {
	color: #fff;
}

li a.trail, li a.active {
	color: #CFD1D3;
}
.fix-nav{ 
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
}
/* Responsive Menu
--------------------------------------------- */
.responsive-menu-icon {
	cursor: pointer;
	display: none;
	text-align: center;
}
.responsive-menu-icon::before {
	color: #fff;
	content: "\f0c9";
	font: normal 1.5em/1.5 'FontAwesome';
	margin: 0 auto;
}

@media only screen and (max-width: 979px) {
	
.nav-primary {
	border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border: 0px solid #445360;
}
.level_1 li, .nav-primary {
	float: none;
}
.level_1 {
	text-align: center;
}
.level_1.responsive-menu {
	display: none;
}
.level_1.responsive-menu li, .responsive-menu-icon {
	display: block;
}
.level_1.responsive-menu li:hover {
	position: static;
}
.responsive-menu li {
	border-bottom: 1px dotted #a2a8ae;	
}
.responsive-menu li.last {
	border-bottom: 0px dotted #a2a8ae;	
}

.level_1.responsive-menu li.current-menu-item > a, .level_1.responsive-menu .level_2 li.current-menu-item > a:hover, .level_1.responsive-menu li a, .level_1.responsive-menu li a:hover {
	display: block;
	padding: 20px 0px 20px 20px;
	border: none;
}
.level_1.responsive-menu .submenu {
	cursor: pointer;
}
.level_1.responsive-menu .submenu > a {
	margin-right: 60px;
}
.level_1.responsive-menu > .submenu:before {
	content: "\f067";
	float: right;
	font: normal 1.2em/1 'FontAwesome';
	font-weight: 400;
	padding: 15px 20px;
	right: 0;
	text-align: right;
	z-index: 9999;
}
.level_1.responsive-menu .menu-open.submenu:before {
	content: "\f068";
}
.level_1.responsive-menu > li > .level_2 {
	display: none;
}
.level_1.responsive-menu .level_2 {
	background-color: rgba(255, 255, 255, 0.07);
	left: auto;
	opacity: 1;
	position: relative;
	-webkit-transition: opacity 0.4s ease-in-out;
	-moz-transition:    opacity 0.4s ease-in-out;
	-ms-transition:     opacity 0.4s ease-in-out;
	-o-transition:      opacity 0.4s ease-in-out;
	transition:         opacity 0.4s ease-in-out;
	width: 100%;
	z-index: 99;
	margin: 0;
}

.level_1.responsive-menu .level_2 li a, .level_1.responsive-menu .level_2 li a:hover {
	width: auto;
	display: block;
	position: relative;
}

.nav-primary .level_1.responsive-menu .current-menu-item > a, .nav-primary .level_1.responsive-menu .level_2 li a, .nav-primary .level_1.responsive-menu .level_2 li a:hover, .nav-primary .level_1.responsive-menu .level_2, .nav-primary .level_1.responsive-menu > .submenu:before, .nav-primary .level_1.responsive-menu > li:hover > a, .nav-primary .level_1.responsive-menu a:hover {
	color: #fff;
}

}

/* Form Layout */

.scd-form {
	position: relative;
}

.scd-form:before, 
.scd-form:after { 
	content: " "; display: table; 
}

.scd-form:after { 
	clear: both; 
}

.scd-form .widget {
	width: 48%;
	padding: 0px 10px 0px 0px;
	float: left;
}
.scd-form .widget.widget-textarea, .scd-form .widget.widget-captcha, .scd-form .widget.submit_container {
	width: 100%;
	display: block;
	clear: both;
}

.scd-form .widget textarea {
	min-height: 200px;
	width: 90%;
}
.scd-form .widget input,
.scd-form .widget select {
	width: 80%;
	background: transparent;
}
span.mandatory {
	color: #C00;	
}
.submit_container {
	display: block;
	clear: both;	
}

.scd-form .widget input.captcha {
	width: 100px;
}

.scd-form .widget .captcha_text {
	clear: both;
	display: block;
	margin-bottom: 20px;
}

@media screen and (max-width: 70em) {
	.scd-form .widget {
		width: 50%;
	}
	
	#right {
		margin-top: 25px;
	}
}

@media screen and (max-width: 48em) {
	.scd-form .widget {
		width: 100%;
	}
}

/* Media Queries */

/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than tablet */
@media (min-width: 768px) {
}

