﻿/*----------------------------------------------------------
The base color for this template is #5c87b2. If you'd like
to use a different color start by replacing all instances of
#5c87b2 with your new color.
----------------------------------------------------------*/
body {
    background-color: #FFFFFF;
    font-size: 12px;
    font-family: "Trebuchet MS", Verdana, Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
    color: #696969;
    position: relative;
    display: inline-block;
    min-width: 100%;
}

a:link {
    color: #034af3;
    text-decoration: underline;
}

a:visited {
    color: #505abc;
}

a:hover {
    color: #1d60ff;
    text-decoration: none;
}

a:active {
    color: #12eb87;
}

p, ul {
    margin-bottom: 20px;
    line-height: 1.6em;
}

image {
    border: 0;
    margin: 0;
    padding: 0;
}

hr {
    margin: 1.5em 0;
}

/* HEADINGS   
----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    color: #000;
}

h1 {
    font-size: 28px;
    padding-bottom: 0;
    margin-bottom: 0;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5, h6 {
    font-size: 14px;
}

/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

/* you can specify a greater or lesser percentage for the 
page width. Or, you can specify an exact pixel width. */
.page {
    margin-left: auto;
    margin-right: auto;
    min-width: 1250px;
}

#header,
#footer,
#nav,
#main {
    width: auto;
}

#header {
    margin-bottom: 0;
    color: #000;
    padding: 0;
}

    #header h1 {
        font-weight: bold;
        color: #fff;
        border: none;
        font-size: 20px !important;
        margin: 0;
        padding: 0;
    }

#main {
    padding: 10px 10px 15px 10px;
    background-color: #ffffff;
    -webkit-border-radius: 4px 0 0 0;
    -moz-border-radius: 4px 0 0 0;
    border-radius: 4px 0 0 0;
}

#footer {
    background-color: #222;
    color: #DDD;
    padding: 10px 0;
    text-align: center;
    line-height: normal;
    margin: 0 0 30px 0;
    font-size: .9em;
}

    #footer a {
        color: #DDD;
        text-decoration: none;
    }

/* TAB MENU   
----------------------------------------------------------*/
#nav {
    padding: 0;
    margin: 0;
    height: 30px;
    width: 100%;
    background: #893F39;
    white-space: nowrap;
    position: relative;
}

#title {
    font-weight: bold;
    color: #fff;
    border: none;
    font-size: 20px !important;
    margin: 0;
    padding: 2px 50px 0 10px;
    height: 28px;
    background: -moz-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(0,0,0,1)), color-stop(50%,rgba(0,0,0,1)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 100%); /* IE10+ */
    background: linear-gradient(left, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 */
}

.menu {
    z-index: 50;
    zoom: 1;
    display: inline-block;
    padding: 0;
    margin: 0 0 0 0;
    line-height: 30px;
    height: 30px;
    list-style: none;
    position: relative;
    white-space: nowrap;
}

    .menu > li {
        float: left;
        list-style: none;
        position: relative;
    }

        .menu > li span.down {
            padding-right: 15px;
            background: url(images/wdownarrow.gif) no-repeat right;
        }

    .menu li a {
        display: block;
        height: 100%;
        padding: 0 1em;
        text-decoration: none;
        color: #ffffff;
        border-right: 1px dotted #ffffff;
        white-space: nowrap;
    }

        .menu li a:hover {
            background-color: #fff;
            color: #893F39;
            text-decoration: none;
        }

            .menu li a:hover > span.down {
                background: url(images/emadownarrow.gif) no-repeat right;
            }

    .menu ul {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 50;
        display: none;
        list-style: none;
        margin: 0;
        padding: 0;
        line-height: 15px;
    }

        .menu ul li {
            float: none;
            display: inline;
        }
            /* display: inline needed for IE7 */
            .menu ul li a {
                color: #ffffff;
                background: #893F39;
                border-top: 1px dotted #ffffff;
                display: block;
                min-width: 200px;
                height: auto;
                padding: 2px 1em;
            }

    .menu li:hover ul {
        display: block;
    }

    .menu li .top-text {
        display: block;
        height: 100%;
        padding: 0 1em;
        color: #fff;
        white-space: nowrap;
    }

    .menu li.sub-menu ul {
        position: absolute;
        display: none;
        top: inherit;
        left: 8em;
    }

    .menu li.sub-menu:hover ul {
        display: block;
    }

    .menu .sub-menu ul li a {
        border-left: 1px dotted #ffffff;
        white-space: nowrap;
    }

.version {
    float: right;
}


/* INFO ELEMENTS   
----------------------------------------------------------*/
.info {
    padding: 0;
    margin: 1em 0 1.5em 0;
    border: 1px solid #000000;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.info-header {
    background-color: #893F39;
    color: #ffffff;
    margin: 0;
    padding: 0.25em 10px;
}

    h1.info-header, h2.info-header, h3.info-header, h4.info-header, h5.info-header, h6.info-header,
    .info-header > h1, .info-header > h2, .info-header > h3, .info-header > h4, .info-header > h5, .info-header > h6 {
        float: left;
        text-transform: capitalize;
        background-color: #893F39;
        color: #ffffff;
        margin: 0;
        padding-right: 5em;
    }

    .info-header > h4 {
        text-transform: none;
    }


    .info-header a {
        color: #fff;
        font-size: 0.75em;
    }

.indicator {
    float: right;
}

.closeable .indicator:before {
    content: "\f107"
}

.closeable.closed .indicator:before {
    content: "\f104";
}

.info-content {
    padding: 10px;
}


.info-table {
    border-collapse: collapse;
    width: 100%;
}

    .info-table th,
    .info-table td {
        width: 350px;
    }

    .info-table tr th, .info-table > div {
        border: 1px solid silver;
        color: #000000;
        text-align: right;
        font-weight: bold;
        background-color: #f0f0f0;
    }

#componentnav {
    float: right;
}

.content-container {
    margin-bottom: 1.5em;
    border-width: 0 !important;
}


/* FORM LAYOUT ELEMENTS   
----------------------------------------------------------*/

fieldset {
    border: 1px solid #ddd;
    padding: 0 1.4em 1.4em 1.4em;
    margin: 0 0 1.5em 0;
}

legend {
    font-size: 1.2em;
    font-weight: bold;
}

textarea {
    min-height: 75px;
}

input[type="text"],
input[type="password"] {
    border: 1px solid #ccc;
    padding: 2px;
    font-size: 1.2em;
    color: #444;
    width: 200px;
}

select {
    border: 1px solid #ccc;
    padding: 2px;
    font-size: 1.2em;
    color: #444;
}

input[type="submit"],
input[type="button"] {
    font-size: 1em;
    padding: 2px 5px;
}

/* TABLE
----------------------------------------------------------*/

table {
    border: solid 1px silver;
    border-collapse: collapse;
}

    table td {
        padding: 5px;
        border: solid 1px silver;
    }

    table th {
        padding: 6px 5px;
        text-align: left;
        border: solid 1px silver;
        background-color: #f0f0f0;
    }

    table tr.advancedExportHeader td {
        padding: 6px 5px;
        text-align: left;
        border: solid 1px silver;
        background-color: #f0f0f0;
    }


/* Capture Ctrl-f search
----------------------------------------------------------*/
#captureFind {
    position: fixed;
    top: 0;
    right: 15%;
    height: 50px;
    background: #333;
    padding: 0 5px;
    border-radius: 5px;
    box-shadow: 1px 2px 8px #000;
    align-items: center;
    z-index: 10000;
    display: none;
}

    #captureFind > div:first-child {
        border-right: 1px solid #888;
        padding-right: 10px;
    }

    #captureFind > div {
        margin: 5px;
    }

    #captureFind input {
        background: #333;
        border: 0px;
        margin: 0px;
        color: #fff;
        outline: 0px solid #333;
    }

    #captureFind button {
        border-width: 0;
        background-color: transparent;
        color: #555;
        height: 2em;
        width: 2em;
        box-sizing: border-box;
        border-radius: 50%;
    }

        #captureFind button:enabled {
            color: #aaa;
        }

        #captureFind button:hover:enabled {
            background-color: #555;
        }


/* MISC  
----------------------------------------------------------*/
.clear {
    clear: both;
}

/* Start of "Micro clearfix" */
.cf {
    zoom: 1;
}

    .cf:before,
    .cf:after {
        content: "";
        display: table;
    }

    .cf:after {
        clear: both;
    }
/* End of "Micro clearfix" */

.error {
    color: Red;
}

.required_field {
    color: Red;
}

div#title {
    display: block;
    float: left;
    text-align: left;
}

#logo {
    float: left;
    padding: 0 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 14px;
}

#logindisplay {
    font-size: 1.1em;
    display: block;
    text-align: right;
    margin: 10px;
    color: #000000;
}

    #logindisplay a:link {
        color: #000000;
        text-decoration: underline;
    }

    #logindisplay a:visited {
        color: #000000;
        text-decoration: underline;
    }

    #logindisplay a:hover {
        color: #000000;
        text-decoration: none;
    }

input.search[type="search"],
input.search[type="text"] {
    margin: 3px 0 3px 1em;
}

input.search[type="button"] {
    margin: 3px 1em 3px 0;
}

.errorMessage {
    color: #ff0000;
}

/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #ff0000;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.validation-summary-errors {
    font-weight: bold;
    color: #ff0000;
}

.validation-summary-valid {
    display: none;
}

/* Styles for editor and display helpers
----------------------------------------------------------*/
.display-label,
.editor-label {
    margin: 1em 0 0 0;
}

.display-field,
.editor-field {
    margin: 0.5em 0 0 0;
}

.text-box {
    width: 30em;
}

    .text-box.multi-line {
        height: 6.5em;
    }

.tri-state {
    width: 6em;
}

.inlineForm {
    display: inline;
}

.overlay {
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: #000000;
    filter: alpha(opacity=50);
    opacity: 0.50;
}

.overlay-content {
    position: relative;
    z-index: 1001;
    background: #ffffff !important;
}

/* needed so container resizes in ie7 */
#componentInfo, #manufacturers {
    clear: both;
    float: left;
    width: 100%;
}

.mfrIndexTabText {
    margin-right: 10px
}

.badge {
    display: block;
    position: absolute;
    top: -8px;
    right: 4px;
    line-height: 13px;
    height: 13px;
    padding: 0 5px;
    font-family: Arial, sans-serif;
    color: #fff;
    text-shadow: 0 1px rgba(0, 0, 0, 0.25);
    border-width: 1px;
    border-style: solid;
    border-radius: 10px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.3);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.3);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.3);
}

    .badge.None {
        display: none;
    }

    .badge.Blue {
        border-color: #0000cc;
        background-color: #0000ff;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0000ff), color-stop(100%, #0000cc));
        background-image: -webkit-linear-gradient(top, #0000ff, #0000cc);
        background-image: -moz-linear-gradient(top, #0000ff, #0000cc);
        background-image: -ms-linear-gradient(top, #0000ff, #0000cc);
        background-image: -o-linear-gradient(top, #0000ff, #0000cc);
        background-image: linear-gradient(top, #0000ff, #0000cc);
    }

    .badge.Green {
        border-color: #00cc00;
        background-color: #00ff00;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00ff00), color-stop(100%, #00cc00));
        background-image: -webkit-linear-gradient(top, #00ff00, #00cc00);
        background-image: -moz-linear-gradient(top, #00ff00, #00cc00);
        background-image: -ms-linear-gradient(top, #00ff00, #00cc00);
        background-image: -o-linear-gradient(top, #00ff00, #00cc00);
        background-image: linear-gradient(top, #00ff00, #00cc00);
    }

    .badge.Yellow {
        border-color: #cccc00;
        background-color: #ffff00;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffff00), color-stop(100%, #cccc00));
        background-image: -webkit-linear-gradient(top, #ffff00, #cccc00);
        background-image: -moz-linear-gradient(top, #ffff00, #cccc00);
        background-image: -ms-linear-gradient(top, #ffff00, #cccc00);
        background-image: -o-linear-gradient(top, #ffff00, #cccc00);
        background-image: linear-gradient(top, #ffff00, #cccc00);
    }

    .badge.Red {
        border-color: #cc0000;
        background-color: #ff0000;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff0000), color-stop(100%, #cc0000));
        background-image: -webkit-linear-gradient(top, #ff0000, #cc0000);
        background-image: -moz-linear-gradient(top, #ff0000, #cc0000);
        background-image: -ms-linear-gradient(top, #ff0000, #cc0000);
        background-image: -o-linear-gradient(top, #ff0000, #cc0000);
        background-image: linear-gradient(top, #ff0000, #cc0000);
    }

.historyChange {
    color: #000000;
    background-color: #FFFF00 /*#C7F76C;*/
}

.historyChangeBlank {
    color: #000000;
    background-color: #FFFF00; /*#C7F76C;*/
    /*border: solid 2px #900000;*/
    font-weight: bold;
}

.ms-container {
    background: transparent url('../Content/images/switch.png') no-repeat 170px 80px;
}


    /*
 *  Multiselect http://loudev.com
 */
    .ms-container:after {
        content: ".";
        display: block;
        height: 0;
        line-height: 0;
        font-size: 0;
        clear: both;
        min-height: 0;
        visibility: hidden;
    }

    .ms-container .ms-selectable, .ms-container .ms-selection {
        background: #fff;
        color: #555555;
        float: left;
    }

    .ms-container .ms-list {
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
        -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
        -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
        -o-transition: border linear 0.2s, box-shadow linear 0.2s;
        transition: border linear 0.2s, box-shadow linear 0.2s;
        border: 1px solid #ccc;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }


.ms-selected {
    display: none;
}

.ms-container .ms-selectable {
    margin-right: 40px;
}

.ms-container .ms-list.ms-focus {
    border-color: rgb(82, 168, 236);
    border-color: rgba(82, 168, 236, 0.8);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
    outline: 0;
    outline: thin dotted \9;
}

.ms-container ul {
    margin: 0;
    list-style-type: none;
    padding: 0;
}

.ms-container .ms-optgroup-container {
    width: 100%;
}

.ms-container ul.ms-list {
    width: 255px;
    height: 250px;
    padding: 0;
    overflow-y: auto;
}

.ms-container .ms-optgroup-label {
    margin: 0;
    padding: 5px 0 0 5px;
    cursor: pointer;
    color: #999;
}

.ms-container .ms-selectable li.ms-elem-selectable,
.ms-container .ms-selection li.ms-elem-selection {
    border-bottom: 1px #eee solid;
    padding: 2px 10px;
    color: #555;
    font-size: 14px;
}

.ms-container .ms-selectable li.ms-hover,
.ms-container .ms-selection li.ms-hover {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    background-color: #08c;
}

.ms-container .ms-selectable li.disabled,
.ms-container .ms-selection li.disabled {
    background-color: #eee;
    color: #aaa;
    cursor: text;
}

.forcewrap {
    word-break: break-all;
    word-wrap: break-word;
}

.high-risk {
    text-transform: uppercase;
    font-weight: bold;
    background-color: rgba(255, 0, 0, 0.25);
}

.medium-risk {
    text-transform: uppercase;
    font-weight: bold;
    background-color: rgba(255, 165, 0, 0.25);
}

.low-risk {
    text-transform: uppercase;
    font-weight: bold;
    background-color: rgba(0, 128, 0, 0.25);
}

.unknown-risk {
    text-transform: uppercase;
    font-weight: bold;
    background-color: rgba(147, 112, 219, 0.25);
}

.ui-timepicker-standard .ui-menu-item {
    text-align: left;
}

    .ui-timepicker-standard .ui-menu-item > * {
        padding: 0 !important;
        margin: 0;
        text-align: left;
    }
