﻿body{
    font-size:12px !important;
    font-family: Arial;
}

h2 {
    color: #5698CC;
}

@media (max-width: 767px)
{
    .dropdown-submenu .dropdown-menu {
        position: relative !important;
        z-index: 99999 !important;
    }
}
@media (min-width: 1200px){
    .container{
        width:100% !important;
    }
    
}


.navbar {
    margin-bottom: -5px;
}

.navbar-default {
    background-color: #f9f9f9;
    border: 0;
    height: 90px;
}

    .navbar-default .navbar-nav > .open > a {
        background-color: #f9f9f9 !important;
    }

.nav > li > a {
    padding: 5px 15px;
    color: #0071b9;
}

 
.navbar-default .navbar-nav > li > a {
    color: #415364;
    display: block;
    padding: 21px 16px 4px 16px;
    font-weight: 600 !important;
    text-transform: uppercase;
    -webkit-transition-property: color, background;
    -moz-transition-property: color, background;
    -o-transition-property: color, background;
    transition-property: color, background;
    font-size: 12px;

}

    .navbar-default .navbar-nav > li > a:hover {
        color: #0071b9;
        border-bottom: solid 1px #0071b9;
    }


.contentMenuContainer {
    position: absolute;
    left: 10px;
    top: 8px;
    width: 180px;
    background-color: #ffffff;
    height: 600px;
    z-index: 999999;
    display: none;
}

.showmaps {
    position: absolute;
    top: -19px;
    left: 16px;
    color: white;
    background-color: #f68712;
    border-radius: 5px 5px 0 0;
    width: 90px;
    height: 25px;
    text-align: center;
    padding-top: 3px;
}

    .showmaps > a {
        color: white;
        text-decoration: none;
        font-size: 12px;
        font-weight: bold;
        display: block;
        width: 88px;
        height: 22px;
    }

.loginlink > a {
    border-radius: 25px;
    padding: 15px !important;
    color: white !important;
    background-color: #0071b9;
    cursor: pointer;
    margin: 0 0 0 12px !important;
}

.pager {
    padding: 5px;
}

input[type="text"], input[type="email"], input[type="number"], input[type="date"], input[type="time"] {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

input[type="checkbox"] {
    width: 26px;
    height: 26px;
    border: 1px solid gray;
    border-radius: 4px;
    padding-left: 5px;
}



select {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

textarea {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}


.searchtable {
    width: 100%;
    font-size: 11px;
}

    .searchtable td {
        padding: 5px;
    }

        .searchtable td:first-child {
            font-weight: bold;
        }

        .searchtable td:nth-child(2n+1) {
            font-weight: bold;
        }

/*#### Grid*/

.grid {
    border-collapse: collapse;
    width: 100%;
    font-size: 11px;
}


    .grid td {
        padding: 2px;
        border-bottom: 1px solid #adadad;
        height: 25px;
        max-width: 300px;
    }

    .grid tr:nth-child(2n+1) {
        background-color: #e2e3e8;
    }


    .grid th {
        padding: 5px;
        height: 30px;
        text-align: left;
        background: #999; /* for non-css3 browsers */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#999999'); /* for IE */
        background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#999)); /* for webkit browsers */
        background: -moz-linear-gradient(top, #ccc, #999); /* for firefox 3.6+ */
    }

        .grid th:first-child {
            border-radius: 5px 0 0 5px;
        }

        .grid th:last-child {
            border-radius: 0 5px 5px 0;
        }

.clear {
    clear: both;
}

.button {
    display: inline-block;
    padding: 6px;
    margin-bottom: 0;
    font-size: 11px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
    text-decoration:none;
}

.button:hover{
    text-decoration: none;
    background-color: #d1d0d0;
}

.dropdown-zmenu{
      position: absolute;
      top: 1px;
      left: 0;
      list-style:none;
      padding: 5px 0;
      margin: 2px 0 0;
      font-size: 14px;
      text-align: left;
      background-color: #fff;
      display:none;
      border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

    .dropdown-zmenu > li a {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: 600;
        line-height: 1.42857143;
        color: #333;
        white-space: nowrap;
        text-decoration: none;
        font-size: 12px;
        color: #415364;
    }

.bottom {
    caption-side: bottom;
}

.navbar-brand {
    height: 60px !important;
    padding: 8px 15px !important;
}

.dropdown-menu > li > a {
    font-size: 12px !important;
    color: #415364 !important;
    font-weight: 600 !important;
}