/*
Theme Name: wackerSanitary
Theme URI: https://wackersanitary.com/
Author: dlm/agileart
Author URI: http://www.agileart.us/
Description: Description
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wackersanitary
Tags:


*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
	5.2.6 footer
	5.2.5 icon menu
	5.3 sidebar
	5.4 payments
	5.5 sidebar-2 footer area
6.0 Accessibility
7.0 Alignments
8.0 Clearings
8.5 Header
8.6 search
9.0 Widgets
9.5 plugins
	9.6 ninjaForms
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
13 @media queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
	line-height:1.5;
}

html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}

body {
	background: #F8F8F8; /* Fallback for when there is no custom background color defined. */
	
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	color:hsl(0, 0%, 20%);
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: right;
	font-family: 'Montserrat', sans-serif;
	font-weight:700;
	color: #404040;
	color:hsl(0, 0%, 10%);
	padding:5px 10px 7px 10px;
}

p {
	margin-bottom: 1.5em;
}

b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 0.750em 0.625em;
}

ul {
	list-style: none;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
	display: block;
	/* margin: 0px auto; */

}

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
float:left;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}


#dbImgs{
	width:80%;
	margin:0px auto;
}
#dbImgs img{
	padding:5px;
	border:1px solid #ddd;
}
/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: #006600;
	text-decoration:none;
	text-transform:uppercase;
}

a:visited {
	color: #1F2E00;
	color:hsl(0, 0% 20%);
	border-bottom:1px dotted #000;
}

a:hover,
a:focus,
a:active {
	color: #194775;
	color:hsl(0, 0% 50%);
}
.nav-links{
	width: 75%;
	margin: 0px auto;
}
/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	background:#003380;
	background:hsl(240, 50%, 20%);
	clear:both;
	display: block;
	float:left;
	font-family:'Montserrat';
	font-size:12px;
	font-size:1.2rem;
	text-transform:uppercase;
	position:relative;
	width:100%;
	border-bottom: 3px solid #006600;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    0px 5px 5px 0px rgba(50, 50, 50, 0.5);
	box-shadow:         0px 5px 5px 0px rgba(50, 50, 50, 0.5);
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}
.main-navigationn ul li{
	position:relative;
	display:inline-block;
}
.main-navigation li a:before{
	display:inline-block;
	padding:0 5px;
	vertical-align:top;
	font-family: 'Fontawesome';
	font-size:24px;
	color:#66FF66;
	-webkit-font-smoothing:antialiased;
	
}
.main-navigation li a[href*="home"]{color:#fff;}
.main-navigation li a[href*="home"]::before{content:'\f015';}
.main-navigation li a[href*="residential"]::before{content:'\f015';}
.main-navigation li a[href*="commercial"]::before{content:'\f1ad';}
.main-navigation li a[href*="drop-boxes"]::before{content:'\f0c8';}
.main-navigation li a[href*="recycling"]::before{content:'\f1b8';}
.main-navigation li a[href*="about"]::before{content:'\f059';}
.main-navigation li a[href*="contact"]::before{content:'\f0a1';}
.main-navigation li a[href*="missed-pick-ups"]::before{content:none;}

.main-navigation a {
	color:#fff;
	color:hsl(0, 0%, 100%);
	display: block;
	font-size:14px;
	font-size:1.4rem;
	line-height:1.3em;
	padding:1.3em 1em;
	text-decoration: none;
}

.main-navigation 
.main-navigation ul ul {
	background:#666;
	background:hsl(0, 0%, 30%);
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	display:none;
	float: left;
	left: 0;
	padding:0;
	position: absolute;
	/*top: 1.5em;*/
	z-index: 99999;
}

.main-navigation ul ul{
position: absolute;
background:#3385FF;
overflow:hidden;
}
.main-navigation ul ul ul {
	left: 100%;
	top: 0;
}
.main-navigation ul ul a {
	width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a {
}

.main-navigation ul ul :hover > a {
color:#fff;
color:hsl(0, 0%, 100%);
display:block;
background:#000;
background:hsl(0, 0%, 50%);
}

.main-navigation ul ul a:hover {

}

.main-navigation ul li:hover > ul {
	left: auto;
	display:block;

}

.main-navigation ul ul li:hover > ul {
	left: 100%;

}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
	background:#3385FF;
	color:#fff;
	color:hsl(0, 0%, 100%);
}
.main-navigation .current_page_ancestor {
	background:#666;
	background:hsl(0, 0%, 100%);
}
.main-navigation ul ul .current_page_parent,
.main-navigation .current_page_parent .current_page_item >a{
	color:#fff;
	color:hsl(0, 0%, 100%);
	background:#666;
	background:hsl(0, 0%, 20%);
}



/*--------------------------------------------------------------
5.2.5 Icon menu 
--------------------------------------------------------------*/
.menu-icon ul{
	float:right;
	text-align:center;
	list-style:none;
	width:100%;
	background: #003380;
	background: hsl(240, 30%, 20%);
	
}
.menu-icon ul li{
	position:relative;
	display:inline-block;
}
.menu-icon li a:before{
	display:inline-block;
	padding:0 5px;
	vertical-align:top;
	font-family: 'Fontawesome';
	font-size:20px;
	color:#fff;
	-webkit-font-smoothing:antialiased;
	content:'\f015';
}

.menu-icon li a[href*="plus.google.com"]::before{content:'\f0d4';}
.menu-icon li a[href*="facebook.com"]::before{content:'\f082';}
.menu-icon li a[href*="twitter.com"]::before{content:'\f099';}


/*--------------------------------------------------------------
graphic menu
--------------------------------------------------------------*/
.graphicMenu{
width:100%;
background: #003380;
background: hsl(216° 70% 33%);
-webkit-box-shadow: 0px 5px 5px 0px rgba(50, 50, 50, 0.5);
-moz-box-shadow:    0px 5px 5px 0px rgba(50, 50, 50, 0.5);
box-shadow:         0px 5px 5px 0px rgba(50, 50, 50, 0.5);
margin-bottom:15px;
}
.gmCtr{
width:100%;
margin:10px auto;
text-align: center; 
}

.gm img{
display:block;
width:75%;
height:75%;
padding:0px;
text-align:center;
margin:10px auto 0px auto;
vertical-align:baseline;
}

.gm{
display:inline-block;
background:#ccc;
background:hsla(0, 0%, 100%, .7);
height:100px;
width:100px;
padding:0px;
margin:5px;
border-radius:3px;
-webkit-box-shadow: 0px 3px 3px 0px rgba(50, 50, 50, 0.75);
-moz-box-shadow:    0px 3px 3px 0px rgba(50, 50, 50, 0.75);
box-shadow:         0px 3px 3px 0px rgba(50, 50, 50, 0.75);
}
.gm:hover{
background:#ccc;
background:hsla(0, 0%, 100%, .3);
}

/* Small menu */
.menu-toggle {
	 display: none; 

}



.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
/*--------------------------------------------------------------
5.2.6 footer area
--------------------------------------------------------------*/

footer{
color:#fff;
background: #003380;
background: hsl(240, 30%, 20%);
}
footer{
color:#fff;
}
footer a{
color:#fff;
}
footer a:hover,
a:active
a:visited{
color:#fff;
}
.aa{
float:right;
margin-right:15%;
}
.site-info{
float:left;
margin-left:2%;
}

#footerSidebar{
border-top :1px solid #006600;
background: #003380;
/*background: hsla(73, 100%, 38%, .5); */
padding-bottom:20px;

}
/*--------------------------------------------------------------
5.3 sidebar -
--------------------------------------------------------------*/

#secondary{
	float:right;
	width:340px;
	/* background:#EBEBEB; */
	padding:0px 10px 15px 10px;
}


.entry-footer{
	display:none;
}

/*--------------------------------------------------------------
5.4 payments 
--------------------------------------------------------------*/
.constantInfo{
	display:inline-block;
	margin:20px auto;
	float:left;
	width:100%;
	background:url(imgs/pattonPng.png)no-repeat  right top;
	padding: 10px 15px;
	border-radius:5px;
	-webkit-box-shadow: 4px 4px 16px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    4px 4px 16px 0px rgba(50, 50, 50, 0.5);
	box-shadow:         4px 4px 16px 0px rgba(50, 50, 50, 0.5);
	}
	
.fa.fa-cc-visa{
	font-size:24px;
	color:#009933;
}
.fa.fa-cc-visa:hover{
	color:#1F4C1F;
}
.fa.fa-cc-mastercard{
	font-size:24px;
	color:#009933;
}
.fa.fa-cc-mastercard:hover{
	color:#1F4C1F;
}


.cc li{
	display:block;
	width:75%;
	border:1px solid #003300;
	padding:3px 7px;
	margin-top:5px;
	background:#ccc;
	background:hsla(0, 0%, 100%, .7);
	-webkit-box-shadow: 4px 4px 16px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    4px 4px 16px 0px rgba(50, 50, 50, 0.5);
	box-shadow:         4px 4px 16px 0px rgba(50, 50, 50, 0.5);
}
@media screen and (max-width:1159px){
	.constantInfo {
		width: 50% ;
		float:left;
		color:#003300;
	}
	.cc li {
		width: 75%;
	}
	
}
@media screen and(min-width:600px){
	.constantInfo {
		width: 100% ;
		float:none;
		color:midnightBlue;
	}	
}
/*--------------------------------------------------------------
5.5 sidebar-2 footer area
--------------------------------------------------------------*/

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}
/*--------------------------------------------------------------
8.5 Header
--------------------------------------------------------------*/

/*
.site-branding{
padding: 6rem 0;
text-align: center;
background:#2c86ba;
background:hsl(202, 62%, 45%);
}
.site-title{
font-weight:700;
font-size:40px;
font-size: 4.5rem;
text-transform:uppercase;
line-height:normal;
padding-bottom;
}
.site-description{
font-weight:100;
font-size:20px;
font-size:2rem;
}
.site-title a,
.site-description{
color:#fff;
color:hsl(0, 0%, 100%);
} */
.hdrImg{
width:100%;
display:block;
margin:0px;
padding:0px;
}
/*--------------------------------------------------------------
8.6 search
--------------------------------------------------------------*/
.search-toggle{
	color:#ccc;
	cursor:pointer;
	float:right;
	/*height:54px;
	width:54px; */
	font-size:24px;
	margin-right:20px;
	padding:12px;
	text-align:center;	
}
.search-toggle:hover,
.search-toggle.active{
	background: #3385FF;
	background:hsl(0,0% 30%);
}
@media screen and (max-width:600px){
	.search-toggle{
		position:absolute;
		top:0;
		right:0;
		margin-right:0;
	}
}


input[type="search"]{
box-sizing:border-box;
width:100%
}
.search-box-wrapper{
z-index:2;
width:100%;
display:none;
}
.search-box{
background: #3385FF;
background:hsl(0,0%,30%);
padding:1em;
clear:both;
}
.search-box .search-field{
max-width:362px;
float:right;
padding:1rem 2rem 1rem 4rem;
font-size:14px;
font-size:1.4rem;
background:#ccc;
border:0px;
}
.error404 .search-submit,
.search .search-submit,
.search-box .search-submit{
display:none;
}



/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	display:inline-block;
	margin: 1% 1%;
	width: 23%;
	max-height:200px;
	min-height:200px;
	overflow-y:scroll;
	background: #ccc url(imgs/btmBg.png)repeat-x left bottom;
	float:left;
	font-size:14px;
	font-size:1.4rem;
	border-radius:3px;
}


/* Make sure select elements fit in widgets */
.widget select {
	width: 100%;
}
.widget-title {
	background:#335C99;
	color:#fff;
}
.widget-title a{
	color:#fff;
}
.tagcloud a{
	line-height:10px;
}
/* Search widget */
.widget_search .search-submit {
	display: none;
	
}

.widget_nav_menu {
text-transform:uppercase;
}
#wp-calendar{
	width:85%;
	margin:5px auto;
	overflow:hidden;
}
#wp-calendar caption{
	background:#335C99;
	color:#fff;
}



.widget_nav_menu{ }

.widget_nav_menu ul{ }

.widget_nav_menu ul li{
display:block;
border-bottom:1px dotted #000;
}
.widget_nav_menu li:hover{
background:#ddd;
}
#rss-4{
	width:100%;
	-webkit-box-shadow: 4px 4px 16px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    4px 4px 16px 0px rgba(50, 50, 50, 0.5);
	box-shadow:         4px 4px 16px 0px rgba(50, 50, 50, 0.5);
}
	#rss-5{
	width:100%;
	-webkit-box-shadow: 4px 4px 16px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    4px 4px 16px 0px rgba(50, 50, 50, 0.5);
	box-shadow:         4px 4px 16px 0px rgba(50, 50, 50, 0.5);
}



/*--------------------------------------------------------------
9.5 plugins
--------------------------------------------------------------*/
#google_language_translator #flags{
width:200px;
}
/*---------- ninja  -----------*/
.ninja-forms-cont{
width:80%;
margin:0px auto;
}
.ninja-forms-field input {
height:250px;
}
.ninja-forms-req{
height:250px;
}


/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
.site-main {
	background: #F8F8F8 url("imgs/recycleLogo600.png") no-repeat left center;
}

.site-footer {
	clear: both;
	width: 100%;
}
/*--------------------------------------------------------------
10.0.0 news and news toggle
--------------------------------------------------------------*/
.latestNews{
/*background:#E0C866;*/
padding:20px 20px 15px 20px;
border-bottom:1px dotted #000;
border-left:1px dotted #000;
color:#660000;
-webkit-box-shadow: 4px 4px 16px 0px rgba(50, 50, 50, 0.5);
-moz-box-shadow:    4px 4px 16px 0px rgba(50, 50, 50, 0.5);
box-shadow:         4px 4px 16px 0px rgba(50, 50, 50, 0.5);
margin-bottom:15px;
background:url(imgs/tnBackground.png);
border-radius:5px;
display:none;
}
.latestNews a{
	color:#000;
	font-size:16px;
	text-decoration:none;


}
.latestNews .slotCat a{
	display:block;
	border:1px solid #000;
	border-radius:3px;
	background:#E0E0E0;
	background:hsl(0, 0%, 70%);
	width:125px;
	padding:3px 7px;

}

.newsToggle{
	float:right;
	text-align:left;
	padding:3px;
	background:#000;
	background:hsla(0, 0%, 70%, .8);
	font-size:10px;
	color:#000;
	margin:0px 0px 1% 0px;
	width:100%;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    0px 5px 5px 0px rgba(50, 50, 50, 0.5);
	box-shadow:         0px 5px 5px 0px rgba(50, 50, 50, 0.5);

}


.fa.fa-arrows-v{
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 25px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	cursor:pointer;
}

/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}
.entry-header{
background: url(imgs/recycleXprt60px.png ) right no-repeat;
}

.entry-title{
text-transform:uppercase;
font-size:20px;
font-strength:200;
padding-left:10%;
}
.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0;
	margin-left: 5%;
	padding: 0px 5px 0px 30px;
	width: 85%;
}
.entry-content p{
padding:0px 0px 0px 10%;
font-size:14px;
font-size:1.4rem;
}
.entry-content ul{
 /*list-style-type: circle;*/
font-size:14px;
font-size:1.4rem;
}
.entry-content img {
/* width: 90%;
display: block;
margin: 0px 0px 0px 10%;
padding: 3%;
border: 1px solid #000; */
}
.attachment-post-thumbnail{
width: 80%;
display: block;
margin: 0px auto 15px auto;
padding: 2%;
background:#E6E6E6;
border: 1px solid #000
}

.entry-title a{
margin:0px 0px 0px 10%;
font-size:18px;
font-weight:700px;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.petWaste{
font-size:14px;
font-size:1.4rem;
width:85%;
padding:20px;
border-left: 3px solid #000;
margin:10px 0px 15px 0px;
}



/* dropboxes */
	#dbImgs {
		width: 100%;
		margin: 0px auto;
	}
	.drobBoxTitle{
		font-weight:bold;
	}
	.boxText{
		font-size:14px;
	}
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}
/*--------------------------------------------------------------
13 @media queries
--------------------------------------------------------------*/
@media screen and (max-width:1049px){
	.main-navigation a {
		color:#ff0000;
		color:hsl(0, 0%, 100%);
		display: block;
		font-size:10px;
		font-size:1.0rem;
		line-height:1.3em;
		padding:1em .75em;
		text-decoration: none;
		}

}
@media screen and (min-width:1160px){
	#secondary{
		
	}
}


@media screen and (min-width:1160px){
	.content-area {
		float: left;
		margin: 0 0 0 -360px;
		padding: 0 0 0 340px;
		width: 100%;
	}
	.entry-header,
	.entry-content,
	.entry-meta,
	.entry-footer,
	.tag-links,
	.post-navigation,
	.comments-area,
	.paging-navigation{

		margin:0px auto;
	}
	

}

@media screen and (max-width:1159px){

	p{
		font-size:14px;
	}
	.ninja-forms-cont {
		width: 100%;
	}
	.widget a{
		font-size:14px;
	}
	#secondary{
		float:none;
		width:100%; /* was auto */
		background:#ddd;
		border-top:3px solid #ccc;
		margin:0px;
		max-width: 100%;
	}
	.newsToggle{
		width:45%;
		display:none;
		}
	.latestNews{
		width:45%;
		float:right;
		clear:both;
		font-size:14px;
		display:block;
	}
	.site-content .widget-area {
		float: none; /*was none*/
		width: 100%; /*was 100% */
		max-width:780px;
		padding:10px 15px 20px;;
		margin:1em auto 0px auto;
	}

	.widget {
		margin: 0xp auto 7px auto;
		width: 45%;
		float:left;
	}
	.footer-widgets {
		margin: 0xp auto 7px auto;
		width: 95%;
		float:none;
		margin: 10px auto 0px auto;
	}
	#rss-4{width:45%;}
	#rss-5{width:45%;}
}




@media screen and (max-width: 600px) {

		.menu-toggle{
		color:#666;
		display:block;
		font-size:12px;
		font-size:1.2rem;
		font-weight:normal;
		height:2em;
		line-height:1.3em;
		padding:0em 1em;
		text-decoration:none;
		
		
	}

	.main-navigation.toggled .nav-menu {
		display: block;
		border-top:1px solid;
		border-top-color:#ff0000;
		border-top-color:hsla(0, 0%, 200%, .5);
	}

	.main-navigation ul {
		display: none;
		padding-left:0px;
	}
	.main-navigation li {	
		float:none;
	}
	
	.main-navigation li a {	
		padding:1.3em 2em;
	}
	.main-navigation li li a {	
		padding-left:4em;
		width:75%;
	}
	.main-navigation li li {	
	width:75%;
	padding:0px;
	margin:0px;
	}
	.main-navigation li:hover > a {	
		background:#666;
		background:hsl(0, 0%, 20%);
	}
	.main-navigation ul ul a:hover {	
		background:#4d4d4d;
		background:hsl(0, 0%, 30%);
		
	}
	.main-navigation .current_page_ancestor {	
		background:inherit;
	}
	.main-navigation ul ul .current_page_parent {	
		color:inherit;
		background:inherit;
	}
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_item > a:hover,
	.main-navigation .current_page_item li:hover,
	.main-navigation .current_page_parent .current_page_item > a,{	
		color:#fff;
		color:hsl(0, 0%, 100%);
		background:#4d4d4d;
		background:hsl(0, 0%, 30%);
	}
.search-toggle {
color: #ccc;
cursor: pointer;
float: right;
font-size: 12px;
margin-right: 5px;
padding: 3px;
text-align: center;
}

	.gmCtr{
		width:100%;
		margin:0px auto;
		}
	.gm img{
		display:block;
		width:70%;
		height:70%;
		text-align:center;
		margin:10px auto 0px auto;
		vertical-align:baseline;
	}
	.gm{
		display:inline-block;
		background:#ccc;
		background:hsla(0, 0%, 100%, .7);
		height:60px;
		width:60px;
		padding:0px;
		margin:5px;
		border-radius:3px;
	}
	#menu-icon ul{
		/*position:absolute;
		top:0;*/
		right:6rem;
		display:block;
	}
	#menu-icon li a{
		padding-left:.5em;
		padding-right:.5em;
	}
	.entry-content{
		width:100%;
		padding:0px 3px;
	}
	.entry-content img {
		width: 100%;
		display: block;
		margin: 0px;
		padding: 0px;
		border: 1px solid #000;
	}
	p{
		font-size:14px;
	}
	.ninja-forms-cont {
		width: 100%;
	}
	.newsToggle{
		width:100%;
		display:none;
		}
	.latestNews{
		width:100%;
		float:right;
		clear:both;
		font-size:14px;
		display:block;
	}
	.constantInfo {
		width: 100%;
		float: left;
		color: #003300;
	}
	.widget {
		margin: 0xp auto 7px auto;
		width: 100%;
	}
	.widget a{
		font-size:14px;
	}
	#footerSidebar{
		padding-top:15px;
	}
	.footer-widgets {
		margin: 0xp auto 7px auto;
		width: 100%;
	}
	#rss-4{
		width:100%;
	}
	#rss-4 ul{
		display:block;
	}
	#rss-5{
		width:100%;
	}
	#rss-5 ul{
		display:block;
	}
	.widget_rss li{display:block;}


}


.entry-meta{display:none;}