.panel {
    display:block;
    text-align:center;
}

.panel > h1 {
    font-size: 1.1rem;
    font-weight: 100;
    text-align: center;
    margin: 0 auto 0.5em auto;
    text-transform: uppercase;
    background-color: #5b95d0;
    padding: 0.3rem 1.5rem;
    color: #fff;
    letter-spacing: 1px;
    display: inline-block;
}

.panel > .body {
    box-sizing:border-box;
    text-align:initial;
    margin:0;
    background-color: #E4EDF5;
    border: 0px;
    padding: 0;
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 2px 0px rgba(32, 55, 78, 0.45);
    box-sizing: border-box;
}

.panel > .body:after{
    visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
}

.panel > .footer {
    box-sizing:border-box;
    background-color: #5b95d0;
    min-height: 1rem;
    -webkit-border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px;
}