/*
 * Bootstrap v2.0.4
 * Modified Grog August 2012 for simple drop down with Blue Gradient Bar.
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */


a {
  color: #0000cc;
  text-decoration: none;
}

a:hover {
  color: #990099;
  text-decoration: underline;
}

.row {
  margin-left: 0px;
  *zoom: 1;
}

a.dropdown, a.dropdown-toggle	{				/* Default Font for Bar */
	font-weight: bold; 
	font-size: 12px; 
	line-height: 24px;
	color: #FFFFFF; 
}


.dropup,
.dropdown {
  position: relative;
  z-index: 1000;
}

.dropdown-toggle {
  *margin-bottom: -3px;
}

.dropdown-toggle:active,
.open .dropdown-toggle {
  outline: 0;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 8px solid #ffffff;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  opacity: 1.0;								/* Initial Brightness of Caret Down */
  filter: alpha(opacity=100);
}

.dropdown .caret {
  margin-top: 8px;
  margin-left: 2px;
}

.dropdown:hover .caret,						/* Ensures Drop Down caret White */
.open .caret {
  border-top: 8px solid #000000;
  opacity: 1;									/* Makes Caret Vanish if 0 */
  filter: alpha(opacity=100);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;							/* Width of Drop Down Panel */
  padding: 4px 0;
  margin: 0px 0px 0px 0px;					/* Location of Drop Down panel */
  list-style: none;
  background-color: #777777;				/* Drop Down Background */
  border: 1px solid #777777;				/* Border Color */
  border: 1px solid rgba(119, 119, 119, 1);	/* Border Color */
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
}


.dropdown-menu a {
  display: block;
  padding: 3px 5px 3px 5px;	/* Colored Margin around List Items */
  clear: both;
  font-weight: bold;
  line-height: 18px;
  color: #ffffff;				/* Drop Down Panel Text */
  white-space: nowrap;
}

.dropdown-menu li > a:hover,
.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  background-color: #A8A8A8;	/* Drop Down Hover Background */
}

.open {
  *z-index: 1000;
}

.open > .dropdown-menu {
  display: block;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid #000000;
  content: "\2191";
}



.nav {
  margin-bottom: 0px;		/* Set Distance above menu */
  margin-left: 0;
  list-style: none;
}

.nav > li > a {
}

.nav > li > a:hover  {
  background-color: #777777;
  color: #000000;
  text-decoration: none;
}


.navbar-inner {				/*  Nav Bar Control */
	position: relative; 
	z-index: 1000; 
  min-height: 24px;
  padding-right: 0px;
  padding-left: 0px;			/* Space from Left Side */
  background-color: #777777;
  background-repeat: repeat-x;
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
}



.navbar .nav > li {
  display: block;
  float: left;		/* Prevents Vertical List */
}

.navbar .nav > li > a {
  float: none;
  padding: 5px 10px 11px 11px;		/* Text on Bar */
  line-height: 17px;			/* Height of HighLight */
  color: #CCCCCC;			/* Index Bar Font Color */
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}



.navbar .nav > li > a:hover {
  color: #FF0000;				/*Index Bar Text Hover Color */
  text-decoration: none;
  background-color: #777777;
  background-image: -moz-linear-gradient(top, #777777, #777777);
  background-image: -ms-linear-gradient(top, #777777, #777777);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#777777), to(#777777));
  background-image: -webkit-linear-gradient(top, #777777, #777777);
  background-image: -o-linear-gradient(top, #777777, #777777);
  background-image: linear-gradient(top, #777777, #777777);
}


.navbar .nav li.dropdown .dropdown-toggle .caret,
.navbar .nav li.dropdown.open .caret {
  border-top-color: #000000;
  border-bottom-color: #000000;
}

.navbar .nav li.dropdown.active .caret {
  opacity: 1;
  filter: alpha(opacity=100);
  color: #777777;
  background-color: #777777;
}


.navbar .dropdown-menu:after {			/* Mark above Drop Down  */
  position: absolute;
  top: -2px;
  left: 40px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  content: '';
}


