@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;

	position: relative;

	margin-right: auto;

	margin-left: auto;

}

#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 #logo {

	/* [disabled]margin-top: 5px; */

	z-index: 99;

}

#header #nav {

	width: 230px;

	margin-top: 35px;

}

#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;

	margin-top: 10px;

	margin-bottom: 0px;

}

#header #hdr_welcome #welcome {

	width: 420px;

	font-size: 0.8em;

	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;

	background: url(../images/mainContent-vert-lines.gif) repeat-y 248px;

	margin-top: 15px;

	margin-bottom: 15px;

}

#mainContent a:link {

	text-decoration: none;

	color: #0079B1;

}

#mainContent a:visited {

	text-decoration: none;

	color: #600;

}

#mainContent a:hover, #mainContent a:active, #mainContent a:focus {

	text-decoration: none;

	color: #E5332D;

}

#mainContent h1  {

	font-size: 1.2em;

	color: #E5332D;

	margin: 0px;

	padding: 0px;

}

#mainContent h1 img  {

	margin: 0px 15px 0px 10px;

}

#mainContent #movingResources {

	width: 234px;

	margin-left: 251px;

	padding-left: 10px;

	margin-top: 15px;

	font-size: 0.85em;

	padding-right: 10px;

}

#mainContent ul {

	margin-top: 15px;

	margin-left: 45px;

}

#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;

	margin: 0px 0px 0px 15px;

	padding: 0px;

	list-style: none inside;

}

#mainContent #instaQuote {

	margin: 25px 0px;

}

#mainContent #sidebar1 {

	width: 240px;

	padding-left: 8px;

}

#mainContent #sidebar2 {

	width: 250px;

	padding-left: 12px;

	text-align: center;

}

#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;

}





/* ====================================================== */

/* ====================================================== */

/* ============                               =========== */

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

/* ============                               =========== */

/* ====================================================== */

/* ====================================================== */





.thisPage {     /*  ~~ Bolds Nav LI tag when it's page is live ~~ */

	font-weight: bold;

	color: #E5332D;

}

.bold {

	font-weight: bold;

}



.navSep {

	border-top: 2px dotted #CCC;

}

/* ~~ 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;

}

.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;

}

