
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#FFFFFF;
	/* width: 300px; */
	margin:15px 0px 0px 20px;
}

/* accordion header */
#accordion h2 {
	background:url(spindown-closed.gif) no-repeat left;
	margin:0;
	padding:5px 5px 5px 20px;
	font-size:14px;
	font-weight:bold;
	color:#514F4F;
	border:0px solid #fff;
	cursor:pointer;		
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	background:url(spindown-open.gif) no-repeat left;
}

/* accordion pane */
#accordion div.pane {
	display:none;
	padding:0px 0px 0px 20px;
}

/* end tab accordion styling */

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}
