body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #000000;
	background-image: url(_graphics/background.jpg);
	background-repeat: repeat-x;
}
* {
	margin: 0;
	padding: 0;
}
html, body {
	height: 100%;
}
div#frame {
	width: 1000px;
	background-image: url(_graphics/background-frame.gif);
	background-repeat: repeat-y;
	margin: 0 auto;
	min-height: 100%;
}
div#emerson {
	width: 1000px;
	font-size: 10px;
	background-image: url(_graphics/background-emerson.gif);
	background-repeat: none;
	height: 50px;
}
div#emerson table {
	margin-left: 7px;
}
div#emerson a {
	text-decoration: none;
}
div#masthead {
	width: 1000px;
	line-height: 0;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - -    sidebar (navigation)

*/
div#sidebar {
	width: 205px;
	float: left;
	line-height: 0px;
}

/* - - - ADxMenu: BASIC styles - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.menu {
	width: 205px; /* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.menu, .menu ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* - - - ADxMenu: DESIGN styles - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.menu {
	width: 205px;
}

.menu ul {
	width: 420px;
	margin-top: 0px;
	background-color: #ADADAD;
	border: 2px solid #FFFFFF;
}

.menu ul li {
	line-height: 3em;
	margin: 0 205px 0 0;
	padding: 0 10px;
	width: 175px;
	border-top: 1px solid #FFFFFF;
}

.menu ul li:first-child {
	border-top: none;
}

.menu a {
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	width: 175px;
	display: block;
}

.menu ul li:hover { background-color: #FFFFFF; }
.menu ul a:hover { color: #000066; }

.menu li:hover>ul {	/* inset submenus, to show off overlapping */
	left: 95%;
}

/* - - - ADxMenu: end - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

div#sidebar ul ul {
	background-position: top right;
	background-repeat: no-repeat;
	min-height: 300px;
	height: auto !important;
	height: 300px;
}

/* each of these embedded ul's in the sidebar have been given a specific ID for background purposes */
ul#nav_appleton {
	background-image: url(_graphics/fly-appleton.jpg);
}
ul#nav_mcgill {
	background-image: url(_graphics/fly-mcgill.jpg);
}
ul#nav_curlee {
	background-image: url(_graphics/fly-curlee.jpg);
}
ul#nav_atx {
	background-image: url(_graphics/fly-atx.jpg);
}
ul#nav_ozgedney {
	background-image: url(_graphics/fly-ozgedney.jpg);
}
ul#nav_neer {
	background-image: url(_graphics/fly-neer.jpg);
}
ul#nav_nelson {
	background-image: url(_graphics/fly-nelson.jpg);
}
ul#nav_etp {
	background-image: url(_graphics/fly-etp.jpg);
}
ul#nav_solahd {
	background-image: url(_graphics/fly-solahd.jpg);
}
ul#nav_easyheat {
	background-image: url(_graphics/fly-easyheat.jpg);
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - -    content area

*/
div#content {
	width: 795px;
	float: left;
}
div#content hr {
	color: #000066;
	background-color: #000066;
	margin: 2em 0 1em 0;
	width: 100%;
	height: 1px;
	border: 0;
	clear: both;
}
div#content h1 {
	font-size: 16px;
	font-weight: bold;
	color: #000066;
	margin-bottom: 1.5em;
	border-bottom: 1px solid #000066;
}
div#content h2 {
	font-size: 14px;
	font-weight: bold;
	color: #000066;
	margin: 2.0em 0 1.5em 0;
}
div#content h3 {
	font-size: 12px;
	font-weight: bold;
	color: #000066;
	margin: 1.5em 0 0.5em 0;
}
div#content h4 {
	font-size: 12px;
	color: #000000;
	font-weight: normal;
}

div#content p, div#content ul, div#content ol {
	line-height: 1.5;
	margin-bottom: 1em;
}

div#content ul, div#content ol {
	margin: 0 39px 16px 30px;
	text-indent: inherit;
}

div#content a {
	color: #000066;
}

div#content a:hover {
	color: #666666;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - -   forms
*/
div#content form {
	padding: 0 0 1.5em 0;
}

div#content fieldset {
	border: 1px solid #000066;
	padding: 10px;
	margin-bottom: 1.5em;
}

div#content legend {
	padding: 2px 5px;
	font-weight: bold;
	background-color: #000066;
	color: #FFFFFF;
}

div#content label {
	width: 500px;
	font-size: 10px;
	display: block;
	margin-bottom: 0.4em;
}

div#content label.required, div#content span.required {
	color: #000066;
	font-weight: bold;
}

div#content input, div#content select, div#content textarea {
	font-size: 11px;
	margin-bottom: 1.5em;
}

div#content input.cb {
	margin-left: 20px;
	margin-bottom: 0.5em;
}

div#content form p {
	margin: 0 0 1.5em 0;
	font-size: 10px;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - -   text
*/
div#text {
	width: 520px;
	padding: 1em 40px 0 20px;
	float: left;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - -   right sidebar
*/
div#sidebar-right {
	width: 195px;
	float: left;
	margin-top: 1em;
}
div#sidebar-right h1 {
	font-size: 12px;
	font-weight: bold;
	color: #000066;
	margin-bottom: 1.0em;
	border-bottom: 1px solid #000066;
}
div#sidebar-right p {
	font-size: 10px;
	margin: 0 0 1.0em 0;
}
div#sidebar-right hr {
	color: #000066;
	background-color: #000066;
	margin: 1.5em 0 1.5em 0;
	width: 100%;
	height: 1px;
	border: 0;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - -    footer

*/
div#footer {
	clear: both;
	width: 1000px;
	padding-top: 25px;
}
div#fleft {
	width: 190px;
	height: 60px;
	float: left;
	border-top: 2px solid #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
	padding: 8px 5px 8px 10px;
}
div#fcenter {
	width: 520px;
	height: 60px;
	float: left;
	color: #666666;
	text-align: right;
	border-top: 1px solid #999999;
	border-bottom: 1px solid #999999;
	padding: 10px 20px;
}
div#fcenter p {
	margin: 0;
	padding: 0;
	font-size: 10px;
	line-height: 1.4;
}
div#fright {
	width: 220px;
	height: 80px;
	float: left;
	border-top: 1px solid #999999;
	border-bottom: 1px solid #999999;
	background-color: #FFFFFF;
	line-height: 0;
}
div#fright div {
	width: 144px;
	height: 60px;
	padding: 0 20px;
	margin: 10px 0;
	line-height: 0;
}

div#fbottom p {
	clear: both;
	padding: 0.7em 0 1.0em 215px;
	font-size: 9px;
	color: #666666;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - -    generic styles

*/
.fineprint {
	font-size: 9px;
	line-height: 1.1;
}

.pull {
	width: 500px;
	background-color: #E0E0E0;
	padding: 10px;
	border-top: 4px solid #000066;
	border-bottom: 4px solid #000066;
	margin-bottom: 1em;
}

.indent {
	margin-left: 3em;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - -    misc. specifics

*/
div#rsb_pl {
	background-image: url(_graphics/rsb-pl-bg.gif);
	background-repeat: repeat-y;
}

div#rsb_pl div {
	background-image: url(_graphics/rsb-pl-top.gif);
	background-position: top left;
	background-repeat: no-repeat;
	margin: 0;
	padding: 23px 10px 5px 10px;
}

div#rsb_download {
	margin: 0;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - -   contact info styling
*/
fieldset.contactEPS {
	background-color: #E9E9E9;
	border: 1px solid #666666;
	padding: 0px;
}

fieldset.contactEPS legend {
	margin-left: -1px;
	background-color: #666666;
	padding: 2px 5px;
	color: #FFFFFF;
	font-weight: bold;
	text-transform: uppercase;
}

fieldset.contactTerritory {
	margin: 10px;
	border: 1px solid #000066;
	padding: 8px;
	background-color: #FFFFFF;
}

fieldset.contactTerritory legend {
	margin: 0 -9px 0 0;
	background-color: #000066;
	padding: 2px 5px;
	color: #FFFFFF;
	font-weight: bold;
	text-transform: uppercase;
}

fieldset.contactTerritory h3 {
	font-size: 14px;
	font-weight: bold;
	color: #000066;
	margin-top: -1.0em;
}

table.contactPeople {
	margin-top: 1.0em;
	margin-bottom: 2.5em;
	border-collapse: collapse;
	border-bottom: 1px solid #CCCCCC;
}

table.contactPeople td {
	border-top: 1px solid #CCCCCC;
	line-height: 1.6;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - -   price list styling
*/
table.pl {
	border-collapse: collapse;
	width: 520px;
}

table.pl td {
	padding-bottom: 0.7em;
	line-height: 1.5;
}

table.pl td.title {
	padding-top: 0.7em;
	font-size: 16px;
	font-weight: bold;
	color: #000066;
	border-top: 1px solid #666666;
}

table.pl td.title-old {
	padding-top: 0.7em;
	font-size: 12px;
	font-weight: bold;
	color: #555555;
	border-top: 1px solid #666666;
}