/********************************************
				WSD BASECODE
	Responsive Layout - Mobile First
*********************************************/

/***** DEMO SITE WEBFONT - REMOVE FOR CLIENT SITES *****/
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:300,400);

/******** BROWSER CSS RESET *************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	/*** Include Padding/Borders in width for all elements ***/
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: none; }
table { border-collapse: collapse; border-spacing: 0; }
/* Responsive images & embedded objects (remove for image cropping) */
img, object, embed { max-width: 100%; }

/****** GLOBAL ELEMENT CSS ******/
html * { max-height: 999999px; } /* Android mobile font sizing fix */

body {
	line-height: normal;
	font-size: 18px;
	font-family: "Roboto", sans-serif;
	background: #fff;
	-webkit-text-size-adjust: none;
}

body, select, input, textarea { color: #000; }

ins { background-color: #fcd700; color: #000; text-decoration: none; }
mark { background-color: #fcd700; color: #000; font-style: italic; font-weight: bold; }

h1, h2, h3, h4, h5, h6 {
	margin: 0px 0px 20px;
	color: #000;
	line-height: 1.1em;
	font-family: 'Roboto Slab', Arial, sans-serif;
}
h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 22px; }
h4, h5, h6 { font-size: 20px; }

a, a:visited { color: #666; text-decoration: none; }
a:hover, a:active { color: #888; text-decoration: underline; }
a:link { -webkit-tap-highlight-color: initial; }

p { margin: 0px 0px 20px; }
img { height:auto; }

b, strong { font-weight: bold; }
i, em { font-style: italic; }

.clear { clear: both; }
.clearfix::after { content:''; clear:both; display:table; }

/*** Basic List Styling ***/
ul {
	margin: 0px 0px 20px;
	padding: 0 0 0 20px;
	list-style-type: disc;
	list-style-position: outside;
}
ul li { margin-bottom: 5px; }
ul li ul li { margin-top: 5px; }
ul li ol li { margin-top: 5px; }

ol {
	margin: 0px 0px 20px;
	padding: 0px 0px 0px 20px;
	list-style-type: decimal;
	list-style-position: outside;
}
ol li { margin-bottom: 5px; }
ol li ol li { margin-top: 5px; }
ol li ul li { margin-top: 5px; }



/*** Blockquote ***/
/*genric styles for blockquote in content*/
blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}




/****** FRONTEND LAYOUT ******/
#page {
	margin: 0px auto;
	width: 100%;
	min-width: 480px;
	max-width: 1120px;
	position: relative;
	background: #fff;
    box-shadow: 0 0 5px #aaa;
}

#cs-page { width:100%; height:auto; min-height:100vh;
    background:url('../images/bakery-bg-30.jpg') 50% 50% no-repeat #000; background-size:cover;
    padding:50px 20px;
    color:#fff;
}

/** Coming Soon **/
#cs-page a { color:#fff; text-decoration:underline; }
#cs-page a:hover { color:#fff; text-decoration:none; }

img.cs-logo { width:100%; max-width:900px; margin-bottom:20px; }

#cs-page h1 { font-family: "Roboto", sans-serif; color:#fff; font-size:28px; }
#cs-page h2 { font-family: "Roboto", sans-serif; color:#fff; font-size:24px; font-weight:bold; }
#cs-page p.csp { font-family: "Roboto", sans-serif; color:#fff; font-size:20px; line-height:140%; }

.cs-info { text-align:center; }
.cs-form { background:#fff; color:#000; padding:30px 20px; }

#formResult { color:#000; text-align:center; }
#cs-page #formResult h1 { color:#000; }


/*** Header ***/
#header {
	margin: 0px auto;
	padding: 20px;
	position: relative;
	/*make this 100% for full bleed*/
	max-width: 1400px;
}

#header-wrapper {
	border-bottom: 2px solid #666;
	background: #e9e9e9;
}

#logo {
	display: block;
	float: left;
	padding: 0px;
	font-family: 'Roboto Slab', Arial, sans-serif;
	font-weight: 300;
	font-size: 36px;
	color: #000;
	text-decoration: none;
}

#searchBtn {
	display: block;
	float: right;
	margin: 4px 10px 0px;
	padding: 7px;
	width: 40px;
	height: 40px;
	font-weight: bold;
	text-indent: -9999px;
	background: #999 url('../images/iconSearch.png') no-repeat center center;
	background-size: 90% 90%;
}
#searchBtn.open { background-color: #7f7f7f; }

#header .searchBox {
	display: none;
	position: absolute;
	left: 0px;
	top: 100%;
	z-index: 9998;
	margin: 2px 0px 0px;
	padding: 20px 0px;
	width: 100%;
	text-align: center;
	background: #999;
	border-bottom: 2px solid #666;
}
#header .searchBox input[type=text] {
	width: 300px;
	height: 28px;
	font-size: 1em;
	padding: 5px;
	border-radius: 0px;
	border: none;
	-webkit-appearance: none;
}
#header .searchBox input[type=submit] {
	padding: 10px 20px;
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	border: none;
	border-radius: 0px;
	-webkit-appearance: none;
	background: #7f7f7f;
}
#header .searchBox input[type=submit]:hover { background: #666; }

#header .loginBox { display: none; }

/*** Main Menu ***/
#nav-wrapper {
	background: #999;
	border-bottom: 2px solid #666;
}

#menuBtn { width:40px; height:40px; display:block; margin:15px; cursor:pointer; position:relative; border:none; float:left; background:transparent; }

#menuBtn svg:first-child { position:absolute; top:10px; left:0; width:100%; height:4px; transition:0.2s linear all; fill: #000; }
#menuBtn svg:nth-child(2n) { position:absolute; top:18px; left:0; width:100%; height:4px; transition:0.2s linear all; fill: #000; }
#menuBtn svg:last-child { position:absolute; top:26px; left:0; width:100%; height:4px; transition:0.2s linear all; fill: #000; }

#menuBtn.open svg:first-child { transform: rotate(45deg); top:18px; }
#menuBtn.open svg:nth-child(2n) { opacity:0; }
#menuBtn.open svg:last-child { transform: rotate(-45deg); top:18px; }

#mainmenu {
	display: none;
	position: absolute;
	z-index: 9999;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	/*make this 100% for full bleed*/
	max-width: 1400px;
	background: #999;
}
#mainmenu ul {
	margin: 0px auto;
	padding: 0px;
	list-style-type: none;
}
#mainmenu ul li {
	margin: 0px;
	float: none;
	border-left: none;
	border-top: 1px solid #aaa;
}
#mainmenu ul li:first-child { border-top: none; }
#mainmenu ul li a {
	display: block;
	padding: 15px 20px;
	color: #fff;
	font-size: 22px;
	text-decoration: none;
	background-color: transparent;
}
#mainmenu ul li:hover > a, #mainmenu ul li:active > a  {
	background-color: #7f7f7f;
}
#mainmenu ul li > ul { display: none; }
#mainmenu ul li:hover > ul { display: none; }



/*** Content Area ***/


/*** Footer ***/
#footer {
	padding: 20px;
	margin: 10px auto;
	color: #333;
	font-size: 16px;
	text-align: center;
	/*make this 100% for full bleed*/
	max-width: 1400px;
}
#footer #social { margin: 0px auto 20px; }
#footer #social a {
	margin: 0px 3px;
	display: inline-block;
	width: 40px;
	height: 40px;
	text-indent: -9999px;
	border-radius: 9999px;
	background-image: url('../images/socialSprite.png');
	background-size: 160px 40px;
	background-repeat: no-repeat;
	background-color: #666;
}
#footer #social a.fb { background-position: 0px 0px; }
#footer #social a.fb:hover { background-color: #3b5998; }
#footer #social a.tw { background-position: -40px 0px; }
#footer #social a.tw:hover { background-color: #00aced; }
#footer #social a.li { background-position: -80px 0px; }
#footer #social a.li:hover { background-color: #0e76a8; }
#footer #social a.gp { background-position: -120px 0px; }
#footer #social a.gp:hover { background-color: #d34836; }

#cs-footer { background:#000; text-align:center; padding:20px; font-size:14px; color:#fff; }
#cs-footer a { color:#fff; text-decoration:underline; }
#cs-footer a:hover { color:#fff; text-decoration:none; }



/****** HOMEPAGE ******/
.homepage { }




/****** FORMS STYLING ******/
div.form { }
div.form label {
	display: block;
	font-weight: normal;
}
div.form input,
div.form textarea,
div.form select {
	box-sizing: border-box;
	margin:0;
	font-size:18px; font-family: "Roboto", sans-serif;
}
div.form fieldset, div.form .row { margin:0 0 20px 0;}

div.form input[type=text],
div.form input[type=number],
div.form input[type=password] {
	padding: 4px;
	width: 100%;
	border: 1px solid #aaa;
	border-radius: 0px;
	-webkit-appearance: none;
}
div.form textarea {
	padding: 4px;
	width: 100%;
	height: 120px;
	resize: none;
	border: 1px solid #aaa;
	border-radius: 0px;
	-webkit-appearance: none;
}
div.form select {
	padding: 4px;
	width: 100%;
	border: 1px solid #aaa;
	border-radius: 0px;
}

div.form span.required { color: red; }
div.form .row.checkbox label,
div.form .row.radio label {
	float: none;
	padding: 0px;
	display: block;
	width: auto;
}
div.form .row.buttons { text-align: center; }
div.form input[type=submit] {
	padding: 10px 40px;
	color: #fff; font-family: "Roboto", sans-serif;	font-size: 18px; font-weight: bold;
	border: 1px #fff solid; border-radius: 5px;
	-webkit-appearance: none;
	background: #990000;
	box-shadow: none;
	cursor:pointer; transition:0.2s linear all;
}
div.form input[type=submit]:hover,
div.form input[type=submit]:active { background: #000; }

/*** Form Errors ***/
div.form div.error label,
div.form label.error,
div.form span.error {
	color: #C00;
}
div.form div.error input,
div.form div.error textarea,
div.form div.error select,
div.form input.error,
div.form textarea.error,
div.form select.error {
	border-color: #C00;
}
div.form .errorMessage { color: red; font-size:0.8em; font-weight:bold; margin:5px 0; }





/***** BREADCRUMBS *****/
#breadcrumbs-wrapper {
	border-bottom: 1px solid #aaa;
	background: #e9e9e9;
}
ul.breadcrumbs {
	margin: 0px auto;
	padding: 5px 10px;
	color: #666;
	font-size: 14px;
	list-style-type: none;
	max-width: 1400px;
}
ul.breadcrumbs li {
	display: inline;
	margin: 0px;
	padding: 0px 0px 0px 5px;
}
ul.breadcrumbs li.active { background: none; }
ul.breadcrumbs li a { text-decoration: underline; color: #666; }






/***************************************************
	DESKTOP LAYOUT BREAKPOINTS
****************************************************/
@media(min-width: 880px) {

	/****** GLOBAL ELEMENT CSS ******/
	body { font-size: 18px; }

	/****** FRONTEND LAYOUT ******/
    
    /** Coming Soon **/
    #cs-page { padding:5% 20px; }
    
    img.cs-logo { width:75%; max-width:900px; margin-bottom:20px; }

    #cs-page h1 { font-family: "Roboto", sans-serif; color:#fff; font-size:45px; }
    #cs-page h2 { font-family: "Roboto", sans-serif; color:#fff; font-size:40px; font-weight:bold; }
    #cs-page p.csp { font-family: "Roboto", sans-serif; color:#fff; font-size:30px; }

    .cs-content { width:100%; max-width:1300px; margin:70px auto 0 auto; display:flex; align-items:center; }
    .cs-info { width:50%; display:block; }
    .cs-form { width:50%; display:block; background:#fff; padding:30px; color:#000; }
    
    
	#menuBtn { display: none; }
	#searchBtn { display: none; }

	#header .searchBox {
		display: block;
		float: right;
		position: static;
		margin: 8px 0px 0px 20px;
		padding: 0px;
		width: auto;
		text-align: right;
		border: none;
		background: none;
	}
	#header .searchBox input[type=text] {
		width: 200px;
		height: auto;
		padding: 4px;
		border: 1px solid #aaa;
	}
	#header .searchBox input[type=submit] {
		font-size: 1em;
		padding: 5px 10px;
	}

	#header .loginBox {
		display: block;
		margin: 14px 0px 0px 20px;
		float: right;
		font-size: 12px;
	}

	/*** Main Menu ***/
	#mainmenu {
		display: block;
		position: static;
		margin: 0px auto;
		text-align: center;
	}
	#mainmenu ul {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
	}
	#mainmenu ul li {
		display: -webkit-inline-flex;
		display: inline-flex;
		position: relative;
		border: none;
		border-left: 1px solid #aaa;
		width: 100%;
		text-align: center;
		margin: 0 auto;
	}
	#mainmenu ul li:first-child { border-left: none; }
	#mainmenu ul li a {
		padding: 10px 12px;
		font-size: 14px;
		width: 100%;
	}
	#mainmenu ul li:hover, #mainmenu ul li:active, #mainmenu ul li.active {
		background-color: #7f7f7f;
	}
	#mainmenu ul li > ul {
		display: none;
		position: absolute;
		margin: 0px;
		padding: 0px;
		left: 0px;
		min-width: 100px;
		z-index: 999;
		background: #8a8a8a;
		top: 36px;
	}
	#mainmenu ul li:hover > ul { display: block; }

	#mainmenu ul li > ul li {
		margin: 0px;
		float: none;
		position: relative;
		border-left: none;
		border-top: 1px solid #aaa;
	}

	#mainmenu ul li:first-child { border-top: none; }
	#mainmenu ul li > ul li a {
		display: block;
		padding: 8px 20px;
		color: #fff;
		font-size: 13px;
		text-decoration: none;
		/*background-color: transparent;*/
	}


	#content { padding: 30px; max-width: 1400px; margin: 0 auto; }
	#content .featuredImg { margin: -30px -30px 30px; }

	#content #sidebar {
	float: left;
	width: 25%;
	margin: 0px;
	padding: 0px 0px 0px 30px;
	border-left: 1px solid #ccc;
	border-top: none;
	}

	#content #main {
		float: left;
		width: 75%;
		margin: 0px;
		padding: 0px 30px 0px 0px;
	}

	#footer { font-size: 12px; }
	#footer #social {  }
	#footmenu {
		display: block;
		margin: 0px 0px 10px;
	}
	#footmenu ul {
		margin: 0px;
		padding: 0px;
		list-style-type: none;
	}
	#footmenu ul li { display: inline; }
	#footmenu ul li::before { content: "  |  "; }
	#footmenu ul li:first-child::before { content: ""; }
	#footmenu ul li a { margin: 0px 3px; }
	#footmenu ul li > ul { display: none; }

	
    
	
	/****** FORMS ******/
	div.form { max-width: none; }

    div.form label { width:25%; display:inline-block; padding:5px 0 0 0; vertical-align:top; }
    div.form .row input[type=text], div.form .row textarea { width:73%; vertical-align:top; }
    
    div.form .errorMessage { clear:both; margin-left:25%; }


	/***** BREADCRUMBS *****/
	ul.breadcrumbs {
		padding: 5px;
		font-size: 14px;
	}

    
    
    /****** HOMEPAGE ******/



}  /* @media(min-width: 880px) */


/*** Main Menu Adjustment Breakpoint ***/
@media(min-width: 1020px) {

	/*** Main Menu ***/
	#mainmenu { padding: 0; }
	#mainmenu ul li a {
		padding: 10px 15px;
		font-size: 14px;
	}

}  /* @media(min-width: 1020px) */




/*** Skip to Content invisible link for accessibility ***/
#skip a
{
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}
/* uncommenting will make the link visible when focused
#skip a:focus
{
position:static;
float:left;
width:auto;
height:auto;
}
*/
