/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	height:20px;
	width:780px;
	float: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 64px;
	
}

/* accordion header */
#accordion img {
	float:left;
	margin-right:5px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=70);
}

/* currently active header */
#accordion img.current {
	cursor:default;
	opacity:1;
	filter: alpha(opacity=100);
}

/* 
	accordion pane. should initially have zero width and display:none.
	the first pane should override these with inline style
*/
#accordion div {
	width:0px;
	float:left;
	display:none;
	margin-right:10px;
}

/* content inside a pane should have fixed width */
#accordion div h3 {
	color:#444;
	margin:0 0 -10px 0;
	font-size:12px;
	width:200px;
	font-family: Verdana, Geneva, sans-serif;
	color: #4D3835;
}
	
#accordion div p {
	width:440px;
	margin-top: -1px;
	padding-top: 3px;	
}


.Menutop A:Link {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10px;
	color: #4e3736;
	text-decoration: none;
	font-weight: normal;
	letter-spacing: .1em;
	font-style: normal;
	font-variant: normal;
}
	

.Menutop A:visited {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10px;
	color: #4e3736;
	text-decoration: none;
	font-weight: normal;
	letter-spacing: .1em;
	font-style: normal;
	font-variant: normal;
}

.Menutop A:active {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10px;
	color: #4e3736;
	text-decoration: none;
	font-weight: normal;
	letter-spacing: .1em;
	font-style: normal;
	font-variant: normal;
}
	

.Menutop A:hover {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10px;
	color: #FFF;
	text-decoration: none;
	font-weight: normal;
	letter-spacing: .1em;
	font-style: normal;
	font-variant: normal;
}

