/********************************* BUTTONS ***********************************/

/*.button {
	display: inline-block;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 17px/100% 'Open sans', Helvetica, sans-serif;
	padding: .5em 2em .55em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .2em; 
	-moz-border-radius: .2em;
	border-radius: .2em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}*/

.button{
  display: inline-block;
  *display: inline;
  zoom: 1;
  padding: 6px 20px;
  margin: 0;
  cursor: pointer;
  border: 1px solid #bbb;
  overflow: visible;
  font: 11px arial, helvetica, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  color: #555;
  background-color: #ddd;
  background-image: linear-gradient(top, rgba(255,255,255,1),
                                         rgba(255,255,255,0)),
                    url(data:image/png;base64,iVBORw0KGg[...]QmCC); 
  transition: background-color .2s ease-out;
  background-clip: padding-box; /* Fix bleeding */
  border-radius: 3px;
  text-shadow: 0 1px 0 rgba(255,255,255, .9);  
}

.button:disabled{
  background-color: #eee;
  color: #555;
}

.button:active{
  background: #e9e9e9;
  position: relative;
  top: 1px;
  text-shadow: none;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
}

.button.color{
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
  background-image: linear-gradient(top, rgba(255,255,255,.3), 
             rgba(255,255,255,0)),
                    url(data:image/png;base64,iVBORw0KGg[...]QmCC);
}

/* */

.button.green{
  background: #57a957;
  background: -webkit-gradient(linear, left top, left bottom, from(#3ed060), to(#57a957));
	background: -moz-linear-gradient(top,  #3ed060,  #57a957);
  border-color: #57a957;
  color: #fff;
}

.button.green:hover{
  background-color: #3abf59;
  background: -webkit-gradient(linear, left top, left bottom, from(#3abf59), to(#57a957));
	background: -moz-linear-gradient(top,  #3abf59,  #57a957);
}

.button.green:active{
  background: #57a957;
}

.button.lightGreen {
  background: #81C784;
  background: -webkit-gradient(linear, left top, left bottom, from(#A5D6A7), to(#81C784));
  background: -moz-linear-gradient(top, #A5D6A7,#81C784);
  color: #fff;
}

.button.lightGreen:hover {
  background: #81C784;
  background: -webkit-gradient(linear, left top, left bottom, from(#81C784), to(#66BB6A));
  background: -moz-linear-gradient(top, #81C784,#66BB6A);
  color: #fff;
}

.button.lightGreen:active {
  background: #81C784;
  background: -webkit-gradient(linear, left top, left bottom, from(#81C784), to(#A5D6A7));
  background: -moz-linear-gradient(top, #81C784,#A5D6A7);
  color: #fff;
}

/* */

.button.red{
  background-color: #c43c35;
  border-color: #c43c35;
  color: #fff;
}

.button.red:hover{
  background-color: #ee5f5b;
}

.button.red:active{
  background: #c43c35;
}

/* */

.button.blue{
  background: #269CE9;
  background: -webkit-gradient(linear, left top, left bottom, from(#40b5ff), to(#269CE9));
	background: -moz-linear-gradient(top,  #40b5ff,  #269CE9);
  color: #fff;
	border: solid 1px #0099ff;
}

.button.blue:hover{
  background-color: #70B9E8;
  background: -webkit-gradient(linear, left top, left bottom, from(#1aa3ff), to(#008ae6));
	background: -moz-linear-gradient(top,  #40b5ff,  #269CE9);
}

.button.blue:active{
  background: #269CE9;
}

.button.blue:disabled,
.button.orange:disabled,
.button.green:disabled,
.button.red:disabled {
  background-color: #606060;
  background: #606060;
}

.orange {
	color: #fef4e9;
	border: solid 1px #da7c0c;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
.orange:hover {
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top,  #f88e11,  #f06015);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}
.orange:active {
	color: #fcd3a5;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top,  #f47a20,  #faa51a);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}

.white {
	color: #606060;
	border: solid 1px #cacaca;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
	background: -moz-linear-gradient(top,  #fff,  #f8f8f8);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f8f8f8');
}
.white:hover {
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
	background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}
.white:active {
	color: #999;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
	background: -moz-linear-gradient(top,  #ededed,  #fff);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}


.buttonOrange {
    background-color: #ffb051;
    border: none;
    color: #fff;
    letter-spacing: 1px;
}

.buttonOrange:hover {
    background-color: #e29d49;
    cursor: pointer;
    
}

.buttonGreen { 
    background-color: #3ed060;
    border: none;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
}

.buttonGreen:hover {
    background-color: #3abf59;
    cursor: pointer;
}

.buttonBlue {
    background-color: #40b5ff;
    border: none;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
}

.buttonBlue:hover {
    background-color: #00a0c7;
    cursor: pointer;
}

.buttonRed {
    background-color: orangered;
    border: none;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
}

.buttonRed:hover { background-color: red; }