/* CSS Accordion styles */
dl
{
	padding: 0px;
	/*min-width: 960px;*/
}
	a.ie { background: transparent; text-decoration: none; }
	dl dt
	{
/*		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
*/		margin: 0;
		height:25px;
	}
		dl dt a,
		dl a.ie dt
		{
			color: #005380;
			font-weight: bold;
			text-decoration: none;
			padding: 0px;
			display: block;
		}
	dl dd
	{
		color: #2B3840;
		margin: 0;
		height: 0;
		overflow: hidden;
/*		-webkit-transition: height 1s ease;
*/	}
		dl dd p
		{
			padding: 10px;
			margin: 0;
		}
	dl dd:target
	{
		height: auto;
	}
	dl a.ie:hover dd,
	dl a.ie:focus dd
	{
		height: auto;
		color: #005380 !important;
	}