/*!
 * jQuery Accordion 0.0.1
 * (c) 2014 Victor Fernandez <victor@vctrfrnndz.com>
 * MIT Licensed.
 */

/* Requirements */

[data-accordion] [data-content] {
    overflow: hidden;
    max-height: 0;
}

/* Basic Theme */

[data-accordion] {
    line-height: 2;
}

[data-control] {
    font-size: 16px; color:#1B3059; 
}

[data-control],
[data-content] > * {
    border-bottom: 1px solid #bfbfbf;
    padding: 10px 20px;
}

[data-content] [data-accordion] {
    border: 0;
    padding: 0;
}

[data-accordion] [data-control] {
    position: relative;
    padding-right: 40px;
}

[data-accordion] > [data-control]:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 18px;
    font-size: 25px;
    font-weight: 200;
    color: #444;
    height: 15px;
    width: 24px;
    background: url('../images/down.png') center center no-repeat;
    background-size: 50%;
}

[data-accordion].open > [data-control]:after {
    -webkit-transform: rotate(-180deg); 
    -ms-transform: rotate(-180deg); 
    transform: rotate(-180deg); 
}

.level02{
    background: #b8e7f5;
}
.level03{
    background: #f9ffe5;
}

.menu_first_layer {
    background: #07508a;
}
.menu_first_layer> a{
    color: #ffffff;
}
.menu_second_layer{
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #dbdbdc 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%,#dbdbdc 100%);
    background: linear-gradient(to bottom, #ffffff 0%,#dbdbdc 100%);
}