/*
    Document   : generic.css
    Created on : 27-May-2014, 13:13:13
    Author     : David Scourfield
    Description:
        Generic styling which will be common across all web apps.  Largely used
        to normalise things like margins, spacing, fonts, etc., for a consistent
        cross-browser appearance.
*/

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

ul, ol {
    margin: 12px 0;
    padding-left: 32px;
}

p, dl {
    margin: 12px 0;
}

dt {
    font-weight: bold;
    margin-top: 4px;
}

dd + dt {
    margin-top: 12px;
}

dd {
    margin-top: 8px;
    margin-left: 24px;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    padding: 1px 6px;
    cursor: pointer;
}

table.row-picker tbody tr,
table.row-picker label,
legend.checkall label,
input[type="checkbox"],
input[type="radio"] {
    cursor: pointer;
}

input[type="checkbox"][disabled],
input[type="radio"][disabled] {
    cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
    vertical-align: text-top;
}

label > input[type="checkbox"],
label > input[type="radio"] {
    margin-right: 2px;
}

input:not([type]),
input[type="color"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="text"],
input[type="search"],
span.labelTarget {
    padding: 1px;
}

input.date {
    width: 80px;
}

span.labelTarget {
    display: inline-block;
}

table.data tbody tr td.numerical,
.numerical {
    text-align: right;
}

div.message {
    border-width: 2px;
    border-style: solid;
    border-left-width: 0px;
    border-right-width: 0px;
    padding: 4px 16px;
    margin: 4px;
}

div.message.error {
    border-color: #800;
    background-color: #FCB;
}

div.message.warning {
    border-color: #A40;
    background-color: #FEC;
}

div.message.notice {
    border-color: #AA0;
    background-color: #FFC;
}

div.message.success {
    border-color: #080;
    background-color: #CFC;
}

header h1 {
    margin: 8px;
    font-size: 16px;
}

.ui-datepicker {
    z-index: 1200;
}

a img,
a:link img,
a:visited img,
a:hover img,
a:active img {
    border-width: 0;
}

img.ekm-status-light-16 {
    width: 16px;
    height: 16px;
}

img.ekm-status-light-32 {
    width: 32px;
    height: 32px;
}

img.ekm-status-light-64 {
    width: 64px;
    height: 64px;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

iframe[scrolling="no"] {
    overflow: hidden;
}

select {
    -moz-padding-start: revert;
    -moz-padding-end: revert;
}
