/* --------------------------------------------------------------------------------------
+
+   AUTHOR: Plakarstudio
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ BASIC STYLES
+
-------------------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* --------------------------------------------------------------------------------------
+
+ VARIABLES
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ MIXINS
+
-------------------------------------------------------------------------------------- */
/* BOX SIZING */
/* TRANSITION */
/* LINE-HIGH */
/* FIRST CHILD */
/* BGR IMAGE */
/* CSS3 PIE */
html {
  background-color: #e2f7ff;
}

body {
  color: #535353;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

h2 {
  font-size: 36px;
  color: #59b5cd;
  margin-bottom: 30px;
}

h3 {
  font-size: 36px;
  color: #59b5cd;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d4d4d4;
  border-color: rgba(89, 181, 205, 0.15);
  behavior: url(../PIE-1.0.0/PIE.htc);
}

a {
  outline: none;
  /* removing outline in Mozilla */
  text-decoration: none;
  color: #59b5cd;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  color: #3a7109;
}

p {
  font-weight: 300;
}

img {
  vertical-align: top;
}

table {
  width: 100%;
}

strong {
  font-weight: bold;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

::-moz-selection {
  background: #3a7109;
  color: white;
  text-shadow: none;
}

::selection {
  background: #3a7109;
  color: white;
  text-shadow: none;
}

.hide {
  display: none !important;
}

button:hover,
input[type="submit"]:hover,
label {
  cursor: pointer;
}

textarea {
  margin: 0;
  /* removing margin in Mozilla */
  overflow: auto;
  /* for IE and older browsers */
}

/* align checkboxes, radios, text inputs with their label */
input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
  *vertical-align: baseline;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

button::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* --------------------------------------------------------------------------------------
+
+ LAYOUT
+
-------------------------------------------------------------------------------------- */
html, body {
  height: 100%;
}

.layout {
  clear: both;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin-bottom: -211px;
}
.layout .layout_footer {
  height: 211px;
}

footer {
  clear: both;
  position: relative;
  height: 211px;
}

.layout {
  position: relative;
  background-color: #FFF;
}

.container {
  margin: 0 auto;
  width: 950px;
}

.left {
  float: left;
}

.right {
  float: right;
}

@media all and (max-width: 1920px) {
  .layout {
    -webkit-background-size: normal !important;
    -moz-background-size: normal !important;
    -o-background-size: normal !important;
    background-size: normal !important;
  }
}
/* --------------------------------------------------------------------------------------
+
+ BUTTONS
+
-------------------------------------------------------------------------------------- */
.btn {
  height: 61px;
  line-height: 61px;
  text-align: center;
  padding: 0 30px;
  color: white;
  background-color: #3a7109;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  -moz-user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-size: 24px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
  white-space: nowrap;
}
.btn {
  *display: inline;
}
.btn:hover {
  background-color: #43810c;
  border-color: #43810c;
  color: #fff;
}
.mcbride .btn {
  border-color: #009755 !important;
  color: #009755;
}
.mcbride .btn:hover {
  background-color: #009755;
  color: #fff;
}
.easyday .btn {
  border-color: #19a9dd !important;
  color: #19a9dd;
}
.easyday .btn:hover {
  background-color: #19a9dd;
  color: #fff;
}
.fmcg .btn {
  border-color: #094d8f !important;
  color: #094d8f;
}
.fmcg .btn:hover {
  background-color: #094d8f;
  color: #fff;
}
.btn.btn-g {
  background-color: #009755;
}
.btn.btn-g:hover {
  background-color: #008644;
}
.btn.btn-lb {
  background-color: #19a9dd;
}
.btn.btn-lb:hover {
  background-color: #0898cc;
}
.btn.btn-b {
  background-color: #094d8f;
}
.btn.btn-b:hover {
  background-color: #003c7e;
}

/* --------------------------------------------------------------------------------------
+
+ HEADER
+
-------------------------------------------------------------------------------------- */
header {
  height: 105px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: #FFF;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 300;
}
header .container {
  padding-top: 25px;
}
header .logo {
  float: left;
  width: 242px;
  height: 65px;
  text-indent: -9999px;
  background: url('../images/logo.png') no-repeat 0 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .logo:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
header nav {
  float: right;
  margin-top: 28px;
  line-height: 1;
}
header li {
  float: left;
  margin-left: 40px;
}
header li a {
  font-size: 24px;
  color: #535353;
  text-transform: uppercase;
}
header li a:hover, header li a.active {
  color: #59b5cd;
}

/* --------------------------------------------------------------------------------------
+
+ FOOTER
+
-------------------------------------------------------------------------------------- */
footer {
  background-color: #e2f7ff;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: normal;
  border-top: 1px solid #D2EFF7;
}
footer .container {
  padding-top: 30px;
}
footer li {
  display: inline;
}
footer nav li {
  margin: 0 15px;
}
footer small {
  font-size: 12px;
  height: 28px;
  line-height: 29px;
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}
footer small:before, footer small:after {
  content: '';
  width: 260px;
  height: 1px;
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -130px;
  background-color: #CDEDF7;
}
footer small:before {
  top: 0;
}
footer small:before {
  bottom: 0;
}
footer a {
  color: #535353;
}
footer a:hover, footer a.active {
  color: #59b5cd;
}

.social {
  margin: 15px 0 30px 0;
}
.social li {
  margin: 0 5px;
}
.social a {
  width: 24px;
  height: 24px;
  display: inline-block;
  text-indent: -9999px;
  background: url('../images/icons.png') no-repeat 0 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  zoom: 1;
  *display: inline;
}
.social a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}
.social a.fb {
  background-position: -24px 0;
}

/* --------------------------------------------------------------------------------------
+
+ SLIDER
+
-------------------------------------------------------------------------------------- */
/* v1.0.4 */
/* Core RS CSS file. 95% of time you shouldn't change anything here. */
.royalSlider {
  margin: 0 auto;
  min-width: 950px;
  width: 100%;
  height: 460px;
  position: relative;
  direction: ltr;
}

.royalSlider > * {
  float: left;
}

.rsWebkit3d .rsSlide,
.rsWebkit3d .rsContainer,
.rsWebkit3d .rsThumbs,
.rsWebkit3d .rsPreloader,
.rsWebkit3d img,
.rsWebkit3d .rsOverflow,
.rsWebkit3d .rsBtnCenterer,
.rsWebkit3d .rsAbsoluteEl,
.rsWebkit3d .rsABlock,
.rsWebkit3d .rsLink {
  -webkit-backface-visibility: hidden;
}

.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
  -webkit-transform: none;
}

.rsOverflow {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  float: left;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsVisibleNearbyWrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  left: 0;
  top: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsVisibleNearbyWrap .rsOverflow {
  position: absolute;
  left: 0;
  top: 0;
}

.rsContainer {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsArrow,
.rsThumbsArrow {
  cursor: pointer;
}

.rsThumb {
  float: left;
  position: relative;
}

.rsArrow,
.rsNav,
.rsThumbsArrow {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.rsHidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  -moz-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  -o-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  transition: visibility 0s linear 0.3s,opacity 0.3s linear;
}

.rsGCaption {
  width: 100%;
  float: left;
  text-align: center;
}

/* Fullscreen options, very important ^^ */
.royalSlider.rsFullscreen {
  position: fixed !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 2147483647 !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
}

.royalSlider .rsSlide.rsFakePreloader {
  opacity: 1 !important;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  display: none;
}

.rsSlide {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.royalSlider.rsAutoHeight,
.rsAutoHeight .rsSlide {
  height: auto;
}

.rsContent {
  width: 100%;
  height: 100%;
  position: relative;
}

.rsPreloader {
  position: absolute;
  z-index: 0;
}

.rsNav {
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  user-select: none;
}

.rsNavItem {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
}

.rsThumbs {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  float: left;
  z-index: 22;
}

.rsTabs {
  float: left;
  background: none !important;
}

.rsTabs,
.rsThumbs {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsVideoContainer {
  /*left: 0;
  top: 0;
  position: absolute;*/
  /*width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  float: left;*/
  width: auto;
  height: auto;
  line-height: 0;
  position: relative;
}

.rsVideoFrameHolder {
  position: absolute;
  left: 0;
  top: 0;
  background: #141414;
  opacity: 0;
  -webkit-transition: .3s;
}

.rsVideoFrameHolder.rsVideoActive {
  opacity: 1;
}

.rsVideoContainer iframe,
.rsVideoContainer video,
.rsVideoContainer embed,
.rsVideoContainer .rsVideoObj {
  position: absolute;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* ios controls over video bug, shifting video */
.rsVideoContainer.rsIOSVideo iframe,
.rsVideoContainer.rsIOSVideo video,
.rsVideoContainer.rsIOSVideo embed {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 44px;
}

.rsABlock {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 15;
}

img.rsImg {
  max-width: none;
}

.grab-cursor {
  cursor: url(grab.png) 8 8, move;
}

.grabbing-cursor {
  cursor: url(grabbing.png) 8 8, move;
}

.rsNoDrag {
  cursor: auto;
}

.rsLink {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20;
  background: url(blank.gif);
}

#content-slider {
  -webkit-transition: all 0.3s ease 1s;
  -moz-transition: all 0.3s ease 1s;
  -ms-transition: all 0.3s ease 1s;
  -o-transition: all 0.3s ease 1s;
  transition: all 0.3s ease 1s;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
#content-slider.loaded {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.slider-wrap {
  background: url('../images/slider-bgr.png') repeat-x 50% 0;
}

#content-slider .rsSlide {
  color: #fff;
  overflow: hidden;
}
#content-slider .rsSlide > div {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  color: #fff;
}

.slide1 {
  background: url('../images/slider01.jpg?1376567878') no-repeat 50% 0;
}
.slide1 em {
  margin-left: 100px;
}
.slide1 .container {
  padding-top: 105px;
}
.slide1 .container h2 {
  line-height: 1.33;
}

.slide2 {
  background: url('../images/slider02.jpg?1376567816') no-repeat 50% 0;
}

.slide3 {
  background: url('../images/slider03.jpg?1376567972') no-repeat 50% 0;
}

.slide4 {
  background: url('../images/slider04.jpg?1376568153') no-repeat 50% 0;
}

.slide2, .slide3, .slide4 {
  text-align: center;
}
.slide2 .btn, .slide3 .btn, .slide4 .btn {
  margin: 370px auto 0 auto;
}

/* NAV */
.rsArrow {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  background: url('../images/slider-nav.png') no-repeat 0 0;
  top: 50%;
  margin-top: -20px;
  left: 50%;
  margin-left: -515px;
  z-index: 300;
}
.rsArrow.rsArrowRight {
  background-position: -40px 0;
  margin-left: 515px;
}

/* --------------------------------------------------------------------------------------
+
+ CONTENT
+
-------------------------------------------------------------------------------------- */
.subheader, .slider-wrap {
  margin-top: -107px;
  padding-top: 107px;
  background: url('../images/bgr.jpg') no-repeat 0 0;
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  background-color: #e2f7ff;
  background-position: 50% 0;
  position: relative;
  z-index: 50;
}

.subheader .container {
  height: 430px;
  display: table;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: all 1.5s ease 1s;
  -moz-transition: all 1.5s ease 1s;
  -ms-transition: all 1.5s ease 1s;
  -o-transition: all 1.5s ease 1s;
  transition: all 1.5s ease 1s;
}
.subheader .container p {
  padding: 0 80px;
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  font-size: 40px;
  line-height: 1.25;
  text-align: center;
  font-weight: 200;
  background: url('../images/leaf1.png') no-repeat 0 0;
  background-position: 50% 50%;
}
.contact .subheader .container {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.subheader.loaded .container {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.content {
  background-color: #FFF;
  padding: 60px 0 100px 0;
  border-top: 1px solid #D2EFF7;
}
.content .container {
  padding: 0 20px;
}

.box {
  height: 100%;
  width: 100%;
  background-color: #FFF;
  overflow: hidden;
}

.col3 section {
  width: 276px;
  float: left;
  margin-left: 50px;
}
.col3 section:first-child {
  margin-left: 0;
}
.col3 img {
  width: 230px;
  height: 230px;
  display: block;
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  margin: 0 20px;
  margin-bottom: 30px;
  behavior: url(../PIE-1.0.0/PIE.htc);
  position: relative;
  z-index: 300;
}
.col3 p {
  margin-bottom: 30px;
  text-align: justify;
}
.col3 .btn {
  width: 225px;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #FFF;
  border: 1px solid #d4d4d4;
}

.mcbride img {
  border-color: #009755;
}

.easyday img {
  border-color: #19a9dd;
}

.fmcg img {
  border-color: #094d8f;
}

/* ABOUT */
.lemon {
  margin: 0 auto;
  padding-top: 114px;
  width: 420px;
  background: url('../images/lemon1.png') no-repeat 0 0;
  background-position: 100% 0;
  text-align: center;
}
.lemon .btn {
  margin-bottom: 30px;
}

.contact .subheader {
  padding-bottom: 40px;
}
.contact .subheader .container {
  padding-top: 92px;
  background: url('../images/leaf2.png') no-repeat 0 0;
  background-position: 220px 54px;
}
.contact .subheader span {
  color: #59b5cd;
}
.contact .subheader ul {
  margin-bottom: 60px;
  overflow: hidden;
}
.contact .subheader li {
  float: left;
  width: 290px;
  margin-left: 40px;
}
.contact .subheader li:first-child {
  margin-left: 0;
}
.contact .subheader dl {
  margin-top: 10px;
  line-height: 1.5;
}
.contact .subheader dl:first-child {
  margin-top: 0;
}
.contact .subheader dt {
  float: left;
  color: #59b5cd;
  margin-right: 5px;
}
.contact .subheader dd {
  color: #535353;
}

.products {
  background-color: transparent !important;
  background: url('../images/bgr.jpg') no-repeat 0 0;
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  background-position: 50% 0;
}
.products .content {
  background-color: transparent !important;
  padding-top: 0;
  border-top: none;
}
.products .content .container {
  background: url('../images/leaf3.png') no-repeat 0 0;
  background-position: 100% 15px;
  padding: 0;
  padding-top: 100px;
}
.products + footer {
  border-top: none;
}

/* --------------------------------------------------------------------------------------
+
+ FORMS
+
-------------------------------------------------------------------------------------- */
form {
  width: 100%;
  padding: 30px 0;
  overflow: hidden;
}
form input[type="text"],
form textarea {
  vertical-align: middle;
  font-family: "Source Sans Pro", sans-serif;
  color: #535353;
  background-color: #fff;
  padding: 0 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 433px;
  font-size: 24px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border: 1px solid #d4d4d4;
  background-color: #fff;
  font-weight: 200;
  float: left;
  margin-bottom: 28px;
}
form input[type="text"]:hover, form input[type="text"]:focus,
form textarea:hover,
form textarea:focus {
  border-color: #59b5cd;
  color: #59b5cd;
}
form input[type="text"].placeholder,
form textarea.placeholder {
  color: #cacaca;
}
form input {
  clear: left;
  height: 59px;
  line-height: 59px;
}
form textarea {
  min-height: 140px;
  resize: none !important;
  line-height: 1.5;
  padding: 5px 10px;
  float: right;
}
form fieldset {
  width: 460px;
  float: left;
}
form button {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 200;
  border: none;
  clear: right;
  float: right;
}

/* --------------------------------------------------------------------------------------
+
+ TABS
+
-------------------------------------------------------------------------------------- */
.tabs {
  position: relative;
}

.tabs-buttons {
  overflow: hidden;
}
.tabs-buttons li {
  float: left;
  margin-left: 7px;
}
.tabs-buttons li:first-child {
  margin-left: 0;
}
.tabs-buttons li.active {
  padding-bottom: 7px;
  background-color: #FFF;
}
.tabs-buttons a {
  width: 312px;
  height: 61px;
  line-height: 61px;
  display: block;
  background-color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
  color: #535353;
  text-indent: -9999px;
  background-position: 50% 50%;
}

.tab-item {
  background-color: #FFF;
  padding: 60px 40px;
  width: 870px;
}
.tab-item ul {
  overflow: hidden;
  margin: -20px -43px;
}
.tab-item li {
  width: 262px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin: 20px 23px;
}
.tab-item li img {
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  display: block;
  margin: 0 20px 20px;
}
.tab-item li span {
  width: 100%;
  clear: both;
  font-size: 24px;
  font-weight: 200;
  text-align: center;
}
.tab-item .active-tab li {
  position: relative;
  z-index: 100;
}

.button1 {
  background: url('../images/tab-mcbride.png') no-repeat 0 0;
}

.button2 {
  background: url('../images/tab-easyday.png') no-repeat 0 0;
}

.button3 {
  background: url('../images/tab-fmcg.png') no-repeat 0 0;
}

/*
@import "tables";
*/
