/*
  Simple Grid
  Learn More - http://dallasbass.com/simple-grid-a-lightweight-responsive-css-grid/
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - dallasbass.com
*/

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0px;
}

[class*='col-'] {
	float: left;
	padding-right: 20px;
}

[class*='col-']:last-of-type {
	padding-right: 0px;
}

.grid {
	width: 100%;
	max-width: 1140px;
	min-width: 755px;
	margin: 0 auto;
	overflow: hidden;
}

.grid:after {
	content: "";
	display: table;
	clear: both;
}

.grid-pad {
	padding-top: 20px;
	padding-left: 20px; /* grid-space to left */
	padding-right: 0px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.grid-pad > [class*='col-']:last-of-type {
	padding-right: 20px;
}

.push-right {
	float: right;
}

/* Content Columns */

.col-1-1 {
	width: 100%;
}
.col-2-3, .col-8-12 {
	width: 66.66%;
}

.col-1-2, .col-6-12 {
	width: 50%;
}

.col-1-3, .col-4-12 {
	width: 33.33%;
}

.col-1-4, .col-3-12 {
	width: 25%;
}

.col-1-5 {
	width: 20%;
}

.col-1-6, .col-2-12 {
	width: 16.667%;
}

.col-1-7 {
	width: 14.28%;
}

.col-1-8 {
	width: 12.5%;
}

.col-1-9 {
	width: 11.1%;
}

.col-1-10 {
	width: 10%;
}

.col-1-11 {
	width: 9.09%;
}

.col-1-12 {
	width: 8.33%
}

/* Layout Columns */

.col-11-12 {
	width: 91.66%
}

.col-10-12 {
	width: 83.333%;
}

.col-9-12 {
	width: 75%;
}

.col-5-12 {
	width: 41.66%;
}

.col-7-12 {
	width: 58.33%
}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
}
/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
	.titlebar {
		padding-top: 1em;
		padding-bottom: 1em;
		background: #f2f2f2; /*#ebf6fc*/
		border-bottom: 1px solid #DEDDDD;
	}
	.businesses span {
		display: block;
	}
	#copyright, #companyAddress {
		float: none;
		text-align: center;
	}
}
	
@media handheld, only screen and (max-width: 767px) {
	.grid {
		width: 100%;
		min-width: 0;
		margin-left: 0px;
		margin-right: 0px;
		padding-left: 0px;
		padding-right: 0px;
	}
	
	[class*='col-'] {
		width: auto;
		float: none;
		margin-left: 0px;
		margin-right: 0px;
		margin-top: 10px;
		margin-bottom: 10px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.businesses img {
		float: left;
		margin-bottom: 3em;
		display: block;
		margin: 0;
		text-align: left;
	}
	.businesses h2 {
		text-align: left;
	}
	.businesses p {
		text-align: left;
	}
	/* #menu is the original menu */
	.js #menu {
		display:none;
	}
	
	.js .slicknav_menu {
		display:block;
	}
	#awards {
		display: none;
	}
	.liner {
		background-image: none;
	}
	#privacyProtected, #BBBRating { float: none; display: block;}
	#copyright, #companyAddress { float: none; text-align: center; }
}

@media handheld, only screen and (max-width: 639px) {
	.hero {
		background: url(../images/hero-shot-mobile.jpg);
	    background-position: center top;
	    background-repeat: no-repeat;
	    background-color: #fff;
	}
	.hero h1 {
		font-size: 2.5em;
	}
	p.shopByPhone {
		padding-top: .75em;
		font-size: 1.375em;
	}
	.businesses img {
		float: none;
		display: block;
		margin: 0 auto 1em auto;
		text-align: center;
	  }
	.businesses h2 {
		font-size: 1.125em;
		text-align: center;
	}
	.businesses p {
		padding-left: 1em;
		padding-right: 1em;
		font-size: 1em;
		line-height: 1.5em;
		text-align: center;
	}
	.fltright, .fltleft {
		display: none;
	}
	.careers .sidebar-container {
		padding-right: 0;
	}
	.titlebar h1 {
		font-size: 1.875em;
	}
	.footer h2 {
		margin: 0 0 10px 0;
		font-size: 1.25em;
		text-align: center;
	}
	.footer ul {
		margin-bottom: 2em;
	}
	.footer ul li a {
		display: block;
		padding: 8px 0;
		width: auto;
		color: #bbd5ea;
		font-size: 1em;
		text-decoration: none;
		text-align: center;
	}
	.footer a:hover {
		color: #fff;
	}
	.social {
		margin: 0 auto;
		width: 144px;
		text-align: center;
		background: #ffc;
	}
	.social li {
		display: inline;
		float: none;
	}
	#privacyProtected, #BBBRating { float: none; display: block; }
	#getQuotesBtn { float: right; margin-left: auto; }
	#copyright, #companyAddress { float: none; text-align: center; }
}
@media handheld, only screen and (max-width: 500px) {
	.chat {
		display: none;
	}
	.hero {
		background: url(../images/hero-shot-mobile.jpg);
	    background-position: center top;
	    background-repeat: no-repeat;
	    background-color: #fff;
	}
	.hero  {
		padding: 0;
	}
	.hero h1 {
		font-size: 2.25em;
	}
	.hero p {
		font-size: 1em;
	}
	.hero ul {
		font-size: 1em;
	}
	.textfield {
		width: 7em;
	}
	/*p.shopByPhone {
		padding-top:.75em;
		font-size: 1.5em;
	}*/
	p.shopByPhone strong {
		display: block;
	}
	.businesses img {
		float: none;
		display: block;
		margin: 0 auto 1em auto;
		text-align: center;
	  }
	.businesses h2 {
		font-size: 1.125em;
		text-align: center;
	}
	.businesses p {
		font-size: 1em;
		line-height: 1.5em;
		text-align: center;
	}
	.footer h2 {
		margin: 0 0 10px 0;
		font-size: 1.25em;
		text-align: center;
	}
	.footer ul {
		margin-bottom: 2em;
	}
	.footer ul li a {
		display: block;
		padding: 8px 0;
		width: auto;
		color: #bbd5ea;
		font-size: 1em;
		text-decoration: none;
		text-align: center;
	}
	.footer a:hover {
		color: #fff;
	}
	.social {
		margin: 0 auto;
		width: 144px;
		text-align: center;
		background: #ffc;
	}
	.social li {
		display: inline;
		float: none;
	}
	.btnDependents {
		font-size: .875em;
		font-weight: 400;
		padding: 8px 16px 8px 24px;
		background: #e7eaeb url(../images/icon_plus.png) no-repeat 8% 48%;
	}
	#copyright, #companyAddress { float: none; text-align: center; }
}

@media handheld, only screen and (max-width: 320px) {
	.chat {
		display: none;
	}
	p.shopByPhone {
		padding: .75em 0;
		font-size: .875em;
	}
	.businesses img {
		float: none;
		display: block;
		margin: 0 auto;
		text-align: center;
	  }
	.businesses h2 {
		font-size: 1.125em;
		text-align: center;
	}
	.businesses p {
		font-size: .875em;
		line-height: 1.5em;
		text-align: center;
	} 
	#news {
		display: none;
	}
	blockquote {
		padding: 0;
	}
	.social {
		margin: 0 auto;
		width: 144px;
		text-align: center;
		background: #ffc;
	}
	.social li {
		display: inline;
		float: none;
	}
	.hero h1 {
		margin: 0 0 10px 0;
	}
	.container {
		padding: 0;
	}
	.liner {
		width: 100%;
		border: none;
		border-radius: 0;
	}
	.btns {
		text-align: center;
	}
	.titlebar {
		padding-top: 1em;
		padding-bottom: 1em;
		background: #f2f2f2; /*#ebf6fc*/
		border-bottom: 1px solid #DEDDDD;
	}
	.titlebar img {
		display: none;
	}
	.titlebar h1 {
		font-size: 1.75em;
	}
	.titlebar h4 {
	}
	#FAQs {
		display: none;
	}
	.emailLink {
		display: none;
	}
	.awards {
		display: none;
	}
	#copyright, #companyAddress { float: none; text-align: center; }
}