.object {
    position: relative;
    margin: 10px 0;
    padding: 49px 19px 14px;
    /*padding-top: 19px;*/
    background-color: #fff;
    border: 1px solid #ddd;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 1px 0px #EEE;
    box-shadow: 0px 0px 1px 0px #EEE;
    -moz-transition: padding 0.3s, margin 0.3s, max-height 0.5s,border-radius 0.5s, opacity 0.5s;
    -o-transition: padding 0.3s, margin 0.3s, max-height 0.5s,border-radius 0.5s, opacity 0.5s;
    -webkit-transition: padding 0.3s, margin 0.3s, max-height 0.5s,border-radius 0.5s, opacity 0.5s;
    transition: padding 0.3s, margin 0.3s, max-height 0.5s,border-radius 0.5s, opacity 0.5s;
    zoom: 1;
}

.object > div.title {
    position: absolute;
    top: 0;    
    left: 0;
    background-color: #E1F2FF;
    border: 0px solid #DEDEDE;
    border-bottom: 1px solid #DEDEDE;   
    width: 100%;
    height: 40px;
    line-height: 40px;

    background: #dff0ff; /* Old browsers */
    background: -moz-linear-gradient(top, #dff0ff 0%, #e1f4ff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dff0ff), color-stop(100%,#e1f4ff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #dff0ff 0%,#e1f4ff 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #dff0ff 0%,#e1f4ff 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #dff0ff 0%,#e1f4ff 100%); /* IE10+ */
    background: linear-gradient(to bottom, #dff0ff 0%,#e1f4ff 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dff0ff', endColorstr='#e1f4ff',GradientType=0 ); /* IE6-9 */
    
    -webkit-border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    border-radius: 5px 5px 0px 0px;
    
    -moz-transition: box-shadow 0.1s, border-radius 0.5s;
    -o-transition: box-shadow 0.1s, border-radius 0.5s;
    -webkit-transition: box-shadow 0.1s, border-radius 0.5s;
    transition: box-shadow 0.1s, border-radius 0.5s;
    z-index: 1;
}

div.object.filled > div.title, div.title.filled {
    background: #fff2de; /* Old browsers */
    background: -moz-linear-gradient(top,  #fff2de 0%, #fff3e0 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff2de), color-stop(100%,#fff3e0)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #fff2de 0%,#fff3e0 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #fff2de 0%,#fff3e0 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #fff2de 0%,#fff3e0 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #fff2de 0%,#fff3e0 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff2de', endColorstr='#fff3e0',GradientType=0 ); /* IE6-9 */

}

.object > div.title:hover {
    -moz-box-shadow: 0 0 5px #007BAF;
    -webkit-box-shadow: 0 0 5px #007BAF;
    box-shadow: 0 0 2px #007BAF;
}

.object > div.title > span {
    padding-left: 10px;
    font-size: 21px;
    color: black;
    text-transform: uppercase;
    cursor: pointer;
}

div.object.collapsed {
    height: 0;
    padding-top: 26px;
    overflow: hidden;
    margin: 5px 0;
}

div.object > * {
    -moz-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

div.collapsed > * {
    opacity: 0;
}

div.collapsed > div.title {
    opacity: 1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.controls {
    padding: 0;
}

.control-group {
    margin: 0;
}

.arrayitem {
    border-radius: 5px;
    border: solid 1px #dedede;
    padding: 10px;
    padding-top: 20px;
    margin-bottom: 5px;
    position: relative;
}

    .arrayitem > div.title {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #eaeaea;
        border: 1px solid #dedede;
        -webkit-border-radius: 5px 0px 0px 0px;
        -moz-border-radius: 5px 0px 0px 0px;
        border-radius: 5px 0px 0px 0px;
        height: 16px;
        line-height: 16px;
        background-image: #dedede;
        padding: 0 5px;
        font-size: 75%;
        font-weight: bold;
    }
