@charset "utf-8";
/* CSS Document */

.AccordionTitle, .AccordionContent, .AccordionContainer
{
  width:100%;
}

.AccordionTitle
{
background: #e8e8e8;
border:1px solid #cdcdcd;
/* gecko based browsers */
background: -moz-linear-gradient(top, #ffffff, #e8e8e8);

/* webkit based browsers */
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e8e8e8));
color: #000000; /* text colour (black) */
/*height: auto; gradient uses the full height of the element */

/* For Internet Explorer 5.5 - 7 */
.filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff, endColorStr=#e8e8e8, GradientType=1);
/* For Internet Explorer 8 */
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#e8e8e8, GradientType=1);

padding: 5px;  /*distance from border edge to text */
width:100%;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#333333;
font-weight:bold;
cursor:pointer;
}


.AccordionContent
{
  	height:0px;
  	display:none; 
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#333333;
	font-weight:normal;
	text-align:justify;
	line-height:15px;
	width:100%;
	overflow:auto;
}