/**
    Document   : Triage Tracker(tm) / MCI-START HomePage
    Created on : May 26, 2012, 11:00:43 AM
    Author     : Karl Geiger
*/

body {
    font-family: arial, verdana, sans-serif;
    background-color: black;
}
table {
    width: 100%;
}

/**
   General layout style classes.
*/
.roundbox5px {
    margin: 0;
    padding: 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.box {
    margin: 5px auto 5px auto;
    padding: 5px 0 5px 0;
}
.indent {
    margin-left: 1em;
}
.left {
    text-align: left;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
.aligncenter {
    margin-left: auto;
    margin-right: auto;
}
.alignright {
    display: block;
    float:right;
    clear: both;
}
img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.white {
    background-color: white;
    color: black;
}
/**
   Picture layout and hover picture pop-ups.  Pop-up code courtesy of
   Dynamic Drive:

   www.dynamicdrive.com/style/csslibrary/item/css-popup-image-viewer/
 */
.example {
    display: block;
    width: 33%;
}.exampleleft {
    float:left;
    margin-right: 2em;
    margin-left: 1em;
}.exampleright { 
    float:right;
    margin-right: 1em;
    margin-left: 2em;
}

.imgPop {
    position: relative;
    z-index: 0;
}.imgPop:hover {
    background-color: transparent;
    z-index: 20;
}.imgPop span {
    position: absolute;
    background-color: #B00;
    padding: 5px;
    left: -1000px;
    border: 2px dashed blue;
    visibility: hidden;
    color: black;
    text-decoration: none;
}.imgPop span img {
    border-width: 0;
    padding: 2px;
}.imgPop:hover span {
    visibility: visible;
    top: 0;
    left: 60px;
}

/**
   Triage Classes
*/
.MINOR {
    background-color: green;
    color: white;
}
.DELAYED {
    background-color: yellow;
    color: black;
}
.IMMEDIATE {
    background-color: red;
    color: white;
}
.MORGUE {
    background-color: black;
    color: white;
}
.DISCHARGED {
    background-color: blue;
    color: white;
}

/**
   Brand elements
*/
.LOGO {
    color: #B00;
    margin: 5px auto 5px 5px;
}
.LICENSE {
    font-size: smaller;
    color: red;
    float: left;
}
.COPY {
    font-size: smaller;
    color: red;
    float: right;
}

/**
   Layout
*/
#header {
    background-color: white;
    background-image:url('../_images/START_logo_75x75.png');
    background-repeat:no-repeat;
    background-position: 99%;
    margin: 1em auto auto auto;
    padding: 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    clear: both;
    width: 89%;
}

#main1 {
    margin: 1em auto 1em 5%;
    padding: 0;
    float: left;
    clear: left;
    width: 55%;
}#main1 p {
    margin-bottom: 1em;
}

#main2 {
    margin: 1em 5% 1em 2%;
    padding: 0;
    float: right;
    clear: right;
    width: 33%;
}#main2 hr {
    width: 90%;
    background: inherit;
    border: 0;
    border-bottom: dotted white;
    margin: 5px auto 5px auto;
}

#footer {
    clear: both;
    margin: 1em auto auto auto;
    border-top: 2px solid red;
    width: 90%;
}

/* END */
