/* ~~ Element/tag selectors ~~ */

body {
	color: #000033;
	text-decoration: none;
font: normal 12px/14px Verdana, Arial, Helvetica, sans-serif: 0px none; 	font: normal 12px/14px Verdana, Arial, Helvetica, sans-serif
}

select           {
	color: #FFF;
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, Geneva, Swiss;
	background-color: #066;
	line-height: 14px;
	margin: 2px;
	padding-top: 1px;
	padding-right: 2px;
	padding-bottom: 1px;
	padding-left: 2px;
}


#menu {
	width: 820px;
	text-align: center;
	margin: 0 auto;
	z-index: 999;
	background-color: #496772;
}


#nav, #nav ul {
	float: left;
	width: 100%;
	list-style: none;
	line-height: 1.2em;
	font-weight: 100;
	padding: 0;
	border: 1px solid #999;
	margin: 0;
	z-index: 999;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.8em;
	background-color: #496772;
}

#body_hom #nav_hom a,
#body_about #nav_about a,#body_lines #nav_lines a,#body_contact #nav_contact a {
	color: #FFF;
	font-weight: 100;
	list-style-type: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}


#nav a {
	display: block;
	width: 150px;
	w\idth:125px;
	color: #FFF;
	text-decoration: none;
	padding: 0.25em 1px;
	text-align: center;
	background-color: #496772;
}
#nav a:hover {
	display: block;
	width: 100px;
	w\idth:125px;
	text-decoration: none;
	text-align: center;
	background-color: #099;
	color: #FF9;
}


#nav li {
	float: left;
	padding: 0;
	width: 125px;
}

#nav li contact {
	float: left;
	padding: 0;
	width: 120px;
}


#nav li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 150px;
	w\idth: 125px;
	font-weight: normal;
	margin: 0px 0px 0px -1px;
	background-color:#CCC;
}

#nav li li {
	width: 125px;
}

#nav li ul a {
	width: 125px;
	padding-top: 0.4em;
	padding-bottom: 0.4em;
	border-width: 0px 0px 1px 0px;
}

#nav li ul ul {
	margin: -1.75em 0 0 14em;
	
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
	color: #900;
	background-color: #099;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	left: auto;
	color: #900;
	background-color: #FFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}

#nav li:hover, #nav li.sfhover {
	background-color: #099;
	color: #900;
}

/*  added new class to change the drop down hover colors */
#nav ul li:hover, #nav ul li.sfhover {
}



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;
}
ul {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.8em;
	line-height: 18px;
	font-weight: 100;
	color: #333;
}
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. */
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 820px;
	background: #FFF; /* the auto value on the sides, coupled with the width, centers the layout */
	border: 1px solid #333;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.container_2 {
	width: 900px;
	background: #FFF; /* the auto value on the sides, coupled with the width, centers the layout */
	border: 1px solid #333;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

#right {
	padding: 10px 20px 10px 20px;
	height: auto;
	width: 160px;
	float: left;
	margin: 0px 0px 0px 6px;
}


/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background-color: #496772;
	height: 100px;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.content {

	padding: 10px 0;
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
}

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


p {  font: normal 11px/22px Verdana, Arial, Helvetica, sans-serif; color: #000033; text-decoration: none}
table {
	padding: 5px;
	margin: 4px;
}
.smalltext1 {  font: normal 9pt/8pt Verdana, Arial, Helvetica, sans-serif; color: #CCCCCC; text-decoration: none}
.mytext1 {  font: normal 14px/18px Verdana, Arial, Helvetica, sans-serif; color: #000033; text-decoration: none}
.mytext2 {  font: normal 9px/8px Verdana, Arial, Helvetica, sans-serif; color: #330033; text-decoration: none}


table {
}

.mytext3 {  font: normal 11px/12px Verdana, Arial, Helvetica, sans-serif; color: #CCCCCC}

a:link {
	font: normal 11px/14px Verdana, Arial, Helvetica, sans-serif;
	color: #00C;
	text-decoration: none;
	height: 20px;
}

a:visited {
	font: normal 11px/14px Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	text-decoration: none
}

a:hover {  font: normal 11px/14px Verdana, Arial, Helvetica, sans-serif; background: #CCCCCC; text-decoration: underline; color: #FF0000}


.saletext {
	font: 700 normal 11px/14px Verdana, Arial, Helvetica, sans-serif;
	color: #FF0000;
	background: #f1f1f1
}

h1 {  font: bold normal 16px/18px Verdana, Arial, Helvetica, sans-serif; color: #CCCCCC}

h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: normal;
	color: #000033;
}
a.text:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: 12px;
	font-weight: normal;
	color: #0FF;
	text-decoration: none;
}
a.text:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	font-weight: normal;
	color: #990000;
	text-decoration: none;
	height: 20px;
}
a.text:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	font-weight: normal;
	color: #0066FF;
	text-decoration: underline;
	height: 20px;
}
a.small:link {  font: normal 9px/10px Verdana, Arial, Helvetica, sans-serif; color: #CCCCCC; text-decoration: none}
a.small:visited {  font: normal 9px/10px Verdana, Arial, Helvetica, sans-serif; color: #999999; text-decoration: none}
a.small:hover {  font: normal 9px/10px Verdana, Arial, Helvetica, sans-serif; color: #999999; text-decoration: none; background: #FFCC00}
.imgline {
	border: 1px solid #666666;
	padding: 2px;
}
.padding {
	padding: 10px;
}
h4 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-style: normal;
	line-height: 18px;
	font-weight: normal;
	color: #CCCCCC;
}
.linebox {
	border: thin solid #000066;
	background-color: #CCCCCC;
}
.box {
	margin: 5px;
	padding: 5px;
	border: 3px solid #000066;
	font-weight: bold;
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	background-color: #CFC;
}
.container .content blockquote p a {
	color: #06F;
}
.container .content p a {
	color: #06F;
}


ul.menu > li { display: inline; position: relative;}
ul.menu ul { display: none;}
ul.menu li.sub:hover > ul {
	display: block;
	position: absolute;
	white-space: nowrap;
	width: 125px;
}
ul.menu > li.sub:hover > ul {
	top: 100%;
	left: 0;
	height: 15px;
	width: 125px;
}
ul.menu ul li.sub:hover > ul { to: 0; left: 100%;}
.container a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	line-height: 14px;
	color: #03C;
	text-decoration: none;
}
.container div a:visited {
	color: #930;
}

