.menuLeft {
	position: fixed;
	top: 60px;
	bottom: 0;
	left: -270px;
	z-index: 9999;
	width: 270px;
	height: 100%;
	background: rgba(51, 62, 72, 0.9);
	overflow-y: auto;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.menuLeft.expanded {
	left: 0px;
}
#menuBtn {
	display: none;
	border: 0;
	outline: 0;
	float: left;
	position: relative;
	padding: 0 20px 0 45px;
	margin: 0;
	line-height: 60px;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	color: #333E48;
	cursor: pointer;
	background-color: rgba(0,0,0,0);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
#menuBtnIcon {
    position: absolute;
    top: 0;
    left: 0;
    padding: 19px 10px 19px 19px;
}
#menuBtnIcon:after, 
#menuBtnIcon:before, 
#menuBtnIcon #menuBtnIconInner:before {
    content: '';
    display: block;
    width: 17px;
    height: 2px;
    margin: 4px 0;
    background-color: #fff;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    transition: all .25s ease;
    outline: 1px solid rgba(0, 0, 0, 0);
}
#menuBtnIcon:after {
    width: 10px;
}
#menuBtn.expanded #menuBtnIcon:before {
    margin: 2px 0 0 0;
    transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -webkit-transform: translateY(8px) rotate(45deg);
}
#menuBtn.expanded #menuBtnIcon #menuBtnIconInner:before {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateX(-20px) translateY(3px);
    -moz-transform: translateX(-20px) translateY(3px);
    -ms-transform: translateX(-20px) translateY(3px);
    transform: translateX(-20px) translateY(3px);
    -webkit-transition: all .25s ease, opacity .25s ease .025s;
    -moz-transition: all .25s ease, opacity .25s ease .025s;
    -ms-transition: all .25s ease, opacity .25s ease .025s;
    transition: all .25s ease, opacity .25s ease .025s;
}
#menuBtn.expanded #menuBtnIcon:after {
    margin: -1px 0 0 0;
    transform: translateY(-3px) rotate(-45deg);
    -moz-transform: translateY(-3px) rotate(-45deg);
    -ms-transform: translateY(-3px) rotate(-45deg);
    -webkit-transform: translateY(-3px) rotate(-45deg);
}
#menuBtn:hover #menuBtnIcon:after, 
#menuBtn.expanded #menuBtnIcon:after {
    width: 17px;
}
#menuBtn i {
	display: none;
	position: absolute;
	font-size: 26px;
	top: 17px;
	left: 15px;
}
#menuBtn.expanded {
	background-color: rgba(0,0,0,0.1);
}
#menuLeftHeading {
	float: left;
	width: 100%;
	background: #323231;
	cursor: pointer;
}
h2#title {
	color: #FFF;
	font-size: 18px;
	float: left;
	margin: 0;
	padding: 10px 15px;
}
h2#title.close {
	float: right;
	background: #1585ab;
}
.menuLeft #dynMenu li {
	width: 100%;
	border: 1px solid rgb(58, 66, 74);
	border-width: 0 0 1px;
	text-align: left;
	position: relative;
}
.menuLeft #dynMenu li a {
	font-size: 16px;
	padding: 0 15px;
	line-height: 40px;
	color: #fff;
	opacity: 0;
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    transform: translateX(-30px);
    -webkit-transition: opacity .3s ease .35s, -webkit-transform .4s ease .35s;
    -moz-transition: opacity .3s ease .35s, -moz-transform .4s ease .35s;
    transition: opacity .3s ease .35s, transform .4s ease .35s;
}
.menuLeft.expanded #dynMenu li a {
	opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
}
.menuLeft #dynMenu li a.hasChildren {
	margin-right: 50px;
}
.menuLeft #dynMenu li:hover a {
	color: #FFFFFF;
}
.menuLeft #dynMenu li ul li:hover, .menuLeft #dynMenu li ul li.sfHover,
.menuLeft #dynMenu li ul li a:focus, .menuLeft #dynMenu li ul li a:hover, .menuLeft #dynMenu li ul li a:active {
	background-color: #FF6C2C;

}
.menuLeftSubBtn {
	display: none;
}
.menuLeft #dynMenu .menuLeftSubBtn {
	display: block;
	position: absolute;
	overflow: hidden;
	width: 20px;
	height: 40px;
	text-align: center;
	font-size: 18px;
	color: #FF6C2C;
	top: 0;
	right: 0;
	padding: 0 15px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.menuLeft #dynMenu .menuLeftSubBtn i:hover {
	color: #60686f;
}
.menuLeft #dynMenu .menuLeftSubBtn i {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.menuLeft #dynMenu .menuLeftSubBtn i {
	position: absolute;
	left: 15px;
	top: 50%;
	margin-top: -9px;
	-ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.menuLeft #dynMenu .menuLeftSubBtn.open i {
	-ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.menuLeft #dynMenu ul.submenu {
	position: relative;
	display: none;
	float: left;
	top: 0px !important;
	left: 0;
	width: 100%;
	background: rgba(255, 108, 44, 0.9);
	border-bottom: 0;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.menuLeft #dynMenu ul.submenu ul {
	padding-left: 30px;
}
.menuLeft #dynMenu ul.submenu li {
	border: 0;
}
.menuLeft #dynMenu ul.submenu li a {
	padding: 0 15px 0 30px;
	color: #fff !important;
}
.menuLeft #dynMenu ul.submenu li:hover a {
	color: #FFFFFF !important;
}
#menuLeftClickBox {
	display: none;
	cursor: pointer;
	position: fixed;
	top: 60px;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 998;
}
/* Left menu code [End] */

/* Resonsive Google Map [Begin] */

.mapContainer {
	width: 1140px;
    position: relative;
    padding-bottom: 210px;
    height: 0;
    margin: 0 auto;
    overflow: hidden;
}

.mapContainer iframe,   
.mapContainer object,  
.mapContainer embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mapOverlay {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background: transparent;
	z-index: 10;
}
/* Resonsive Google Map [End] */

/* Resonsive FB Like box [Begin] */
.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
    width: 100% !important;
}
/* Resonsive FB Like box [End] */

/*** Responsiv */

@media (min-width: 960px) and (max-width: 1140px) {
	
	ul#startPuffs li {
	    width: 48%!important;
	    margin-right: 4%;
	}

	ul#startPuffs li:nth-child(even) {
		margin-right: 0;
	}	

}


/* Big tablet (960px) */
@media screen and (max-width: 1140px) {
	.inner-container,
	#copyrightLinkInner {
		width: 960px;
	}
	div.push-content-down-container {
	    height: 0;
	}	

	.contact-header {
		display: none;
	}

	/* Fixed Menu [Start] */
	#menu {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 997;
		background: rgba(255, 108, 44, 0.9);			
	}
	#menu {
		width: 100%;
	}
	#menu {
		margin: 0;
	}
	#menu #menuWrap {
		display: none;
	}
	#menuBtn {
		display: block;
	}
	#dynMenu li:hover a {
		background: none;
	}	
	#header {
		padding: 30px;
	}

	#header #homeLink {
		text-align: center;
		max-width: 100%;
		display: block;
	}		
	#contactHeader {
		display: none;
	}		
	#contactMenu {
		display: block;
	}
	#slideshowWrap {
		padding: 0;
	}
	#slide-inner {
		padding-top: 0;
	}
	#header-outer {
		padding-top: 60px;
		position: relative;
		margin-bottom: 15px;
	}

	/*** Slider **/
	#slider .flex-caption-inner {
		width: 100%;
	}	

	#slider .flex-caption-cell {
	    padding: 0;
	}

	#slider .flex-caption .description {
	    padding: 1em 5em 3em 5em;
	    font-size: 17px;
	}

	#slider .flex-caption .headline {
	    font-size: 30px;
	    padding-top: 3px;
	}	

	/* Fixed Menu [End] */
	.masonry li a .mContent {
	    padding: 0 20px;
	}
	#slider.flexslider .slides, 
	#slider.flexslider .slides > li {
	    padding-bottom: 400px;
	}
	#slider .flex-caption-inner {
		height: 400px;
	}
	.masonry li a .mContent .mBtn, .masonry li a .mContent .mIntro {
	    display: none;
	}

	#footer-inner,
	#copyrightLinkInner,
	.mapContainer {
		width: 100%;
	}

	#news-archive-page li {
		width: 50%;
	}	
	#slider .flex-caption-cell {
		width: 100%;
	}	
}
/* Small tablet (768px) */
@media screen and (max-width: 960px) {
	.inner-container {
		width: 768px;
	}	
	#content {
	    padding: 40px 0 0 0;
	    background: none;
	}	
	#copyrightLinkInner {
		width: 100%;
	}	
	#content #mainCol,
	#content #secCol {
		width: 100%;
		padding: 0;
	}
	.newsBills ul li .news-content {
	    /*padding-left: 70px;*/
	}
	.staffTable li {
		width: 47.5%;
    	margin-right: 5%;
	}
	.staffTable li:nth-child(even) {
		margin-right: 0;
		padding-right: 0;
	}

	.staffTable li h3 {
		font-size: 16px;
	}
	#content #subMenuWrap {
		width: 100%;
		padding-right: 0;
	}
	#subMenuButton {
		display: block;
	}
	#content ul#subMenu {
		display: none;
	}
	#subMenuHeader {
		display: none;
	}
	.subMenuRight {
		width: 100%;
	}
	#contactForm input,
	#contactForm textarea {
		width: 100%;
	}
	.retailer .retailerImg, 
	.retailer .retailerInfo {
		display: block;
		width: 100%;
	}
	.retailer .retailerImg {
		text-align: center;
		padding-right: 0;
	}
	#content #mainInner .retailer .retailerImg img {
		max-width: 60% !important;
		margin-bottom: 30px;
	}
	.newsBills ul li {
	    width: 50%;
	}
	.newsBills ul li:nth-child(3) {
		width: 100%;
	}
	.newsBills ul li:first-child .clearFix {
	    padding-left: 0;
	}
	.newsBills ul li:first-child h3 {
	    margin-bottom: 5px;
	}
	.newsBills ul li:first-child .news-content p {
		/*display: none;*/
	}
	.newsBills ul li:first-child .newsBtn {
	    color: #646464;
	}
/*	.staffTable {
	    margin: 0 -15px;
	}
	.staffTable li {
	    padding: 0 15px;
	}*/
	.newsBills ul {
	    margin: 0 -15px;
	}
	.newsBills ul li {
	    padding: 0 15px;
	}	
	.retailer .retailerInfo:after {
	    left: 50%;
	    top: -28px;
	    margin: 0 0 0 -14px;
	    border-right: 14px solid rgba(0, 0, 0, 0);
	    border-bottom: 14px solid #f5f5f5;
	}
	ul.prodAndCats li {
		margin: 0 4.62962962963% 30px 0 !important;
		width: 30.24691358024667% !important;
	}
	ul.prodAndCats li.lastOnRow,
	ul.prodAndCats li:nth-child(3n) {
		margin-right:0 !important;
	}
	.masonry.tiles-5 li:first-child a {
    	height: 520px;
	}
	.masonry.tiles-5 li:nth-child(2) {
		margin-bottom: 30px;
	}
	.masonry.tiles-5 li:nth-child(4), 
	.masonry.tiles-5 li:nth-child(5) {
	    margin-top: 30px;
	}
	.masonry li a .mContent .mHeading {
    	font-size: 20px;
	}
	#copyrightLink .left,
	#copyrightLink .right {
		float: none;
		display: block;
		text-align: center;
	}
	#subMenuRight {
		width: 100%;
	}
	#content #mainCol.wideCol #mainInner .pageContainer {
		width: 100%;	
	}

	ul#startPuffs li {
	    width: 48.5%!important;
	    margin-right: 3%;
	}

	ul#startPuffs li:nth-child(even) {
	    margin-right: 0;
	}	
}
/* Big smartphone (480px) */
@media screen and (max-width: 768px) {
	.inner-container {
		width: 95%;
	}
	#footer-inner {
		width: 100%;
		margin: 0;
	}	
	#slide-inner,
	#masonryContainer {
		margin: 0;
	}
	#menu-inner {
		margin: 0;
	}
	#contactHeader {
		display: none;
	}
	#header {
		text-align: center;
	}
	#header #homeLink {
		margin-left: 0;
	}
	#contactForm {
		width: 100%;
	}
	#prodImages {
		float: left;
		width: 30.4% !important;
		margin: 0 3% 0 0 !important;
	}
	ul.galleryThumbs li {
		margin: 0 2.3% 10px 0;
		width: 31% !important;
	}
	#footer ul .footer-column {
		margin: 0 5.172413793103% 0 0;
		width: 47.4137931034485% !important;
	}
	#footer ul .footer-column:nth-child(2),
	#footer ul .footer-column:nth-child(3) {
		margin-right: 0;
	}
	#footer ul .footer-column:nth-child(3) {
		width: 100% !important;
		text-align: center;
		margin: 30px 0 20px;
	}
	ul#startPuffs li {
	    margin: 0 5% 0 0;
		width: 47.5% !important;
	    padding-bottom: 4%;
	}

	ul#startPuffs li:nth-child(2) {
		margin-right: 0;
	}	
	.column-2 {
		width: 100%;
		margin-right: 0;
	}
	ul.prodAndCats li {
		margin: 0 5.454545454545% 30px 0 !important;
		width: 47.2727272727275% !important;
	}
	ul.prodAndCats li.lastOnRow,
	ul.prodAndCats li:nth-child(3n) {
		margin-right:5.454545454545% !important;
	}
	ul.prodAndCats li:nth-child(2n) {
		margin-right: 0 !important;
	}
	.masonry {
		margin: 30px 30px 0;
	}
	.content + #masonryContainer .masonry {
	    margin: 0 30px 30px;
	}
	.masonry li {
		width: 100% !important;
		padding: 0 !important;
		margin: 0 0 30px !important;
	}
	.masonry li:last-child {
		margin-bottom: 0 !important;
	}
	.masonry li a {
	    height: 250px !important;
	}
	#cleanForm label {
		width: 100%!important;
		padding-right: 0!important;
	}		
	#submit_btn {
		width: 100%!important;
	}	
}

@media screen and (max-width: 690px) {

	#slider .flex-caption .description {
	    padding: 0.6em 1em 3em 1em;
	    font-size: 17px;
	}
}

@media screen and (max-width: 650px) {
	.retailer {
		width: 100%;
		margin-right: 0;
	}
	.newsBills ul li {
	    width: 100%;
	    margin-bottom: 30px;
	}
	h1, #contactWrap h2, .newsBillsWrap h2 {
	    font-size: 30px;
	    margin-bottom: 30px;
	    text-align: center;
	}	

	ul#startPuffs li .puffMainImg {
		display: block;
		width: 100%;
		position: relative;
		height: 0;
		padding: 50% 0 0 0;
		overflow: hidden;
		background: #eee;
		background-size: cover !important;
	}	
	#news-inner {
	    padding: 1em 2em 3em 2em;
	}	
	#content {
	    padding: 20px 0 0 0;
	    background: none;
	}

	#content h1 {	
		font-size: 33px;
	}

	#instagramContainer {
		width: 100%;
	}

	#facebookContainer {
		width: 100%;
	}
	ul#startPuffs li {
		padding: 0;
		padding-bottom: 15px;
		width: 100% !important;
	}
	#content #mainCol .pageContainer {
	    width: 90%;
	}
	.pageContainer p {
		font-size: 18px;
	}	
	#news-archive-page li {
		width: 100%;
	}	
}

/* Small smartphone (320px) */
@media screen and (max-width: 480px) {

	.inner-container,
	#news-inner {
		padding: 1em 1em 0.5em 1em;
	}
	.staffTable li {
		width: 100%;
		/*margin-right: 0% !important;*/
	}	
	#contactForm {
		width: 100%;
	}
	#prodImages {
		width: 100% !important;1140px
		margin: 0 0 0 0 !important;
	}
	#prodInfo {
		width: 100%;
	}
	ul.galleryThumbs li {
		width: 47.7% !important;
	}
	#footer ul .footer-column {
		margin: 0 0 20px 0 !important;
		width: 100% !important;
		text-align: center;
	}
	#footer ul .footer-column:nth-child(3) {
		margin: 20px 0 !important;
	}
	#footer ul .footer-column .pageContainer {
		text-align: center;
	}
	.addthis_default_style .addthis_separator, .addthis_default_style .at300b, .addthis_default_style .at300bo, .addthis_default_style .at300m, .addthis_default_style .at300bs {
		float: none !important;
		display: inline-block;
		*display: inline;
		zoom: 1;
	}
	.addthis_toolbox {
		text-align: center !important;
	}
	.masonry {
		margin: 20px 20px 0;
	}
	.content + #masonryContainer .masonry {
	    margin: 0 20px 20px;
	}

	#slider.flexslider .slides, 
	#slider.flexslider .slides > li {
	    padding-bottom: 280px;
	}
	#slider .flex-caption-inner {
		height: 280px;
	}
	#slider .flex-caption .description { 
	    display: none; /* hides the text description on smaller devices */
	}	
	#slider .flex-caption .headline {
		padding-bottom: 1.8em;
	    padding-top: 0.3em;
	    font-size: 16px;
	    font-weight: 600;
	}

	#slider .flex-caption-cell {
	    width: 100%;
	}	
	#socialWrapper {
	    margin: 0;
	}	
	ul#startPuffs li {
	    margin: 0;
	}	
	.newsBills ul li .news-img {
		padding-bottom: 180px;
	}
	#news-inner {
	    padding: 1em 1em 3em 1em;
	}	

	#footer {
	    padding: 1em 0px 1em 0px;
	}
	#footer ul li.footer-column:nth-child(2){
	    margin-bottom: 0;
	}	
	#footer ul .footer-column:nth-child(3) {
		margin: 10px 0 10px;
	}	

	#mainCol a {
		word-break: break-all;
    	font-size: 20px;
	}
	#mainCol .staffInfo {
		font-size: 16px;
	}	
	#mainCol .staffInfo a {
		font-size: 16px;
	}		
}
@media screen and (max-width: 370px) {
/*	.staffTable li {
		width: 100%;
		margin-right: 0% !important;
	}*/
	ul.prodAndCats li {
		margin: 0 0% 30px 0 !important;
		width: 100% !important;
	}
	ul.prodAndCats li.lastOnRow,
	ul.prodAndCats li:nth-child(3n) {
		margin-right: 0% !important;
	}
	#content h1 {
		margin-bottom: 20px;
	}	
}
/* Rest */
@media screen and (max-width: 320px) {
	
}
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
	body {-webkit-text-size-adjust: none;}
}
