﻿/*
 * jQuery UI Accordion 1.8.16
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Accordion#theming
 */
/* IE/Win - Fix animation bug - #4615 */
.accordion {
    float: left;
    width: 95%;
    margin: auto;
    /*border: solid 1px #FE5454;*/
    border-radius: 1ex;
    -webkit-border-radius: 1ex;
    -moz-border-radius: 1ex;
}
    .accordion h3 {
        margin-bottom:15px;
        cursor: pointer;
        padding: 6px 6px 6px 15px;
        height: 30px;
        font-size: 1rem;
        font-weight: bold;
        background-color: #FE5454;
        border-radius: 1ex;
        -webkit-border-radius: 1ex;
        -moz-border-radius: 1ex;
    }
        .accordion h3:hover {
            background-color: #FE5454;
        }
.accordion h3 a
{
    color: White;
}
.accordion table
{
    padding: 10px;
}

.accordion table td
{
    height: 18px;
}