@charset "utf-8";
/* CSS Document */
<style type="text/css">
/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/padding.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* style the outer div to give it width */
.cat-menu {font-size:7pt; padding-bottom:200px;}

/* remove all the bullets, borders and padding from the default list styling */
.cat-menu ul {
	padding:0;
	list-style-type:none;
	background:transparent;
	margin: 0;
}

/* style the sub-level lists */
.cat-menu ul ul {
	width:100px;
}

/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.cat-menu ul li {
	float:left;
	height:160px;
	display:block;
}

/* style the sub level list items */
.cat-menu ul ul li {
	display:block;
	width:100px;
	height:150px;
	line-height:150px;
}

/* style the links for the top level */
.cat-menu a, .cat-menu a:visited {
	display:block;
	height:135px;
	width:90px;
	font-size:8.5pt;
	text-decoration:none;
	color:#000000;
	background-color: #DFEFCB;
	background-position: center center;
	border-right-width: 13px;
	border-left-width: 13px;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	float: inherit;
	border-bottom-width: 15px;
	border-top-style: solid;
	border-bottom-style: solid;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	font-weight: bold;
	line-height: normal;
}
/* hack IE5.x to get the correct the faulty box model and get the width right */
* html .cat-menu a, * html .cat-menu a:visited {width:11em; w\idth:7em;}

/* style the sub level links */
.cat-menu ul ul a, .cat-menu ul ul a:visited {
	display:block;
	width:120px;
	height:auto;
	line-height:150px;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	color: #000000;
	background-color: #E1AEB7;
	text-align: left;
}
* html .cat-menu ul ul a, * html .cat-menu ul ul a:visited  {width:14em; w\idth:12em;}


/* style the table so that it takes no part in the layout - required for IE to work */
.cat-menu table {border-collapse:collapse; padding:0; margin:-1px; width:0; height:0; font-size:8.5pt; z-index:1;}


/* style the third level background */
.cat-menu ul ul ul a, .cat-menu ul ul ul a:visited {
	background-color: #F5CCD3;
}
/* style the fourth level background */
.cat-menu ul ul ul ul a, .cat-menu ul ul ul ul a:visited {
	background-color: #82303F;
}
/* style the sub level 1 background */
.cat-menu ul :hover a.sub1 {
	background-color: #82303F;
}
/* style the sub level 2 background */
.cat-menu ul ul :hover a.sub2 {
	background-color: #82303F;
}

/* style the level hovers */
/* first */
* html .cat-menu a:hover {
	color:#FFFFFF;
	position:relative;
	z-index:100;
	background-color: #82303F;
	background-position: center center;
}
.cat-menu li:hover {position:relative;}
.cat-menu :hover > a {
	color:#FFFFFF;
	background-color: #82303F;
	background-position: center center;
}
/* second */
* html .cat-menu ul ul a:hover{
	color:#FFFFFF;
	background:#82303F;
	position:relative;
	z-index:110;
}
.cat-menu ul ul li:hover {position:relative;}
.cat-menu ul ul :hover > a {
	color:#FFFFFF;
	background:#82303F;
}
/* third */
* html .cat-menu ul ul ul a:hover {background:#82303F; position:relative; z-index:120;}
.cat-menu ul ul ul :hover > a {background:#82303F;}
/* fourth */
.cat-menu ul ul ul ul a:hover {background:#82303F; position:relative; z-index:130;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.cat-menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:20px;
	left:0;
	width:14em;
}

/* position the third level flyout menu */
.cat-menu ul ul ul{
	left:1px;
	top:0;
	width:14em;
}


/* make the second level visible when hover on first level list OR link */
.cat-menu ul :hover ul{
	visibility:visible;
	height:auto;
	background:transparent url(images/trans.gif);
	left:0px;
	padding: 0px;
}
/* keep the third level hidden when you hover on first level list OR link */
.cat-menu ul :hover ul ul{visibility:hidden;}
/* keep the fourth level hidden when you hover on second level list OR link */
.cat-menu ul :hover ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.cat-menu ul :hover ul :hover ul{
	visibility:visible;
	left:131px;
}
/* make the fourth level visible when you hover over third level list OR link */
.cat-menu ul :hover ul :hover ul :hover ul {visibility:visible;}


[if lte IE 6]>
.cat-menu ul ul {left:-1px; margin-left:-1px;}
<![endif]
