@charset "UTF-8";

/* Body, Header and Container CSS ====================================================================== */

body  {
	margin: 30px 0 20px 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #DBE6F0;
}
.twoColLiqRtHdr #container {
	width: 960px;
	text-align: left;
	margin: 0 auto 0 auto;
	font-size: 14px;
	background-color: #FFFFFF;
} 
.twoColLiqRtHdr #header {
	width: 960px;
	height: 292px;
	background-image: url(images/header/header.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	margin: 0;
	padding: 0;
} 
.twoColLiqRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}



/* Sidebar CSS ====================================================================== */

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqRtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/

.twoColLiqRtHdr #sidebar1 {
	width: 220px;
	margin: 0;
	padding: 0 5px 0 5px;
	background-color: #FFFFFF;
	float: right;
	font-size: 14px;
}

.twoColLiqRtHdr #sidebar1 h3, .twoColLiqRtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

#sidebarWrapper {
}

#social {
	width: 200px;
	padding: 0 10px 10px 10px;
	margin: 6px auto 20px auto;
	font-family: Trebuchet MS, Helvetica, sans-serif;
	font-size: 12px;
	background-image: url(images/sidebar/background.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	overflow: hidden;
}

#social a {
	font-family: Trebuchet MS, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
}

#facebookDiv {
	text-align: center;
	width: 50px;
	margin: 0 10px 0 0;
	float: left;
	padding: 0 0 0 15px;
}

#twitterDiv {
	text-align: center;
	width: 50px;
	margin: 0;
	float: left;
}

#linkedInDiv {
	text-align: center;
	width: 50px;
	float: left;
	margin: 0 0 0 10px;
}

#social img {
	padding: 0 0 4px 0;
	border: 0;
	width: 50px;
	height: 50px;
}

#yellowPages {
	height: 250px;
	width: 430px;
	float: right;
	padding: 10px 10px 40px 10px;
	text-align: center;
}

#legalLocksmith {
	width: 200px;
	padding: 0 10px 10px 10px;
	margin: 0 auto 20px auto;
	text-align: center;
	font-family: Trebuchet MS, Helvetica, sans-serif;
	background-image: url(images/sidebar/background.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;

}

#mailchimp {
	width: 200px;
	padding: 0 10px 10px 10px;
	margin: 0 auto 20px auto;
	text-align: center;
	font-family: Trebuchet MS, Helvetica, sans-serif;
	background-image: url(images/sidebar/background.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
}

#mc_embed_signup {
	width: 190px;
}

#legalLocksmith a {
	color: #14221F;
	text-align: center;
	letter-spacing: 0.1em;
	text-decoration: none;
}

#aloa {
	width: 200px;
	padding: 0 10px 10px 10px;
	margin: 0 auto 20px auto;
	text-align: center;
	font-family: Trebuchet MS, Helvetica, sans-serif;
	background-image: url(images/sidebar/background.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;

}

#aloa img {
	width: 100px;
	margin: 0 40px 4px 40px;
	height: 128px;
	border: 0;
}

#aloa a {
	color: #14221F;
	text-align: center;
	letter-spacing: 0.1em;
	text-decoration: none;
}

#high_security {
	width: 200px;
	margin: 0 auto 6px auto;
	text-align: center;
	padding: 0 10px 10px 10px;
	font-family: Trebuchet MS, Helvetica, sans-serif;
	background-image: url(images/sidebar/background.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
}

#high_security img {
	width: 180px;
	margin: 0 auto 6px auto;
	border: none;
	display: block;
}

#high_security a {
	color: #14221F;
	text-align: center;
	text-decoration: none;
}

#homeSecurity {
	width: 200px;
	padding: 0 10px 10px 10px;
	margin: 0 auto 20px auto;
	text-align: center;
	font-family: Trebuchet MS, Helvetica, sans-serif;
	background-image: url(images/sidebar/background.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
}	

#homeSecurity a {
	color: #14221F;
	text-align: center;
	text-decoration: none;
}


/* Main Content CSS ====================================================================== */

/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/

.twoColLiqRtHdr #mainContent {
	margin: 0;
	width: 686px;
	padding: 0 20px 10px 20px;
	background-color: #FFFFFF;
}

#contentWrapper {
	background-color: #FFFFFF;
	margin: 0;
	padding: 0;
	width: 960px;
}

#mainContent p {
	padding: 0 0 0 8px;
	margin: 6px 0 10px 0;
	line-height: 1.4em;
	clear: left;
}

.mainContentImg {
	padding: 10px 0 0 20px;
	margin: 0 20px 10px 0;
	border: none;
}

#arrowFlash {
	width: 625px;
	margin: 6px auto 0 auto;
}


/* Navigation CSS ====================================================================== */

#navigationDiv {
	width: 960px;
	padding: 242px 0 0 0;
}

#navigation {
	width: 587px;
	padding: 242px 0 0 0;
	margin: 0 auto 0 auto;
}

#navigation ul {
	padding: 0;
	position: absolute;
  	float: left;
  	top: 1.72em; /* change when you change height of links */
	display: none;
	margin: 0 auto 0 auto;
}

#navigation li {
	list-style: none;
	float: left;
	line-height: 1;
}

#navigation a:hover {
	color: #000000;
	display: block;
}

#navigation a {
	color: #233C4D;
	font-weight: bold;
	font-family: Tahoma, Verdana, sans-serif;
	font-size: 16px;
	text-align: left;
	display: block;
	text-decoration: none;
}

body#home-page ul#navigation li.about a,
body#services-page ul#navigation li.services a,
body#brands-page ul#navigation li.featured a,
body#testimonials-page ul#navigation li.testimonials a,
body#contact-page ul#navigation li.contact a,
body#homesecurity-page ul#navigation li.services a {
	color: #000000;
	text-decoration: underline;
}

.about {
	height: 1.3em;
	width: 65px;
	padding: 0 14px 0 0;
}

.services {
	height: 1.3em;
	width: 116px;
	padding: 0 14px 0 0;
}

.featured {
	height: 1.3em;
	width: 150px;
	padding: 0 14px 0 0;
}

.testimonials {
	width: 120px;
	height: 1.3em;
	padding: 0 14px 0 0;
}

.contact {
	height: 1.3em;
	width: 80px;
	padding: 0;
}

#nav_bg {
	margin: 0 auto 0 auto;
	width: 796px;
	display: block;
}

/* Commercial Navigation CSS ====================================================================== */

#commercialNavDiv {
	margin: 14px 0 20px 0;
	float: left;
}

#commercialNav {
	width: 572px;
	margin: 0 auto 0 auto;
	padding: 0;
}

#commercialNav ul {
	padding: 0;
	position: absolute;
  	top: 1.72em; /* change when you change height of links */
	display: none;
	margin: 0 auto 0 auto;
}

#commercialNav li {
	list-style: none;
	float: left;
	line-height: 1;
}

#commercialNav a {
	color: #5E6353;
	font-family: Tahoma, Verdana, sans-serif;
	font-size: 16px;
	padding: 0 7px 0 7px;
	display: block;
	text-decoration: none;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #626757;
}

#commercialNav a:hover {
	color: #2A2D26;
	display: block;
}

#commercialNav li a.current, #commercialNav li a.current:link, #commercialNav li a#active {
	color: #000000;
	text-decoration: underline;
}


/* Commercial Services CSS ====================================================================== */

.commService {
	height: 100px;
	width: 220px;
}

.commercialH1 a {
	text-decoration: none;
	color: #243E54;
}




/* Footer CSS ====================================================================== */

.twoColLiqRtHdr #footer {
	background-color: #BABF97;
	background-image: url(images/footer/footer_bg.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	width: 918px;
	margin: 0 auto 0 auto;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: #505C44;
	overflow: hidden;
} 

.twoColLiqRtHdr #footer p {
	text-align: center;
	font-size: 12px;
	line-height: 1.3em;
	margin: 0;
	padding: 4px 0 4px 0;
}

#footerPhone {
	font-weight: bold;
}

#footerID {
	text-align: left;
	font-size: 14px;
	font-weight: bold;
}

#siteMap {
	width: 110px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 12px;
	margin: 0 0 10px 0;
	padding: 10px 0 0 100px;
	float: left;
}

.siteMapHeader {
	font-size: 14px;
	font-weight: bold;
	color: #20231B;
	display: block;
}

#footerList a, #sidebarList a, #featuredBrandsList a, #featuredBrandsList2 a, #featuredBrandsList3 a {
	font-size: 12px;
	color: #11130E;
	text-decoration: none;
	line-height: 1.3em;
}

#footerList li, #sidebarList li, #featuredBrandsList li, #featuredBrandsList2 li, #featuredBrandsList3 li {
	list-style-type: none;
}

#sidebarLinks {
	width: 180px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 12px;
	margin: 0 0 10px 70px;
	padding: 10px 0 0 0;
	float: left;
}

#featuredBrandsLinks {
	width: 120px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 12px;
	margin: 0 0 10px 70px;
	padding: 10px 0 0 0;
	float: left;
}

#featuredBrandsLinks2 {
	width: 85px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 12px;
	margin: 0 0 10px 0;
	padding: 24px 0 0 0;
	float: left;
}

#featuredBrandsLinks3 {
	width: 85px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 12px;
	margin: 0 0 10px 0;
	padding: 24px 0 0 0;
	float: left;
}

#footerList, #sidebarList, #featuredBrandsList, #featuredBrandsList2, #featuredBrandsList3 {
	padding: 0;
	margin: 6px 0 0 0;
}

#footerContact {
	display: block;
	width: 918px;
}

#creativeOmen {
	padding: 0 10px 6px 0;
	font-size: 12px;
	line-height: 1.3em;
	text-align: right;
	display: block;
	clear: left;
}

#creativeOmen a {
	color: #000;
	font-weight: bold;
}

.footerSpan {
	font-weight: bold;
	margin: 0;
	padding: 0;
	text-align: center;
}




/* Miscellaneous classes for reuse ====================================================================== */

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.paragraphA {
	color: #243E54;
	text-decoration: none;
	font-weight: bold;
}




/* Tag CSS ====================================================================== */

h1 {
	margin: 0px;
	color: #243E54;
	font-family: Trebuchet MS, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #243E54;
}

h2 {
	font-family: Trebuchet MS, Helvetica, sans-serif;
	font-size: 20px;
	color: #243E54;
	font-weight: bold;
	margin: 30px 0 0 0;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #243E54;
}

.italicH2 {
	font-style: italic;
}

h3 {
	color: 848a73;
	font-size: 16px;
	margin: 10px 0 0 0;
}

h4 {
	color: #848A73;
	font-family: Trebuchet MS, Helvetica, sans-serif;
	font-size: 18px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin: 4px 0 0 0;
}

h5 {
	text-align: center;
	font-family: Trebuchet MS, Helvetica, sans-serif;
	font-size: 14px;
	color: #14221F;
	margin: 0 0 10px 0;
}

h6 {
	font-family: Trebuchet MS, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.3em;
	margin: 0;
	padding: 0;
}

img {
	margin: 0;
}




/* Testimonials CSS ====================================================================== */

.testimonials {
	width: 120px;
	height: 1.3em;
	padding: 0 14px 0 0;
}

.testimonialSpan {
	font-size: 12px;
	text-align: right;
	margin: 0 20px 0 0;
	display: block;
	color: #373D34;
}




/* Contact Page CSS ====================================================================== */

.dupage {
	color: #243E54;
	font-weight: bold;
	margin: 30px 0 6px 0;
	display: block;
}

#contactInfo {
	margin: 30px 0 60px 0;
	padding: 0 0 0 8px;
	width: 250px;
}

.contactSpan {
	display: block;
	margin: 2px 0 0 0;
}

#phone {
	margin: 20px 0 0 0;
	font-size: 20px;
	color: #243E54;
	font-weight: bold;
	display: block;
}

#googleMap {
	width: 400px;
	border: 1px solid #233C50;
	font-family: Trebuchet MS, Helvetica, sans-serif;
	float: right;
	margin: 25px auto 0 auto;
	text-align: center;
}

#googleMap a {
	color: #243E54;
	font-weight: bold;
	text-decoration: none;
	padding: 20px 0 0 0;
	text-align: center;
	font-size: 14px;
}

#googleA {
	color: #243E54;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
	display: block;
}

#contactForm {
	width: 500px;
	margin: 0 auto 10px auto;
}

#home-video {
	display: block;
	width: 600px;
	margin: 0 auto;
}


/* Featured Brands CSS ====================================================================== */

#commercialColumn {
	width: 310px;
	float: left;
	margin: 10px 0 20px 0;
}

#commercialColumn img {
	height: 88px;
	width: 140px;
	float: left;
	margin: 0 10px 0 0;
}

#commercialColumn span {
	display: block;
	padding: 10px 0 0 0;
	color: #383D34;
}

#commercialColumn a {
	color: #243E54;
	text-decoration: underline;
	display: block;
	padding: 4px 0 0 10px;
	font-size: 11px;
	font-weight: bold;
}

.commColumnDiv {
	display: block;
	height: 88px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #626B5B;
	padding: 20px 0 20px 0;
	width: 310px;
}

#residentialColumn {
	width: 310px;
	float: right;
	margin: 10px 0 20px 0;
}

#residentialColumn img {
	height: 88px;
	width: 140px;
	margin: 0 10px 0 0;
	float: left;
}

#residentialColumn span {
	display: block;
	padding: 10px 0 0 0;
	color: #383D34;
}

#residentialColumn a {
	color: #243E54;
	text-decoration: underline;
	display: block;
	padding: 4px 0 0 10px;
	font-size: 11px;
	font-weight: bold;
}

.resColumnDiv {
	display: block;
	height: 88px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #626B5B;
	padding: 20px 0 20px 0;
	width: 310px;
}

.homeSecurityHeader {
	font-weight: bold;
	color: #2A3931;
	margin: 0 0 2px 8px;
	line-height: 1.3em;
	display: block;
}

.homeSecurityContent {
	line-height: 1.3em;
	display: block;
	margin: 0 0 10px 8px;
}

.doorLockList {
	display: block;
	margin: 2px 0 0 0;
}
.fourQuestions {
	display: block;
	margin-bottom: 6px;
	margin-left: 24px;
	line-height: 1.4em;
	color: #314337;
}
.boldSpan {
	font-weight: bold;
}
.FAQContact {
	text-align: center;
	display: block;
	font-weight: bold;
	color: #314337;
	text-decoration: none;
}

