/* The main calendar widget.  DIV containing a table. */

.calendar {
  position: relative;
  display: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 2px solid #fff;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #d4d0c8;
  font-family: tahoma,verdana,sans-serif;
}

.calendar table {
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #d4d0c8;
  font-family: tahoma,verdana,sans-serif;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  padding: 1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
}

.calendar .nav {
  background: transparent url(https://epack.co.nz/js/calendar/menuarrow.gif) no-repeat 100% 100%;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;
  padding: 1px;
  border: 1px solid #000;
  background: #848078;
  color: #fff;
  text-align: center;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
}

.calendar thead .daynames { /* Row <TR> containing the day names */
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #000;
  padding: 2px;
  text-align: center;
  background: #f4f0e8;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #f00;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  border-top: 2px solid #fff;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 2px solid #fff;
  padding: 0px;
  background-color: #e4e0d8;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  padding: 2px 0px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  background-color: #c4c0b8;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  text-align: right;
  padding: 2px 4px 2px 2px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #000;
  background: #f4f0e8;
}

.calendar tbody .rowhilite td {
  background: #e4e0d8;
}

.calendar tbody .rowhilite td.wn {
  background: #d4d0c8;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  padding: 1px 3px 1px 1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  padding: 2px 2px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  padding: 2px 2px 0px 2px;
  background: #e4e0d8;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #f00;
}

.calendar tbody td.today { /* Cell showing today date */
  font-weight: bold;
  color: #00f;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #f4f0e8;
  padding: 1px;
  border: 1px solid #000;
  background: #848078;
  color: #fff;
  text-align: center;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  padding: 1px;
  background: #e4e0d8;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  padding: 2px 0px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  width: 4em;
  top: 0px;
  left: 0px;
  cursor: default;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  background: #e4e0d8;
  font-size: 90%;
  padding: 1px;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active {
  background: #c4c0b8;
  padding: 0px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

.calendar .combo .hilite {
  background: #048;
  color: #fea;
}

.calendar td.time {
  border-top: 1px solid #000;
  padding: 1px 0px;
  text-align: center;
  background-color: #f4f0e8;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: #fff;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #000;
  background-color: #766;
  color: #fff;
}

.calendar td.time span.active {
  border-color: #f00;
  background-color: #000;
  color: #0f0;
}

/*!
 * Bootstrap v3.3.4 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=335bf7d52918f3a2c58f)
 * Config saved to config.json and https://gist.github.com/335bf7d52918f3a2c58f
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */



.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}









.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
/*!
 * Lush Content Slider - Builder Stylesheet
 * http://geedmo.com
 *
 * ======================================================= */
/* BIG TEXT */
.big-white{
      color: #fff;
      text-shadow: none;
      font-weight: 800;
      font-size: 20px;
      line-height: 20px;
      font-family: 'Open Sans', sans;
      padding: 3px 4px;
      padding-top: 1px;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      background-color:#000;
      letter-spacing: 0px;
    }

.big-orange{

      color: #fff;
      text-shadow: none;
      font-weight: 700;
      font-size: 36px;
      line-height: 36px;
      font-family: Arial;
      padding: 0px 4px;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      background-color:#fb7354;
      letter-spacing: -1.5px;
    }

.big-black{

      color: #000;
      text-shadow: none;
      font-weight: 800;
      font-size: 36px;
      line-height: 36px;
      font-family: 'Open Sans', sans;
      padding: 0px 4px;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      background-color:#fff;
      letter-spacing: -1.5px;
    }

.medium-grey{

      color: #fff;
      text-shadow: none;
      font-weight: 700;
      font-size: 20px;
      line-height: 20px;
      font-family: Arial;
      padding: 2px 4px;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      background-color:#888;
      white-space:nowrap;
      text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    }

.small-text{

      color: #fff;
      text-shadow: none;
      font-weight: 700;
      font-size: 14px;
      line-height: 20px;
      font-family: Arial;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      white-space:nowrap;
      text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    }

.medium-text{

      color: #fff;
      text-shadow: none;
      font-weight: 300;
      font-size: 20px;
      line-height: 20px;
      font-family: 'Open Sans', sans;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      white-space:nowrap;
      text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    }

.large-text{

      color: #fff;
      text-shadow: none;
      font-weight: 800;
      font-size: 36px;
      line-height: 36px;
      font-family: 'Open Sans', sans;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      white-space:nowrap;
      text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    }
.large-black-text{

      color: #000;
      text-shadow: none;
      font-weight: 300;
      font-size: 42px;
      line-height: 42px;
      font-family: 'Open Sans', sans;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      white-space:nowrap;
    }

.very-large-text{

      color: #fff;
      text-shadow: none;
      font-weight: 800;
      font-size: 60px;
      line-height: 60px;
      font-family: 'Open Sans', sans;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      white-space:nowrap;
      text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
      letter-spacing: 0px;
    }
.very-large-black-text{

      color: #000;
      text-shadow: none;
      font-weight: 800;
      font-size: 72px;
      line-height: 72px;
      font-family: 'Open Sans', sans;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      white-space:nowrap;
    }
.bold-red-text{

      color: #d31e00;
      text-shadow: none;
      font-weight: 800;
      font-size: 20px;
      line-height: 20px;
      font-family: 'Open Sans', sans;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      white-space:nowrap;
    }
.bold-brown-text{

      color: #a04606;
      text-shadow: none;
      font-weight: 800;
      font-size: 20px;
      line-height: 20px;
      font-family: 'Open Sans', sans;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      white-space:nowrap;
    }
    .bold-green-text{

      color: #5b9830;
      text-shadow: none;
      font-weight: 800;
      font-size: 20px;
      line-height: 20px;
      font-family: 'Open Sans', sans;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      white-space:nowrap;
    }

.very-big-white{

      color: #fff;
      text-shadow: none;
      font-weight: 800;
      font-size: 36px;
      line-height: 36px;
      font-family: 'Open Sans', sans;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      white-space:nowrap;
      padding: 3px 4px;
      padding-top: 1px;
      background-color:#7e8e96;
          }

.very-big-black{

      color: #000;
      text-shadow: none;
      font-weight: 700;
      font-size: 60px;
      line-height: 60px;
      font-family: Arial;
      margin: 0px;
      border-width: 0px;
      border-style: none;
      white-space:nowrap;
      padding: 0px 4px;
      padding-top: 1px;
      background-color:#fff;
          }
.cus-black {

      color: #232323;
      font-weight: 700;
      font-size: 54px;
      line-height: 54px;
      font-family: 'Open Sans', sans;
      text-transform: uppercase;
}
.cus-color {

      color: #5f9a7b;
      font-weight: 700;
      font-size: 64px;
      line-height: 64px;
      font-family: 'Open Sans', sans;
      text-transform: uppercase;
}


.boxshadow{
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  }

.black{
    color: #000;
    text-shadow: none;
    font-weight: 300;
    font-size: 19px;
    line-height: 19px;
    font-family: 'Open Sans', sans;
  }

.noshadow {
    text-shadow: none;
  }
.big-blue {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #3373cc;
  color: #333333 !important;
  color: #ffffff !important;
}
.big-sky {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #7ac0ea;
  color: #333333 !important;
  color: #ffffff !important;
}
.big-green {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #66cc99;
  color: #333333 !important;
  color: #ffffff !important;
}
.big-lime {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #b1f27e;
  color: #333333 !important;
  color: #ffffff !important;
}
.big-yellow {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #f5fe84;
  color: #333333 !important;
}
.big-orangelite {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #ffd885;
  color: #333333 !important;
}
.big-orange {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #ffa366;
  color: #333333 !important;
  color: #ffffff !important;
}
.big-salmon {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #ff9885;
  color: #333333 !important;
}
.big-pink {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #f5809f;
  color: #333333 !important;
  color: #ffffff !important;
}
.big-purple {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #e87aea;
  color: #333333 !important;
  color: #ffffff !important;
}
.big-violet {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #a27aea;
  color: #333333 !important;
  color: #ffffff !important;
}
.big-red {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #fa4141;
  color: #333333 !important;
  color: #ffffff !important;
}
.big-wood {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #edd7b2;
  color: #333333 !important;
}
.big-black {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #1b1b1b;
  color: #ffffff !important;
}
.big-white {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #ffffff;
  color: #333333 !important;
}
.big-gray {
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #767676;
  color: #333333 !important;
  color: #ffffff !important;
}
/* MEDIUM TEXT */
.medium-blue {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #3373cc;
  color: #333333 !important;
  color: #ffffff !important;
}
.medium-sky {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #7ac0ea;
  color: #333333 !important;
  color: #ffffff !important;
}
.medium-green {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #66cc99;
  color: #333333 !important;
  color: #ffffff !important;
}
.medium-lime {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #b1f27e;
  color: #333333 !important;
  color: #ffffff !important;
}
.medium-yellow {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #f5fe84;
  color: #333333 !important;
}
.medium-orangelite {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #ffd885;
  color: #333333 !important;
}
.medium-orange {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #ffa366;
  color: #333333 !important;
  color: #ffffff !important;
}
.medium-salmon {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #ff9885;
  color: #333333 !important;
}
.medium-pink {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #f5809f;
  color: #333333 !important;
  color: #ffffff !important;
}
.medium-purple {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #e87aea;
  color: #333333 !important;
  color: #ffffff !important;
}
.medium-violet {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #a27aea;
  color: #333333 !important;
  color: #ffffff !important;
}
.medium-red {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #fa4141;
  color: #333333 !important;
  color: #ffffff !important;
}
.medium-wood {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #edd7b2;
  color: #333333 !important;
}
.medium-black {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #1b1b1b;
  color: #ffffff !important;
}
.medium-white {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #ffffff;
  color: #333333 !important;
}
.medium-gray {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #767676;
  color: #333333 !important;
  color: #ffffff !important;
}
/* SMALL TEXT */
.small-blue {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #3373cc;
  color: #333333 !important;
  color: #ffffff !important;
}
.small-sky {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #7ac0ea;
  color: #333333 !important;
  color: #ffffff !important;
}
.small-green {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #66cc99;
  color: #333333 !important;
  color: #ffffff !important;
}
.small-lime {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #b1f27e;
  color: #333333 !important;
  color: #ffffff !important;
}
.small-yellow {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #f5fe84;
  color: #333333 !important;
}
.small-orangelite {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #ffd885;
  color: #333333 !important;
}
.small-orange {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #ffa366;
  color: #333333 !important;
  color: #ffffff !important;
}
.small-salmon {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #ff9885;
  color: #333333 !important;
}
.small-pink {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #f5809f;
  color: #333333 !important;
  color: #ffffff !important;
}
.small-purple {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #e87aea;
  color: #333333 !important;
  color: #ffffff !important;
}
.small-violet {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #a27aea;
  color: #333333 !important;
  color: #ffffff !important;
}
.small-red {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #fa4141;
  color: #333333 !important;
  color: #ffffff !important;
}
.small-wood {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #edd7b2;
  color: #333333 !important;
}
.small-black {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #1b1b1b;
  color: #ffffff !important;
}
.small-white {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #ffffff;
  color: #333333 !important;
}
.small-gray {
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #767676;
  color: #333333 !important;
  color: #ffffff !important;
}
/* BIG BUTTON */
.button-big-blue {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #3373cc;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
  background-color: #427dd0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4b84d2), to(#3373cc));
  background-image: -webkit-linear-gradient(top, #4b84d2, #3373cc);
  background-image: -moz-linear-gradient(top, #4b84d2, #3373cc);
  background-image: -o-linear-gradient(top, #4b84d2, #3373cc);
  background-image: linear-gradient(top, #4b84d2, #3373cc);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#4b84d2', EndColorStr='#3373cc');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-blue:hover,
.button-big-blue:focus {
  text-decoration: none !important;
  background-color: #3d7ace;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3373cc), to(#4b84d2));
  background-image: -webkit-linear-gradient(top, #3373cc, #4b84d2);
  background-image: -moz-linear-gradient(top, #3373cc, #4b84d2);
  background-image: -o-linear-gradient(top, #3373cc, #4b84d2);
  background-image: linear-gradient(top, #3373cc, #4b84d2);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#3373cc', EndColorStr='#4b84d2');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #3373cc;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
}
.button-big-sky {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #7ac0ea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
  background-color: #8ac8ed;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#94cdee), to(#7ac0ea));
  background-image: -webkit-linear-gradient(top, #94cdee, #7ac0ea);
  background-image: -moz-linear-gradient(top, #94cdee, #7ac0ea);
  background-image: -o-linear-gradient(top, #94cdee, #7ac0ea);
  background-image: linear-gradient(top, #94cdee, #7ac0ea);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#94cdee', EndColorStr='#7ac0ea');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-sky:hover,
.button-big-sky:focus {
  text-decoration: none !important;
  background-color: #85c5ec;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7ac0ea), to(#94cdee));
  background-image: -webkit-linear-gradient(top, #7ac0ea, #94cdee);
  background-image: -moz-linear-gradient(top, #7ac0ea, #94cdee);
  background-image: -o-linear-gradient(top, #7ac0ea, #94cdee);
  background-image: linear-gradient(top, #7ac0ea, #94cdee);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#7ac0ea', EndColorStr='#94cdee');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #7ac0ea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
}
.button-big-green {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #66cc99;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
  background-color: #74d1a2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7dd4a8), to(#66cc99));
  background-image: -webkit-linear-gradient(top, #7dd4a8, #66cc99);
  background-image: -moz-linear-gradient(top, #7dd4a8, #66cc99);
  background-image: -o-linear-gradient(top, #7dd4a8, #66cc99);
  background-image: linear-gradient(top, #7dd4a8, #66cc99);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#7dd4a8', EndColorStr='#66cc99');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-green:hover,
.button-big-green:focus {
  text-decoration: none !important;
  background-color: #6fcf9f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#66cc99), to(#7dd4a8));
  background-image: -webkit-linear-gradient(top, #66cc99, #7dd4a8);
  background-image: -moz-linear-gradient(top, #66cc99, #7dd4a8);
  background-image: -o-linear-gradient(top, #66cc99, #7dd4a8);
  background-image: linear-gradient(top, #66cc99, #7dd4a8);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#66cc99', EndColorStr='#7dd4a8');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #66cc99;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
}
.button-big-lime {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #b1f27e;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
  background-color: #bbf48f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#c2f59a), to(#b1f27e));
  background-image: -webkit-linear-gradient(top, #c2f59a, #b1f27e);
  background-image: -moz-linear-gradient(top, #c2f59a, #b1f27e);
  background-image: -o-linear-gradient(top, #c2f59a, #b1f27e);
  background-image: linear-gradient(top, #c2f59a, #b1f27e);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#c2f59a', EndColorStr='#b1f27e');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-lime:hover,
.button-big-lime:focus {
  text-decoration: none !important;
  background-color: #b8f389;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b1f27e), to(#c2f59a));
  background-image: -webkit-linear-gradient(top, #b1f27e, #c2f59a);
  background-image: -moz-linear-gradient(top, #b1f27e, #c2f59a);
  background-image: -o-linear-gradient(top, #b1f27e, #c2f59a);
  background-image: linear-gradient(top, #b1f27e, #c2f59a);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#b1f27e', EndColorStr='#c2f59a');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #b1f27e;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
}
.button-big-yellow {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #f5fe84;
  color: #333333 !important;
  line-height: 56px;
  background-color: #f6fe96;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f7fea2), to(#f5fe84));
  background-image: -webkit-linear-gradient(top, #f7fea2, #f5fe84);
  background-image: -moz-linear-gradient(top, #f7fea2, #f5fe84);
  background-image: -o-linear-gradient(top, #f7fea2, #f5fe84);
  background-image: linear-gradient(top, #f7fea2, #f5fe84);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f7fea2', EndColorStr='#f5fe84');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-yellow:hover,
.button-big-yellow:focus {
  text-decoration: none !important;
  background-color: #f6fe90;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5fe84), to(#f7fea2));
  background-image: -webkit-linear-gradient(top, #f5fe84, #f7fea2);
  background-image: -moz-linear-gradient(top, #f5fe84, #f7fea2);
  background-image: -o-linear-gradient(top, #f5fe84, #f7fea2);
  background-image: linear-gradient(top, #f5fe84, #f7fea2);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f5fe84', EndColorStr='#f7fea2');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #f5fe84;
  color: #333333 !important;
  line-height: 56px;
}
.button-big-orangelite {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #ffd885;
  color: #333333 !important;
  line-height: 56px;
  background-color: #ffde97;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffe2a4), to(#ffd885));
  background-image: -webkit-linear-gradient(top, #ffe2a4, #ffd885);
  background-image: -moz-linear-gradient(top, #ffe2a4, #ffd885);
  background-image: -o-linear-gradient(top, #ffe2a4, #ffd885);
  background-image: linear-gradient(top, #ffe2a4, #ffd885);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffe2a4', EndColorStr='#ffd885');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-orangelite:hover,
.button-big-orangelite:focus {
  text-decoration: none !important;
  background-color: #ffdc91;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd885), to(#ffe2a4));
  background-image: -webkit-linear-gradient(top, #ffd885, #ffe2a4);
  background-image: -moz-linear-gradient(top, #ffd885, #ffe2a4);
  background-image: -o-linear-gradient(top, #ffd885, #ffe2a4);
  background-image: linear-gradient(top, #ffd885, #ffe2a4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffd885', EndColorStr='#ffe2a4');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #ffd885;
  color: #333333 !important;
  line-height: 56px;
}
.button-big-orange {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #ffa366;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
  background-color: #ffae78;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb585), to(#ffa366));
  background-image: -webkit-linear-gradient(top, #ffb585, #ffa366);
  background-image: -moz-linear-gradient(top, #ffb585, #ffa366);
  background-image: -o-linear-gradient(top, #ffb585, #ffa366);
  background-image: linear-gradient(top, #ffb585, #ffa366);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffb585', EndColorStr='#ffa366');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-orange:hover,
.button-big-orange:focus {
  text-decoration: none !important;
  background-color: #ffaa72;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffa366), to(#ffb585));
  background-image: -webkit-linear-gradient(top, #ffa366, #ffb585);
  background-image: -moz-linear-gradient(top, #ffa366, #ffb585);
  background-image: -o-linear-gradient(top, #ffa366, #ffb585);
  background-image: linear-gradient(top, #ffa366, #ffb585);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffa366', EndColorStr='#ffb585');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #ffa366;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
}
.button-big-salmon {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #ff9885;
  color: #333333 !important;
  line-height: 56px;
  background-color: #ffa897;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb2a4), to(#ff9885));
  background-image: -webkit-linear-gradient(top, #ffb2a4, #ff9885);
  background-image: -moz-linear-gradient(top, #ffb2a4, #ff9885);
  background-image: -o-linear-gradient(top, #ffb2a4, #ff9885);
  background-image: linear-gradient(top, #ffb2a4, #ff9885);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffb2a4', EndColorStr='#ff9885');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-salmon:hover,
.button-big-salmon:focus {
  text-decoration: none !important;
  background-color: #ffa291;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ff9885), to(#ffb2a4));
  background-image: -webkit-linear-gradient(top, #ff9885, #ffb2a4);
  background-image: -moz-linear-gradient(top, #ff9885, #ffb2a4);
  background-image: -o-linear-gradient(top, #ff9885, #ffb2a4);
  background-image: linear-gradient(top, #ff9885, #ffb2a4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ff9885', EndColorStr='#ffb2a4');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #ff9885;
  color: #333333 !important;
  line-height: 56px;
}
.button-big-pink {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #f5809f;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
  background-color: #f691ac;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f79cb4), to(#f5809f));
  background-image: -webkit-linear-gradient(top, #f79cb4, #f5809f);
  background-image: -moz-linear-gradient(top, #f79cb4, #f5809f);
  background-image: -o-linear-gradient(top, #f79cb4, #f5809f);
  background-image: linear-gradient(top, #f79cb4, #f5809f);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f79cb4', EndColorStr='#f5809f');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-pink:hover,
.button-big-pink:focus {
  text-decoration: none !important;
  background-color: #f68ba8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5809f), to(#f79cb4));
  background-image: -webkit-linear-gradient(top, #f5809f, #f79cb4);
  background-image: -moz-linear-gradient(top, #f5809f, #f79cb4);
  background-image: -o-linear-gradient(top, #f5809f, #f79cb4);
  background-image: linear-gradient(top, #f5809f, #f79cb4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f5809f', EndColorStr='#f79cb4');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #f5809f;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
}
.button-big-purple {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #e87aea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
  background-color: #eb8aed;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ed94ee), to(#e87aea));
  background-image: -webkit-linear-gradient(top, #ed94ee, #e87aea);
  background-image: -moz-linear-gradient(top, #ed94ee, #e87aea);
  background-image: -o-linear-gradient(top, #ed94ee, #e87aea);
  background-image: linear-gradient(top, #ed94ee, #e87aea);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ed94ee', EndColorStr='#e87aea');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-purple:hover,
.button-big-purple:focus {
  text-decoration: none !important;
  background-color: #ea85ec;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e87aea), to(#ed94ee));
  background-image: -webkit-linear-gradient(top, #e87aea, #ed94ee);
  background-image: -moz-linear-gradient(top, #e87aea, #ed94ee);
  background-image: -o-linear-gradient(top, #e87aea, #ed94ee);
  background-image: linear-gradient(top, #e87aea, #ed94ee);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#e87aea', EndColorStr='#ed94ee');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #e87aea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
}
.button-big-violet {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #a27aea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
  background-color: #ad8aed;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b494ee), to(#a27aea));
  background-image: -webkit-linear-gradient(top, #b494ee, #a27aea);
  background-image: -moz-linear-gradient(top, #b494ee, #a27aea);
  background-image: -o-linear-gradient(top, #b494ee, #a27aea);
  background-image: linear-gradient(top, #b494ee, #a27aea);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#b494ee', EndColorStr='#a27aea');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-violet:hover,
.button-big-violet:focus {
  text-decoration: none !important;
  background-color: #a985ec;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#a27aea), to(#b494ee));
  background-image: -webkit-linear-gradient(top, #a27aea, #b494ee);
  background-image: -moz-linear-gradient(top, #a27aea, #b494ee);
  background-image: -o-linear-gradient(top, #a27aea, #b494ee);
  background-image: linear-gradient(top, #a27aea, #b494ee);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#a27aea', EndColorStr='#b494ee');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #a27aea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
}
.button-big-red {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #fa4141;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
  background-color: #fa5353;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fb5f5f), to(#fa4141));
  background-image: -webkit-linear-gradient(top, #fb5f5f, #fa4141);
  background-image: -moz-linear-gradient(top, #fb5f5f, #fa4141);
  background-image: -o-linear-gradient(top, #fb5f5f, #fa4141);
  background-image: linear-gradient(top, #fb5f5f, #fa4141);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#fb5f5f', EndColorStr='#fa4141');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-red:hover,
.button-big-red:focus {
  text-decoration: none !important;
  background-color: #fa4d4d;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fa4141), to(#fb5f5f));
  background-image: -webkit-linear-gradient(top, #fa4141, #fb5f5f);
  background-image: -moz-linear-gradient(top, #fa4141, #fb5f5f);
  background-image: -o-linear-gradient(top, #fa4141, #fb5f5f);
  background-image: linear-gradient(top, #fa4141, #fb5f5f);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#fa4141', EndColorStr='#fb5f5f');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #fa4141;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
}
.button-big-wood {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #edd7b2;
  color: #333333 !important;
  line-height: 56px;
  background-color: #f0dfc1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f3e4cb), to(#edd7b2));
  background-image: -webkit-linear-gradient(top, #f3e4cb, #edd7b2);
  background-image: -moz-linear-gradient(top, #f3e4cb, #edd7b2);
  background-image: -o-linear-gradient(top, #f3e4cb, #edd7b2);
  background-image: linear-gradient(top, #f3e4cb, #edd7b2);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f3e4cb', EndColorStr='#edd7b2');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-wood:hover,
.button-big-wood:focus {
  text-decoration: none !important;
  background-color: #efdcbc;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#edd7b2), to(#f3e4cb));
  background-image: -webkit-linear-gradient(top, #edd7b2, #f3e4cb);
  background-image: -moz-linear-gradient(top, #edd7b2, #f3e4cb);
  background-image: -o-linear-gradient(top, #edd7b2, #f3e4cb);
  background-image: linear-gradient(top, #edd7b2, #f3e4cb);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#edd7b2', EndColorStr='#f3e4cb');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #edd7b2;
  color: #333333 !important;
  line-height: 56px;
}
.button-big-black {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #1b1b1b;
  color: #ffffff !important;
  line-height: 56px;
  background-color: #242424;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2a2a2a), to(#1b1b1b));
  background-image: -webkit-linear-gradient(top, #2a2a2a, #1b1b1b);
  background-image: -moz-linear-gradient(top, #2a2a2a, #1b1b1b);
  background-image: -o-linear-gradient(top, #2a2a2a, #1b1b1b);
  background-image: linear-gradient(top, #2a2a2a, #1b1b1b);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#2a2a2a', EndColorStr='#1b1b1b');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-black:hover,
.button-big-black:focus {
  text-decoration: none !important;
  background-color: #212121;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1b1b1b), to(#2a2a2a));
  background-image: -webkit-linear-gradient(top, #1b1b1b, #2a2a2a);
  background-image: -moz-linear-gradient(top, #1b1b1b, #2a2a2a);
  background-image: -o-linear-gradient(top, #1b1b1b, #2a2a2a);
  background-image: linear-gradient(top, #1b1b1b, #2a2a2a);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#1b1b1b', EndColorStr='#2a2a2a');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #1b1b1b;
  color: #ffffff !important;
  line-height: 56px;
}
.button-big-white {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  color: #333333 !important;
  line-height: 56px;
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #ffffff, #ffffff);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff);
  background-image: -o-linear-gradient(top, #ffffff, #ffffff);
  background-image: linear-gradient(top, #ffffff, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffffff', EndColorStr='#ffffff');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-white:hover,
.button-big-white:focus {
  text-decoration: none !important;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #ffffff, #ffffff);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff);
  background-image: -o-linear-gradient(top, #ffffff, #ffffff);
  background-image: linear-gradient(top, #ffffff, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffffff', EndColorStr='#ffffff');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #ffffff;
  color: #333333 !important;
  line-height: 56px;
}
.button-big-gray {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #767676;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
  background-color: #7f7f7f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#858585), to(#767676));
  background-image: -webkit-linear-gradient(top, #858585, #767676);
  background-image: -moz-linear-gradient(top, #858585, #767676);
  background-image: -o-linear-gradient(top, #858585, #767676);
  background-image: linear-gradient(top, #858585, #767676);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#858585', EndColorStr='#767676');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-big-gray:hover,
.button-big-gray:focus {
  text-decoration: none !important;
  background-color: #7c7c7c;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#767676), to(#858585));
  background-image: -webkit-linear-gradient(top, #767676, #858585);
  background-image: -moz-linear-gradient(top, #767676, #858585);
  background-image: -o-linear-gradient(top, #767676, #858585);
  background-image: linear-gradient(top, #767676, #858585);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#767676', EndColorStr='#858585');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 52px;
  line-height: 52px;
  padding: 11px 19px;
  font-weight: 700;
  background-color: #767676;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 56px;
}
/* MEDIUM BUTTON */
.button-medium-blue {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #3373cc;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
  background-color: #427dd0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4b84d2), to(#3373cc));
  background-image: -webkit-linear-gradient(top, #4b84d2, #3373cc);
  background-image: -moz-linear-gradient(top, #4b84d2, #3373cc);
  background-image: -o-linear-gradient(top, #4b84d2, #3373cc);
  background-image: linear-gradient(top, #4b84d2, #3373cc);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#4b84d2', EndColorStr='#3373cc');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-blue:hover,
.button-medium-blue:focus {
  text-decoration: none !important;
  background-color: #3d7ace;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3373cc), to(#4b84d2));
  background-image: -webkit-linear-gradient(top, #3373cc, #4b84d2);
  background-image: -moz-linear-gradient(top, #3373cc, #4b84d2);
  background-image: -o-linear-gradient(top, #3373cc, #4b84d2);
  background-image: linear-gradient(top, #3373cc, #4b84d2);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#3373cc', EndColorStr='#4b84d2');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #3373cc;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
}
.button-medium-sky {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #7ac0ea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
  background-color: #8ac8ed;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#94cdee), to(#7ac0ea));
  background-image: -webkit-linear-gradient(top, #94cdee, #7ac0ea);
  background-image: -moz-linear-gradient(top, #94cdee, #7ac0ea);
  background-image: -o-linear-gradient(top, #94cdee, #7ac0ea);
  background-image: linear-gradient(top, #94cdee, #7ac0ea);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#94cdee', EndColorStr='#7ac0ea');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-sky:hover,
.button-medium-sky:focus {
  text-decoration: none !important;
  background-color: #85c5ec;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7ac0ea), to(#94cdee));
  background-image: -webkit-linear-gradient(top, #7ac0ea, #94cdee);
  background-image: -moz-linear-gradient(top, #7ac0ea, #94cdee);
  background-image: -o-linear-gradient(top, #7ac0ea, #94cdee);
  background-image: linear-gradient(top, #7ac0ea, #94cdee);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#7ac0ea', EndColorStr='#94cdee');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #7ac0ea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
}
.button-medium-green {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #66cc99;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
  background-color: #74d1a2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7dd4a8), to(#66cc99));
  background-image: -webkit-linear-gradient(top, #7dd4a8, #66cc99);
  background-image: -moz-linear-gradient(top, #7dd4a8, #66cc99);
  background-image: -o-linear-gradient(top, #7dd4a8, #66cc99);
  background-image: linear-gradient(top, #7dd4a8, #66cc99);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#7dd4a8', EndColorStr='#66cc99');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-green:hover,
.button-medium-green:focus {
  text-decoration: none !important;
  background-color: #6fcf9f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#66cc99), to(#7dd4a8));
  background-image: -webkit-linear-gradient(top, #66cc99, #7dd4a8);
  background-image: -moz-linear-gradient(top, #66cc99, #7dd4a8);
  background-image: -o-linear-gradient(top, #66cc99, #7dd4a8);
  background-image: linear-gradient(top, #66cc99, #7dd4a8);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#66cc99', EndColorStr='#7dd4a8');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #66cc99;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
}
.button-medium-lime {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #b1f27e;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
  background-color: #bbf48f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#c2f59a), to(#b1f27e));
  background-image: -webkit-linear-gradient(top, #c2f59a, #b1f27e);
  background-image: -moz-linear-gradient(top, #c2f59a, #b1f27e);
  background-image: -o-linear-gradient(top, #c2f59a, #b1f27e);
  background-image: linear-gradient(top, #c2f59a, #b1f27e);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#c2f59a', EndColorStr='#b1f27e');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-lime:hover,
.button-medium-lime:focus {
  text-decoration: none !important;
  background-color: #b8f389;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b1f27e), to(#c2f59a));
  background-image: -webkit-linear-gradient(top, #b1f27e, #c2f59a);
  background-image: -moz-linear-gradient(top, #b1f27e, #c2f59a);
  background-image: -o-linear-gradient(top, #b1f27e, #c2f59a);
  background-image: linear-gradient(top, #b1f27e, #c2f59a);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#b1f27e', EndColorStr='#c2f59a');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #b1f27e;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
}
.button-medium-yellow {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #f5fe84;
  color: #333333 !important;
  line-height: 34px;
  background-color: #f6fe96;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f7fea2), to(#f5fe84));
  background-image: -webkit-linear-gradient(top, #f7fea2, #f5fe84);
  background-image: -moz-linear-gradient(top, #f7fea2, #f5fe84);
  background-image: -o-linear-gradient(top, #f7fea2, #f5fe84);
  background-image: linear-gradient(top, #f7fea2, #f5fe84);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f7fea2', EndColorStr='#f5fe84');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-yellow:hover,
.button-medium-yellow:focus {
  text-decoration: none !important;
  background-color: #f6fe90;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5fe84), to(#f7fea2));
  background-image: -webkit-linear-gradient(top, #f5fe84, #f7fea2);
  background-image: -moz-linear-gradient(top, #f5fe84, #f7fea2);
  background-image: -o-linear-gradient(top, #f5fe84, #f7fea2);
  background-image: linear-gradient(top, #f5fe84, #f7fea2);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f5fe84', EndColorStr='#f7fea2');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #f5fe84;
  color: #333333 !important;
  line-height: 34px;
}
.button-medium-orangelite {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #ffd885;
  color: #333333 !important;
  line-height: 34px;
  background-color: #ffde97;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffe2a4), to(#ffd885));
  background-image: -webkit-linear-gradient(top, #ffe2a4, #ffd885);
  background-image: -moz-linear-gradient(top, #ffe2a4, #ffd885);
  background-image: -o-linear-gradient(top, #ffe2a4, #ffd885);
  background-image: linear-gradient(top, #ffe2a4, #ffd885);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffe2a4', EndColorStr='#ffd885');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-orangelite:hover,
.button-medium-orangelite:focus {
  text-decoration: none !important;
  background-color: #ffdc91;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd885), to(#ffe2a4));
  background-image: -webkit-linear-gradient(top, #ffd885, #ffe2a4);
  background-image: -moz-linear-gradient(top, #ffd885, #ffe2a4);
  background-image: -o-linear-gradient(top, #ffd885, #ffe2a4);
  background-image: linear-gradient(top, #ffd885, #ffe2a4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffd885', EndColorStr='#ffe2a4');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #ffd885;
  color: #333333 !important;
  line-height: 34px;
}
.button-medium-orange {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #ffa366;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
  background-color: #ffae78;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb585), to(#ffa366));
  background-image: -webkit-linear-gradient(top, #ffb585, #ffa366);
  background-image: -moz-linear-gradient(top, #ffb585, #ffa366);
  background-image: -o-linear-gradient(top, #ffb585, #ffa366);
  background-image: linear-gradient(top, #ffb585, #ffa366);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffb585', EndColorStr='#ffa366');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-orange:hover,
.button-medium-orange:focus {
  text-decoration: none !important;
  background-color: #ffaa72;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffa366), to(#ffb585));
  background-image: -webkit-linear-gradient(top, #ffa366, #ffb585);
  background-image: -moz-linear-gradient(top, #ffa366, #ffb585);
  background-image: -o-linear-gradient(top, #ffa366, #ffb585);
  background-image: linear-gradient(top, #ffa366, #ffb585);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffa366', EndColorStr='#ffb585');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #ffa366;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
}
.button-medium-salmon {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #ff9885;
  color: #333333 !important;
  line-height: 34px;
  background-color: #ffa897;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb2a4), to(#ff9885));
  background-image: -webkit-linear-gradient(top, #ffb2a4, #ff9885);
  background-image: -moz-linear-gradient(top, #ffb2a4, #ff9885);
  background-image: -o-linear-gradient(top, #ffb2a4, #ff9885);
  background-image: linear-gradient(top, #ffb2a4, #ff9885);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffb2a4', EndColorStr='#ff9885');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-salmon:hover,
.button-medium-salmon:focus {
  text-decoration: none !important;
  background-color: #ffa291;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ff9885), to(#ffb2a4));
  background-image: -webkit-linear-gradient(top, #ff9885, #ffb2a4);
  background-image: -moz-linear-gradient(top, #ff9885, #ffb2a4);
  background-image: -o-linear-gradient(top, #ff9885, #ffb2a4);
  background-image: linear-gradient(top, #ff9885, #ffb2a4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ff9885', EndColorStr='#ffb2a4');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #ff9885;
  color: #333333 !important;
  line-height: 34px;
}
.button-medium-pink {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #f5809f;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
  background-color: #f691ac;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f79cb4), to(#f5809f));
  background-image: -webkit-linear-gradient(top, #f79cb4, #f5809f);
  background-image: -moz-linear-gradient(top, #f79cb4, #f5809f);
  background-image: -o-linear-gradient(top, #f79cb4, #f5809f);
  background-image: linear-gradient(top, #f79cb4, #f5809f);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f79cb4', EndColorStr='#f5809f');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-pink:hover,
.button-medium-pink:focus {
  text-decoration: none !important;
  background-color: #f68ba8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5809f), to(#f79cb4));
  background-image: -webkit-linear-gradient(top, #f5809f, #f79cb4);
  background-image: -moz-linear-gradient(top, #f5809f, #f79cb4);
  background-image: -o-linear-gradient(top, #f5809f, #f79cb4);
  background-image: linear-gradient(top, #f5809f, #f79cb4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f5809f', EndColorStr='#f79cb4');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #f5809f;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
}
.button-medium-purple {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #e87aea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
  background-color: #eb8aed;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ed94ee), to(#e87aea));
  background-image: -webkit-linear-gradient(top, #ed94ee, #e87aea);
  background-image: -moz-linear-gradient(top, #ed94ee, #e87aea);
  background-image: -o-linear-gradient(top, #ed94ee, #e87aea);
  background-image: linear-gradient(top, #ed94ee, #e87aea);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ed94ee', EndColorStr='#e87aea');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-purple:hover,
.button-medium-purple:focus {
  text-decoration: none !important;
  background-color: #ea85ec;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e87aea), to(#ed94ee));
  background-image: -webkit-linear-gradient(top, #e87aea, #ed94ee);
  background-image: -moz-linear-gradient(top, #e87aea, #ed94ee);
  background-image: -o-linear-gradient(top, #e87aea, #ed94ee);
  background-image: linear-gradient(top, #e87aea, #ed94ee);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#e87aea', EndColorStr='#ed94ee');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #e87aea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
}
.button-medium-violet {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #a27aea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
  background-color: #ad8aed;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b494ee), to(#a27aea));
  background-image: -webkit-linear-gradient(top, #b494ee, #a27aea);
  background-image: -moz-linear-gradient(top, #b494ee, #a27aea);
  background-image: -o-linear-gradient(top, #b494ee, #a27aea);
  background-image: linear-gradient(top, #b494ee, #a27aea);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#b494ee', EndColorStr='#a27aea');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-violet:hover,
.button-medium-violet:focus {
  text-decoration: none !important;
  background-color: #a985ec;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#a27aea), to(#b494ee));
  background-image: -webkit-linear-gradient(top, #a27aea, #b494ee);
  background-image: -moz-linear-gradient(top, #a27aea, #b494ee);
  background-image: -o-linear-gradient(top, #a27aea, #b494ee);
  background-image: linear-gradient(top, #a27aea, #b494ee);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#a27aea', EndColorStr='#b494ee');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #a27aea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
}
.button-medium-red {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #fa4141;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
  background-color: #fa5353;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fb5f5f), to(#fa4141));
  background-image: -webkit-linear-gradient(top, #fb5f5f, #fa4141);
  background-image: -moz-linear-gradient(top, #fb5f5f, #fa4141);
  background-image: -o-linear-gradient(top, #fb5f5f, #fa4141);
  background-image: linear-gradient(top, #fb5f5f, #fa4141);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#fb5f5f', EndColorStr='#fa4141');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-red:hover,
.button-medium-red:focus {
  text-decoration: none !important;
  background-color: #fa4d4d;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fa4141), to(#fb5f5f));
  background-image: -webkit-linear-gradient(top, #fa4141, #fb5f5f);
  background-image: -moz-linear-gradient(top, #fa4141, #fb5f5f);
  background-image: -o-linear-gradient(top, #fa4141, #fb5f5f);
  background-image: linear-gradient(top, #fa4141, #fb5f5f);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#fa4141', EndColorStr='#fb5f5f');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #fa4141;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
}
.button-medium-wood {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #edd7b2;
  color: #333333 !important;
  line-height: 34px;
  background-color: #f0dfc1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f3e4cb), to(#edd7b2));
  background-image: -webkit-linear-gradient(top, #f3e4cb, #edd7b2);
  background-image: -moz-linear-gradient(top, #f3e4cb, #edd7b2);
  background-image: -o-linear-gradient(top, #f3e4cb, #edd7b2);
  background-image: linear-gradient(top, #f3e4cb, #edd7b2);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f3e4cb', EndColorStr='#edd7b2');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-wood:hover,
.button-medium-wood:focus {
  text-decoration: none !important;
  background-color: #efdcbc;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#edd7b2), to(#f3e4cb));
  background-image: -webkit-linear-gradient(top, #edd7b2, #f3e4cb);
  background-image: -moz-linear-gradient(top, #edd7b2, #f3e4cb);
  background-image: -o-linear-gradient(top, #edd7b2, #f3e4cb);
  background-image: linear-gradient(top, #edd7b2, #f3e4cb);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#edd7b2', EndColorStr='#f3e4cb');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #edd7b2;
  color: #333333 !important;
  line-height: 34px;
}
.button-medium-black {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #1b1b1b;
  color: #ffffff !important;
  line-height: 34px;
  background-color: #242424;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2a2a2a), to(#1b1b1b));
  background-image: -webkit-linear-gradient(top, #2a2a2a, #1b1b1b);
  background-image: -moz-linear-gradient(top, #2a2a2a, #1b1b1b);
  background-image: -o-linear-gradient(top, #2a2a2a, #1b1b1b);
  background-image: linear-gradient(top, #2a2a2a, #1b1b1b);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#2a2a2a', EndColorStr='#1b1b1b');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-black:hover,
.button-medium-black:focus {
  text-decoration: none !important;
  background-color: #212121;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1b1b1b), to(#2a2a2a));
  background-image: -webkit-linear-gradient(top, #1b1b1b, #2a2a2a);
  background-image: -moz-linear-gradient(top, #1b1b1b, #2a2a2a);
  background-image: -o-linear-gradient(top, #1b1b1b, #2a2a2a);
  background-image: linear-gradient(top, #1b1b1b, #2a2a2a);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#1b1b1b', EndColorStr='#2a2a2a');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #1b1b1b;
  color: #ffffff !important;
  line-height: 34px;
}
.button-medium-white {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  color: #333333 !important;
  line-height: 34px;
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #ffffff, #ffffff);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff);
  background-image: -o-linear-gradient(top, #ffffff, #ffffff);
  background-image: linear-gradient(top, #ffffff, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffffff', EndColorStr='#ffffff');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-white:hover,
.button-medium-white:focus {
  text-decoration: none !important;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #ffffff, #ffffff);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff);
  background-image: -o-linear-gradient(top, #ffffff, #ffffff);
  background-image: linear-gradient(top, #ffffff, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffffff', EndColorStr='#ffffff');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #ffffff;
  color: #333333 !important;
  line-height: 34px;
}
.button-medium-gray {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #767676;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
  background-color: #7f7f7f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#858585), to(#767676));
  background-image: -webkit-linear-gradient(top, #858585, #767676);
  background-image: -moz-linear-gradient(top, #858585, #767676);
  background-image: -o-linear-gradient(top, #858585, #767676);
  background-image: linear-gradient(top, #858585, #767676);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#858585', EndColorStr='#767676');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-medium-gray:hover,
.button-medium-gray:focus {
  text-decoration: none !important;
  background-color: #7c7c7c;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#767676), to(#858585));
  background-image: -webkit-linear-gradient(top, #767676, #858585);
  background-image: -moz-linear-gradient(top, #767676, #858585);
  background-image: -o-linear-gradient(top, #767676, #858585);
  background-image: linear-gradient(top, #767676, #858585);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#767676', EndColorStr='#858585');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-weight: normal;
  background-color: #767676;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 34px;
}
/* SMALL BUTTON */
.button-small-blue {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #3373cc;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
  background-color: #427dd0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4b84d2), to(#3373cc));
  background-image: -webkit-linear-gradient(top, #4b84d2, #3373cc);
  background-image: -moz-linear-gradient(top, #4b84d2, #3373cc);
  background-image: -o-linear-gradient(top, #4b84d2, #3373cc);
  background-image: linear-gradient(top, #4b84d2, #3373cc);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#4b84d2', EndColorStr='#3373cc');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-blue:hover,
.button-small-blue:focus {
  text-decoration: none !important;
  background-color: #3d7ace;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3373cc), to(#4b84d2));
  background-image: -webkit-linear-gradient(top, #3373cc, #4b84d2);
  background-image: -moz-linear-gradient(top, #3373cc, #4b84d2);
  background-image: -o-linear-gradient(top, #3373cc, #4b84d2);
  background-image: linear-gradient(top, #3373cc, #4b84d2);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#3373cc', EndColorStr='#4b84d2');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #3373cc;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
}
.button-small-sky {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #7ac0ea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
  background-color: #8ac8ed;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#94cdee), to(#7ac0ea));
  background-image: -webkit-linear-gradient(top, #94cdee, #7ac0ea);
  background-image: -moz-linear-gradient(top, #94cdee, #7ac0ea);
  background-image: -o-linear-gradient(top, #94cdee, #7ac0ea);
  background-image: linear-gradient(top, #94cdee, #7ac0ea);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#94cdee', EndColorStr='#7ac0ea');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-sky:hover,
.button-small-sky:focus {
  text-decoration: none !important;
  background-color: #85c5ec;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7ac0ea), to(#94cdee));
  background-image: -webkit-linear-gradient(top, #7ac0ea, #94cdee);
  background-image: -moz-linear-gradient(top, #7ac0ea, #94cdee);
  background-image: -o-linear-gradient(top, #7ac0ea, #94cdee);
  background-image: linear-gradient(top, #7ac0ea, #94cdee);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#7ac0ea', EndColorStr='#94cdee');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #7ac0ea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
}
.button-small-green {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #66cc99;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
  background-color: #74d1a2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7dd4a8), to(#66cc99));
  background-image: -webkit-linear-gradient(top, #7dd4a8, #66cc99);
  background-image: -moz-linear-gradient(top, #7dd4a8, #66cc99);
  background-image: -o-linear-gradient(top, #7dd4a8, #66cc99);
  background-image: linear-gradient(top, #7dd4a8, #66cc99);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#7dd4a8', EndColorStr='#66cc99');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-green:hover,
.button-small-green:focus {
  text-decoration: none !important;
  background-color: #6fcf9f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#66cc99), to(#7dd4a8));
  background-image: -webkit-linear-gradient(top, #66cc99, #7dd4a8);
  background-image: -moz-linear-gradient(top, #66cc99, #7dd4a8);
  background-image: -o-linear-gradient(top, #66cc99, #7dd4a8);
  background-image: linear-gradient(top, #66cc99, #7dd4a8);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#66cc99', EndColorStr='#7dd4a8');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #66cc99;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
}
.button-small-lime {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #b1f27e;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
  background-color: #bbf48f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#c2f59a), to(#b1f27e));
  background-image: -webkit-linear-gradient(top, #c2f59a, #b1f27e);
  background-image: -moz-linear-gradient(top, #c2f59a, #b1f27e);
  background-image: -o-linear-gradient(top, #c2f59a, #b1f27e);
  background-image: linear-gradient(top, #c2f59a, #b1f27e);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#c2f59a', EndColorStr='#b1f27e');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-lime:hover,
.button-small-lime:focus {
  text-decoration: none !important;
  background-color: #b8f389;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b1f27e), to(#c2f59a));
  background-image: -webkit-linear-gradient(top, #b1f27e, #c2f59a);
  background-image: -moz-linear-gradient(top, #b1f27e, #c2f59a);
  background-image: -o-linear-gradient(top, #b1f27e, #c2f59a);
  background-image: linear-gradient(top, #b1f27e, #c2f59a);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#b1f27e', EndColorStr='#c2f59a');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #b1f27e;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
}
.button-small-yellow {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #f5fe84;
  color: #333333 !important;
  line-height: 18px;
  background-color: #f6fe96;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f7fea2), to(#f5fe84));
  background-image: -webkit-linear-gradient(top, #f7fea2, #f5fe84);
  background-image: -moz-linear-gradient(top, #f7fea2, #f5fe84);
  background-image: -o-linear-gradient(top, #f7fea2, #f5fe84);
  background-image: linear-gradient(top, #f7fea2, #f5fe84);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f7fea2', EndColorStr='#f5fe84');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-yellow:hover,
.button-small-yellow:focus {
  text-decoration: none !important;
  background-color: #f6fe90;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5fe84), to(#f7fea2));
  background-image: -webkit-linear-gradient(top, #f5fe84, #f7fea2);
  background-image: -moz-linear-gradient(top, #f5fe84, #f7fea2);
  background-image: -o-linear-gradient(top, #f5fe84, #f7fea2);
  background-image: linear-gradient(top, #f5fe84, #f7fea2);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f5fe84', EndColorStr='#f7fea2');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #f5fe84;
  color: #333333 !important;
  line-height: 18px;
}
.button-small-orangelite {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #ffd885;
  color: #333333 !important;
  line-height: 18px;
  background-color: #ffde97;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffe2a4), to(#ffd885));
  background-image: -webkit-linear-gradient(top, #ffe2a4, #ffd885);
  background-image: -moz-linear-gradient(top, #ffe2a4, #ffd885);
  background-image: -o-linear-gradient(top, #ffe2a4, #ffd885);
  background-image: linear-gradient(top, #ffe2a4, #ffd885);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffe2a4', EndColorStr='#ffd885');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-orangelite:hover,
.button-small-orangelite:focus {
  text-decoration: none !important;
  background-color: #ffdc91;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd885), to(#ffe2a4));
  background-image: -webkit-linear-gradient(top, #ffd885, #ffe2a4);
  background-image: -moz-linear-gradient(top, #ffd885, #ffe2a4);
  background-image: -o-linear-gradient(top, #ffd885, #ffe2a4);
  background-image: linear-gradient(top, #ffd885, #ffe2a4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffd885', EndColorStr='#ffe2a4');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #ffd885;
  color: #333333 !important;
  line-height: 18px;
}
.button-small-orange {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #ffa366;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
  background-color: #ffae78;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb585), to(#ffa366));
  background-image: -webkit-linear-gradient(top, #ffb585, #ffa366);
  background-image: -moz-linear-gradient(top, #ffb585, #ffa366);
  background-image: -o-linear-gradient(top, #ffb585, #ffa366);
  background-image: linear-gradient(top, #ffb585, #ffa366);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffb585', EndColorStr='#ffa366');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-orange:hover,
.button-small-orange:focus {
  text-decoration: none !important;
  background-color: #ffaa72;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffa366), to(#ffb585));
  background-image: -webkit-linear-gradient(top, #ffa366, #ffb585);
  background-image: -moz-linear-gradient(top, #ffa366, #ffb585);
  background-image: -o-linear-gradient(top, #ffa366, #ffb585);
  background-image: linear-gradient(top, #ffa366, #ffb585);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffa366', EndColorStr='#ffb585');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #ffa366;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
}
.button-small-salmon {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #ff9885;
  color: #333333 !important;
  line-height: 18px;
  background-color: #ffa897;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb2a4), to(#ff9885));
  background-image: -webkit-linear-gradient(top, #ffb2a4, #ff9885);
  background-image: -moz-linear-gradient(top, #ffb2a4, #ff9885);
  background-image: -o-linear-gradient(top, #ffb2a4, #ff9885);
  background-image: linear-gradient(top, #ffb2a4, #ff9885);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffb2a4', EndColorStr='#ff9885');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-salmon:hover,
.button-small-salmon:focus {
  text-decoration: none !important;
  background-color: #ffa291;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ff9885), to(#ffb2a4));
  background-image: -webkit-linear-gradient(top, #ff9885, #ffb2a4);
  background-image: -moz-linear-gradient(top, #ff9885, #ffb2a4);
  background-image: -o-linear-gradient(top, #ff9885, #ffb2a4);
  background-image: linear-gradient(top, #ff9885, #ffb2a4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ff9885', EndColorStr='#ffb2a4');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #ff9885;
  color: #333333 !important;
  line-height: 18px;
}
.button-small-pink {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #f5809f;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
  background-color: #f691ac;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f79cb4), to(#f5809f));
  background-image: -webkit-linear-gradient(top, #f79cb4, #f5809f);
  background-image: -moz-linear-gradient(top, #f79cb4, #f5809f);
  background-image: -o-linear-gradient(top, #f79cb4, #f5809f);
  background-image: linear-gradient(top, #f79cb4, #f5809f);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f79cb4', EndColorStr='#f5809f');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-pink:hover,
.button-small-pink:focus {
  text-decoration: none !important;
  background-color: #f68ba8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5809f), to(#f79cb4));
  background-image: -webkit-linear-gradient(top, #f5809f, #f79cb4);
  background-image: -moz-linear-gradient(top, #f5809f, #f79cb4);
  background-image: -o-linear-gradient(top, #f5809f, #f79cb4);
  background-image: linear-gradient(top, #f5809f, #f79cb4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f5809f', EndColorStr='#f79cb4');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #f5809f;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
}
.button-small-purple {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #e87aea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
  background-color: #eb8aed;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ed94ee), to(#e87aea));
  background-image: -webkit-linear-gradient(top, #ed94ee, #e87aea);
  background-image: -moz-linear-gradient(top, #ed94ee, #e87aea);
  background-image: -o-linear-gradient(top, #ed94ee, #e87aea);
  background-image: linear-gradient(top, #ed94ee, #e87aea);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ed94ee', EndColorStr='#e87aea');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-purple:hover,
.button-small-purple:focus {
  text-decoration: none !important;
  background-color: #ea85ec;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e87aea), to(#ed94ee));
  background-image: -webkit-linear-gradient(top, #e87aea, #ed94ee);
  background-image: -moz-linear-gradient(top, #e87aea, #ed94ee);
  background-image: -o-linear-gradient(top, #e87aea, #ed94ee);
  background-image: linear-gradient(top, #e87aea, #ed94ee);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#e87aea', EndColorStr='#ed94ee');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #e87aea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
}
.button-small-violet {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #a27aea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
  background-color: #ad8aed;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b494ee), to(#a27aea));
  background-image: -webkit-linear-gradient(top, #b494ee, #a27aea);
  background-image: -moz-linear-gradient(top, #b494ee, #a27aea);
  background-image: -o-linear-gradient(top, #b494ee, #a27aea);
  background-image: linear-gradient(top, #b494ee, #a27aea);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#b494ee', EndColorStr='#a27aea');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-violet:hover,
.button-small-violet:focus {
  text-decoration: none !important;
  background-color: #a985ec;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#a27aea), to(#b494ee));
  background-image: -webkit-linear-gradient(top, #a27aea, #b494ee);
  background-image: -moz-linear-gradient(top, #a27aea, #b494ee);
  background-image: -o-linear-gradient(top, #a27aea, #b494ee);
  background-image: linear-gradient(top, #a27aea, #b494ee);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#a27aea', EndColorStr='#b494ee');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #a27aea;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
}
.button-small-red {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #fa4141;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
  background-color: #fa5353;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fb5f5f), to(#fa4141));
  background-image: -webkit-linear-gradient(top, #fb5f5f, #fa4141);
  background-image: -moz-linear-gradient(top, #fb5f5f, #fa4141);
  background-image: -o-linear-gradient(top, #fb5f5f, #fa4141);
  background-image: linear-gradient(top, #fb5f5f, #fa4141);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#fb5f5f', EndColorStr='#fa4141');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-red:hover,
.button-small-red:focus {
  text-decoration: none !important;
  background-color: #fa4d4d;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fa4141), to(#fb5f5f));
  background-image: -webkit-linear-gradient(top, #fa4141, #fb5f5f);
  background-image: -moz-linear-gradient(top, #fa4141, #fb5f5f);
  background-image: -o-linear-gradient(top, #fa4141, #fb5f5f);
  background-image: linear-gradient(top, #fa4141, #fb5f5f);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#fa4141', EndColorStr='#fb5f5f');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #fa4141;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
}
.button-small-wood {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #edd7b2;
  color: #333333 !important;
  line-height: 18px;
  background-color: #f0dfc1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f3e4cb), to(#edd7b2));
  background-image: -webkit-linear-gradient(top, #f3e4cb, #edd7b2);
  background-image: -moz-linear-gradient(top, #f3e4cb, #edd7b2);
  background-image: -o-linear-gradient(top, #f3e4cb, #edd7b2);
  background-image: linear-gradient(top, #f3e4cb, #edd7b2);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f3e4cb', EndColorStr='#edd7b2');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-wood:hover,
.button-small-wood:focus {
  text-decoration: none !important;
  background-color: #efdcbc;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#edd7b2), to(#f3e4cb));
  background-image: -webkit-linear-gradient(top, #edd7b2, #f3e4cb);
  background-image: -moz-linear-gradient(top, #edd7b2, #f3e4cb);
  background-image: -o-linear-gradient(top, #edd7b2, #f3e4cb);
  background-image: linear-gradient(top, #edd7b2, #f3e4cb);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#edd7b2', EndColorStr='#f3e4cb');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #edd7b2;
  color: #333333 !important;
  line-height: 18px;
}
.button-small-black {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #1b1b1b;
  color: #ffffff !important;
  line-height: 18px;
  background-color: #242424;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2a2a2a), to(#1b1b1b));
  background-image: -webkit-linear-gradient(top, #2a2a2a, #1b1b1b);
  background-image: -moz-linear-gradient(top, #2a2a2a, #1b1b1b);
  background-image: -o-linear-gradient(top, #2a2a2a, #1b1b1b);
  background-image: linear-gradient(top, #2a2a2a, #1b1b1b);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#2a2a2a', EndColorStr='#1b1b1b');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-black:hover,
.button-small-black:focus {
  text-decoration: none !important;
  background-color: #212121;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1b1b1b), to(#2a2a2a));
  background-image: -webkit-linear-gradient(top, #1b1b1b, #2a2a2a);
  background-image: -moz-linear-gradient(top, #1b1b1b, #2a2a2a);
  background-image: -o-linear-gradient(top, #1b1b1b, #2a2a2a);
  background-image: linear-gradient(top, #1b1b1b, #2a2a2a);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#1b1b1b', EndColorStr='#2a2a2a');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #1b1b1b;
  color: #ffffff !important;
  line-height: 18px;
}
.button-small-white {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  color: #333333 !important;
  line-height: 18px;
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #ffffff, #ffffff);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff);
  background-image: -o-linear-gradient(top, #ffffff, #ffffff);
  background-image: linear-gradient(top, #ffffff, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffffff', EndColorStr='#ffffff');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-white:hover,
.button-small-white:focus {
  text-decoration: none !important;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #ffffff, #ffffff);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff);
  background-image: -o-linear-gradient(top, #ffffff, #ffffff);
  background-image: linear-gradient(top, #ffffff, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#ffffff', EndColorStr='#ffffff');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #ffffff;
  color: #333333 !important;
  line-height: 18px;
}
.button-small-gray {
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* IE fix */

  border: 1px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  -moz-box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(255,255,255,.3);
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #767676;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
  background-color: #7f7f7f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#858585), to(#767676));
  background-image: -webkit-linear-gradient(top, #858585, #767676);
  background-image: -moz-linear-gradient(top, #858585, #767676);
  background-image: -o-linear-gradient(top, #858585, #767676);
  background-image: linear-gradient(top, #858585, #767676);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#858585', EndColorStr='#767676');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
}
.button-small-gray:hover,
.button-small-gray:focus {
  text-decoration: none !important;
  background-color: #7c7c7c;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#767676), to(#858585));
  background-image: -webkit-linear-gradient(top, #767676, #858585);
  background-image: -moz-linear-gradient(top, #767676, #858585);
  background-image: -o-linear-gradient(top, #767676, #858585);
  background-image: linear-gradient(top, #767676, #858585);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#767676', EndColorStr='#858585');
  -webkit-transition: all 0.2 linear 0.2s ease-out 0;
  -moz-transition: all 0.2 linear 0.2s ease-out 0s;
  -o-transition: all 0.2 linear 0.2s ease-out 0;
  transition: all 0.2 linear 0.2s ease-out 0;
  display: block;
  font-size: 14px;
  line-height: 14px;
  padding: 4px 6px;
  font-weight: normal;
  background-color: #767676;
  color: #333333 !important;
  color: #ffffff !important;
  line-height: 18px;
}
/* SOLID BLOCK */
.block-sky {
  background-color: #7ac0ea;
}
.block-blue {
  background-color: #3373cc;
}
.block-green {
  background-color: #66cc99;
}
.block-lime {
  background-color: #b1f27e;
}
.block-yellow {
  background-color: #f5fe84;
}
.block-orangelite {
  background-color: #ffd885;
}
.block-orange {
  background-color: #ffa366;
}
.block-salmon {
  background-color: #ff9885;
}
.block-pink {
  background-color: #f5809f;
}
.block-purple {
  background-color: #e87aea;
}
.block-violet {
  background-color: #a27aea;
}
.block-red {
  background-color: #fa4141;
}
.block-wood {
  background-color: #edd7b2;
}
.block-black {
  background-color: #1b1b1b;
}
.block-white {
  background-color: #ffffff;
}
.block-gray {
  background-color: #767676;
}

