/** WP Block **/
.wp-block {
    width : 100%;
    max-width : 100%;
}
blockquote.wp-block-quote {
    border: 1px solid #dedede;
    border-left: 5px solid black;
    margin: 0.5em;
    margin-left: 0.3em;
    padding: 0.5em;
    padding-left: 0.7em;
		-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}


/** table */
table {
    font-size : 0.8em;
    border-collapse : collapse;
}
td {
    min-width : 3em;
    padding : 0.7em;
    border: 1px solid #e0e0e0;;
}


/* useful classes */
.flip_bg {
    color: white;
    background: #004f8c;
    font-size: 0.8em;
    font-weight: bold;
    padding: 0.3em 0.5em;
    margin: 0.3em 0;
}
.sz_clear {
    clear : both;
}
.sz_strip {
    height : 0.3em;
    width : 100%;
    background : #004f8c;
}

/** links **/
a, a:visited {
    color : #007cba;
    text-decoration : none;
}
a:active, a:focus, a:hover {
    color : #006191;
    text-decoration: underline;
}

/**headings **/
h1, h2, h3, h4, h5, h6 {
    color: #004f8c;
    border-bottom: 0.1em solid rgba(0, 0, 0, 0.05);
    margin: 0.25em 0;
    font-weight: 900;
}

/** input and buttons **/
input, button {
    border : 1px solid #004f8c;
    border-radius : 0.3em;
    padding : 0.5em;
    box-sizing: border-box;
}
input[type="button"], input[type="submit"], button {
    background: white;
    color: black;
    border: 1px solid #6d6d6d;
    border-radius: 0.15em;
}

input[type="button"]:hover, input[type="submit"]:hover, button:hover {
    background : #efefef;
    cursor : pointer;
}

label {
    padding: 0.3em 0 0 0.3em;
    font-size: 0.9em;
}


/** iframe and image width **/
iframe, image {
    max-width: 100%;
    height: auto;
}
.sz_iframe_container {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 60%;
}
.sz_iframe_container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
figure {
    margin: 0;
}