a {
  color: #7d8eB6;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
  color: #333;
}

.navbar-default {
  background-image: -webkit-linear-gradient(top, #d1def2 0%, #8494b5 100%);
  background-image:      -o-linear-gradient(top, #d1def2 0%, #8494b5 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d1def2), to(#8494b5));
  background-image:         linear-gradient(to bottom, #d1def2 0%, #8494b5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
  border-top: 1px solid #CCF;
  border-bottom: 1px solid #000;
  font-family:Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.navbar-nav > li > a, .navbar-brand {
    padding-top: 8px !important; 
    padding-bottom:0 !important;
    height: 35px;
}

.navbar {min-height:35px !important;}

.navbar-nav > li:hover {
  color: #333;
  background-image: -webkit-linear-gradient(top, #7d8eb6 0%, #cedbf4 100%);
  background-image:      -o-linear-gradient(top, #7d8eb6 0%, #cedbf4 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7d8eb6), to(#cedbf4));
  background-image:         linear-gradient(to bottom, #7d8eb6 0%, #cedbf4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
          box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
}

.navbar-default .navbar-nav > li > a {
  color: #333;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-right: 1px solid #000;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .active > a {
  color: #333;
  background-image: -webkit-linear-gradient(top, #7d8eb6 0%, #cedbf4 100%);
  background-image:      -o-linear-gradient(top, #7d8eb6 0%, #cedbf4 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7d8eb6), to(#cedbf4));
  background-image:         linear-gradient(to bottom, #7d8eb6 0%, #cedbf4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
          box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
  border-left: 1px solid #5a5a5a;
  border-right: 1px solid #5a5a5a;
}

#loading_page {
  position:fixed;
  top:0px;
  left:0px;
  width: 100%;
  height: 100%;
  background: #EEE;
  text-align: center;
}

#loading_message{
    height: 100px;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;

    margin: auto;
}

div.noborder{
  padding: 0px;
}

p.btn-tert {
  font-size: 12px;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 5px;
}

div.btn-tert {
  width: 70px;
}

div.loader {
  display: inline-block;
  border: 4px solid #DDD;
  border-radius: 50%;
  border-top: 4px solid #AAA;
  width: 25px;
  height: 25px;
  -webkit-animation: loader_spin 2s linear infinite;
  animation: loader_spin 2s linear infinite;
}

@-webkit-keyframes loader_spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes loader_spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}