/********************************* BUTTONS ***********************************/

.button{
  display: inline-block;
  *display: inline;
  zoom: 1;
  padding: 6px 20px;
  margin: 0;
  cursor: pointer;
  border: 1px solid #bbb;
  overflow: visible;
  font: 18px 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: #3e3e3e;
}

.button:hover{
  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.lightGreen {
  background-color: #A5D6A7;
  border-color: #A5D6A7;
  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.red{
  background-color: #c43c35;
  border-color: #c43c35;
  color: #fff;
}

.button.red:hover{
  background-color: #ee5f5b;
}

.button.red:active{
  background: #c43c35;
}

.button.lightRed {
  background-color: #EF9A9A;
  border-color: #EF9A9A;
  color: #fff;
}

/* */

.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;
}

.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');
}