/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 30-03-2015, 18:10:49
    Author     : Sean
*/

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: red;
  text-decoration: none;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

.btn-download {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, green 100%);
  background-image:      -o-linear-gradient(top, #337ab7 0%, green 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(green), to(green));
  background-image:         linear-gradient(to bottom, green 0%, green 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: green;
  color: #fff;
}
.btn-download:hover,
.btn-download:focus {
  background-color: darkgreen;
  background-position: 0 100px;
  color: #fff;
}
.btn-download:active,
.btn-download.active {
  background-color: darkgreen;
  border-color: darkgreen;
}
.btn-download:disabled,
.btn-download[disabled] {
  background-color: #265a88;
  background-image: none;
}