#accordion-container {
    font-size: 12px;
    background: #ffffff;
    padding: 5px 10px 10px 10px;
    border: 1px solid #cccccc;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 5px 15px #cccccc;
    -webkit-box-shadow: 0 5px 15px #cccccc;
    box-shadow: 0 5px 15px #cccccc;
    font-family:Arial, sans-serif;
}

.accordion-header {
    font-size: 15px;
    background: #ebebeb;
    margin: 5px 0 0 0;
    padding: 5px 20px;
    border: 1px solid #cccccc;
    cursor: pointer;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-family:Calibri;
    font-weight:bold;
    color:#585858
}

.active-header {
    -moz-border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    background: url("../images/active-header.gif") #5c86ae;
    background-repeat: no-repeat;
    background-position: right 50%;
    color:#fff;
}

.active-header:hover {
    background: url("../images/active-header.gif") #5c86ae;
    color:#fff;
    background-repeat: no-repeat;
    background-position: right 50%;
}

.inactive-header {
    background: url("../images/inactive-header.gif") #ebebeb;
    background-repeat: no-repeat;
    background-position: right 50%;
}

.inactive-header:hover {
    color:#fff;
    background: url("../images/inactive-header.gif") #5c86ae;
    background-repeat: no-repeat;
    background-position: right 50%;
}

.accordion-content {
    display: none;
    padding: 10px 20px;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-top: 0;
    -moz-border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
	font-size: 12px!IMPORTANT;
}

.accordion-content ol{
	list-style:none;
	float:left;
}

.accordion-content ul{
	list-style:none;
	float:left;
	padding:0
}

.accordion-content ul li{
	list-style:none;
	margin-bottom:5px;
}



