/* 
    Created on : Apr 17, 2014, 11:53:56 AM
    Author     : fbittner
*/
/* 
    Created on : Apr 17, 2014, 11:53:56 AM
    Author     : fbittner
*/
/* default button */
.btn,
.btn:visited,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  display: inline-block;
  margin: 0;
  padding: 0 0.5em 0 0.5em;
  color: #369fbf;
  background-image: none;
  background-color: white;
  border: 1px solid #cbcbcb;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.87;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.btn:hover,
.btn:visited:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
  color: white;
  background-color: #369fbf;
  border-color: #369fbf;
}
/* fix for firefox to achieve the same height */
input.btn,
input[type="submit"],
input[type="reset"] {
  height: 2em;
}
/* slightly smaller button */
.btn-sm {
  font-size: 12px;
}
/* slightly larger button */
.btn-lg {
  font-size: 20px;
}
/* search button for forms, confirm button */
.btn-srch,
.btn-srch:hover,
input.btn-srch,
input.btn-srch:hover,
.btn-confirm,
.btn-confirm:hover,
input.btn-confirm,
input.btn-confirm:hover {
  color: #ffffff;
  background-color: #3388aa;
  border-color: #3388aa;
}
/* if you want to use the button right next to the input field */
.btn-srch-right {
  border-radius: 0 7px 7px 0;
}
