﻿/*body 
{
    color:#444444;
}*/

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

.form-group .required::before {
    content: "* ";
    color: red;
                                            }

.navbar-default {
    background: #60A900; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(180deg, #6BA618, #60A900); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(180deg, #6BA618, #60A900); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(180deg, #6BA618, #60A900); /* For Firefox 3.6 to 15 */
    background: linear-gradient(180deg, #6BA618, #60A900); /* Standard syntax */
    border-color: transparent;
    color: whitesmoke;
}

.navbar-brand {
    float: left;
    height: 60px;
    padding: 10px 10px;
    font-size: 16px;
    line-height: 10px;
    background-color: white;
}

.well {
    background: #0074CC; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(180deg, #004980, #0074CC); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(180deg, #004980, #0074CC); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(180deg, #004980, #0074CC); /* For Firefox 3.6 to 15 */
    background: linear-gradient(180deg, #004980, #0074CC); /* Standard syntax */
    color: whitesmoke;
}

.input-group .form-control, .input-group-btn:last-child > .btn{
    z-index:0;
}

.grid-row-view {
    float: left;
    position: relative;
    /*width: 350px;*/
    margin: -1px -1px 0 0;
}

.grid-row-view dl {
    margin: 10px 0;
    padding: 0;
    min-width: 0;
}

.grid-row-view dt {
    clear: left;
    float: left;
    margin: 0;
    padding: 3px 5px 3px 0;
    line-height: 12px;
    opacity: 0.6;
    font-weight:800;
    vertical-align:text-top;
}

.grid-row-view dd {
    margin: 0;
    padding: 3px;
    line-height: 18px;
    vertical-align:text-top;
}

/* Outer */
.popup {
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0;
    left:0;
    background:rgba(0,0,0,0.75);
}
 
/* Inner */
.popup-inner {
    max-width:700px;
    width:90%;
    padding:40px;
    position:absolute;
    top:20%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    box-shadow:0 2px 6px rgba(0,0,0,1);
    border-radius:3px;
    background:#fff;
}
 
/* Close Button */
.popup-close {
    width:30px;
    height:30px;
    padding-top:4px;
    display:inline-block;
    position:absolute;
    top:0;
    right:0;
    transition:ease 0.25s all;
    -webkit-transform:translate(50%, -50%);
    transform:translate(50%, -50%);
    border-radius:1000px;
    background:rgba(0,0,0,0.8);
    font-family:Arial, Sans-Serif;
    font-size:20px;
    text-align:center;
    line-height:100%;
    color:#fff;
}
 
.popup-close:hover {
    -webkit-transform:translate(50%, -50%) rotate(180deg);
    transform:translate(50%, -50%) rotate(180deg);
    background:rgba(0,0,0,1);
    text-decoration:none;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}