/*#######################################################################################*/
/* Reset Styles */
/*#######################################################################################*/
* {
    box-sizing:border-box;
    -moz-box-sizing:border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

.displayMessage p.displayMessage {
    margin-bottom: 0px;
}


/*#######################################################################################*/
/* Base Styles */
/*#######################################################################################*/
body {
    background: #fff;
    font-family:Arial, Helvetica, sans-serif;
}

body img { /* blocking images for the page */
    display: block;
    float: left;
    border:none;
}
.inlineImage {
    display: inline;
}
td, p {
    line-height:1.5em;
}
p {
    margin-bottom:1.2em;
}
li {
    font-size:0.8em;
    line-height:1.2em;
    margin-bottom:0.5em;
}
a {
    text-decoration: underline;
}
a:hover {
    color: #a03735;
}
h1 {
    font-size: 2.0em;
    font-weight:700;
    margin-bottom:0.8em;
}
h2 {
    font-size: 1.7em;
    margin-bottom:0.5em;
}
h3 {
    font-size: 1.4em;
    margin-bottom:0.2em;
}
h4 {
    font-size: 1.2em;
    margin-bottom:0.2em;
}



/*#######################################################################################*/
/* Text Manipulation */
/*#######################################################################################*/

.bold {
    font-weight: 700;
}
.italic {
    font-style: italic;
}
.center {
    text-align: center;
}
.right-align{
    text-align:right;
}
.underline {
    text-decoration: underline;
}
.no-underline {
    text-decoration: none;
}
.big {
    font-size: 110%;
}
.bigger {
    font-size: 125%;
}
.small {
    font-size: .8em;
}
.smaller {
    font-size: .7em;
}


/*#######################################################################################*/
/* Common Attributes */
/*#######################################################################################*/
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */

.no-margin {
    margin:0;
}
.left {
    float: left;
}
.right {
    float: right;
}
.inline{
    display:inline;
}
.nofloat {
    float: none;
}
.no-padding {
    padding: 0;
}
.no-margin-top {
    margin-top: 0;
}
.no-border {
    border: none!important;
}
.show-cursor {
    cursor: pointer;
}
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*#######################################################################################*/
/* Tables */
/*#######################################################################################*/
.borders {
    border-collapse: collapse;
    border: 1px solid #000000;
}
.bordercollapse {
    border-collapse: collapse;
}


/*#######################################################################################*/
/* Common Colors */
/*#######################################################################################*/
.red {
    color: #aa1715;
}
.blue {
    color: #057fa4;
}
.black {
    color: #000000;
}
.grey {
    color: #767676;
}
.white {
    color: #ffffff;
}


/*#######################################################################################*/
/* Form Elements */
/*#######################################################################################*/

input {
    margin:0 5px 0 0;
}
textarea {
    padding: 2px;
    border: 1px solid #cccccc;
    font-size: 0.9em;
}

/*#######################################################################################*/
/* TABLE/FORM Element Manipulation */
/*#######################################################################################*/
.error {
    color: #cc0000;
}
.required {
    color: #cc0000;
}


/*#######################################################################################*/
/* Containers */
/*#######################################################################################*/
#wrapper {
    width: 100%;
}
#container {
    width: 960px;
    margin:0 auto;
}
#content {
    width: 960px;
    height: auto;
    margin: 0 auto;
    background: #fff;
}
#main {
    float: left;
    width: 450px;
}

/*#######################################################################################*/
/* Header */
/*#######################################################################################*/
#header_wrapper {
    width: 100%;
}
#header {
    width: 960px;
    height: 100px;
    margin:0 auto;
}


/*#######################################################################################*/
/* Nav */
/*#######################################################################################*/
#nav_wrapper {
    width: 100%;
    height: 50px;
    background: #fff;
    margin-bottom:10px;
}
#nav {
    width: 960px;
    height: 50px;
    background: #fff;
    margin:0 auto;
}
#nav ul {
}
#nav ul li {
    float: left;
    height:35px;
    line-height:35px;
    margin:0;
    position:relative;
}
#nav a {
    color: #00577C;
    text-decoration: none;
    display:block;
    padding:0 20px;
}
#nav a:hover {
    background: #709BAF;
    color: #fff;
}
/* Dropdown Menus */
#nav ul li ul {
    display:none;
    position:absolute;
}
#nav ul li:hover ul {
    display:block;
    background:#709BAF;
    width:200px;
}
#nav ul li:hover ul li {
    width:100%;
}


/*#######################################################################################*/
/* Sidebar */
/*#######################################################################################*/
#sidebar {
    float: left;
    width: 220px;
    height: auto;
    margin-right:40px;
    padding:20px;
    background-color: #F9F37F;
}
#sidebar-right {
    float: right;
    width: 200px;
    height: auto;
    background: #709BAF;
    padding:20px;
}


/*#######################################################################################*/
/* Footer */
/*#######################################################################################*/
#footer_wrapper {
    width: 100%;
    height:auto;
    clear: both;
    background: #fff;
}
#footer {
    background: #fff;
    margin:50px auto 0 auto;
}

.dash-info span{
    width: 95px;
    display: inline-block;
    font-weight: bold;
}
.dash-info p{
    margin-bottom: 0;
}

.panel-body.address{
    min-height: 100px;
}
.main-content .panel-heading h3{
    margin: 0;
}