    
/* Text color */
/*
body div.container div.row {
    color : #000000;
}
*/

/* Text for labels on form screen */
/*
label {
    color: #000000;
}
*/

/* Text for the labels when the user enters an invalid value */
/*
.control-group.error > label, .control-group.error .help-block, .control-group.error .help-inline {
    color: #000000;
}
*/

/*********** css button colors *************/
/* default grey button */
/*
.btn {
  //////////// Paste Grey button styles here //////////
}
*/

/* blue button */
/*
.btn-primary {
  ///////////  Paste Blue button styles here //////////
}

*/

/* Styles for Support and Help links */
/*
a.support { color: #08C; }
a.support:hover { color: #005580; }
a.support:active { }
*/

/* Styles for the TermsOfService and PrivacyPolicy links at the bottom of the page */
/*
#tos-pp-row a{ color: #08C; }
#tos-pp-row a:hover { color: #005580; }
#tos-pp-row a:active {}
*/

/* Text next to form items */
/*
legend { color: #000000 !important }
*/

/* Styles for home screen buttons */
.btn-custom {
  background-color: #e23960;
  background-image: -moz-linear-gradient(top, #f64d74, #c41b42);
  background-image: -ms-linear-gradient(top, #f64d74, #c41b42);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f64d74), to(#c41b42));
  background-image: -webkit-linear-gradient(top, #f64d74, #c41b42);
  background-image: -o-linear-gradient(top, #f64d74, #c41b42);
  background-image: linear-gradient(top, #f64d74, #c41b42);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f64d74', endColorstr='#c41b42', GradientType=0);
  border-color: #c41b42 #c41b42 #81122b;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #c41b42;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  color: white;
}
.btn-custom:hover,
.btn-custom:active,
.btn-custom.active,
.btn-custom.disabled,
.btn-custom[disabled] {
  background-color: #c41b42;
  *background-color: #ae183a;
  color: white;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f41c4e', endColorstr='#971533', GradientType=0);
}
.btn-custom:active,
.btn-custom.active {
  background-color: #971533 \9;
}
.btn-custom,
.btn-custom:hover {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.btn-custom.active {
  color: rgba(255, 255, 255, 0.75);
}

