/**
 * 40-elements.css
**/

/**
 * headlines
**/
h1, h2, h3,
h4, h5, h6 {
    text-transform: uppercase;
}

h1.divider,
.divider h1,
h2.divider,
.divider h2,
h3.divider,
.divider h3,
h4.divider,
.divider h4,
h5.divider,
.divider h5,
h6.divider,
.divider h6 {
    margin-top: 32px;
    margin-top: 2rem;
    border-bottom: 2px solid #EEE;
}

/**
 * lists 
**/
ul {
    list-style-type: disc;
}

ul ul, ol ul {
    list-style-type: circle;
}

ul ul ul, ul ol ul, ol ul ul, ol ol ul {
    list-style-type: square;
}

ol, ul ol, ul ul ol, ul ul ul ol {
    list-style-type: decimal;
}

ol ol, ul ol ol, ol ul ol, ul ul ol ol, ol ul ul ol, ul ol ul ol {
    list-style-type: upper-alpha;
}

ol ol ol, ul ol ol ol, ol ul ol ol, ol ol ul ol {
    list-style-type: upper-roman;
}

abbr {
    position: relative;
}

abbr:before {
    display: block;
    position: absolute;
    top: -100%;
    margin: -.25em 0 0;
    padding: .25em;
    background: #FFF;
    border: 1px solid #EEE;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}

abbr:hover:before, abbr:focus:before {
    content: attr(title);
}

.image_container {
    margin: 0 0 1em;
}

figure.float_left,
figure.float_right {
    width: 45%;
}

figure.float_left {
    margin-right: 5%;
}

figure.float_right {
    margin-left: 5%;
}

blockquote p,
.information,
.warning,
.confirmation {
    margin: 1em 0;
}

blockquote p {
    margin-top: .5em;
    margin-bottom: .5em;
}

blockquote em {
    display: block;
    font-weight: normal;
    font-style: normal;
    color: #999;
}

.video_container {
    position: relative;
    padding-bottom: 55%;
    height: 0;
    overflow: hidden;
}

.video_container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}


/**
 * content elements
**/
.ce_accordion,
.ce_accordion .toggler {
    border: 1px solid #EEE;
    border-collapse: collapse;
}

.ce_accordion {
    border-width: 0 1px;
}

.ce_accordion .toggler {
    border-width: 1px 0;
    padding: 0 .5em;
    background: #F9F9F9;
    cursor: pointer;
}

.ce_accordion .accordion {
    padding: .5em;
}

.ce_tabcontrol .tabcontrol_tabs li,
.ce_tabcontrol .tabcontrol_panes {
    border: 1px solid #EEE;
}

.ce_tabcontrol .tabcontrol_tabs ul {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.ce_tabcontrol .tabcontrol_tabs li {
    display: inline;
    display: inline-block;
    padding: .5em;
    margin: 0 .25em 0 0;
    background: #F9F9F9;
    border-color: #F9F9F9;
    cursor: pointer;

}

.ce_tabcontrol .tabcontrol_tabs li.selected {
    background: #FFF;
    border-color: #EEE;
    border-bottom-color: #FFF;
    cursor: default;
}

.ce_tabcontrol .tabcontrol_panes {
    margin-top: -1px;
    padding: .5em;
    min-height: 10em;
}

.ce_gallery ul {
    margin: .5em 0;
}

.ce_gallery li {
    margin: 0 1% .25em;
}

.ce_gallery .cols7 li,
.ce_gallery .cols8 li,
.ce_gallery .cols9 li,
.ce_gallery .cols10 li,
.ce_gallery .cols11 li,
.ce_gallery .cols12 li {
    margin: 0 .5% .125em;
}

.ce_gallery .cols1 li { width: 100%; }
.ce_gallery .cols2 li { width: 49%; }
.ce_gallery .cols3 li { width: 32%; }
.ce_gallery .cols4 li { width: 23.5%; }
.ce_gallery .cols5 li { width: 18.4%; }
.ce_gallery .cols6 li { width: 15%; }

.ce_gallery .cols7 li { width: 13.42857142%; }
.ce_gallery .cols8 li { width: 11.625%; }
.ce_gallery .cols9 li { width: 10.22222222%; }
.ce_gallery .cols10 li { width: 9.1%; }
.ce_gallery .cols11 li { width: 8.18181818%; }
.ce_gallery .cols12 li { width: 7.41666666%; }

.ce_gallery li.col_first {
    margin-left: 0;
}

.ce_gallery li.col_last {
    margin-right: 0;
}

.ce_gallery li.row_last {
    margin-bottom: 0;
}

.ce_gallery.rounded img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

/**
 * global elements
**/ 
.information { color: #5685C2; }
.warning { color: #EE5F5B; }
.confirmation { color: #62C462; }

.pagination {
    border-top: 1px solid #E9E9E9;
}

.pagination p,
.pagination ul {
    margin: .125em 0;
}

.pagination p {
    float: right;
    line-height: 2;
}

.pagination li {
    margin: 0;
}

.pagination li a, 
.pagination li span,
.pagination li strong {
    display: block;
    padding: 0 .5em;
    min-width: 1.5em;
    text-align: center;
    line-height: 2;
}

.pagination span.current,
.pagination strong.active {
    background: #EEE;
}