/* *
 * Menu
 * */

/*.menu a, .menu .d {
	width: 45%;
}*/
.menu .list {
	position: relative;
	z-index: 100;
	height: 40px;
	margin-left: 25px;
}
.menu .list ul ul {
	width: 150px;
}
.menu .list ul {
	list-style-type: none;
	list-tyle-image: none;
}
.menu .list li {
	float: left;
	position: relative;
}
.menu a, .menu a:visited {
	color: #fff;
	display: block;
	text-decoration: none;
	width: auto;
	height: 40px;
	line-height: 40px;
	padding: 0px 1em;
}
.menu a:hover {
	/*background: url(../images/menu-over-bg.jpg) repeat-x;*/
	text-decoration: underline;
}
.menu .list ul ul {
	visibility: hidden;
	position: absolute;
	height: 0px;
	top: 40px;
	left: 0px;
	width: 150px;
	background-color: #fff;
}
.menu .list ul ul a {
	height: 30px;
	line-height: 30px;
}
.menu .list ul ul a, .menu .list ul ul a:visited {
	background-color: #211809;
	width: 150px;
}
.menu .list ul ul a:hover {
	text-decoration: underline;
	background-image: none;
}
.menu .list ul ul ul {
	left: 150px;
	top: -1px;
	width: 150px;
}
/* make the second level visible when hover on first level list OR link */
.menu .list ul li:hover ul, .menu .list ul a:hover ul {
	visibility: visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu .list ul :hover ul ul {
	visibility: hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu .list ul :hover ul :hover ul {
	visibility: visible;
}