@charset "UTF-8";
/* CSS Document */

*
{
	border: 0;
	margin: 0;
	padding: 0;
}

/* listmenu */

#listmenu 
{
	width:100%; /* makes the div full width */
	float:left; /*makes the div enclose the list */
	background:#fff;
	margin-top:20px;
}


#listmenu ul 
{
	margin:0px 0px 0px 300px;
	background:#fff;
	text-align: left;
}
h3 {
	font-family: "Arial Narrow", "Trebuchet MS", Tahoma, Sans-Serif;
	font-size: 1.3em;
	vertical-align: 90%
	font-weight: bold;
	color: #FFFFFF;
	letter-spacing: 0.07em;
	font-variant: normal;
	line-height: 2.7em;
	text-transform: uppercase;
}

#listmenu li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-color:#FFf; /*sets the background of the menu items */
	padding:0px 5px 5px 0px; /* 0px to fix color background highligh when hovering */
}

#listmenu a
{
	display: block;
	color: #666666;
	margin-bottom: 3px;
	font-weight: normal;
	padding: 5px 5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-bottom-color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration:none;
	font-size: 0.65em;
}


#listmenu a:hover
{
	background-color: #e7e7e7;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #cc3300;
	
}

#listmenu a.current
{
	border-bottom: 1px solid #cc3300;
}

/*  end listmenu */

/* the drop-down starts here */
div#listmenu ul li ul {
	margin:0; /* prevents the TEMP value inheriting from the horiz menu - OK to remove if you remove 
TEMP above */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:10em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu 
stack*/
	left:-1px; /*aligns the drop exactly under the menu */
	}
div#listmenu ul li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px solid #fff; /*  three sides of each drop-down item */
	border-bottom:1px solid #fff;
	border-right:1px solid #cc3300;
	padding:0 0 0px;
	}
div#listmenu ul li ul li:first-child {
	border-top:1px solid #fff; /*the top edge of the dropdown */
	}
/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {display:none; /* conceals the drop-down when menu not hovered */
left:-1px;
}
div#listmenu ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */


/* pop-out starts here */
body div#listmenu ul li ul li ul  {
	visibility:hidden; /* same effect as display:none in this situation */
	top:-1px;
	left:10em;
	}
div#listmenu ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* second level popouts start here*/
div#listmenu ul li ul li:hover ul li ul {visibility:hidden;}
div#listmenu ul li ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* third level popouts start here*/
div#listmenu ul li ul li ul li:hover ul li ul {visibility:hidden;}
div#listmenu ul li ul li ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#listmenu ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px solid #000; /* adds the rightmost menu vertical line to the ul */
	margin-left:15px; /* IE doubles the given value above - why? */
	}
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#listmenu ul li ul {
	border-top:1px solid #fff;
	border-left:0px; /* stops the drop inheriting the ul border */
	}
/* the Tantek hack to feed IE Win 5.5-5.0 a lower value to get the pop-out to touch the drop-down */
* html  div#listmenu ul li ul li ul { 
  left:9.85em; 
  voice-family: "\"}\""; 
  voice-family:inherit;
  left:10em;
  }
p {
	letter-spacing: 0.05em;
}
/*  content area */
#content2  {
	background-color: #cc3300;
	width: 800px;
	padding-left: 30px;
	padding-top: 30px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	font-weight: 200;
	padding-right: 0px;
	margin-top: 10px;
	/* height: 650px; */
	
	height: 600px;
	color: #FFFFFF;
	line-height: 1.5em;
	margin-left: auto;
	margin-right: auto;
}
#address {
	width:150px;
	float:left;
	margin-right: 25px;
	height: 500px;
	padding-top: 50px;
}

.submitstyle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-indent: 15px;
}
#container {
	background-color: #000033;
	}
#header {
	background-image: url(images/header.gif);
	background-repeat: no-repeat;
	height: 176px;
	background-color: #000000;
	margin-top:40px;
	margin-left:200px;
	
}
#content {
	background-color: #cc3300;
	
	margin-left: auto; /* height: 750px; */
	margin-right: auto;
	height: 750px;
}
/*  footer area */
#copyright {
	background-color: #ccc;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	height: 40px;
	padding-top: 10px;
	letter-spacing: .2em;
}

div.clearfloats  {clear:both;}
