/*body{font-family: Georgia, serif;padding: 20px 20px 40px 20px !important; color: #333;background:#fff !important;}*/
/*table { width:100%;}
td { border:1px solid #ccc;}*/
ul{	margin: 0;padding: 0 0 0 20px;}
p{margin: 0 0 10px 0;}
.text-right { text-align:right;}
.text-center { text-align:center;}
h4
{
    /*margin: 0 0 5px;*/
    color:#990000;
    }
ol li 
{
    line-height:25px;
    text-align:justify;
}
/* Remove focus ring as all screen readers tested on, add their own focus ring */
:focus{
  outline: 0;
}

/* ---------------------------------

		A C C O R D I A N

--------------------------------- */

.accordion{
	border-radius: 3px 3px -1px 0px;
	overflow: hidden;
	border: 3px solid #DC143C;
	width: 1015px;
	max-width: 1015px;
	border-top: 0px;
}

.accordion-panel__heading{
	position: relative;
	padding: 20px;
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #003366;
	background: #f5f5f5;
	
	 background: #f5f5f5 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAJCAMAAAA8eE0hAAAAUVBMVEX////MzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzNzc3l5eXg4ODZ2dnMzMzi4uLS0tLe3t7Q0NDV1dXj4+PW1tbk5OTc3NzPz8/R0dH0Zv5RAAAAC3RSTlMAM2YekAmlPHuEAwArv7wAAAA/SURBVHheY2Dl5mdigABGKV5BNnYok4dHQpKFGcrkEefj5gAzQUBABM7kFYQyRcX4mUBMkEpOLrA2IWGwfgYAn0UDZszv8IwAAAAASUVORK5CYII=) repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f5), color-stop(1, #eee));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #eee);
  background-image: -moz-linear-gradient(top, #f5f5f5, #eee);
  background-image: -ms-linear-gradient(top, #f5f5f5, #eee);
  background-image: -o-linear-gradient(top, #f5f5f5, #eee);
  background-image: linear-gradient(#f5f5f5, #eee);
	
	
	font-family: Arial Black;
	font-size: 14px;
	font-weight: 600;
	border-bottom: 1px dotted #990000;
	transition: all .2s;
	cursor:pointer;
}
.accordion-panel__heading:before{
	transition: all .2s ease;
	content: "";
	border: 0px #990000 solid;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
}
.accordion-panel__heading.active:before{
	transition: all .2s .2s;
	border-left: 15px #DC143C solid;
}
.accordion-panel__heading:HOVER{
	color: #333;
	background: #f1f1f1;
	transition: all .2s;
}
.accordion-panel__heading.active:HOVER,
.accordion-panel__heading.active {
	transition: all .2s;
	color: #003366;
	background: #fff;
	border-bottom: 0;
	padding: 20px 20px 20px 40px;
}
.accordion-panel__content{
	transition: all .2s;
	position: relative;
	padding: 0 20px 0 20px;
	background: #f1f1f1;
    max-height: 0;
    overflow: hidden;
}
.accordion-panel__content:before{
	transition: all .2s ease;
	content: "";
	border: 0px #990000 solid;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
}
.accordion-panel__content.active:before{
	transition: all .2s .2s;
	border-left: 15px #DC143C solid;
}
.accordion-panel__content.active {
	transition: all .2s;

    max-height: 100%;
    background: #fff;
   padding: 10px 20px 15px 40px;
}
