/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#FFFFFF url(/img/global/gradient/h150.png) repeat scroll 0;
	height:305px;
	padding:10px 0 10px 20px;
	width:930px;
	border:1px solid #ddd;
	overflow:hidden;
}

/* accordion header */
#accordion span {
	float:left;
	margin-right:10px;
	cursor:pointer;
	opacity:0.7;
	filter: alpha(opacity=70);
}

/* currently active header */
#accordion span.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:0px;
	width:530px;
	font-size:16px;
	text-align:left;
	padding-bottom: 0px;
}
	
#accordion div p {	
	font-size:12px;
	width:520px;
	padding-right:15px;
	padding-left:0px;
	padding-top:0px;
	text-align:left;
}

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
  }
  
#ContentAc div img {
	cursor:default;
}
