* {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-family: helvetica, arial, sans-serif;
}
body {
    color: #333;
    background-color: #eee;
}
a {
    color: #dd4814;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
br.clear {
    clear: both;
}
p {
    margin: 12px 0 0 0;
}

div#dialogBackground {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #aaa;
    z-index: 1000;
    opacity: .7;
    filter: alpha(opacity=70);
}

div#dialog {
    z-index: 1001;
    width: 320px;
    position: absolute;
}
div#dialog div#dialogHead {
    padding: 4px 12px;
    color: #eee;
    background: url(images/menuBG.png) #3c3b37 top repeat-x;
    border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
}
div#dialog div#dialogBody {
    padding: 0 12px 12px 12px;
    border: 1px solid #ddd;
    border-top: 1px solid #888;
    background-color: #fff;
    box-shadow: 4px 4px 8px #888;
    -moz-box-shadow: 4px 4px 8px #888;
    -webkit-box-shadow: 4px 4px 8px #888;
}
div#dialog div#dialogBody div.error {
    text-align: center;
    margin: 8px 0 -8px 0;
    padding: 4px;
    color: #eee;
    background-color: #d44;
}

/* ~~~~~~~~~~~~ */
/* Table styles */
/* ~~~~~~~~~~~~ */

table.input {
    margin: 12px 0 0 0;
}
table.input th {
    font-weight: normal;
    text-align: right;
    color: #335;
    background-color: #ddf;
    padding: 2px 4px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
table.input td {
    padding: 2px 4px;
    background-color: #eef;
    padding: 2px 4px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

/* ~~~~~~~~~~~~~ */
/* Button styles */
/* ~~~~~~~~~~~~~ */

div.buttonGroup {
    float: left;
    margin: 12px 12px 0 0;
    background-color: #dad7d3;
    background-color: #eeeceb;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    padding: 4px 10px 2px 12px;
    color: #333;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
}
button {
    padding: 2px 6px;
    font-size: 12px;
    font-weight: normal;
    color: #fff;
    border-top: 1px solid #e26438;
    border-right: 1px solid #e26438;
    border-left: 1px solid #b1390f;
    border-bottom: 1px solid #b1390f;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    background: url(images/buttonBG.png) #dc4814 repeat-x bottom;
    background-color: #ef793c;
    background-color: #dc4814;
}
div.buttonGroup button {
    margin: 0 2px 2px 0;
}
button:active {
    color: #ddd;
    background: url(images/buttonActiveBG.png) #dc4814 repeat-x top;
    border-left: 1px solid #e26438;
    border-bottom: 1px solid #e26438;
    border-top: 1px solid #b1390f;
    border-right: 1px solid #b1390f;
}

/* ~~~~~~~~~~~~~~~~~~~ */
/* Form control styles */
/* ~~~~~~~~~~~~~~~~~~~ */

input {
    border: 1px solid #cce;
    background-color: #fff;
    font-size: 12px;
    vertical-align: middle;
}
