/* CSS Document */
body
{
	behavior:url(/csshover.htc);
}

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}

div#listmenu /*--- Menu List Container ---*/
{
	float:left; /*--- Makes the div enclose the list ---*/
	padding:0px 0px;
	height:24px;
	width:780px;
	margin:0px 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
}

div#listmenu ul
{
	margin:0px;
	padding:0px;
	list-style-type: none;
}

div#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 list items ---*/	
	display:block;
}

div#listmenu ul li
{
	background-color:#999999;
	padding:1px 6px;
	border-left:1px solid #666666;
	height:22px;
}

div#listmenu ul li:hover, div#listmenu ul li:active
{
	background-color:#990000;
	height:22px;
}

div#listmenu ul li a, div#listmenu ul li a:visited
{
	font-size:11px;
	color:#ffffff;
	font-weight:bold;
	text-decoration:none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

div#listmenu ul li a:hover, div#listmenu ul li a:active
{
	font-size:11px;
	color:#ffffff;
	font-weight:bold;
	text-decoration:none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}



/* DROPDOWNS */
div#listmenu ul li:hover ul  {
	display:block; /*--- Displays appropriate drop down menu ---*/
}
div#listmenu ul li ul li a.dropDown {
	color:#000000;
	text-decoration:none;
	display:block;
	margin:0px;
	font-weight:normal;
}
div#listmenu ul li ul li a.dropDown:hover {
	color:#000000;
	font-weight:normal;
}

div#listmenu ul li ul
{
	margin:0px; /*--- Prevents the temp margin on the ul from inheriting here ---*/
	position:absolute; /*--- Positions the drop-down ul in relation to its relatively positioned li parent ---*/
	left:0px; /*--- Aligns the drop-down exactly under the menu ---*/
	padding:0px;
	top:22px;
	z-index:99;
}


div#listmenu ul li ul.roofing{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:175px;
	padding:0px;
}

div#listmenu ul li ul.why{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:150px;
	padding:0px;
}

div#listmenu ul li ul.company{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:100px;
	padding:0px;
}


div#listmenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	border:0px; /*--- Three sides of each drop-down item ---*/
	border-top:0px;
	margin:0px;
	padding:1px 3px;
	background-color:#cccccc;
	border-left:1px solid #333333;
	border-right:1px solid #333333;
	border-bottom:1px solid #333333;
}

div#listmenu ul li ul li:hover {
	background-image:none;
	background-color:#ededed;
}

/*---------------  FLY OUTS  -----------------*/

div#listmenu ul li:hover ul
{
display:block; /*--- Displays appropriate drop down menu ---*/
}

div#listmenu ul li:hover ul li:hover ul {
display:block; /*--- Displays appropriate drop down menu ---*/
}


