@charset "utf-8";


body {   /*  The body tag style zeros out the default
         margins and padding. Fundamental styles such
		 as font styles and background color/image
		 are also set here.                        */
	font: 1em/1.4em Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ============================================================ */
/* ============================================================ */
/* ============                                     =========== */
/* ============     Element/Tag Selector Styles     =========== */
/* ============                                     =========== */
/* ============================================================ */
/* ============================================================ */

ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}


/* =================================================== */
/* =================================================== */
/* ============                            =========== */
/* ============     ID Selector Styles     =========== */
/* ============                            =========== */
/* =================================================== */
/* =================================================== */


#wrapper {
	width: 770px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
#header {
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #0079B2;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #0079B2;
	padding-top: 5px;
	padding-bottom: 10px;
	background-image: url(../images/mover-man.gif);
	background-repeat: no-repeat;
	background-position: 240px 12px;
}
#header #nav {
	width: 230px;
	margin-top: 35px;
}
#header #logo {
	/* [disabled]margin-top: 5px; */
	z-index: 99;
}
#header #nav ul  li{
	padding-top: 2px;
	padding-bottom: 2px;
	list-style: none;
}
#header #nav ul li a:link {
	color: #0079B1;
	text-decoration: none;
	list-style: url(../images/blt.link.gif) none inside;
	padding: 0px 5px 0px 5px;
}
#header #nav ul li a:visited {
	color: #0079B1;
	text-decoration: none;
	list-style: url(../images/blt.link.gif) none inside;
}
#header #nav ul li a:hover, #header #nav ul li a:active, #header #nav ul li a:focus {
	color: #E5332D;
	text-decoration: none;
	list-style: url(../images/blt.over.gif) none inside;
}
#header #hdr_welcome {
	background: #E1E2E7 url(../images/moving-couple.jpg) no-repeat;
	padding: 10px 0px 0px;
	height: 220px;
	margin-top: 10px;
	margin-bottom: 0px;
}
#header #hdr_welcome #welcome {
	width: 420px;
	font-size: 0.75em;
	line-height: 1.45em;
	margin: 0px 0px 0px 350px;
	padding: 0px;
}
#header #hdr_welcome #welcome h1 {
	font-size: 1.2em;
}
#header #hdr_welcome #welcome img {
	margin: 0px 0px 0px 15px;
	padding: 0px;
}
#mainContent {
	clear: both;
	margin-top: 15px;
	margin-bottom: 15px;
}
#mainContent p {
	font-size: 0.9em;
	margin-left: 30px;
	margin-right: 10px;
}
#mainContent h1  {
	font-size: 1.2em;
	color: #E5332D;
	padding: 0px;
	margin-bottom: 25px;
}
#mainContent h1 img  {
	margin: 0px 20px 0px 10px;
}
#mainContent h2 img {
	margin: 0px 20px 0px 10px;
	border-top: 1px solid #ccc;
	border-right: 2px solid #aaa;
	border-bottom: 2px solid #aaa;
	border-left: 1px solid #ccc;
}

#mainContent h2 {
	font-size: 1.1em;
	padding: 0px;
	margin-bottom: 15px;
	margin-left: 30px;
	margin-top: 25px;
}
#mainContent a:link {
	/* [disabled]text-decoration: none; */
	color: #0079B1;
}
#mainContent a:visited {
	text-decoration: none;
	color: #003955;
}
#mainContent a:hover, #mainContent a:active, #mainContent a:focus {
	text-decoration: none;
	color: #E5332D;
}
#mainContent ul {
	margin-top: 15px;
	margin-left: 55px;
}
#mainContent ul li {
	list-style: inside;
	font-size: 0.9em;
	line-height: 1.5em;
}
#mainContent ol li   {
	font-size: 0.9em;
	line-height: 1.1em;
	/* [disabled]margin: 0px 0px 0px 20px; */
	list-style: none inside;
}
#mainContent #instaQuote {
	margin: 25px 0px;
}
#mainContent #sidebar1 {
	width: 480px;
	padding-left: 8px;
	border-right: 2px solid #CCC;
}

#mainContent #sidebar2 {
	width: 250px;
	padding-left: 12px;
	text-align: center;
}
#mainContent #yp_player {
	margin-left: 25px;
	margin-bottom: 25px;
}
#mainContent #privacy {
	font-size: 1em;
	margin: 0px 30px 15px 40px;
}

#mainContent dl {
	margin-left: 50px;
}
#mainContent #packing dd{
	margin-left: 20px;
	margin-top: 10px;
}

#mainContent #packing {
	margin-right: 25px;
}
#mainContent #packingImg {
	margin-left: 10px;
	border-top: 1px solid #CCC;
	border-right: 2px solid #999;
	border-bottom: 2px solid #999;
	border-left: 1px solid #CCC;
}


#mainContent #packing dt {
	margin-top: 25px;
}
#mainContent #references {
	margin-top: 35px;
	margin-right: 20px;
}

#mainContent #references dl {
	text-align: right;
}
#mainContent #references dl dt {
	margin-bottom: 30px;
}

#mainContent #contact #captcha_image{
	width: 340px;
	margin-left: 50px;
	text-align: right;
}
#mainContent #contact #captcha_image table tr td{
	font-size: 0.9em;
}


#mainContent #contact_page {
	width: 450px;
	margin-right: auto;
	margin-left: auto;
	border-top: 1px solid #999;
	border-right: 2px solid #666;
	border-bottom: 2px solid #666;
	border-left: 1px solid #999;
	background: #F2F2F2;

}
#mainContent #contact_page #contact{
	font-size: 0.85em;
}
#mainContent #contactText{
	text-align: left;
	padding: 0px;
}
#mainContent #contactText p {
	margin-left: -30px;
}
#mainContent dl dt {
	font-weight: bold;
	margin-top: 15px;
}
#mainContent dl dd {
	font-size: .9em;
	line-height: 1.5em;
}
#footer {
	background: #0079b1;
	color: #FFF;
	font-size: 0.7em;
	padding: 30px 15px;
	clear: both;
	position: relative;
}
#footer a:link, #footer a:visited {
	color: #FFF;
}
#footer a:hover, #footer a:active, #footer a:focus {
	color: #F90;
}
#footer #credit {
	width: 250px;
	text-align: right;
}
#quoteInstructions {
}
#quoteInstructions p {
	margin-left: 0px;
	line-height: 1.5em;
}
#quoteInstructions ol {
	list-style-type: decimal;
	list-style-position: inside;
	margin-top: 15px;
	margin-bottom: 30px;
}
#quoteInstructions blockquote {
	font-size: 0.7em;
	font-weight: bold;
	line-height: 1.2em;
	margin-top: -10px;
}
#quoteInstructions ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin-left: 45px;
	margin-right: 40px;
	margin-top: 10px;
}


/* ====================================================== */
/* ====================================================== */
/* ============                               =========== */
/* ============     CLASS Selector Styles     =========== */
/* ============                               =========== */
/* ====================================================== */
/* ====================================================== */



/* ============================== */
/*                                */
/* .form & .quote*Input style the */
/* Contact form and InstaQuote    */
/* form.                          */
/*                                */
/* ============================== */
.formInput   {
	width: 200px;
	/* [disabled]background: #E1FFFF; */
	font-weight: bold;
	background-color: #C1DAFF;
}
.formInput:focus {
	width: 200px;
	background: #CFC;
	font-weight: bold;
	border: 2px solid #050;
}
.formInputCaptcha   {
	width: 55px;
	/* [disabled]background: #E1FFFF; */
	font-weight: bold;
	background-color: #C1DAFF;
}
.formInputCaptcha:focus {
	width: 55px;
	background: #CFC;
	font-weight: bold;
	border: 2px solid #050;
}
.formBox   {
	width: 340px;
	/* [disabled]background: #E1FFFF; */
	font-weight: bold;
	background-color: #C1DAFF;
}
.formBox:focus {
	width: 340px;
	background: #CFC;
	font-weight: bold;
	border: 2px solid #050;
}
#moveQuote  {
	font-size: 0.8em;
	margin-top: 35px;
}
#moveQuote fieldset {
	margin-top: 25px;
	border: 1px solid #666;
}
/* EndOAWidget_Instance_2138522 */
#moveQuote #quoteSummary  fieldset legend{
	font-weight: bold;
	background: #EEE;
}

.quoteInput {
	background-color: #C1DAFF;

}


.quoteInput:focus {
	background-color: #CFC;
	border: 2px solid #050;
}
.quoteInputCaptcha {
	width: 55px;
	/* [disabled]background: #E1FFFF; */
	font-weight: bold;
}
.quoteInputCaptcha:focus {
	/* [disabled]width: 55px; */
	background: #CFC;
	/* [disabled]font-weight: bold; */
	border: 2px solid #050;
}
.quoteItemInput {
	width: 30px;
	background-color: #C1DAFF;
	text-align: right;
}
.quoteItemInput:focus {
	width: 30px;
	background: #CFC;
	border: 2px solid #050;
}
.quoteSummaryBox {
	background-color: #C1DAFF;
	width: 65px;
	border-top: 2px solid #8AB9FF;
	border-right: 2px solid #8AB9FF;
	border-bottom: 3px solid #8AB9FF;
	border-left: 2px solid #8AB9FF;
	font-weight: bold;
	text-align: right;
}
.quoteSummaryTime {
	background-color: #C1DAFF;
	width: 125px;
	border-top: 2px solid #8AB9FF;
	border-right: 2px solid #8AB9FF;
	border-bottom: 3px solid #8AB9FF;
	border-left: 2px solid #8AB9FF;
	font-weight: bold;
	text-align: right;
}

.smEmText {
	font-size: 0.9em;
	line-height: 1.2em;
}

.bold {
	font-weight: bold;
}
.thisPage {     /*  ~~ Bolds Nav LI tag when it's page is live ~~ */
	font-weight: bold;
	color: #E5332D;
}

.navSep {
	border-top: 2px dotted #CCC;
}
.contactPhone {
	font-weight: bold;
	font-size: 1.5em;
}
/* ~~ Miscellaneous float/clear classes ~~ */
.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;
}
.fltrtImgBorder {
	float: right;
	margin-left: 8px;
	border-top: 1px solid #CCC;
	border-right: 2px solid #999;
	border-bottom: 2px solid #999;
	border-left: 1px solid #CCC;
}

.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 can be placed on a <br /> or empty div as the final element following the last floated div (within the .container) if the .footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.warning { /* ~~ this CLASS can be used to style warning/error text returned in a form error or indicate required fields ~~ */
	color: #F00;
	font-weight: bold;
}
#disposal {
	font-size: 0.9em;
}
#garage_sale {
	font-size: 0.9em;
}
#disposal th {
	text-align: left;
	text-decoration: underline;
	height: 35px;
}
#garage_sale th {
	text-align: left;
	text-decoration: underline;
	height: 35px;
}
