/* two compound selectors removing indentation from the ul and setting the width of the menu */
ul.menu, ul.menu ul {
  list-style-type:none;
  margin: 0;
  padding: 0;
  width: auto;
  max-width: 1600px;
}

/* compound selector for links. Block aligns them vertically */
ul.menu > li > a {
  display: block;
  text-decoration: none;	
}

/* compound selector setting space between list items */
ul.menu li {
  margin-top: 2px;
}

/* two compound selectors for the background and text of links in collapsed items */
ul.menu > li > a, ul.menu > ul.menu > li > a {
	background: #FFF;
	color: #000;
	border: 1px solid #dcdcdc;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 30px;
}

/* two compound selectors for the hover bg colour of collapsed items */
ul.menu > li > a:hover, ul.menu > ul.menu > li > a:hover {
	background-color: #dcdcdc;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #FF0000; 
	padding-left: 26px;
}
/* four compound selectors for the colour of the head category of expanded items */
ul.menu a.active, ul.menu ul.menu li a.active, ul.menu a.active:hover, ul.menu ul.menu li a.active:hover {
    text-decoration: none;
    background: #dcdcdc;
	color: #000;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #FF0000;
	padding-left: 26px;
}
/* Elements in open panels */
.inner {
	 margin-top: 10px;
}
.inner_1 {
	width: 50%;
	min-width:200px;
	float: left;
}
.inner_2 {
	width: 50%;
	min-width:100px;
	background-color: #FFF;
	float: left;
}
.lower_edge {
	clear: both;
	width: auto;
	height: 1px;
	background-color: #dcdcdc;
}
dt {
	margin-left: 35px;
}
dd {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 35px;
	font-size: 12px;
	color: #999999;
	font-weight: bold;
}
dl img {
	float: left;
	margin-top: 2px;
}
dl {
	line-height: 18px;
	margin-right: 15px;
	margin-left: 15px;
	margin-top: 0;
}
dl a:link, a:visited {
	color: #FF0000;
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;
	text-transform: none;
}
dl a:hover {
	text-decoration: underline;
}
dd a:link {
	color: #666;
	font-weight: bold;
	text-decoration: underline;
}

@media screen and (max-width: 1100px) {
	.inner_2 {
	width: 100%;
	}
}

@media screen and (max-width: 750px) {
	.inner_1 {
	width: 100%;
	}
}