body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-size: 100%;
}

body, input, select, textarea {
    font-family: Verdana,Arial,Helvetica,sans-serif;
}

textarea {
    overflow: auto;
}

button, iframe, img, input, object, select, textarea {
    max-width: 100%;
}

iframe, img, a img {
    border: none;
}

input[type="image"] {
    width: 100%;
}

td > img:only-child {
    float: left /* Avoid unnecessary space in td, use float for compat reason when td contains other text */
}

hr {
    height: 0;
    border: none;
    border-bottom: 1px solid #c0c0c0;
}

.color-red, td.color-red {
    color: red;
}

.color-green, td.color-green {
    color: #008000;
}

.color-blue, td.color-blue {
    color: blue;
}

.color-black, td.color-black {
    color: black;
}

.color-white, td.color-white {
    color: white;
}

.color-deeppink, td.color-deeppink {
    color: deeppink;
}

.color-dodgerblue, td.color-dodgerblue {
    color: dodgerblue;
}

.background-color-white {
    background-color: white;
}

.align-left, td.align-left {
    text-align: left;
}

.align-center, td.align-center {
    text-align: center;
}

.align-justify, td.align-justify {
    text-align: justify;
}

.align-right, td.align-right {
    text-align: right;
}

.align-top, td.align-top {
    vertical-align: top;
}

.align-middle, td.align-middle {
    vertical-align: middle;
}

.align-bottom, td.align-bottom {
    vertical-align: bottom;
}

.display-none {
    display: none;
}

.display-block {
    display: block;
}

.display-inline-block {
    display: inline-block;
}

.text-decoration-none {
    text-decoration: none;
}

a.text-decoration-none:hover {
    border-bottom: 1px solid;
}

.font-weight-normal {
    font-weight: normal;
}

.font-weight-bold {
    font-weight: bold;
}

.font-size-small {
    font-size: small;
}

.font-size-medium {
    font-size: medium;
}

.font-size-large {
    font-size: large;
}

.margin-none {
    margin: 0;
}

.margin-top-bottom-x {
    margin: 1em auto;
}

.padding-none {
    padding: 0;
}

.padding-half-x {
    padding: 0.5em;
}

.padding-left-x-half {
    padding-left: 1.5em;
}

.padding-x {
    padding: 1em;
}

.width-x {
    width: 1em;
}

.width-2x {
    width: 2em;
}

.width-3x {
    width: 3em;
}