@charset "UTF-8";
/* CSS Document */
 
 
body  {
	background: #ffffff;
	margin: 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: #333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 19px;
	font-weight: 100;
}


.twoColElsRtHdr #container {
	width: 800px;  /* this width will create a container that will fit in an 900px browser window if text is left at browser default font sizes */
	background-image: url(images/bgred.gif);
	background-repeat: repeat-y;
	background-position: left top;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
} 
.twoColElsRtHdr #header {
	background: #b3d334;
	margin: 10px;
	padding: 10px;
} 
img {
	padding: 3px;
}
.twoColElsRtHdr #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 */
	font-family: Verdana, Geneva, sans-serif;
	font-size: 18px;
	line-height: 16px;
	font-weight: 100;
	color: #333;
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. 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 ".twoColElsRtHdr #sidebar1 p" rule.
*/
.twoColElsRtHdr #sidebar1 {
	float: right;
	width: 200px; /* top and bottom padding create visual space within this div */
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 5px;
	border-left-width: 2px;
	border-left-style: dotted;
	border-left-color: #b3d334;
	height: 550px;
}

.twoColElsRtHdr #sidebar3 {
	float: right;
	width: 180px; /* top and bottom padding create visual space within this div */
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 5px;
	border-left-width: 2px;
	border-left-style: dotted;
	border-left-color: #b3d334;
	height: 550px;
}

.twoColElsRtHdr #sidebar1a {
	float: right;
	width: 20%; /* top and bottom padding create visual space within this div */
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 5px;
	border-left-width: 2px;
	border-left-style: dotted;
	border-left-color: #b3d334;
	height: 650px;
}
.twoColElsRtHdr #sidebar1 h3, .twoColElsRtHdr #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;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsRtHdr #mainContent {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	line-height: 19px;
	font-weight: 100;
	color: #333;
	margin-top: 0;
	margin-right: 2em;
	margin-bottom: 0;
	margin-left: 15px;
	width: 550px;
	padding: 10px;
} 
.twoColElsRtHdr #mainContent p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 19px;
	font-weight: 100;
	color: #333;
} 
.twoColElsRtHdr #container #mainContent h1 strong {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	line-height: 16px;
	font-weight: 300;
	color: #333;
}
.twoColElsRtHdr #footer {
	background:#c1c1c1;
	height: 1px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	margin: 10px;
} 
.twoColElsRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* 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 */
	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;
}
 
</style>[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.twoColElsRtHdr #sidebar1 { padding-top: 30px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

<![endif]
h1 {
	font-size: 18px;
	margin-top: 10px;
	color: #7293c8;
	font-family: Papyrus, Verdana, Arial, Helvetica, sans-serif;
}
h2 {
	font-size: 1.3em;
	font-weight:100;
	margin-top: 15px;
	color: #039;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-left: 5px;
}
h3 {
	font-size: 1.2em;
	font-weight: normal;
	color: #039;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-left: 5px;
}
h4 {
	font-size: 14px;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #039;
}

h6{
	font-size: 1em;
	font-weight: normal;
	padding: 1px 10px 1px 6px;
	margin: 10px 10px 10px 10px;
	color: #039;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
h7{
	color: #039;
	font-size: 1em;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.linearound {
	padding: 2px;
	border: 1px solid #666666;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}




a:link {
	color: #00C;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 15px;
	font-weight: normal;
	font-variant: normal;
}
a:visited {
	color: #990000;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 15px;
	font-weight: normal;
	font-variant: normal;
}
a:hover {
	color: #0000FF;
	text-decoration: none;
	background: #CCCCCC;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 15px;
	font-weight: normal;
	font-variant: normal;
}
a.small:link {  font: normal 9px/12px Verdana, Arial, Helvetica, sans-serif; color: #006600; text-decoration: none}
a.small:visited {  font: normal 9px/12px Verdana, Arial, Helvetica, sans-serif; color: #999999; text-decoration: none}
a.small:hover {  font: normal 9px/12px Verdana, Arial, Helvetica, sans-serif; color: #999999; text-decoration: none; background: #CCCCCC}

.copyright {  font: normal 10px/normal Verdana, Arial, Helvetica, sans-serif; color: #666666}
.titletext2 {  font: 300 11px/18px Verdana, Arial, Helvetica, sans-serif; color: #CCCCCC; letter-spacing: 4px}
.noticetext {  font: normal 10px Verdana, Arial, Helvetica, sans-serif; color: #CCCCCC}

a.big:link {
	color: #039;
	text-decoration: none;
	font-family: Papyrus, Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-style: normal;
	line-height: 15px;
	font-weight: bold;
	font-variant: normal;
}
a.big:visited {
	color: #930;
	text-decoration: none;
	font-family: Papyrus, Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-style: normal;
	line-height: 15px;
	font-weight: bold;
	font-variant: normal;
}
a.big:hover {
	color: #999999;
	text-decoration: none;
	background: #CCCCCC;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-style: normal;
	line-height: 15px;
	font-weight: bold;
	font-variant: normal;
}


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


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

#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;
	background-color: #9C3;
}


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


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


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

#nav li li {
	width: 145px;
}

#nav li ul a {
	width: 115px;
	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-repeat: no-repeat;
	background-position: right center;
	background-color: #999;
}

#nav li:hover, #nav li.sfhover {
	background-color: #CCC;
	color: #900;
	background-repeat: no-repeat;
	background-position: right center;
}

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


.red {
	color: #F00;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	line-height: 14px;
}

#apDiv1 {
	position:absolute;
	width:500px;
	height:521px;
	z-index:1;
	text-align: center;
	visibility: visible;
}
#apDiv2 {
	position:absolute;
	width:500px;
	height:500px;
	z-index:2;
	text-align: center;
	text-align: center;
	visibility: hidden;
}
#apDiv3 {
	position:absolute;
	width:500px;
	height:500px;
	z-index:3;
	text-align: center;
	visibility: hidden;
}
#apDiv4 {
	position:absolute;
	width:500px;
	height:500px;
	z-index:4;
	text-align: center;
	visibility: hidden;
}
#apDiv5 {
	position:absolute;
	width:515px;
	height:500px;
	z-index:5;
	text-align: center;
	visibility: hidden;
}
#apDiv6 {
	position:absolute;
	width:500px;
	height:500px;
	z-index:6;
	text-align: center;
	visibility: hidden;
}
#apDiv7 {
	position:absolute;
	width:500px;
	height:500px;
	z-index:7;
	text-align: center;
	visibility: hidden;
}
#apDiv8 {
	position:absolute;
	width:500px;
	height:500px;
	z-index:8;
	text-align: center;
	visibility: hidden;
}
#apDiv9 {
	position:absolute;
	width:500px;
	height:500px;
	z-index:9;
	text-align: center;
	visibility: hidden;
}
#apDiv10 {
	position:absolute;
	width:500px;
	height:500px;
	z-index:10;
	text-align: center;
	visibility: hidden;
}
#apDiv11 {
	position:absolute;
	width:500px;
	height:500px;
	z-index:9;
	text-align: center;
	visibility: hidden;
}
#apDiv12 {
	position:absolute;
	width:500px;
	height:500px;
	z-index:10;
	text-align: center;
	visibility: hidden;
}
#apDiv13 {
	position:absolute;
	width:500px;
	height:500px;
	z-index:10;
	text-align: center;
	visibility: hidden;
}
#apDiv14 {
	position:absolute;
	width:500px;
	height:500px;
	z-index:10;
	text-align: center;
	visibility: hidden;
}

