/* Bootstrap v2.0.0
 * 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. */
/* Just the button stuff, because the rest of bootstrap sucks and is awful */
 .btn {
  display: inline-block;
  padding: 4px 10px 4px;
  line-height: 18px;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: #fafafa;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-repeat: no-repeat;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  *margin-left: .3em;
}
.btn:first-child {
  *margin-left: 0;
}
.btn:hover {
  color: #333333;
  text-decoration: none;
  background-color: #e6e6e6;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -ms-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}
.btn:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn.active, .btn:active {
  background-image: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: #e6e6e6;
  background-color: #d9d9d9 \9;
  color: rgba(0, 0, 0, 0.5);
  outline: 0;
}
.btn.disabled, .btn[disabled] {
  cursor: default;
  background-image: none;
  background-color: #e6e6e6;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn-large {
  padding: 9px 14px;
  line-height: normal;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.btn-large .icon {
  margin-top: 1px;
}
.btn-small {
  padding: 5px 9px;
  font-size: 12.75px;
  line-height: 16px;
}
.btn-tiny {
  padding: 2.5px 4.5px;
  font-size: 11px;
  line-height: 11px;
}
.btn-small .icon {
  margin-top: -1px;
}
.btn-tiny .icon {
  margin-top: -1px;
}
.btn-old-primary,
.btn-old-primary:hover,
a.btn-old-primary:link,
a.btn-old-primary:visited,
.btn-dark-plain,
.btn-dark-plain:hover,
a.btn-dark-plain:link,
a.btn-dark-plain:visited,
.btn-dark-link,
.btn-dark-link:hover,
a.btn-dark-link:link,
a.btn-dark-link:visited,
.btn-dark-primary,
.btn-dark-primary:hover,
a.btn-dark-primary:link,
a.btn-dark-primary:visited,
.btn-old-warning,
.btn-old-warning:hover,
a.btn-old-warning:link,
a.btn-old-warning:visited,
.btn-dark-warning,
.btn-dark-warning:hover,
a.btn-dark-warning:link,
a.btn-dark-warning:visited,
.btn-old-danger,
.btn-old-danger:hover,
a.btn-old-danger:link,
a.btn-old-danger:visited,
.btn-dark-danger,
.btn-dark-danger:hover,
a.btn-dark-danger:link,
a.btn-dark-danger:visited,
.btn-dark-success,
.btn-dark-success:hover,
a.btn-dark-success:link,
a.btn-dark-success:visited,
.btn-old-info,
.btn-old-info:hover,
a.btn-old-info:link,
a.btn-old-info:visited,
.btn-dark-info,
.btn-dark-info:hover,
a.btn-dark-info:link,
a.btn-dark-info:visited {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  color: #ffffff;
}
.btn-old-primary.active,
.btn-dark-plain.active,
.btn-dark-link.active,
.btn-dark-primary.active,
.btn-old.active,
.btn-dark.active,
.btn-old-danger.active,
.btn-dark-danger.active,
.btn-dark-success.active,
.btn-dark-info.active,
.btn-old-info.active {
  color: rgba(255, 255, 255, 0.75);
}




.btn-old-primary {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(top, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-old-primary:hover,
.btn-old-primary:active,
.btn-old-primary.active,
.btn-old-primary.disabled,
.btn-old-primary[disabled] {
  background-color: #0044cc;
}
.btn-old-primary:active, .btn-old-primary.active {
  background-color: #003399 \9;
}






.btn-dark-plain {
  background-color: #373737;
  background-image: -moz-linear-gradient(top, #404040, #282828);
  background-image: -ms-linear-gradient(top, #404040, #282828);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#404040), to(#282828));
  background-image: -webkit-linear-gradient(top, #404040, #282828);
  background-image: -o-linear-gradient(top, #404040, #282828);
  background-image: linear-gradient(top, #404040, #282828);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#404040', endColorstr='#282828', GradientType=0);
  border-color: #282828 #282828 #101010;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-dark-plain:hover,
.btn-dark-plain:active,
.btn-dark-plain.active,
.btn-dark-plain.disabled,
.btn-dark-plain[disabled] {
  background-color: #282828;
}
.btn-dark-plain:active, .btn-dark-plain.active {
  background-color: #181818 \9;
}

.btn.btn-dark-link {
  background: none;
  border: none;
  box-shadow: none;
}
.btn.btn-dark-link:hover,
.btn.btn-dark-link:active,
.btn.btn-dark-link.active {
  color: #FFFF66;
}




.btn-dark-primary {
  background-color: #004480;
  background-image: -moz-linear-gradient(top, #005580, #002b80);
  background-image: -ms-linear-gradient(top, #005580, #002b80);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#005580), to(#002b80));
  background-image: -webkit-linear-gradient(top, #005580, #002b80);
  background-image: -o-linear-gradient(top, #005580, #002b80);
  background-image: linear-gradient(top, #005580, #002b80);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#005580', endColorstr='#002b80', GradientType=0);
  border-color: #002b80 #002b80 #001134;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-dark-primary:hover,
.btn-dark-primary:active,
.btn-dark-primary.active,
.btn-dark-primary.disabled,
.btn-dark-primary[disabled] {
  background-color: #002b80;
}
.btn-dark-primary:active, .btn-dark-primary.active {
  background-color: #001a4d \9;
}





.btn-old-warning {
  background-color: #faa732;
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  background-image: -ms-linear-gradient(top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(top, #fbb450, #f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-old-warning:hover,
.btn-old-warning:active,
.btn-old-warning.active,
.btn-old-warning.disabled,
.btn-old-warning[disabled] {
  background-color: #f89406;
}
.btn-old-warning:active, .btn-old-warning.active {
  background-color: #c67605 \9;
}



.btn-dark-warning {
  background-color: #da8205;
  background-image: -moz-linear-gradient(top, #f99406, #ad6704);
  background-image: -ms-linear-gradient(top, #f99406, #ad6704);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f99406), to(#ad6704));
  background-image: -webkit-linear-gradient(top, #f99406, #ad6704);
  background-image: -o-linear-gradient(top, #f99406, #ad6704);
  background-image: linear-gradient(top, #f99406, #ad6704);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f99406', endColorstr='#ad6704', GradientType=0);
  border-color: #ad6704 #ad6704 #623a02;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-dark-warning:hover,
.btn-dark-warning:active,
.btn-dark-warning.active,
.btn-dark-warning.disabled,
.btn-dark-warning[disabled] {
  background-color: #ad6704;
}
.btn-dark-warning:active, .btn-dark-warning.active {
  background-color: #7b4a03 \9;
}



.btn-old-danger {
  background-color: #da4f49;
  background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: linear-gradient(top, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
  border-color: #bd362f #bd362f #802420;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-old-danger:hover,
.btn-old-danger:active,
.btn-old-danger.active,
.btn-old-danger.disabled,
.btn-old-danger[disabled] {
  background-color: #bd362f;
}
.btn-old-danger:active, .btn-old-danger.active {
  background-color: #942a25 \9;
}


.btn-dark-danger {
  background-color: #b22a24;
  background-image: -moz-linear-gradient(top, #e51d18, #802420);
  background-image: -ms-linear-gradient(top, #e51d18, #802420);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e51d18), to(#802420));
  background-image: -webkit-linear-gradient(top, #e51d18, #802420);
  background-image: -o-linear-gradient(top, #e51d18, #802420);
  background-image: linear-gradient(top, #e51d18, #802420);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e51d18', endColorstr='#802420', GradientType=0);
  border-color: #802420 #802420 #431311;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-dark-danger:hover,
.btn-dark-danger:active,
.btn-dark-danger.active,
.btn-dark-danger.disabled,
.btn-dark-danger[disabled] {
  background-color: #802420;
}
.btn-dark-danger:active, .btn-dark-danger.active {
  background-color: #571916 \9;
}





.btn-dark-success {
  background-color: #3c893c;
  background-image: -moz-linear-gradient(top, #3b9e3b, #387038);
  background-image: -ms-linear-gradient(top, #3b9e3b, #387038);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3b9e3b), to(#387038));
  background-image: -webkit-linear-gradient(top, #3b9e3b, #387038);
  background-image: -o-linear-gradient(top, #3b9e3b, #387038);
  background-image: linear-gradient(top, #3b9e3b, #387038);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3b9e3b', endColorstr='#387038', GradientType=0);
  border-color: #387038 #387038 #1f3d1f;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-dark-success:hover,
.btn-dark-success:active,
.btn-dark-success.active,
.btn-dark-success.disabled,
.btn-dark-success[disabled] {
  background-color: #387038;
}
.btn-dark-success:active, .btn-dark-success.active {
  background-color: #274e27 \9;
}



.btn-old-success {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  *background-color: #51a351;
  background-image: -moz-linear-gradient(top, #62c462, #51a351);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
  background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  background-image: -o-linear-gradient(top, #62c462, #51a351);
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-old-success:hover,
.btn-old-success:focus,
.btn-old-success:active,
.btn-old-success.active,
.btn-old-success.disabled,
.btn-old-success[disabled] {
  color: #ffffff;
  background-color: #51a351;
  *background-color: #499249;
}

.btn-old-success:active,
.btn-old-success.active {
  background-color: #408140 \9;
}









.btn-old-info {
  background-color: #49afcd;
  background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: linear-gradient(top, #5bc0de, #2f96b4);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
  border-color: #2f96b4 #2f96b4 #1f6377;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-old-info:hover,
.btn-old-info:active,
.btn-old-info.active,
.btn-old-info.disabled,
.btn-old-info[disabled] {
  background-color: #2f96b4;
}
.btn-old-info:active, .btn-old-info.active {
  background-color: #24748c \9;
}




.btn-dark-info {
  background-color: #2b849e;
  background-image: -moz-linear-gradient(top, #28a1c5, #1f6377);
  background-image: -ms-linear-gradient(top, #28a1c5, #1f6377);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#28a1c5), to(#1f6377));
  background-image: -webkit-linear-gradient(top, #28a1c5, #1f6377);
  background-image: -o-linear-gradient(top, #28a1c5, #1f6377);
  background-image: linear-gradient(top, #28a1c5, #1f6377);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#28a1c5', endColorstr='#1f6377', GradientType=0);
  border-color: #1f6377 #1f6377 #1f6377;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-dark-info:hover,
.btn-dark-info:active,
.btn-dark-info.active,
.btn-dark-info.disabled,
.btn-dark-info[disabled] {
  background-color: #1f6377;
}
.btn-dark-info:active, .btn-dark-info.active {
  background-color: #24748c \9;
}



button.btn, input[type="submit"].btn {
  *padding-top: 2px;
  *padding-bottom: 2px;
}
button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button.btn.large, input[type="submit"].btn.large {
  *padding-top: 7px;
  *padding-bottom: 7px;
}
button.btn.small, input[type="submit"].btn.small {
  *padding-top: 3px;
  *padding-bottom: 3px;
}
.btn-group {
  position: relative;
  *zoom: 1;
  *margin-left: .3em;
}
.btn-group:before, .btn-group:after {
  display: table;
  content: "";
}
.btn-group:after {
  clear: both;
}
.btn-group:first-child {
  *margin-left: 0;
}
.btn-group + .btn-group {
  margin-left: 5px;
}
.btn-toolbar {
  margin-top: 9px;
  margin-bottom: 9px;
}
.btn-toolbar .btn-group {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */

  *zoom: 1;
}
.btn-group .btn {
  position: relative;
  float: left;
  margin-left: -1px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-group .btn:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group .btn:last-child, .btn-group .dropdown-toggle {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.btn-group .btn.large:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
}
.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
}
.btn-group .btn:hover,
.btn-group .btn:focus,
.btn-group .btn:active,
.btn-group .btn.active {
  z-index: 2;
}
.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  *padding-top: 5px;
  *padding-bottom: 5px;
}
.btn-group.open {
  *z-index: 1000;
}
.btn-group.open .dropdown-menu {
  display: block;
  margin-top: 1px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.btn-group.open .dropdown-toggle {
  background-image: none;
  -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn .caret {
  margin-top: 7px;
  margin-left: 0;
}
.btn:hover .caret, .open.btn-group .caret {
  opacity: 1;
  filter: alpha(opacity=100);
}
.btn-old-primary .caret,
.btn-dark-plain .caret,
.btn-dark-link .caret,
.btn-dark-primary .caret,
.btn-old-danger .caret,
.btn-dark-danger .caret,
.btn-old-info .caret,
.btn-dark-info .caret,
.btn-old-success .caret,
.btn-dark-success .caret {
  border-top-color: #ffffff;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.btn-small .caret {
  margin-top: 4px;
}
.btn-tiny .caret {
  margin-top: 1px;
}
