/*
 * Main css layouts for bStrong
 */

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

 body {
   background: #324558;
   background-attachment: fixed;
   font-size: 14px;
   color: #1d1c1c;
 }

 h1 {
   line-height: 20px;
   font-size: 20px;
   margin: 0 0 10px 0;
   text-transform: uppercase;
 }

 h1.green {
   color: #3D6600;
   text-transform: uppercase;
 }

 h2 {
   font-size: 16px;
 }

 a {
   color: #326864;
   text-decoration: none;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
 }

 a:hover {
   color: #4c928d;
   text-decoration: none;
 }

 .underline {
   text-decoration: underline;
 }

 nav {
   text-transform: uppercase;
   text-align: center;
 }

 .navbar {
   margin-bottom: 15px;
 }

 .navbar-inner {
   padding-left: 0;
   padding-right: 0;
   background-image: -moz-linear-gradient(top, #878f60, #a4ae76);
   background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#878f60), to(#a4ae76));
   background-image: -webkit-linear-gradient(top, #878f60, #a4ae76);
   background-image: -o-linear-gradient(top, #878f60, #a4ae76);
   background-image: linear-gradient(to bottom, #878f60, #a4ae76);
   background-repeat: repeat-x;
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#878f60', endColorstr='#a4ae76', GradientType=0);
   border: 1px solid #D4D4D4;
   -webkit-border-radius: 0;
   -moz-border-radius: 0;
   border-radius: 0;
   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
   min-height: 0;
 }

 .navbar .nav {
   position: relative;
   left: 5%;
   display: block;
   margin: 0 10px 0 0;
 }

 .navbar .nav > li {
   line-height: 10px;
 }

 .navbar .nav > li > a {
   color: white;
   text-shadow: none;
   padding: 10px 16px 10px;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
   font-weight: bold;
 }



 .navbar .nav > li > a:focus, .navbar .nav > li > a:hover {
   color: #333;
   text-shadow: none;
 }

 .navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus {
   color: #555;
   text-decoration: none;
   background-color: #a4ae76;
   -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
   -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
   box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
 }

 .navbar .nav li.dropdown.open > .dropdown-toggle, .navbar .nav li.dropdown.active > .dropdown-toggle, .navbar .nav li.dropdown.open.active > .dropdown-toggle {
   background-color: #a4ae76;
   color: #555;
 }

 .navbar .nav .dropdown-toggle .caret {
   margin-top: 3px;
   margin-left: 5px;
 }

 .dropdown-menu {
   position: absolute;
   top: 100%;
   left: 0;
   z-index: 1000;
   display: none;
   float: left;
   max-width: 184px;
   padding: 5px 0;
   margin: 0 0 0;
   list-style: none;
   background-color: #a4ae76;
   border: 1px solid #CCC;
   border: 1px solid rgba(0, 0, 0, 0.2);
   -webkit-border-radius: 0 0 3px 3px;
   -moz-border-radius: 0 0 3px 3px;
   border-radius: 0 0 3px 3px;
   -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;
 }

 .navbar .nav > li > .dropdown-menu::before {
   content: '';
   display: none;
   border-left: 7px solid transparent;
   border-right: 7px solid transparent;
   border-bottom: 7px solid #CCC;
   border-bottom-color: rgba(0, 0, 0, 0.2);
   position: absolute;
   top: -7px;
   left: 150px;
 }

 .navbar .nav > li > .dropdown-menu::after {
   content: '';
   display: none;
   border-left: 6px solid transparent;
   border-right: 6px solid transparent;
   border-bottom: 6px solid white;
   position: absolute;
   top: -6px;
   left: 151px;
 }





 .navbar .nav > li > .dropdown-menu > li > a {
   text-align: center;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
 }


 .dropdown-menu li > a:hover, .dropdown-menu li > a:focus, .dropdown-submenu:hover > a {
   text-decoration: none;
   color: white;
   background-color: #a5ae77;
   background-image: -moz-linear-gradient(top, #878f60, #a4ae76);
   background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#878f60), to(#a4ae76));
   background-image: -webkit-linear-gradient(top, #878f60, #a4ae76);
   background-image: -o-linear-gradient(top, #878f60, #a4ae76);
   background-image: linear-gradient(to bottom, #878f60, #a4ae76);
   background-repeat: repeat-x;
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#878f60', endColorstr='#a4ae76', GradientType=0);
 }

 .dropdown-menu li > a {
   display: block;
   padding: 3px 20px;
   clear: both;
   font-weight: normal;
   line-height: 20px;
   color: #333;
   white-space: nowrap;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
 }

 ul.nav li.dropdown:hover ul.dropdown-menu{
     display: block;
 }

 #wrapper {
   width: 1100px;
   height: auto;
   margin: 0 auto;
 }

 #header {
   height: 200px;
   clear: both;
 }

 .logo {
   width: 490px;
   height: 185px;
   background: url(../img/logo.png) no-repeat;
   margin-right: 80px;
 }

 .logo:hover {
   cursor: pointer;
 }

 .date {
   background: url(../img/ridingto.png) no-repeat;
   width: 421px;
   height: 85px;
   margin-top: 50px;
   margin-right: -20px;
 }

 .register {
   width: 100%;
   float: left;
   margin: -30px 0 10px 0;
   color: #7e7e7e;
 }

 button .btn-large {
   margin-top: 20px;
   margin-left: 10px;
   -webkit-border-radius: 8px;
   -moz-border-radius: 8px;
   border-radius: 8px;
   line-height: 12px;
 }

 button a{
   color: white;
 }

 button a:hover;{
   color: #7e7e7e;
 }

 .subhead {
   margin-top: 40px;
   margin-left: 20px;
   font-size: 1.15em;
 }

 #content {
   padding: 15px 15px 0 15px;
   -webkit-box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.75);
   -moz-box-shadow:    0px 0px 10px rgba(50, 50, 50, 0.75);
   box-shadow:         0px 0px 10px rgba(50, 50, 50, 0.75);
   background-color: white;
   float: left;
   width: 100%;
 }

 #scroller {
   float: left;
   width: 82%;
   margin-bottom: 0;
   margin-right: 14px;
   display:none;
 }

 #caregiver {
   display: none;
 }

 .carousel-control {
   position: absolute;
   top: 40%;
   left: 15px;
   width: 25px;
   height: 70px;
   margin-top: -20px;
   font-size: 60px;
   font-weight: 100;
   line-height: 56px;
   color: white;
   text-align: center;
   background: #222;
   border: 1px solid white;
   -webkit-border-radius: 0;
   -moz-border-radius: 0;
   border-radius: 0;
   opacity: 0.4;
   filter: alpha(opacity=40);
 }

 .carousel {
   border: 1px solid #f69220;
 }

 #leftcol {
   width: 65%;
   background-color: #fff;
 }

 #leftcol ul {
   list-style-image:url('../img/bullet.gif');
 }

 #leftcol ul ul {
   list-style-image:url('../img/bullet2.gif');
 }

 #leftcol li {

 }

 .divider {
   height: 2px;
   background-color: #a4ae76;
   width: 100%;
   margin: 10px 0;
 }

 #rightcol {
   width: 35%;
   min-height: 500px;
   float: right;
   padding-left: 15px;
 }

 #rightcol input[type="text"],
 #leftcol input[type="text"] {
   height: 30px;
   margin-top: 5px;
   width: 250px;
 }

 #rightcol input[type="radio"],
 #leftcol input[type="radio"] {
   margin: 0 0 0 10px;
 }

 #leftcol textarea {
   width: 250px;
 }

 #rightcol button {
   margin-top: -6px;
   height: 30px;
}

#rightcol form {
  margin: 0 0 0;
}

#rightcol h3 {
  font-size: 1.2em;
  line-height: 0;
  margin: 5px 0;
}

 .ride_updates, .sponsors {
   background-color: #f4f4f4;
   padding: 10px;
   color: #3d6600;
   margin-bottom: 15px;
 }


 footer {
   width: 1100px;
   height: 132px;
   background: url(../img/footer.png) no-repeat;
   margin-left: -15px;
   float: left;
 }


 footer img {
   margin: 150px 10px 40px 0;
   padding-bottom: 25px;
 }

 .bottomsponsors {
   float: left;
   margin-top: 50px;
 }

 .bottomsponsors h3 {
   font-size: 1.2em;
   line-height: 0;
 }

 .border {
   border: 5px solid #a4ae76;
 }

 .quote {
   width: 235px;
   border: 1px dotted #326864;
   padding: 5px;
   font-style: italic;
   font-size: .85em;
 }

 .photo {
   width: 250px;
   padding: 5px;
   font-size: .85em;
 }

 .photo img{
   border: 5px solid #a4ae76;
   margin: 0 0 20px 10px;
 }

 .photo span {
   font-size: .7em;
 }



 .sponsor {
   width: 155px;
   height: 95px;
   border-radius: 3px;
   background-color: white;
   border: 1px solid #e9e9e9;
   text-align: center;
   margin: 5px;
 }

 .sponsor img {
   margin: 10% auto;
   vertical-align: middle;
   max-width: 120px;
   max-height: 70px;
   border: none;
 }

 .sponsor2 {
   width: 155px;
   height: 95px;
   border-radius: 3px;
   background-color: white;
   border: 1px solid white;
   text-align: center;
   margin: 5px;
 }

 .sponsor2 img {
   margin: 10% auto;
   vertical-align: middle;
   max-width: 120px;
   max-height: 70px;
   border: none;
 }

 .margin10 {
   margin: 10px;
 }

label {
  padding: 3px;
  background: #be0606;
  border-radius: 4px;
  color: white;
  margin-top: 3px;
}

.schedule {
  width: 30%;
  display: inline-block;
  float: left;
}
