/* ==========================
    CSS STYLES FOR HouseMenu
   ==========================
*/

/*********************************************************************
 Standard structural CSS that typically should not need to be changed
*********************************************************************/
#people { /* menu wrapper div */
	padding: 0;
	margin: 0;
	border: 0;
	white-space: nowrap;
	position: relative;
}

#people ul { /* all submenu lists */
	padding: 0;
	margin: 0;
	border: 0;
	list-style-type: none;
	white-space: nowrap;
	z-index: 99999;
}

#people li { /* all list items */
	position: relative;
	display: inline;
	float: left;
	margin: 0;
	border: 0;
	padding: 0;
}

#people ul li { 
	list-style-type: none;
	list-style-image: none;
}

#people li li { /* all items under the top level */
	z-index: 11113;
}

#people a { /* all links within the menu wrapper */
	display: block;
	margin: 0; 
	border: 0;
	padding: 0;
}

#people li li a { /* all item links under the top level */
	margin: 0;
	border: 0;
	padding: 0;
}

#people li a:hover {
	margin: 0;
	border: 0;
	padding: 0;
}

#people li li a:hover {
	margin: 0;
	border: 0;
	padding: 0;
}

#people li ul {
	position: absolute;
	margin: 0;
	border: 0;
	padding: 0;
	z-index: 11112;
}

#people li ul ul { /* third-and-above-level lists */
	margin: 0;
	border: 0;
	padding: 0;
}

#people li:hover ul ul, 
#people li:hover ul ul ul, 
#people li.sfhover ul ul, 
#people li.sfhover ul ul ul {
	left: -9999px;
}

#people li:hover ul, 
#people li li:hover ul, 
#people li li li:hover ul, 
#people li.sfhover ul, 
#people li li.sfhover ul, 
#people li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	z-index: 99999;
}

#people iframe {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
	display: block;
}

.ArrowPointer
{
	cursor: default;
}



/*******************************************************
 Presentation CSS that typically needs to be customized
*******************************************************/
#people { /* menu wrapper div */
	border: none;
	width: 100%;
	height: 100px;
	_height: 100px;
	/* _position: absolute; seems to be necessary for IE when used for HouseMenu skinobject */
}

#people ul { /* all submenu lists */
	line-height: 100px;
}

#people li.firstmenuitem { /* all list items */
	/*width: 144px;*/
	height: 100px;
    background-image: none;
    padding: 5px 1px 0px 0px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	_width: 1px;
	height: 100px;
	_height: 100px;
	/* end hack */
}

#people li { /* all list items */
	/*width: 144px;*/
	height: 100px;
	
	background-repeat: no-repeat;
    padding: 5px 1px 0 0px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	_width: 1px;
	height: 100px;
	_height: 100px;
	/* end hack */
}

#people li li { /* all items under the top level */
	/*width: 148px;*/
	height: auto;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	/*width: 134px;
	_width: 144px;*/
	/* end hack */
}

#people a { /* all links within the menu wrapper */
	font-family: Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 9px;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	/*background-color: transparent;*/
    /*width: auto; */
	height: auto;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	_width: 100%;
	height: 100px;
	_height: 100px;
	/* end hack */
    	
}


#people li li a { /* all item links under the top level */
	padding: 5px;
	/*width: 148px;*/
	height: 100px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	/*width: 134px;
	_width: 144px;*/
	height: 100px;
	_height: 100px;
	/* end hack */
}

#people li a
{
	_padding-top:20px;
}

#people li a:hover 
{
	_padding-top:20px;
	height: auto;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	height: 100px;
	_height: 100px;
	background-image: url("../images/image_roll.gif");
	background-repeat:no-repeat;
	background-position:center;
	/* end hack */
}

#people li li a:hover {
	color: #036;
	padding: 5px;
	height: auto;
	background-image: url("../images/image_roll.gif");
	background-repeat:no-repeat;
	background-position:center;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	height: 100px;
	_height: 100px;
	/* end hack */
}

#people li ul { /* second-level lists */
	/*width: 144px; *//* width of submenu, must be set so third-level list can get shifted over properly */
	left: -9999px; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border: none;
	margin: -2px 0 0 0;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	margin: 0;
	/* end hack */
	line-height: 100px;
}

#people li ul ul { /* third-and-above-level lists */
	margin: -22px 0 0 144px;
	border: none;
	line-height: 100px;
}

/* Applied to the parent item, if displayed, in either vertical or horizontal
   orientation. Must follow other styles. */
#people #houseMenuParentItem a
{ /* all links under the parent item (li) */
	background-color: transparent; 
	text-decoration: none;
}

#people a#houseMenuParentLink
{ /* parent link itself */
	background-color: transparent; 
	text-decoration: none;
}

#people a#houseMenuCurrentLink
{ /* current link itself */
/*	padding: 5px; */
	color: #fff; 
	/*background-color: #036; */
	text-decoration: none;
}


