/**
 * @package	WebTogether
 * @author	Owen Kavanagh / Kieron Keenan
 */
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,400italic,700italic);
@import url("http://fast.fonts.net/t/1.css?apiType=css&projectid=c7e047d8-28ff-4765-a76b-ed9807733abf");
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.animated {
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  -o-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both; }

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px); } }

@-o-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0); }
  40% {
    -o-transform: translateY(-30px); }
  60% {
    -o-transform: translateY(-15px); } }

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0); }
  40% {
    -moz-transform: translateY(-30px); }
  60% {
    -moz-transform: translateY(-15px); } }

.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce; }

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3); }
  50% {
    opacity: 1;
    transform: scale(1.05); }
  70% {
    transform: scale(0.9); }
  100% {
    transform: scale(1); } }

@-webkit-keyframes bounce-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1); } }

@-o-keyframes bounce-in {
  0% {
    opacity: 0;
    -o-transform: scale(0.3); }
  50% {
    opacity: 1;
    -o-transform: scale(1.05); }
  70% {
    -o-transform: scale(0.9); }
  100% {
    -o-transform: scale(1); } }

@-moz-keyframes bounce-in {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3); }
  50% {
    opacity: 1;
    -moz-transform: scale(1.05); }
  70% {
    -moz-transform: scale(0.9); }
  100% {
    -moz-transform: scale(1); } }

.bounce-in {
  -webkit-animation-name: bounce-in;
  -moz-animation-name: bounce-in;
  -o-animation-name: bounce-in;
  animation-name: bounce-in; }

@keyframes bounce-down-in {
  0% {
    opacity: 0;
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    transform: translateY(30px); }
  80% {
    transform: translateY(-10px); }
  100% {
    transform: translateY(0); } }

@-webkit-keyframes bounce-down-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0); } }

@-o-keyframes bounce-down-in {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -o-transform: translateY(30px); }
  80% {
    -o-transform: translateY(-10px); }
  100% {
    -o-transform: translateY(0); } }

@-moz-keyframes bounce-down-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -moz-transform: translateY(30px); }
  80% {
    -moz-transform: translateY(-10px); }
  100% {
    -moz-transform: translateY(0); } }

.bounce-down-in {
  -webkit-animation-name: bounce-down-in;
  -moz-animation-name: bounce-down-in;
  -o-animation-name: bounce-down-in;
  animation-name: bounce-down-in; }

@keyframes bounce-left-in {
  0% {
    opacity: 0;
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    transform: translateX(30px); }
  80% {
    transform: translateX(-10px); }
  100% {
    transform: translateX(0); } }

@-webkit-keyframes bounce-left-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0); } }

@-o-keyframes bounce-left-in {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -o-transform: translateX(30px); }
  80% {
    -o-transform: translateX(-10px); }
  100% {
    -o-transform: translateX(0); } }

@-moz-keyframes bounce-left-in {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -moz-transform: translateX(30px); }
  80% {
    -moz-transform: translateX(-10px); }
  100% {
    -moz-transform: translateX(0); } }

.bounce-left-in {
  -webkit-animation-name: bounce-left-in;
  -moz-animation-name: bounce-left-in;
  -o-animation-name: bounce-left-in;
  animation-name: bounce-left-in; }

@keyframes bounce-right-in {
  0% {
    opacity: 0;
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    transform: translateX(-30px); }
  80% {
    transform: translateX(10px); }
  100% {
    transform: translateX(0); } }

@-webkit-keyframes bounce-right-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0); } }

@-o-keyframes bounce-right-in {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px); }
  60% {
    opacity: 1;
    -o-transform: translateX(-30px); }
  80% {
    -o-transform: translateX(10px); }
  100% {
    -o-transform: translateX(0); } }

@-moz-keyframes bounce-right-in {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px); }
  60% {
    opacity: 1;
    -moz-transform: translateX(-30px); }
  80% {
    -moz-transform: translateX(10px); }
  100% {
    -moz-transform: translateX(0); } }

.bounce-right-in {
  -webkit-animation-name: bounce-right-in;
  -moz-animation-name: bounce-right-in;
  -o-animation-name: bounce-right-in;
  animation-name: bounce-right-in; }

@keyframes bounce-up-in {
  0% {
    opacity: 0;
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    transform: translateY(-30px); }
  80% {
    transform: translateY(10px); }
  100% {
    transform: translateY(0); } }

@-webkit-keyframes bounce-up-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0); } }

@-o-keyframes bounce-up-in {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px); }
  60% {
    opacity: 1;
    -o-transform: translateY(-30px); }
  80% {
    -o-transform: translateY(10px); }
  100% {
    -o-transform: translateY(0); } }

@-moz-keyframes bounce-up-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px); }
  60% {
    opacity: 1;
    -moz-transform: translateY(-30px); }
  80% {
    -moz-transform: translateY(10px); }
  100% {
    -moz-transform: translateY(0); } }

.bounce-up-in {
  -webkit-animation-name: bounce-up-in;
  -moz-animation-name: bounce-up-in;
  -o-animation-name: bounce-up-in;
  animation-name: bounce-up-in; }

@keyframes bounce-out {
  0% {
    transform: scale(1); }
  25% {
    transform: scale(0.95); }
  50% {
    opacity: 1;
    transform: scale(1.1); }
  100% {
    opacity: 0;
    transform: scale(0.3); } }

@-webkit-keyframes bounce-out {
  0% {
    -webkit-transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3); } }

@-o-keyframes bounce-out {
  0% {
    -o-transform: scale(1); }
  25% {
    -o-transform: scale(0.95); }
  50% {
    opacity: 1;
    -o-transform: scale(1.1); }
  100% {
    opacity: 0;
    -o-transform: scale(0.3); } }

@-moz-keyframes bounce-out {
  0% {
    -moz-transform: scale(1); }
  25% {
    -moz-transform: scale(0.95); }
  50% {
    opacity: 1;
    -moz-transform: scale(1.1); }
  100% {
    opacity: 0;
    -moz-transform: scale(0.3); } }

.bounce-out {
  -webkit-animation-name: bounce-out;
  -moz-animation-name: bounce-out;
  -o-animation-name: bounce-out;
  animation-name: bounce-out; }

@keyframes bounce-down-out {
  0% {
    transform: translateY(0); }
  20% {
    opacity: 1;
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    transform: translateY(2000px); } }

@-webkit-keyframes bounce-down-out {
  0% {
    -webkit-transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px); } }

@-o-keyframes bounce-down-out {
  0% {
    -o-transform: translateY(0); }
  20% {
    opacity: 1;
    -o-transform: translateY(-20px); }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px); } }

@-moz-keyframes bounce-down-out {
  0% {
    -moz-transform: translateY(0); }
  20% {
    opacity: 1;
    -moz-transform: translateY(-20px); }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px); } }

.bounce-down-out {
  -webkit-animation-name: bounce-down-out;
  -moz-animation-name: bounce-down-out;
  -o-animation-name: bounce-down-out;
  animation-name: bounce-down-out; }

@keyframes bounce-up-out {
  0% {
    transform: translateY(0); }
  20% {
    opacity: 1;
    transform: translateY(20px); }
  100% {
    opacity: 0;
    transform: translateY(-2000px); } }

@-webkit-keyframes bounce-up-out {
  0% {
    -webkit-transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); } }

@-o-keyframes bounce-up-out {
  0% {
    -o-transform: translateY(0); }
  20% {
    opacity: 1;
    -o-transform: translateY(20px); }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px); } }

@-moz-keyframes bounce-up-out {
  0% {
    -moz-transform: translateY(0); }
  20% {
    opacity: 1;
    -moz-transform: translateY(20px); }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px); } }

.bounce-up-out {
  -webkit-animation-name: bounce-up-out;
  -moz-animation-name: bounce-up-out;
  -o-animation-name: bounce-up-out;
  animation-name: bounce-up-out; }

@keyframes bounce-right-out {
  0% {
    transform: translateX(0); }
  20% {
    opacity: 1;
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    transform: translateX(2000px); } }

@-webkit-keyframes bounce-right-out {
  0% {
    -webkit-transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px); } }

@-o-keyframes bounce-right-out {
  0% {
    -o-transform: translateX(0); }
  20% {
    opacity: 1;
    -o-transform: translateX(-20px); }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px); } }

@-moz-keyframes bounce-right-out {
  0% {
    -moz-transform: translateX(0); }
  20% {
    opacity: 1;
    -moz-transform: translateX(-20px); }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px); } }

.bounce-right-out {
  -webkit-animation-name: bounce-right-out;
  -moz-animation-name: bounce-right-out;
  -o-animation-name: bounce-right-out;
  animation-name: bounce-right-out; }

@keyframes bounce-left-out {
  0% {
    transform: translateX(0); }
  20% {
    opacity: 1;
    transform: translateX(20px); }
  100% {
    opacity: 0;
    transform: translateX(-2000px); } }

@-webkit-keyframes bounce-left-out {
  0% {
    -webkit-transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); } }

@-o-keyframes bounce-left-out {
  0% {
    -o-transform: translateX(0); }
  20% {
    opacity: 1;
    -o-transform: translateX(20px); }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px); } }

@-moz-keyframes bounce-left-out {
  0% {
    -moz-transform: translateX(0); }
  20% {
    opacity: 1;
    -moz-transform: translateX(20px); }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px); } }

.bounce-left-out {
  -webkit-animation-name: bounce-left-out;
  -moz-animation-name: bounce-left-out;
  -o-animation-name: bounce-left-out;
  animation-name: bounce-left-out; }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-o-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.fade-in {
  -webkit-animation-name: fade-in;
  -moz-animation-name: fade-in;
  -o-animation-name: fade-in;
  animation-name: fade-in; }

@keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-o-keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-moz-keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.fade-out {
  -webkit-animation-name: fade-out;
  -moz-animation-name: fade-out;
  -o-animation-name: fade-out;
  animation-name: fade-out; }

@keyframes fade-down-in {
  0% {
    opacity: 0;
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@-webkit-keyframes fade-down-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@-o-keyframes fade-down-in {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }

@-moz-keyframes fade-down-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }

.fade-down-in {
  -webkit-animation-name: fade-down-in;
  -moz-animation-name: fade-down-in;
  -o-animation-name: fade-down-in;
  animation-name: fade-down-in; }

@keyframes fade-down-big-in {
  0% {
    opacity: 0;
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@-webkit-keyframes fade-down-big-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@-o-keyframes fade-down-big-in {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }

@-moz-keyframes fade-down-big-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }

.fade-down-big-in {
  -webkit-animation-name: fade-down-big-in;
  -moz-animation-name: fade-down-big-in;
  -o-animation-name: fade-down-big-in;
  animation-name: fade-down-big-in; }

@keyframes fade-left-in {
  0% {
    opacity: 0;
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@-webkit-keyframes fade-left-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }

@-o-keyframes fade-left-in {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }

@-moz-keyframes fade-left-in {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }

.fade-left-in {
  -webkit-animation-name: fade-left-in;
  -moz-animation-name: fade-left-in;
  -o-animation-name: fade-left-in;
  animation-name: fade-left-in; }

@keyframes fade-left-big-in {
  0% {
    opacity: 0;
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@-webkit-keyframes fade-left-big-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }

@-o-keyframes fade-left-big-in {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }

@-moz-keyframes fade-left-big-in {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }

.fade-left-big-in {
  -webkit-animation-name: fade-left-big-in;
  -moz-animation-name: fade-left-big-in;
  -o-animation-name: fade-left-big-in;
  animation-name: fade-left-big-in; }

@keyframes fade-right-in {
  0% {
    opacity: 0;
    transform: translateX(20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@-webkit-keyframes fade-right-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }

@-o-keyframes fade-right-in {
  0% {
    opacity: 0;
    -o-transform: translateX(20px); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }

@-moz-keyframes fade-right-in {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }

.fade-right-in {
  -webkit-animation-name: fade-right-in;
  -moz-animation-name: fade-right-in;
  -o-animation-name: fade-right-in;
  animation-name: fade-right-in; }

@keyframes fade-right-big-in {
  0% {
    opacity: 0;
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@-webkit-keyframes fade-right-big-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }

@-o-keyframes fade-right-big-in {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px); }
  100% {
    opacity: 1;
    -o-transform: translateX(0); } }

@-moz-keyframes fade-right-big-in {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0); } }

.fade-right-big-in {
  -webkit-animation-name: fade-right-big-in;
  -moz-animation-name: fade-right-big-in;
  -o-animation-name: fade-right-big-in;
  animation-name: fade-right-big-in; }

@keyframes fade-up-in {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@-webkit-keyframes fade-up-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@-o-keyframes fade-up-in {
  0% {
    opacity: 0;
    -o-transform: translateY(20px); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }

@-moz-keyframes fade-up-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }

.fade-up-in {
  -webkit-animation-name: fade-up-in;
  -moz-animation-name: fade-up-in;
  -o-animation-name: fade-up-in;
  animation-name: fade-up-in; }

@keyframes fade-up-big-in {
  0% {
    opacity: 0;
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@-webkit-keyframes fade-up-big-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@-o-keyframes fade-up-big-in {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px); }
  100% {
    opacity: 1;
    -o-transform: translateY(0); } }

@-moz-keyframes fade-up-big-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }

.fade-up-big-in {
  -webkit-animation-name: fade-up-big-in;
  -moz-animation-name: fade-up-big-in;
  -o-animation-name: fade-up-big-in;
  animation-name: fade-up-big-in; }

@keyframes fade-down-out {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(20px); } }

@-webkit-keyframes fade-down-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px); } }

@-o-keyframes fade-down-out {
  0% {
    opacity: 1;
    -o-transform: translateY(0); }
  100% {
    opacity: 0;
    -o-transform: translateY(20px); } }

@-moz-keyframes fade-down-out {
  0% {
    opacity: 1;
    -moz-transform: translateY(0); }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px); } }

.fade-down-out {
  -webkit-animation-name: fade-down-out;
  -moz-animation-name: fade-down-out;
  -o-animation-name: fade-down-out;
  animation-name: fade-down-out; }

@keyframes fade-down-big-out {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(2000px); } }

@-webkit-keyframes fade-down-big-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px); } }

@-o-keyframes fade-down-big-out {
  0% {
    opacity: 1;
    -o-transform: translateY(0); }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px); } }

@-moz-keyframes fade-down-big-out {
  0% {
    opacity: 1;
    -moz-transform: translateY(0); }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px); } }

.fade-down-big-out {
  -webkit-animation-name: fade-down-big-out;
  -moz-animation-name: fade-down-big-out;
  -o-animation-name: fade-down-big-out;
  animation-name: fade-down-big-out; }

@keyframes fade-left-out {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(-20px); } }

@-webkit-keyframes fade-left-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px); } }

@-o-keyframes fade-left-out {
  0% {
    opacity: 1;
    -o-transform: translateX(0); }
  100% {
    opacity: 0;
    -o-transform: translateX(-20px); } }

@-moz-keyframes fade-left-out {
  0% {
    opacity: 1;
    -moz-transform: translateX(0); }
  100% {
    opacity: 0;
    -moz-transform: translateX(-20px); } }

.fade-left-out {
  -webkit-animation-name: fade-left-out;
  -moz-animation-name: fade-left-out;
  -o-animation-name: fade-left-out;
  animation-name: fade-left-out; }

@keyframes fade-left-big-out {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(-2000px); } }

@-webkit-keyframes fade-left-big-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); } }

@-o-keyframes fade-left-big-out {
  0% {
    opacity: 1;
    -o-transform: translateX(0); }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px); } }

@-moz-keyframes fade-left-big-out {
  0% {
    opacity: 1;
    -moz-transform: translateX(0); }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px); } }

.fade-left-big-out {
  -webkit-animation-name: fade-left-big-out;
  -moz-animation-name: fade-left-big-out;
  -o-animation-name: fade-left-big-out;
  animation-name: fade-left-big-out; }

@keyframes fade-right-out {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(20px); } }

@-webkit-keyframes fade-right-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px); } }

@-o-keyframes fade-right-out {
  0% {
    opacity: 1;
    -o-transform: translateX(0); }
  100% {
    opacity: 0;
    -o-transform: translateX(20px); } }

@-moz-keyframes fade-right-out {
  0% {
    opacity: 1;
    -moz-transform: translateX(0); }
  100% {
    opacity: 0;
    -moz-transform: translateX(20px); } }

.fade-right-out {
  -webkit-animation-name: fade-right-out;
  -moz-animation-name: fade-right-out;
  -o-animation-name: fade-right-out;
  animation-name: fade-right-out; }

@keyframes fade-right-big-out {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(2000px); } }

@-webkit-keyframes fade-right-big-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px); } }

@-o-keyframes fade-right-big-out {
  0% {
    opacity: 1;
    -o-transform: translateX(0); }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px); } }

@-moz-keyframes fade-right-big-out {
  0% {
    opacity: 1;
    -moz-transform: translateX(0); }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px); } }

.fade-right-big-out {
  -webkit-animation-name: fade-right-big-out;
  -moz-animation-name: fade-right-big-out;
  -o-animation-name: fade-right-big-out;
  animation-name: fade-right-big-out; }

@keyframes fade-up-out {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-20px); } }

@-webkit-keyframes fade-up-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px); } }

@-o-keyframes fade-up-out {
  0% {
    opacity: 1;
    -o-transform: translateY(0); }
  100% {
    opacity: 0;
    -o-transform: translateY(-20px); } }

@-moz-keyframes fade-up-out {
  0% {
    opacity: 1;
    -moz-transform: translateY(0); }
  100% {
    opacity: 0;
    -moz-transform: translateY(-20px); } }

.fade-up-out {
  -webkit-animation-name: fade-up-out;
  -moz-animation-name: fade-up-out;
  -o-animation-name: fade-up-out;
  animation-name: fade-up-out; }

@keyframes fade-up-big-out {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-2000px); } }

@-webkit-keyframes fade-up-big-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); } }

@-o-keyframes fade-up-big-out {
  0% {
    opacity: 1;
    -o-transform: translateY(0); }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px); } }

@-moz-keyframes fade-up-big-out {
  0% {
    opacity: 1;
    -moz-transform: translateY(0); }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px); } }

.fade-up-big-out {
  -webkit-animation-name: fade-up-big-out;
  -moz-animation-name: fade-up-big-out;
  -o-animation-name: fade-up-big-out;
  animation-name: fade-up-big-out; }

@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

@-o-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

@-moz-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  -moz-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash; }

@keyframes fold-in {
  0% {
    max-height: 0px; }
  100% {
    max-height: 1000px; } }

@-webkit-keyframes fold-in {
  0% {
    max-height: 0px; }
  100% {
    max-height: 1000px; } }

@-o-keyframes fold-in {
  0% {
    max-height: 0px; }
  100% {
    max-height: 1000px; } }

@-moz-keyframes fold-in {
  0% {
    max-height: 0px; }
  100% {
    max-height: 1000px; } }

.fold-in {
  overflow: hidden;
  -webkit-animation-name: fold-in;
  -moz-animation-name: fold-in;
  -o-animation-name: fold-in;
  animation-name: fold-in; }

.animated.fold-in {
  -webkit-animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -o-animation-duration: 1.2s;
  animation-duration: 1.2s; }

@keyframes fold-small-in {
  0% {
    max-height: 0px; }
  100% {
    max-height: 500px; } }

@-webkit-keyframes fold-small-in {
  0% {
    max-height: 0px; }
  100% {
    max-height: 500px; } }

@-o-keyframes fold-small-in {
  0% {
    max-height: 0px; }
  100% {
    max-height: 500px; } }

@-moz-keyframes fold-small-in {
  0% {
    max-height: 0px; }
  100% {
    max-height: 500px; } }

.fold-small-in {
  overflow: hidden;
  -webkit-animation-name: fold-small-out;
  -moz-animation-name: fold-small-out;
  -o-animation-name: fold-small-out;
  animation-name: fold-small-out; }

.animated.fold-small-in {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s; }

@keyframes fold-out {
  0% {
    max-height: 1000px; }
  99% {
    max-height: 0px; } }

@-webkit-keyframes fold-out {
  0% {
    max-height: 1000px; }
  99% {
    max-height: 0px; } }

@-o-keyframes fold-out {
  0% {
    max-height: 1000px; }
  99% {
    max-height: 0px; } }

@-moz-keyframes fold-out {
  0% {
    max-height: 1000px; }
  99% {
    max-height: 0px; } }

.fold-out {
  overflow: hidden;
  -webkit-animation-name: fold-out;
  -moz-animation-name: fold-out;
  -o-animation-name: fold-out;
  animation-name: fold-out; }

.animated.fold-out {
  -webkit-animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -o-animation-duration: 1.2s;
  animation-duration: 1.2s; }

@keyframes fold-small-out {
  0% {
    max-height: 0px; }
  100% {
    max-height: 500px; } }

@-webkit-keyframes fold-small-out {
  0% {
    max-height: 0px; }
  100% {
    max-height: 500px; } }

@-o-keyframes fold-small-out {
  0% {
    max-height: 0px; }
  100% {
    max-height: 500px; } }

@-moz-keyframes fold-small-out {
  0% {
    max-height: 0px; }
  100% {
    max-height: 500px; } }

.fold-small-out {
  overflow: hidden;
  -webkit-animation-name: fold-small-out;
  -moz-animation-name: fold-small-out;
  -o-animation-name: fold-small-out;
  animation-name: fold-small-out; }

.animated.fold-small-out {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s; }

@keyframes grow-in {
  0% {
    opacity: 0;
    transform: scale(0.3); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@-webkit-keyframes grow-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1); } }

@-o-keyframes grow-in {
  0% {
    opacity: 0;
    -o-transform: scale(0.3); }
  100% {
    opacity: 1;
    -o-transform: scale(1); } }

@-moz-keyframes grow-in {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3); }
  100% {
    opacity: 1;
    -moz-transform: scale(1); } }

.grow-in {
  -webkit-animation-name: grow-in;
  -moz-animation-name: grow-in;
  -o-animation-name: grow-in;
  animation-name: grow-in; }

@keyframes grow-out {
  0% {
    opacity: 1;
    transform: scale(1); }
  100% {
    opacity: 0;
    transform: scale(2); } }

@-webkit-keyframes grow-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(2); } }

@-o-keyframes grow-out {
  0% {
    opacity: 1;
    -o-transform: scale(1); }
  100% {
    opacity: 0;
    -o-transform: scale(2); } }

@-moz-keyframes grow-out {
  0% {
    opacity: 1;
    -moz-transform: scale(1); }
  100% {
    opacity: 0;
    -moz-transform: scale(2); } }

.grow-out {
  -webkit-animation-name: grow-out;
  -moz-animation-name: grow-out;
  -o-animation-name: grow-out;
  animation-name: grow-out; }

@keyframes hinge-out {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  80% {
    transform: rotate(60deg) translateY(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    transform: translateY(700px);
    opacity: 0; } }

@-webkit-keyframes hinge-out {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0; } }

@-o-keyframes hinge-out {
  0% {
    -o-transform: rotate(0);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out; }
  20%,
  60% {
    -o-transform: rotate(80deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out; }
  40% {
    -o-transform: rotate(60deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out; }
  80% {
    -o-transform: rotate(60deg) translateY(0);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -o-transform: translateY(700px);
    opacity: 0; } }

@-moz-keyframes hinge-out {
  0% {
    -moz-transform: rotate(0);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out; }
  20%,
  60% {
    -moz-transform: rotate(80deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out; }
  40% {
    -moz-transform: rotate(60deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out; }
  80% {
    -moz-transform: rotate(60deg) translateY(0);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -moz-transform: translateY(700px);
    opacity: 0; } }

.hinge-out {
  -webkit-animation-name: hinge-out;
  -moz-animation-name: hinge-out;
  -o-animation-name: hinge-out;
  animation-name: hinge-out; }

.animated.hinge-out {
  -webkit-animation-duration: 1.75s;
  -moz-animation-duration: 1.75s;
  -o-animation-duration: 1.75s;
  animation-duration: 1.75s; }

@keyframes light-speed-in {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }

@-webkit-keyframes light-speed-in {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1; } }

@-o-keyframes light-speed-in {
  0% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -o-transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -o-transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1; } }

@-moz-keyframes light-speed-in {
  0% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -moz-transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -moz-transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1; } }

.light-speed-in {
  -webkit-animation-name: light-speed-in;
  -moz-animation-name: light-speed-in;
  -o-animation-name: light-speed-in;
  animation-name: light-speed-in;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

.animated.light-speed-in {
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  -o-animation-duration: 0.4s;
  animation-duration: 0.4s; }

@keyframes light-speed-in {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }

@-webkit-keyframes light-speed-in {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }

@-o-keyframes light-speed-in {
  0% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }

@-moz-keyframes light-speed-in {
  0% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }

.light-speed-in {
  -webkit-animation-name: light-speed-in;
  -moz-animation-name: light-speed-in;
  -o-animation-name: light-speed-in;
  animation-name: light-speed-in;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

.animated.light-speed-in {
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  -o-animation-duration: 0.2s;
  animation-duration: 0.2s; }

@keyframes pulse {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1); } }

@-o-keyframes pulse {
  0% {
    -o-transform: scale(1); }
  50% {
    -o-transform: scale(1.1); }
  100% {
    -o-transform: scale(1); } }

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1); }
  50% {
    -moz-transform: scale(1.1); }
  100% {
    -moz-transform: scale(1); } }

.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse; }

@keyframes roll-in {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg); } }

@-webkit-keyframes roll-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg); } }

@-o-keyframes roll-in {
  0% {
    opacity: 0;
    -o-transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg); } }

@-moz-keyframes roll-in {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg); } }

.roll-in {
  -webkit-animation-name: roll-in;
  -moz-animation-name: roll-in;
  -o-animation-name: roll-in;
  animation-name: roll-in; }

@keyframes roll-out {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg); } }

@-webkit-keyframes roll-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg); } }

@-o-keyframes roll-out {
  0% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -o-transform: translateX(100%) rotate(120deg); } }

@-moz-keyframes roll-out {
  0% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -moz-transform: translateX(100%) rotate(120deg); } }

.roll-out {
  -webkit-animation-name: roll-out;
  -moz-animation-name: roll-out;
  -o-animation-name: roll-out;
  animation-name: roll-out; }

@keyframes rotate-in {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1; } }

@-webkit-keyframes rotate-in {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1; } }

@-o-keyframes rotate-in {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1; } }

@-moz-keyframes rotate-in {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1; } }

.rotate-in {
  -webkit-animation-name: rotate-in;
  -moz-animation-name: rotate-in;
  -o-animation-name: rotate-in;
  animation-name: rotate-in; }

@keyframes rotate-down-left-in {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; } }

@-webkit-keyframes rotate-down-left-in {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1; } }

@-o-keyframes rotate-down-left-in {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1; } }

@-moz-keyframes rotate-down-left-in {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1; } }

.rotate-down-left-in {
  -webkit-animation-name: rotate-down-left-in;
  -moz-animation-name: rotate-down-left-in;
  -o-animation-name: rotate-down-left-in;
  animation-name: rotate-down-left-in; }

@keyframes rotate-down-right-in {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1; } }

@-webkit-keyframes rotate-down-right-in {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1; } }

@-o-keyframes rotate-down-right-in {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0; }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1; } }

@-moz-keyframes rotate-down-right-in {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0; }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1; } }

.rotate-down-right-in {
  -webkit-animation-name: rotate-down-right-in;
  -moz-animation-name: rotate-down-right-in;
  -o-animation-name: rotate-down-right-in;
  animation-name: rotate-down-right-in; }

@keyframes rotate-up-left-in {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; } }

@-webkit-keyframes rotate-up-left-in {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1; } }

@-o-keyframes rotate-up-left-in {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0; }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1; } }

@-moz-keyframes rotate-up-left-in {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0; }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1; } }

.rotate-up-left-in {
  -webkit-animation-name: rotate-up-left-in;
  -moz-animation-name: rotate-up-left-in;
  -o-animation-name: rotate-up-left-in;
  animation-name: rotate-up-left-in; }

@keyframes rotate-up-right-in {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1; } }

@-webkit-keyframes rotate-up-right-in {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1; } }

@-o-keyframes rotate-up-right-in {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1; } }

@-moz-keyframes rotate-up-right-in {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1; } }

.rotate-up-right-in {
  -webkit-animation-name: rotate-up-right-in;
  -moz-animation-name: rotate-up-right-in;
  -o-animation-name: rotate-up-right-in;
  animation-name: rotate-up-right-in; }

@keyframes rotate-out {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0; } }

@-webkit-keyframes rotate-out {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0; } }

@-o-keyframes rotate-out {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1; }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(200deg);
    opacity: 0; } }

@-moz-keyframes rotate-out {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1; }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(200deg);
    opacity: 0; } }

.rotate-out {
  -webkit-animation-name: rotate-out;
  -moz-animation-name: rotate-out;
  -o-animation-name: rotate-out;
  animation-name: rotate-out; }

@keyframes rotate-down-left-out {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0; } }

@-webkit-keyframes rotate-down-left-out {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0; } }

@-o-keyframes rotate-down-left-out {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1; }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0; } }

@-moz-keyframes rotate-down-left-out {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1; }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0; } }

.rotate-down-left-out {
  -webkit-animation-name: rotate-down-left-out;
  -moz-animation-name: rotate-down-left-out;
  -o-animation-name: rotate-down-left-out;
  animation-name: rotate-down-left-out; }

@keyframes rotate-down-right-out {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0; } }

@-webkit-keyframes rotate-down-right-out {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0; } }

@-o-keyframes rotate-down-right-out {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1; }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0; } }

@-moz-keyframes rotate-down-right-out {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1; }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0; } }

.rotate-down-right-out {
  -webkit-animation-name: rotate-down-right-out;
  -moz-animation-name: rotate-down-right-out;
  -o-animation-name: rotate-down-right-out;
  animation-name: rotate-down-right-out; }

@keyframes rotate-up-left-out {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; }
  100% {
    -transform-origin: left bottom;
    -transform: rotate(-90deg);
    opacity: 0; } }

@-webkit-keyframes rotate-up-left-out {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit--transform-origin: left bottom;
    -webkit--transform: rotate(-90deg);
    opacity: 0; } }

@-o-keyframes rotate-up-left-out {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1; }
  100% {
    -o--transform-origin: left bottom;
    -o--transform: rotate(-90deg);
    opacity: 0; } }

@-moz-keyframes rotate-up-left-out {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1; }
  100% {
    -moz--transform-origin: left bottom;
    -moz--transform: rotate(-90deg);
    opacity: 0; } }

.rotate-up-left-out {
  -webkit-animation-name: rotate-up-left-out;
  -moz-animation-name: rotate-up-left-out;
  -o-animation-name: rotate-up-left-out;
  animation-name: rotate-up-left-out; }

@keyframes rotate-up-right-out {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0; } }

@-webkit-keyframes rotate-up-right-out {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0; } }

@-o-keyframes rotate-up-right-out {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1; }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0; } }

@-moz-keyframes rotate-up-right-out {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1; }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0; } }

.rotate-up-right-out {
  -webkit-animation-name: rotate-up-right-out;
  -moz-animation-name: rotate-up-right-out;
  -o-animation-name: rotate-up-right-out;
  animation-name: rotate-up-right-out; }

@keyframes shake {
  0%,
  100% {
    transform: translateX(0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px); }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px); } }

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px); } }

@-o-keyframes shake {
  0%,
  100% {
    -o-transform: translateX(0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -o-transform: translateX(-10px); }
  20%,
  40%,
  60%,
  80% {
    -o-transform: translateX(10px); } }

@-moz-keyframes shake {
  0%,
  100% {
    -moz-transform: translateX(0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -moz-transform: translateX(-10px); }
  20%,
  40%,
  60%,
  80% {
    -moz-transform: translateX(10px); } }

.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake; }

@keyframes shrink-in {
  0% {
    opacity: 1;
    transform: scale(1); }
  100% {
    opacity: 0;
    transform: scale(0.3); } }

@-webkit-keyframes shrink-in {
  0% {
    opacity: 1;
    -webkit-transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3); } }

@-o-keyframes shrink-in {
  0% {
    opacity: 1;
    -o-transform: scale(1); }
  100% {
    opacity: 0;
    -o-transform: scale(0.3); } }

@-moz-keyframes shrink-in {
  0% {
    opacity: 1;
    -moz-transform: scale(1); }
  100% {
    opacity: 0;
    -moz-transform: scale(0.3); } }

.shrink-in {
  -webkit-animation-name: shrink-in;
  -moz-animation-name: shrink-in;
  -o-animation-name: shrink-in;
  animation-name: shrink-in; }

@keyframes shrink-out {
  0% {
    opacity: 0;
    transform: scale(2); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@-webkit-keyframes shrink-out {
  0% {
    opacity: 0;
    -webkit-transform: scale(2); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1); } }

@-o-keyframes shrink-out {
  0% {
    opacity: 0;
    -o-transform: scale(2); }
  100% {
    opacity: 1;
    -o-transform: scale(1); } }

@-moz-keyframes shrink-out {
  0% {
    opacity: 0;
    -moz-transform: scale(2); }
  100% {
    opacity: 1;
    -moz-transform: scale(1); } }

.shrink-out {
  -webkit-animation-name: shrink-out;
  -moz-animation-name: shrink-out;
  -o-animation-name: shrink-out;
  animation-name: shrink-out; }

@keyframes swing {
  20% {
    transform: rotate(15deg); }
  40% {
    transform: rotate(-10deg); }
  60% {
    transform: rotate(5deg); }
  80% {
    transform: rotate(-5deg); }
  100% {
    transform: rotate(0deg); } }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg); } }

@-o-keyframes swing {
  20% {
    -o-transform: rotate(15deg); }
  40% {
    -o-transform: rotate(-10deg); }
  60% {
    -o-transform: rotate(5deg); }
  80% {
    -o-transform: rotate(-5deg); }
  100% {
    -o-transform: rotate(0deg); } }

@-moz-keyframes swing {
  20% {
    -moz-transform: rotate(15deg); }
  40% {
    -moz-transform: rotate(-10deg); }
  60% {
    -moz-transform: rotate(5deg); }
  80% {
    -moz-transform: rotate(-5deg); }
  100% {
    -moz-transform: rotate(0deg); } }

.swing {
  -webkit-animation-name: swing;
  -moz-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center; }

@keyframes tada {
  0% {
    transform: scale(1); }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg); }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg); }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg); }
  100% {
    transform: scale(1) rotate(0); } }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1); }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg); }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg); }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0); } }

@-o-keyframes tada {
  0% {
    -o-transform: scale(1); }
  10%,
  20% {
    -o-transform: scale(0.9) rotate(-3deg); }
  30%,
  50%,
  70%,
  90% {
    -o-transform: scale(1.1) rotate(3deg); }
  40%,
  60%,
  80% {
    -o-transform: scale(1.1) rotate(-3deg); }
  100% {
    -o-transform: scale(1) rotate(0); } }

@-moz-keyframes tada {
  0% {
    -moz-transform: scale(1); }
  10%,
  20% {
    -moz-transform: scale(0.9) rotate(-3deg); }
  30%,
  50%,
  70%,
  90% {
    -moz-transform: scale(1.1) rotate(3deg); }
  40%,
  60%,
  80% {
    -moz-transform: scale(1.1) rotate(-3deg); }
  100% {
    -moz-transform: scale(1) rotate(0); } }

.tada {
  -webkit-animation-name: tada;
  -moz-animation-name: tada;
  -o-animation-name: tada;
  animation-name: tada; }

@keyframes wiggle {
  0% {
    transform: skewX(9deg); }
  10% {
    transform: skewX(-8deg); }
  20% {
    transform: skewX(7deg); }
  30% {
    transform: skewX(-6deg); }
  40% {
    transform: skewX(5deg); }
  50% {
    transform: skewX(-4deg); }
  60% {
    transform: skewX(3deg); }
  70% {
    transform: skewX(-2deg); }
  80% {
    transform: skewX(1deg); }
  90% {
    transform: skewX(0deg); }
  100% {
    transform: skewX(0deg); } }

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg); }
  10% {
    -webkit-transform: skewX(-8deg); }
  20% {
    -webkit-transform: skewX(7deg); }
  30% {
    -webkit-transform: skewX(-6deg); }
  40% {
    -webkit-transform: skewX(5deg); }
  50% {
    -webkit-transform: skewX(-4deg); }
  60% {
    -webkit-transform: skewX(3deg); }
  70% {
    -webkit-transform: skewX(-2deg); }
  80% {
    -webkit-transform: skewX(1deg); }
  90% {
    -webkit-transform: skewX(0deg); }
  100% {
    -webkit-transform: skewX(0deg); } }

@-o-keyframes wiggle {
  0% {
    -o-transform: skewX(9deg); }
  10% {
    -o-transform: skewX(-8deg); }
  20% {
    -o-transform: skewX(7deg); }
  30% {
    -o-transform: skewX(-6deg); }
  40% {
    -o-transform: skewX(5deg); }
  50% {
    -o-transform: skewX(-4deg); }
  60% {
    -o-transform: skewX(3deg); }
  70% {
    -o-transform: skewX(-2deg); }
  80% {
    -o-transform: skewX(1deg); }
  90% {
    -o-transform: skewX(0deg); }
  100% {
    -o-transform: skewX(0deg); } }

@-moz-keyframes wiggle {
  0% {
    -moz-transform: skewX(9deg); }
  10% {
    -moz-transform: skewX(-8deg); }
  20% {
    -moz-transform: skewX(7deg); }
  30% {
    -moz-transform: skewX(-6deg); }
  40% {
    -moz-transform: skewX(5deg); }
  50% {
    -moz-transform: skewX(-4deg); }
  60% {
    -moz-transform: skewX(3deg); }
  70% {
    -moz-transform: skewX(-2deg); }
  80% {
    -moz-transform: skewX(1deg); }
  90% {
    -moz-transform: skewX(0deg); }
  100% {
    -moz-transform: skewX(0deg); } }

.wiggle {
  -webkit-animation-name: wiggle;
  -moz-animation-name: wiggle;
  -o-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

.animated.wiggle {
  -webkit-animation-duration: 0.5;
  -moz-animation-duration: 0.5;
  -o-animation-duration: 0.5;
  animation-duration: 0.5; }

@keyframes wobble {
  0% {
    transform: translateX(0%); }
  15% {
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    transform: translateX(20%) rotate(3deg); }
  45% {
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    transform: translateX(10%) rotate(2deg); }
  75% {
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    transform: translateX(0%); } }

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%); } }

@-o-keyframes wobble {
  0% {
    -o-transform: translateX(0%); }
  15% {
    -o-transform: translateX(-25%) rotate(-5deg); }
  30% {
    -o-transform: translateX(20%) rotate(3deg); }
  45% {
    -o-transform: translateX(-15%) rotate(-3deg); }
  60% {
    -o-transform: translateX(10%) rotate(2deg); }
  75% {
    -o-transform: translateX(-5%) rotate(-1deg); }
  100% {
    -o-transform: translateX(0%); } }

@-moz-keyframes wobble {
  0% {
    -moz-transform: translateX(0%); }
  15% {
    -moz-transform: translateX(-25%) rotate(-5deg); }
  30% {
    -moz-transform: translateX(20%) rotate(3deg); }
  45% {
    -moz-transform: translateX(-15%) rotate(-3deg); }
  60% {
    -moz-transform: translateX(10%) rotate(2deg); }
  75% {
    -moz-transform: translateX(-5%) rotate(-1deg); }
  100% {
    -moz-transform: translateX(0%); } }

.wobble {
  -webkit-animation-name: wobble;
  -moz-animation-name: wobble;
  -o-animation-name: wobble;
  animation-name: wobble; }

@font-face {
  font-family: 'daliregular';
  src: url("../fonts/dali/dali____-webfont.eot");
  src: url("../fonts/dali/dali____-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/dali/dali____-webfont.woff2") format("woff2"), url("../fonts/dali/dali____-webfont.woff") format("woff"), url("../fonts/dali/dali____-webfont.ttf") format("truetype"), url("../fonts/dali/dali____-webfont.svg#daliregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'noto_serifregular';
  src: url("../fonts/noto/notoserif-regular-webfont.eot");
  src: url("../fonts/noto/notoserif-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/noto/notoserif-regular-webfont.woff2") format("woff2"), url("../fonts/noto/notoserif-regular-webfont.woff") format("woff"), url("../fonts/noto/notoserif-regular-webfont.ttf") format("truetype"), url("../fonts/noto/notoserif-regular-webfont.svg#noto_serifregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'allerregular';
  src: url("../fonts/aller/aller_rg-webfont.eot");
  src: url("../fonts/aller/aller_rg-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/aller/aller_rg-webfont.woff2") format("woff2"), url("../fonts/aller/aller_rg-webfont.woff") format("woff"), url("../fonts/aller/aller_rg-webfont.ttf") format("truetype"), url("../fonts/aller/aller_rg-webfont.svg#allerregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Gill Sans W04 Roman';
  src: url("../fonts/gill_sans/c575cf0c-7e15-4f49-913a-af4676e20343.eot?#iefix");
  src: url("../fonts/gill_sans/c575cf0c-7e15-4f49-913a-af4676e20343.eot?#iefix") format("eot"), url("../fonts/gill_sans/39ede25d-544d-4537-8668-3e9af68a26ec.woff") format("woff"), url("../fonts/gill_sans/fe7e264f-3a4a-40c8-85eb-f9e2cb4b6f21.ttf") format("truetype"), url("../fonts/gill_sans/f45aa0ef-7101-4ac6-84f9-fce14d01e189.svg#f45aa0ef-7101-4ac6-84f9-fce14d01e189") format("svg"); }

@font-face {
  font-family: 'Gill Sans W01 Light';
  src: url("../fonts/gill_sans/acd8a043-828c-4c2c-98cb-b5224f5d4cdb.eot?#iefix");
  src: url("../fonts/gill_sans/acd8a043-828c-4c2c-98cb-b5224f5d4cdb.eot?#iefix") format("eot"), url("../fonts/gill_sans/c56da29d-9c5b-4d94-900f-770cde3dd317.woff") format("woff"), url("../fonts/gill_sans/378182d1-8021-4674-a814-cc8f01f9a937.ttf") format("truetype"), url("../fonts/gill_sans/d8851d95-478d-47a9-a0b0-a8d8e4ca127a.svg#d8851d95-478d-47a9-a0b0-a8d8e4ca127a") format("svg"); }

@font-face {
  font-family: 'Gill Sans W01 Book';
  src: url("../fonts/gill_sans/2cebe80c-b289-4ae0-a3b0-baa82c6c6e10.eot?#iefix");
  src: url("../fonts/gill_sans/2cebe80c-b289-4ae0-a3b0-baa82c6c6e10.eot?#iefix") format("eot"), url("../fonts/gill_sans/2bc69477-90c2-4415-a51f-36e36eee3d5e.woff") format("woff"), url("../fonts/gill_sans/33447d8d-d920-48e7-b0a9-1d3dda80d6a6.ttf") format("truetype"), url("../fonts/gill_sans/e49c440c-7653-44ce-96d2-f775947ba9fe.svg#e49c440c-7653-44ce-96d2-f775947ba9fe") format("svg"); }

@font-face {
  font-family: 'Gill Sans W01 Bold';
  src: url("../fonts/gill_sans/1a6dec8e-26f9-4243-8495-835709538f92.eot?#iefix");
  src: url("../fonts/gill_sans/1a6dec8e-26f9-4243-8495-835709538f92.eot?#iefix") format("eot"), url("../fonts/gill_sans/f05272f9-83e3-4de6-8423-5d57f730c87b.woff") format("woff"), url("../fonts/gill_sans/33f5d8d9-105f-4a49-9351-74ecae7f4a49.ttf") format("truetype"), url("../fonts/gill_sans/b56150eb-5caa-4385-b907-373e97ddb2ff.svg#b56150eb-5caa-4385-b907-373e97ddb2ff") format("svg"); }

@font-face {
  font-family: "Avenir LT W01_35 Light";
  src: url("../fonts/avenir/3511a780-31ca-4ee1-9083-89b1b7185748.eot?#iefix");
  src: url("../fonts/avenir/3511a780-31ca-4ee1-9083-89b1b7185748.eot?#iefix") format("eot"), url("../fonts/avenir/4fb9056b-4ac3-488b-9bac-75741b0ff0bd.woff2") format("woff2"), url("../fonts/avenir/c4352a95-7a41-48c1-83ce-d8ffd2a3b118.woff") format("woff"), url("../fonts/avenir/3e419b5b-c789-488d-84cf-a64009cc308e.ttf") format("truetype"), url("../fonts/avenir/ca038835-1be3-4dc5-ba25-be1df6121499.svg#ca038835-1be3-4dc5-ba25-be1df6121499") format("svg"); }

@font-face {
  font-family: "Avenir LT W01_55 Roman";
  src: url("../fonts/avenir/2f5a6074-badc-4e08-83f1-ed67fe5c3d7c.eot?#iefix");
  src: url("../fonts/avenir/2f5a6074-badc-4e08-83f1-ed67fe5c3d7c.eot?#iefix") format("eot"), url("../fonts/avenir/75c84254-5125-412c-bc24-56769ae3b627.woff2") format("woff2"), url("../fonts/avenir/b9ebb19d-88c1-4cbd-9baf-cf51972422ec.woff") format("woff"), url("../fonts/avenir/5ed4f98e-9044-4810-88ff-74d412c1351f.ttf") format("truetype"), url("../fonts/avenir/4cb16859-16ca-4342-b89c-292dc83266af.svg#4cb16859-16ca-4342-b89c-292dc83266af") format("svg"); }

@font-face {
  font-family: "Avenir LT W01_65 Medium";
  src: url("../fonts/avenir/212ab03d-5db2-4d6a-b94c-171cc702aa51.eot?#iefix");
  src: url("../fonts/avenir/212ab03d-5db2-4d6a-b94c-171cc702aa51.eot?#iefix") format("eot"), url("../fonts/avenir/e4d36745-a861-4a49-aa17-6510e67429d3.woff2") format("woff2"), url("../fonts/avenir/2cac77ec-9bc0-4ee7-87e4-27650190744f.woff") format("woff"), url("../fonts/avenir/aaf11848-aac2-4d09-9a9c-aac5ff7b8ff4.ttf") format("truetype"), url("../fonts/avenir/294099f3-8d00-4676-afc5-5e9d8d43ad69.svg#294099f3-8d00-4676-afc5-5e9d8d43ad69") format("svg"); }

@font-face {
  font-family: "Avenir LT W01_85 Heavy";
  src: url("../fonts/avenir/f61bf0f6-c193-4100-b940-12a1a01dcee5.eot?#iefix");
  src: url("../fonts/avenir/f61bf0f6-c193-4100-b940-12a1a01dcee5.eot?#iefix") format("eot"), url("../fonts/avenir/65cde95a-ac33-4c65-8198-e37857968d1a.woff2") format("woff2"), url("../fonts/avenir/7147ec3a-8ff8-4ec9-8c5c-bd1571dc6ae6.woff") format("woff"), url("../fonts/avenir/d1dc54b2-878d-4693-8d6e-b442e99fef68.ttf") format("truetype"), url("../fonts/avenir/731dd4d3-64da-427d-ba61-01575b3cf3f7.svg#731dd4d3-64da-427d-ba61-01575b3cf3f7") format("svg"); }

@font-face {
  font-family: "Avenir LT W01_95 Black";
  src: url("../fonts/avenir/a24b3f55-c8c8-41a1-a77e-7cdf417d82f6.eot?#iefix");
  src: url("../fonts/avenir/a24b3f55-c8c8-41a1-a77e-7cdf417d82f6.eot?#iefix") format("eot"), url("../fonts/avenir/16695c2d-c755-45a2-bdcf-c54843f39afd.woff2") format("woff2"), url("../fonts/avenir/5a05cf7f-f332-456f-ae67-d8c26e0d35b3.woff") format("woff"), url("../fonts/avenir/c33278bc-988e-440b-b4be-6acc095e6044.ttf") format("truetype"), url("../fonts/avenir/7bdad4a5-289b-42f9-b6fa-c5883b9e9f23.svg#7bdad4a5-289b-42f9-b6fa-c5883b9e9f23") format("svg"); }

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icons/icomoon.eot?1vm6xk");
  src: url("../fonts/icons/icomoon.eot?#iefix1vm6xk") format("embedded-opentype"), url("../fonts/icons/icomoon.woff?1vm6xk") format("woff"), url("../fonts/icons/icomoon.ttf?1vm6xk") format("truetype"), url("../fonts/icons/icomoon.svg?1vm6xk#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-email:before {
  content: "\e600"; }

.icon-files:before {
  content: "\e601"; }

.icon-uniE602:before {
  content: "\e602"; }

.icon-file-settings:before {
  content: "\e603"; }

.icon-file-add:before {
  content: "\e604"; }

.icon-folder-check:before {
  content: "\e605"; }

.icon-paperclip:before {
  content: "\e606"; }

.icon-download:before {
  content: "\e607"; }

.icon-enter:before {
  content: "\e608"; }

.icon-clock:before {
  content: "\e609"; }

.icon-printer:before {
  content: "\e60a"; }

.icon-users:before {
  content: "\e60b"; }

.icon-user:before {
  content: "\e60c"; }

.icon-user2:before {
  content: "\e60d"; }

.icon-bullhorn:before {
  content: "\e60e"; }

.icon-share:before {
  content: "\e60f"; }

.icon-phone:before {
  content: "\e610"; }

.icon-phone-portrait:before {
  content: "\e611"; }

.icon-phone-landscape:before {
  content: "\e612"; }

.icon-tablet:before {
  content: "\e613"; }

.icon-tablet-landscape:before {
  content: "\e614"; }

.icon-laptop:before {
  content: "\e615"; }

.icon-support:before {
  content: "\e616"; }

.icon-uniE617:before {
  content: "\e617"; }

.icon-graph:before {
  content: "\e618"; }

.icon-bars:before {
  content: "\e619"; }

.icon-measure:before {
  content: "\e61a"; }

.icon-times:before {
  content: "\e61b"; }

.icon-tick:before {
  content: "\e61c"; }

.icon-chevron-right:before {
  content: "\e61d"; }

.icon-chevron-left:before {
  content: "\e61e"; }

.icon-th-menu:before {
  content: "\e61f"; }

.icon-home:before {
  content: "\e620"; }

.icon-delete:before {
  content: "\e621"; }

.icon-delete-outline:before {
  content: "\e622"; }

.icon-heart:before {
  content: "\e623"; }

.icon-warning:before {
  content: "\e624"; }

.icon-user3:before {
  content: "\e625"; }

.icon-location-arrow:before {
  content: "\e626"; }

.icon-chart-line:before {
  content: "\e627"; }

.icon-chart-bar:before {
  content: "\e628"; }

.icon-chart-area:before {
  content: "\e629"; }

.icon-calender:before {
  content: "\e62a"; }

.icon-share2:before {
  content: "\e62b"; }

.icon-new-window:before {
  content: "\e62c"; }

.icon-curved-arrow:before {
  content: "\e67f"; }

.icon-cart:before {
  content: "\e62d"; }

.icon-chart:before {
  content: "\e62e"; }

.icon-earth:before {
  content: "\e62f"; }

.icon-location:before {
  content: "\e630"; }

.icon-window:before {
  content: "\e631"; }

.icon-tag:before {
  content: "\e632"; }

.icon-stats:before {
  content: "\e633"; }

.icon-browser:before {
  content: "\f0c5"; }

.icon-calendar:before {
  content: "\f068"; }

.icon-checklist:before {
  content: "\f076"; }

.icon-chevron-down:before {
  content: "\f0a3"; }

.icon-chevron-left2:before {
  content: "\f0a4"; }

.icon-chevron-right2:before {
  content: "\f078"; }

.icon-chevron-up:before {
  content: "\f0a2"; }

.icon-clippy:before {
  content: "\f035"; }

.icon-cloud-download:before {
  content: "\f00b"; }

.icon-device-mobile:before {
  content: "\f038"; }

.icon-file-pdf:before {
  content: "\f014"; }

.icon-file-symlink-file:before {
  content: "\f0b0"; }

.icon-file-text:before {
  content: "\f011"; }

.icon-file-zip:before {
  content: "\f013"; }

.icon-light-bulb:before {
  content: "\f000"; }

.icon-mail:before {
  content: "\f03b"; }

.icon-mail-read:before {
  content: "\f03c"; }

.icon-three-bars:before {
  content: "\f05e"; }

.icon-triangle-down:before {
  content: "\f05b"; }

.icon-triangle-left:before {
  content: "\f044"; }

.icon-triangle-right:before {
  content: "\f05a"; }

.icon-triangle-up:before {
  content: "\f0aa"; }

.icon-home2:before {
  content: "\e000"; }

.icon-newspaper:before {
  content: "\e00c"; }

.icon-pencil:before {
  content: "\e011"; }

.icon-marker:before {
  content: "\e01d"; }

.icon-image:before {
  content: "\e02b"; }

.icon-image2:before {
  content: "\e02c"; }

.icon-image3:before {
  content: "\e02d"; }

.icon-images:before {
  content: "\e02e"; }

.icon-megaphone:before {
  content: "\e060"; }

.icon-new:before {
  content: "\e061"; }

.icon-file:before {
  content: "\e077"; }

.icon-file2:before {
  content: "\e07b"; }

.icon-file3:before {
  content: "\e086"; }

.icon-file-plus:before {
  content: "\e087"; }

.icon-file-download:before {
  content: "\e089"; }

.icon-file-upload:before {
  content: "\e08a"; }

.icon-file-check:before {
  content: "\e08b"; }

.icon-file-remove:before {
  content: "\e08c"; }

.icon-copy:before {
  content: "\e091"; }

.icon-stack:before {
  content: "\e095"; }

.icon-folder-plus:before {
  content: "\e09b"; }

.icon-folder-minus:before {
  content: "\e09d"; }

.icon-folder:before {
  content: "\e0a1"; }

.icon-folder-open:before {
  content: "\e0a2"; }

.icon-folder2:before {
  content: "\e0a3"; }

.icon-folder3:before {
  content: "\e0a4"; }

.icon-ticket:before {
  content: "\e0c0"; }

.icon-cart2:before {
  content: "\e0c1"; }

.icon-cart3:before {
  content: "\e0c2"; }

.icon-cart4:before {
  content: "\e0c3"; }

.icon-cart5:before {
  content: "\e0c4"; }

.icon-cart6:before {
  content: "\e0c5"; }

.icon-cart7:before {
  content: "\e0c6"; }

.icon-cart8:before {
  content: "\e0c7"; }

.icon-cart-plus:before {
  content: "\e0c8"; }

.icon-cart-minus:before {
  content: "\e0c9"; }

.icon-cart-add:before {
  content: "\e0ca"; }

.icon-cart-remove:before {
  content: "\e0cb"; }

.icon-cart-checkout:before {
  content: "\e0cc"; }

.icon-cart-remove2:before {
  content: "\e0cd"; }

.icon-basket:before {
  content: "\e0ce"; }

.icon-basket2:before {
  content: "\e0cf"; }

.icon-bag:before {
  content: "\e0d0"; }

.icon-bag2:before {
  content: "\e0d1"; }

.icon-bag3:before {
  content: "\e0d2"; }

.icon-coin:before {
  content: "\e0d3"; }

.icon-coins:before {
  content: "\e0d4"; }

.icon-credit:before {
  content: "\e0d5"; }

.icon-credit2:before {
  content: "\e0d6"; }

.icon-calculate:before {
  content: "\e0d7"; }

.icon-support2:before {
  content: "\e0d9"; }

.icon-phone2:before {
  content: "\e0da"; }

.icon-phone3:before {
  content: "\e0db"; }

.icon-phone4:before {
  content: "\e0dc"; }

.icon-phone5:before {
  content: "\e0dd"; }

.icon-contact-add:before {
  content: "\e0de"; }

.icon-contact-remove:before {
  content: "\e0df"; }

.icon-contact-add2:before {
  content: "\e0e0"; }

.icon-contact-remove2:before {
  content: "\e0e1"; }

.icon-call-incoming:before {
  content: "\e0e2"; }

.icon-call-outgoing:before {
  content: "\e0e3"; }

.icon-phone6:before {
  content: "\e0e4"; }

.icon-phone7:before {
  content: "\e0e5"; }

.icon-phone-hang-up:before {
  content: "\e0e6"; }

.icon-phone-hang-up2:before {
  content: "\e0e7"; }

.icon-address-book:before {
  content: "\e0e8"; }

.icon-address-book2:before {
  content: "\e0e9"; }

.icon-notebook:before {
  content: "\e0ea"; }

.icon-envelop:before {
  content: "\e0eb"; }

.icon-envelop2:before {
  content: "\e0ec"; }

.icon-mail-send:before {
  content: "\e0ed"; }

.icon-envelop-opened:before {
  content: "\e0ee"; }

.icon-envelop3:before {
  content: "\e0ef"; }

.icon-location2:before {
  content: "\e0f1"; }

.icon-location3:before {
  content: "\e0f2"; }

.icon-location4:before {
  content: "\e0f3"; }

.icon-location5:before {
  content: "\e0f4"; }

.icon-location6:before {
  content: "\e0f5"; }

.icon-location7:before {
  content: "\e0f6"; }

.icon-location8:before {
  content: "\e0f7"; }

.icon-compass:before {
  content: "\e0f8"; }

.icon-compass2:before {
  content: "\e0f9"; }

.icon-map:before {
  content: "\e0fa"; }

.icon-map2:before {
  content: "\e0fb"; }

.icon-history:before {
  content: "\e0ff"; }

.icon-history2:before {
  content: "\e100"; }

.icon-clock2:before {
  content: "\e101"; }

.icon-clock3:before {
  content: "\e102"; }

.icon-clock4:before {
  content: "\e103"; }

.icon-clock5:before {
  content: "\e104"; }

.icon-watch:before {
  content: "\e105"; }

.icon-clock6:before {
  content: "\e106"; }

.icon-clock7:before {
  content: "\e107"; }

.icon-calendar2:before {
  content: "\e112"; }

.icon-calendar3:before {
  content: "\e113"; }

.icon-calendar4:before {
  content: "\e114"; }

.icon-calendar5:before {
  content: "\e115"; }

.icon-calendar6:before {
  content: "\e116"; }

.icon-print:before {
  content: "\e117"; }

.icon-print2:before {
  content: "\e118"; }

.icon-print3:before {
  content: "\e119"; }

.icon-bubble:before {
  content: "\e150"; }

.icon-bubbles:before {
  content: "\e151"; }

.icon-bubbles2:before {
  content: "\e152"; }

.icon-bubble2:before {
  content: "\e153"; }

.icon-bubbles3:before {
  content: "\e154"; }

.icon-bubbles4:before {
  content: "\e155"; }

.icon-bubble-notification:before {
  content: "\e156"; }

.icon-bubbles5:before {
  content: "\e157"; }

.icon-bubbles6:before {
  content: "\e158"; }

.icon-bubble3:before {
  content: "\e159"; }

.icon-bubble-dots:before {
  content: "\e15a"; }

.icon-bubble4:before {
  content: "\e15b"; }

.icon-bubble5:before {
  content: "\e15c"; }

.icon-bubble-dots2:before {
  content: "\e15d"; }

.icon-bubble6:before {
  content: "\e15e"; }

.icon-bubble7:before {
  content: "\e15f"; }

.icon-bubble8:before {
  content: "\e160"; }

.icon-bubbles7:before {
  content: "\e161"; }

.icon-bubble9:before {
  content: "\e162"; }

.icon-bubbles8:before {
  content: "\e163"; }

.icon-bubble10:before {
  content: "\e164"; }

.icon-bubble-dots3:before {
  content: "\e165"; }

.icon-bubble11:before {
  content: "\e166"; }

.icon-bubble12:before {
  content: "\e167"; }

.icon-user4:before {
  content: "\e185"; }

.icon-users2:before {
  content: "\e186"; }

.icon-user-plus:before {
  content: "\e187"; }

.icon-user-plus2:before {
  content: "\e188"; }

.icon-user-minus:before {
  content: "\e189"; }

.icon-user-minus2:before {
  content: "\e18a"; }

.icon-user-cancel:before {
  content: "\e18b"; }

.icon-user-block:before {
  content: "\e18c"; }

.icon-users3:before {
  content: "\e18d"; }

.icon-user5:before {
  content: "\e194"; }

.icon-user6:before {
  content: "\e195"; }

.icon-user7:before {
  content: "\e196"; }

.icon-user8:before {
  content: "\e197"; }

.icon-users4:before {
  content: "\e198"; }

.icon-quotes-left:before {
  content: "\e19f"; }

.icon-quotes-right:before {
  content: "\e1a0"; }

.icon-quotes-right2:before {
  content: "\e1a1"; }

.icon-quotes-right3:before {
  content: "\e1a2"; }

.icon-search:before {
  content: "\e1b6"; }

.icon-search2:before {
  content: "\e1b7"; }

.icon-zoomin:before {
  content: "\e1b8"; }

.icon-zoomout:before {
  content: "\e1b9"; }

.icon-search3:before {
  content: "\e1ba"; }

.icon-search4:before {
  content: "\e1bb"; }

.icon-zoomin2:before {
  content: "\e1bc"; }

.icon-zoomout2:before {
  content: "\e1bd"; }

.icon-search5:before {
  content: "\e1be"; }

.icon-key:before {
  content: "\e1ca"; }

.icon-key2:before {
  content: "\e1cb"; }

.icon-lock:before {
  content: "\e1d0"; }

.icon-lock2:before {
  content: "\e1d1"; }

.icon-lock3:before {
  content: "\e1d2"; }

.icon-lock4:before {
  content: "\e1d3"; }

.icon-unlocked:before {
  content: "\e1d4"; }

.icon-lock5:before {
  content: "\e1d5"; }

.icon-unlocked2:before {
  content: "\e1d6"; }

.icon-medal:before {
  content: "\e217"; }

.icon-medal2:before {
  content: "\e218"; }

.icon-medal3:before {
  content: "\e219"; }

.icon-medal4:before {
  content: "\e21a"; }

.icon-medal5:before {
  content: "\e21b"; }

.icon-crown:before {
  content: "\e21c"; }

.icon-trophy:before {
  content: "\e21d"; }

.icon-trophy2:before {
  content: "\e21e"; }

.icon-trophy-star:before {
  content: "\e21f"; }

.icon-remove:before {
  content: "\e250"; }

.icon-remove2:before {
  content: "\e251"; }

.icon-remove3:before {
  content: "\e252"; }

.icon-remove4:before {
  content: "\e253"; }

.icon-remove5:before {
  content: "\e254"; }

.icon-remove6:before {
  content: "\e255"; }

.icon-signup:before {
  content: "\e296"; }

.icon-list:before {
  content: "\e299"; }

.icon-list2:before {
  content: "\e29a"; }

.icon-list3:before {
  content: "\e29b"; }

.icon-numbered-list:before {
  content: "\e29c"; }

.icon-menu:before {
  content: "\e2ac"; }

.icon-download2:before {
  content: "\e2b8"; }

.icon-upload:before {
  content: "\e2b9"; }

.icon-download3:before {
  content: "\e2ba"; }

.icon-upload2:before {
  content: "\e2bb"; }

.icon-download4:before {
  content: "\e2bc"; }

.icon-upload3:before {
  content: "\e2bd"; }

.icon-download5:before {
  content: "\e2be"; }

.icon-upload4:before {
  content: "\e2bf"; }

.icon-download6:before {
  content: "\e2c0"; }

.icon-upload5:before {
  content: "\e2c1"; }

.icon-download7:before {
  content: "\e2c2"; }

.icon-upload6:before {
  content: "\e2c3"; }

.icon-earth2:before {
  content: "\e2c7"; }

.icon-network:before {
  content: "\e2c8"; }

.icon-link:before {
  content: "\e2c9"; }

.icon-link2:before {
  content: "\e2ca"; }

.icon-link3:before {
  content: "\e2cb"; }

.icon-link22:before {
  content: "\e2cc"; }

.icon-link4:before {
  content: "\e2cd"; }

.icon-link5:before {
  content: "\e2ce"; }

.icon-link6:before {
  content: "\e2cf"; }

.icon-flag:before {
  content: "\e2d1"; }

.icon-flag2:before {
  content: "\e2d2"; }

.icon-flag3:before {
  content: "\e2d3"; }

.icon-flag4:before {
  content: "\e2d4"; }

.icon-flag5:before {
  content: "\e2d5"; }

.icon-star:before {
  content: "\e2fe"; }

.icon-star2:before {
  content: "\e2ff"; }

.icon-heart2:before {
  content: "\e304"; }

.icon-heart3:before {
  content: "\e305"; }

.icon-heart4:before {
  content: "\e307"; }

.icon-heart5:before {
  content: "\e308"; }

.icon-heart6:before {
  content: "\e30a"; }

.icon-heart7:before {
  content: "\e30b"; }

.icon-resize:before {
  content: "\e354"; }

.icon-warning2:before {
  content: "\e355"; }

.icon-warning3:before {
  content: "\e356"; }

.icon-notification:before {
  content: "\e357"; }

.icon-notification2:before {
  content: "\e358"; }

.icon-question:before {
  content: "\e359"; }

.icon-question2:before {
  content: "\e35a"; }

.icon-question3:before {
  content: "\e35b"; }

.icon-question4:before {
  content: "\e35c"; }

.icon-question5:before {
  content: "\e35d"; }

.icon-plus-circle:before {
  content: "\e35e"; }

.icon-plus-circle2:before {
  content: "\e35f"; }

.icon-minus-circle:before {
  content: "\e360"; }

.icon-minus-circle2:before {
  content: "\e361"; }

.icon-info:before {
  content: "\e362"; }

.icon-info2:before {
  content: "\e363"; }

.icon-blocked:before {
  content: "\e364"; }

.icon-cancel-circle:before {
  content: "\e365"; }

.icon-cancel-circle2:before {
  content: "\e366"; }

.icon-checkmark-circle:before {
  content: "\e367"; }

.icon-checkmark-circle2:before {
  content: "\e368"; }

.icon-cancel:before {
  content: "\e369"; }

.icon-spam:before {
  content: "\e36a"; }

.icon-close:before {
  content: "\e36b"; }

.icon-close2:before {
  content: "\e36c"; }

.icon-close3:before {
  content: "\e36d"; }

.icon-close4:before {
  content: "\e36e"; }

.icon-close5:before {
  content: "\e36f"; }

.icon-checkmark:before {
  content: "\e370"; }

.icon-checkmark2:before {
  content: "\e371"; }

.icon-checkmark3:before {
  content: "\e372"; }

.icon-checkmark4:before {
  content: "\e373"; }

.icon-spell-check:before {
  content: "\e374"; }

.icon-minus:before {
  content: "\e375"; }

.icon-plus:before {
  content: "\e376"; }

.icon-minus2:before {
  content: "\e377"; }

.icon-plus2:before {
  content: "\e378"; }

.icon-enter2:before {
  content: "\e379"; }

.icon-exit:before {
  content: "\e37a"; }

.icon-enter3:before {
  content: "\e37b"; }

.icon-exit2:before {
  content: "\e37c"; }

.icon-enter4:before {
  content: "\e37d"; }

.icon-exit3:before {
  content: "\e37e"; }

.icon-exit4:before {
  content: "\e37f"; }

.icon-play:before {
  content: "\e380"; }

.icon-pause:before {
  content: "\e381"; }

.icon-stop:before {
  content: "\e382"; }

.icon-backward:before {
  content: "\e383"; }

.icon-forward:before {
  content: "\e384"; }

.icon-play2:before {
  content: "\e385"; }

.icon-arrow-up:before {
  content: "\e3b4"; }

.icon-arrow-right:before {
  content: "\e3b5"; }

.icon-arrow-down:before {
  content: "\e3b6"; }

.icon-arrow-left:before {
  content: "\e3b7"; }

.icon-arrow-up-right:before {
  content: "\e3c2"; }

.icon-arrow-right2:before {
  content: "\e3c3"; }

.icon-arrow-down-right:before {
  content: "\e3c4"; }

.icon-arrow-down2:before {
  content: "\e3c5"; }

.icon-arrow-down-left:before {
  content: "\e3c6"; }

.icon-arrow-left2:before {
  content: "\e3c7"; }

.icon-arrow-up-left:before {
  content: "\e3c8"; }

.icon-arrow-up2:before {
  content: "\e3c9"; }

.icon-arrow-up-right2:before {
  content: "\e3ca"; }

.icon-arrow-right3:before {
  content: "\e3cb"; }

.icon-arrow-down-right2:before {
  content: "\e3cc"; }

.icon-arrow-down3:before {
  content: "\e3cd"; }

.icon-arrow-down-left2:before {
  content: "\e3ce"; }

.icon-arrow-left3:before {
  content: "\e3cf"; }

.icon-arrow-up-left2:before {
  content: "\e3d0"; }

.icon-arrow-up3:before {
  content: "\e3d1"; }

.icon-arrow-up-right3:before {
  content: "\e3d2"; }

.icon-arrow-right4:before {
  content: "\e3d3"; }

.icon-arrow-down-right3:before {
  content: "\e3d4"; }

.icon-arrow-down4:before {
  content: "\e3d5"; }

.icon-arrow-down-left3:before {
  content: "\e3d6"; }

.icon-arrow-left4:before {
  content: "\e3d7"; }

.icon-circle:before {
  content: "\e43a"; }

.icon-circle2:before {
  content: "\e43b"; }

.icon-share3:before {
  content: "\e48c"; }

.icon-mail2:before {
  content: "\e491"; }

.icon-google:before {
  content: "\e492"; }

.icon-googleplus:before {
  content: "\e493"; }

.icon-googleplus2:before {
  content: "\e494"; }

.icon-googleplus3:before {
  content: "\e495"; }

.icon-googleplus4:before {
  content: "\e496"; }

.icon-google-drive:before {
  content: "\e497"; }

.icon-facebook:before {
  content: "\e498"; }

.icon-facebook2:before {
  content: "\e499"; }

.icon-facebook3:before {
  content: "\e49a"; }

.icon-facebook4:before {
  content: "\e49b"; }

.icon-twitter:before {
  content: "\e49d"; }

.icon-twitter2:before {
  content: "\e49e"; }

.icon-twitter3:before {
  content: "\e49f"; }

.icon-feed:before {
  content: "\e4a2"; }

.icon-youtube:before {
  content: "\e4a3"; }

.icon-youtube2:before {
  content: "\e4a4"; }

.icon-vimeo:before {
  content: "\e4a5"; }

.icon-vimeo2:before {
  content: "\e4a6"; }

.icon-vimeo3:before {
  content: "\e4a7"; }

.icon-wordpress:before {
  content: "\e4bd"; }

.icon-wordpress2:before {
  content: "\e4be"; }

.icon-tumblr:before {
  content: "\e4c3"; }

.icon-apple:before {
  content: "\e4c6"; }

.icon-windows:before {
  content: "\e4c9"; }

.icon-windows8:before {
  content: "\e4ca"; }

.icon-skype:before {
  content: "\e4cd"; }

.icon-linkedin:before {
  content: "\e4cf"; }

.icon-libreoffice:before {
  content: "\e4e1"; }

.icon-file-pdf2:before {
  content: "\e4e2"; }

.icon-file-openoffice:before {
  content: "\e4e3"; }

.icon-file-word:before {
  content: "\e4e4"; }

.icon-file-excel:before {
  content: "\e4e5"; }

.icon-file-zip2:before {
  content: "\e4e6"; }

.icon-file-powerpoint:before {
  content: "\e4e7"; }

.icon-file-xml:before {
  content: "\e4e8"; }

.icon-file-css:before {
  content: "\e4e9"; }

.icon-chrome:before {
  content: "\e4ed"; }

.icon-firefox:before {
  content: "\e4ee"; }

.icon-IE:before {
  content: "\e4ef"; }

.icon-opera:before {
  content: "\e4f0"; }

.icon-safari:before {
  content: "\e4f1"; }

.icon-IcoMoon:before {
  content: "\e4f2"; }

.icon-pencil2:before {
  content: "\e634"; }

.icon-compass3:before {
  content: "\e635"; }

.icon-quote:before {
  content: "\e636"; }

.icon-tools:before {
  content: "\e637"; }

.icon-trophy3:before {
  content: "\e638"; }

.icon-newspaper2:before {
  content: "\e639"; }

.icon-lifebuoy:before {
  content: "\e63a"; }

.icon-cone:before {
  content: "\e63b"; }

.icon-earth3:before {
  content: "\e63c"; }

.icon-publish:before {
  content: "\e63d"; }

.icon-screen:before {
  content: "\e63e"; }

.icon-light-bulb2:before {
  content: "\e63f"; }

.icon-statistics:before {
  content: "\e640"; }

.icon-bars2:before {
  content: "\e641"; }

.icon-graph2:before {
  content: "\e642"; }

.icon-lock6:before {
  content: "\e643"; }

.icon-lock-open:before {
  content: "\e644"; }

.icon-logout:before {
  content: "\e645"; }

.icon-login:before {
  content: "\e646"; }

.icon-checkmark5:before {
  content: "\e647"; }

.icon-search6:before {
  content: "\f002"; }

.icon-envelope-o:before {
  content: "\f003"; }

.icon-heart8:before {
  content: "\f004"; }

.icon-star3:before {
  content: "\f005"; }

.icon-star-o:before {
  content: "\f006"; }

.icon-user9:before {
  content: "\f007"; }

.icon-film:before {
  content: "\f008"; }

.icon-check:before {
  content: "\f00c"; }

.icon-search-plus:before {
  content: "\f00e"; }

.icon-search-minus:before {
  content: "\f010"; }

.icon-gear:before {
  content: "\f015"; }

.icon-trash-o:before {
  content: "\f016"; }

.icon-home3:before {
  content: "\f017"; }

.icon-file-o:before {
  content: "\f018"; }

.icon-arrow-circle-o-down:before {
  content: "\f01a"; }

.icon-play-circle-o:before {
  content: "\f01d"; }

.icon-refresh:before {
  content: "\f021"; }

.icon-list-alt:before {
  content: "\f022"; }

.icon-lock7:before {
  content: "\f023"; }

.icon-tag2:before {
  content: "\f02b"; }

.icon-tags:before {
  content: "\f02c"; }

.icon-print4:before {
  content: "\f02f"; }

.icon-pencil3:before {
  content: "\f040"; }

.icon-map-marker:before {
  content: "\f041"; }

.icon-edit:before {
  content: "\f045"; }

.icon-share-square-o:before {
  content: "\f046"; }

.icon-check-square-o:before {
  content: "\f047"; }

.icon-chevron-left3:before {
  content: "\f053"; }

.icon-chevron-right3:before {
  content: "\f054"; }

.icon-plus-circle3:before {
  content: "\f055"; }

.icon-minus-circle3:before {
  content: "\f056"; }

.icon-times-circle:before {
  content: "\f057"; }

.icon-check-circle:before {
  content: "\f058"; }

.icon-question-circle:before {
  content: "\f059"; }

.icon-info-circle:before {
  content: "\f05c"; }

.icon-times-circle-o:before {
  content: "\f05d"; }

.icon-check-circle-o:before {
  content: "\f05f"; }

.icon-arrow-left5:before {
  content: "\f060"; }

.icon-arrow-right5:before {
  content: "\f061"; }

.icon-arrow-up4:before {
  content: "\f062"; }

.icon-arrow-down5:before {
  content: "\f063"; }

.icon-exclamation-circle:before {
  content: "\f06a"; }

.icon-warning4:before {
  content: "\f071"; }

.icon-chevron-up2:before {
  content: "\f077"; }

.icon-chevron-down2:before {
  content: "\f079"; }

.icon-shopping-cart:before {
  content: "\f07a"; }

.icon-bar-chart-o:before {
  content: "\f080"; }

.icon-gears:before {
  content: "\f085"; }

.icon-comments:before {
  content: "\f086"; }

.icon-external-link:before {
  content: "\f08e"; }

.icon-trophy4:before {
  content: "\f091"; }

.icon-phone8:before {
  content: "\f095"; }

.icon-twitter4:before {
  content: "\f099"; }

.icon-facebook5:before {
  content: "\f09a"; }

.icon-unlock:before {
  content: "\f09c"; }

.icon-bullhorn2:before {
  content: "\f0a1"; }

.icon-bell-o:before {
  content: "\f0a5"; }

.icon-arrow-circle-left:before {
  content: "\f0a8"; }

.icon-arrow-circle-right:before {
  content: "\f0a9"; }

.icon-arrow-circle-up:before {
  content: "\f0ab"; }

.icon-arrow-circle-down:before {
  content: "\f0ac"; }

.icon-globe:before {
  content: "\f0ad"; }

.icon-chain:before {
  content: "\f0c1"; }

.icon-cloud:before {
  content: "\f0c2"; }

.icon-paperclip2:before {
  content: "\f0c6"; }

.icon-save:before {
  content: "\f0c7"; }

.icon-table:before {
  content: "\f0ce"; }

.icon-pinterest:before {
  content: "\f0d2"; }

.icon-pinterest-square:before {
  content: "\f0d3"; }

.icon-google-plus-square:before {
  content: "\f0d4"; }

.icon-google-plus:before {
  content: "\f0d5"; }

.icon-caret-down:before {
  content: "\f0d7"; }

.icon-caret-up:before {
  content: "\f0d8"; }

.icon-caret-left:before {
  content: "\f0d9"; }

.icon-caret-right:before {
  content: "\f0da"; }

.icon-envelope:before {
  content: "\f0e0"; }

.icon-linkedin2:before {
  content: "\f0e1"; }

.icon-lightbulb-o:before {
  content: "\f0eb"; }

.icon-cloud-download2:before {
  content: "\f0ed"; }

.icon-cloud-upload:before {
  content: "\f0ee"; }

.icon-file-text-o:before {
  content: "\f0f6"; }

.icon-angle-left:before {
  content: "\f104"; }

.icon-angle-right:before {
  content: "\f105"; }

.icon-desktop:before {
  content: "\f108"; }

.icon-laptop2:before {
  content: "\f109"; }

.icon-tablet2:before {
  content: "\f10a"; }

.icon-quote-left:before {
  content: "\f10d"; }

.icon-quote-right:before {
  content: "\f10e"; }

.icon-spinner:before {
  content: "\f110"; }

.icon-flag-o:before {
  content: "\f11d"; }

.icon-location-arrow2:before {
  content: "\f124"; }

.icon-question6:before {
  content: "\f128"; }

.icon-calendar-o:before {
  content: "\f133"; }

.icon-chevron-circle-left:before {
  content: "\f137"; }

.icon-chevron-circle-right:before {
  content: "\f138"; }

.icon-chevron-circle-up:before {
  content: "\f139"; }

.icon-chevron-circle-down:before {
  content: "\f13a"; }

.icon-play-circle:before {
  content: "\f144"; }

.icon-compass4:before {
  content: "\f14e"; }

.icon-toggle-down:before {
  content: "\f150"; }

.icon-toggle-up:before {
  content: "\f151"; }

.icon-toggle-right:before {
  content: "\f152"; }

.icon-sort-alpha-asc:before {
  content: "\f15d"; }

.icon-sort-alpha-desc:before {
  content: "\f15e"; }

.icon-thumbs-up:before {
  content: "\f164"; }

.icon-thumbs-down:before {
  content: "\f165"; }

.icon-youtube-square:before {
  content: "\f166"; }

.icon-youtube3:before {
  content: "\f167"; }

.icon-youtube-play:before {
  content: "\f16a"; }

.icon-instagram:before {
  content: "\f16d"; }

.icon-skype2:before {
  content: "\f17e"; }

.icon-female:before {
  content: "\f182"; }

.icon-male:before {
  content: "\f183"; }

.icon-gittip:before {
  content: "\f184"; }

.icon-arrow-circle-o-right:before {
  content: "\f18e"; }

.icon-arrow-circle-o-left:before {
  content: "\f190"; }

.icon-recycle:before {
  content: "\f1b8"; }

.icon-automobile:before {
  content: "\f1b9"; }

.icon-file-pdf-o:before {
  content: "\f1c1"; }

.icon-file-word-o:before {
  content: "\f1c2"; }

.icon-file-excel-o:before {
  content: "\f1c3"; }

.icon-file-powerpoint-o:before {
  content: "\f1c4"; }

.icon-file-photo-o:before {
  content: "\f1c5"; }

.icon-file-zip-o:before {
  content: "\f1c6"; }

.icon-file-code-o:before {
  content: "\f1c9"; }

.icon-share-alt:before {
  content: "\f1e0"; }

.icon-number:before {
  content: "\e648"; }

.icon-number2:before {
  content: "\e649"; }

.icon-number3:before {
  content: "\e64a"; }

.icon-number4:before {
  content: "\e64b"; }

.icon-number5:before {
  content: "\e64c"; }

.icon-number6:before {
  content: "\e64d"; }

.icon-number7:before {
  content: "\e64e"; }

.icon-number8:before {
  content: "\e64f"; }

.icon-number9:before {
  content: "\e650"; }

.icon-number10:before {
  content: "\e651"; }

.icon-number11:before {
  content: "\e652"; }

.icon-number12:before {
  content: "\e653"; }

.icon-number13:before {
  content: "\e654"; }

.icon-number14:before {
  content: "\e655"; }

.icon-number15:before {
  content: "\e656"; }

.icon-number16:before {
  content: "\e657"; }

.icon-number17:before {
  content: "\e658"; }

.icon-number18:before {
  content: "\e659"; }

.icon-number19:before {
  content: "\e65a"; }

.icon-number20:before {
  content: "\e65b"; }

.icon-quote2:before {
  content: "\e65c"; }

.icon-quote3:before {
  content: "\e65d"; }

.icon-calendar7:before {
  content: "\e65e"; }

.icon-calendar8:before {
  content: "\e65f"; }

.icon-file4:before {
  content: "\e660"; }

.icon-file5:before {
  content: "\e661"; }

.icon-file6:before {
  content: "\e662"; }

.icon-files2:before {
  content: "\e663"; }

.icon-phone9:before {
  content: "\e664"; }

.icon-tablet3:before {
  content: "\e665"; }

.icon-window2:before {
  content: "\e666"; }

.icon-monitor:before {
  content: "\e667"; }

.icon-coffee:before {
  content: "\e668"; }

.icon-mug:before {
  content: "\e669"; }

.icon-checkmark6:before {
  content: "\e66a"; }

.icon-cancel2:before {
  content: "\e66b"; }

.icon-cancel3:before {
  content: "\e66c"; }

.icon-plus3:before {
  content: "\e66d"; }

.icon-plus4:before {
  content: "\e66e"; }

.icon-minus3:before {
  content: "\e66f"; }

.icon-minus4:before {
  content: "\e670"; }

.icon-notice:before {
  content: "\e671"; }

.icon-notice2:before {
  content: "\e672"; }

.icon-chart2:before {
  content: "\e673"; }

.icon-chart3:before {
  content: "\e674"; }

.icon-chart4:before {
  content: "\e675"; }

.icon-location9:before {
  content: "\e676"; }

.icon-basket3:before {
  content: "\e677"; }

.icon-magnifier:before {
  content: "\e678"; }

.icon-download8:before {
  content: "\e679"; }

.icon-clipboard:before {
  content: "\e67a"; }

.icon-clipboard2:before {
  content: "\e67b"; }

.icon-clock8:before {
  content: "\e67c"; }

.icon-cart9:before {
  content: "\e67d"; }

.icon-printer2:before {
  content: "\e67e"; }

/* ========================================================== */
/* = Add extra mixins not already in bourbon here           = */
/* ========================================================== */
/* ========================================================== */
/* = Clear Fix		                                        = */
/* ========================================================== */
.clearfix, .clear {
  *zoom: 1; }
  .clearfix:before, .clearfix:after, .clear:before, .clear:after {
    content: "";
    display: table; }
  .clearfix:after, .clear:after {
    clear: both; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  font-size: 100%; }
  @media screen and (max-width: 980px) {
    html {
      font-size: 90%; } }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: "Gill Sans W04 Roman", sans-serif;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none; }
  html.michaels body {
    font-family: "Avenir LT W01_55 Roman", sans-serif; }

::selection {
  background: #FCB008;
  color: #ffffff; }
  body.kajjal ::selection {
    color: #ffffff;
    background: #E50025; }
  body.michaels ::selection {
    color: #ffffff;
    background: #498BC9; }

::-moz-selection {
  background: #FCB008;
  color: #ffffff; }
  body.kajjal ::-moz-selection {
    color: #ffffff;
    background: #E50025; }
  body.michaels ::-moz-selection {
    color: #ffffff;
    background: #498BC9; }

img::selection {
  background: transparent; }

img::-moz-selection {
  background: transparent; }

body {
  -webkit-tap-highlight-color: #FCB008; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Gill Sans W04 Roman", sans-serif;
  font-weight: normal; }
  html.michaels h1, html.michaels h2, html.michaels h3, html.michaels h4, html.michaels h5, html.michaels h6 {
    font-family: "Avenir LT W01_55 Roman", sans-serif; }

h1 {
  color: #162A46;
  font-size: 2.5em;
  line-height: 1em;
  margin-bottom: .5em; }
  body.kajjal h1 {
    color: #33312C; }
  body.michaels h1 {
    color: #33312C; }
  body.kinarakitchen h1 {
    color: #33312C; }
  @media screen and (max-width: 660px) {
    h1 {
      font-size: 2.2em; } }

h1:first-of-type {
  margin-top: 0; }

h2 {
  color: #162A46;
  font-size: 2em;
  line-height: 1.333333333333333em;
  margin-bottom: .6666666666666667em; }
  body.kajjal h2 {
    color: #33312C; }
  body.michaels h2 {
    color: #33312C; }
  body.kinarakitchen h2 {
    color: #33312C; }
  @media screen and (max-width: 660px) {
    h2 {
      font-size: 2em; } }

h3 {
  color: #162A46;
  font-size: 1.5em;
  line-height: 1em;
  margin-bottom: 1em; }
  body.kajjal h3 {
    color: #33312C; }
  body.michaels h3 {
    color: #33312C; }
  body.kinarakitchen h3 {
    color: #33312C; }
  @media screen and (max-width: 660px) {
    h3 {
      font-size: 1.3em; } }

h4 {
  color: #162A46;
  font-size: 1.3125em;
  line-height: 1.142857142857143em;
  margin-bottom: 1.142857142857143em; }
  body.kajjal h4 {
    color: #33312C; }
  body.michaels h4 {
    color: #33312C; }
  body.kinarakitchen h4 {
    color: #33312C; }
  @media screen and (max-width: 660px) {
    h4 {
      font-size: 0.9em; } }

h5 {
  color: #162A46;
  font-size: 1.125em;
  line-height: 1.333333333333333em;
  margin-bottom: 1.333333333333333em; }
  body.kajjal h5 {
    color: #33312C; }
  body.michaels h5 {
    color: #33312C; }
  body.kinarakitchen h5 {
    color: #33312C; }
  @media screen and (max-width: 660px) {
    h5 {
      font-size: 0.9em; } }

h6 {
  color: #162A46;
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 1.5em; }
  body.kajjal h6 {
    color: #33312C; }
  body.michaels h6 {
    color: #33312C; }
  body.kinarakitchen h6 {
    color: #33312C; }

p {
  line-height: 1.9em;
  margin-bottom: 1.5em;
  color: rgba(129, 128, 126, 0.8);
  font-size: 1.125em; }
  html.ie8 p {
    color: #818081; }
  @media screen and (max-width: 790px) {
    p {
      font-size: 0.95em;
      line-height: 1.7em; } }

a {
  color: #162A46;
  text-decoration: none;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear; }
  a:hover, a:focus {
    color: #FCB008; }
  body.kajjal a {
    color: #E50025; }
  body.michaels a {
    color: #498BC9; }
  body.kinarakitchen a {
    color: #33312C; }

a.button, a.button.alt {
  background-color: #FFAE27;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFAE27), color-stop(100%, #E49B00));
  background-image: -webkit-linear-gradient(#FFAE27, #E49B00);
  background-image: linear-gradient(#FFAE27, #E49B00);
  color: #ffffff;
  border-radius: 4px;
  padding: 10px 5%;
  display: inline-block;
  margin-bottom: 3%;
  font-family: "allerregular", sans-serif; }
  @media screen and (max-width: 440px) {
    a.button, a.button.alt {
      display: block; } }
  a.button .icon, a.button.alt .icon {
    margin-left: 10px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    position: relative; }
    @media screen and (max-width: 440px) {
      a.button .icon, a.button.alt .icon {
        float: right; } }
    html.ie8 a.button .icon, html.ie8 a.button.alt .icon {
      border: none; }
  a.button:hover, a.button.alt:hover {
    color: #ffffff;
    background: #ce8f03; }
  body.kajjal a.button, body.kajjal a.button.alt {
    background-color: #E50025;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E50025), color-stop(100%, #B60017));
    background-image: -webkit-linear-gradient(#E50025, #B60017);
    background-image: linear-gradient(#E50025, #B60017);
    color: #ffffff; }
    body.kajjal a.button:hover, body.kajjal a.button.alt:hover {
      background: #b2001d; }
  body.michaels a.button, body.michaels a.button.alt {
    background-color: #3E8EDE;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3E8EDE), color-stop(100%, #3077BD));
    background-image: -webkit-linear-gradient(#3E8EDE, #3077BD);
    background-image: linear-gradient(#3E8EDE, #3077BD);
    color: #ffffff;
    font-family: "Avenir LT W01_85 Heavy", sans-serif; }
    body.michaels a.button:hover, body.michaels a.button.alt:hover {
      background: #3371ac; }
  body.kinarakitchen a.button, body.kinarakitchen a.button.alt {
    color: #ffffff; }

button.competition_button {
  background-color: #FFAE27;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFAE27), color-stop(100%, #E49B00));
  background-image: -webkit-linear-gradient(#FFAE27, #E49B00);
  background-image: linear-gradient(#FFAE27, #E49B00);
  color: #ffffff;
  border-radius: 4px;
  padding: 10px 5%;
  display: inline-block;
  margin-bottom: 3%;
  font-family: "allerregular", sans-serif;
  border: none; }
  @media screen and (max-width: 440px) {
    button.competition_button {
      display: block; } }
  button.competition_button .icon {
    margin-left: 10px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    position: relative; }
    @media screen and (max-width: 440px) {
      button.competition_button .icon {
        float: right; } }
    html.ie8 button.competition_button .icon {
      border: none; }
  button.competition_button:hover {
    color: #ffffff;
    background: #ce8f03; }
  body.kajjal button.competition_button {
    background-color: #E50025;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E50025), color-stop(100%, #B60017));
    background-image: -webkit-linear-gradient(#E50025, #B60017);
    background-image: linear-gradient(#E50025, #B60017);
    color: #ffffff; }
    body.kajjal button.competition_button:hover {
      background: #b2001d; }
  body.michaels button.competition_button {
    background-color: #3E8EDE;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3E8EDE), color-stop(100%, #3077BD));
    background-image: -webkit-linear-gradient(#3E8EDE, #3077BD);
    background-image: linear-gradient(#3E8EDE, #3077BD);
    color: #ffffff;
    font-family: "Avenir LT W01_85 Heavy", sans-serif; }
    body.michaels button.competition_button:hover {
      background: #3371ac; }
  body.kinarakitchen button.competition_button {
    color: #ffffff; }

a.button.alt {
  background: #162A46;
  color: #ffffff;
  border: 1px solid #162A46; }
  a.button.alt:hover {
    color: #ffffff;
    background: #0a131f;
    border: 1px solid #0a131f; }

img {
  max-width: 100%;
  height: auto; }

figure img {
  width: 100%;
  height: auto;
  display: block; }

a > img {
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear; }

figcaption {
  color: #888; }

ul, ol, dl {
  padding: 0;
  margin: 0 0 0 5%;
  color: rgba(129, 128, 126, 0.8); }
  ul li, ul dt, ul dd, ol li, ol dt, ol dd, dl li, dl dt, dl dd {
    line-height: 175%;
    padding-bottom: 10px; }
  ul dt, ol dt, dl dt {
    font-weight: bold; }

hr {
  background: #F4F4F4;
  color: #F4F4F4;
  clear: both;
  float: none;
  width: 100%;
  height: 1px;
  margin: 0 0 1.4em;
  border: none; }
  body.kinarakitchen hr {
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important; }

iframe {
  width: 100% !important;
  height: 430px !important;
  margin: 20px 0;
  padding: 5px;
  background: #ffffff;
  box-shadow: 0px 2px 20px #F4F4F4;
  border: 1px solid #DDD; }
  @media screen and (max-width: 790px) {
    iframe {
      height: 260px !important; } }

.notice-warning, .notice-preview, p.no-results {
  width: 100%;
  margin: 0 0 33px;
  padding: 16px 20px;
  background: #ffefc0;
  border: 2px solid #ffdaa7; }
  html.ie8 .notice-warning, html.ie8 .notice-preview, html.ie8 p.no-results, html.ie9 .notice-warning, html.ie9 .notice-preview, html.ie9 p.no-results, html.ie10 .notice-warning, html.ie10 .notice-preview, html.ie10 p.no-results, html.firefox .notice-warning, html.firefox .notice-preview, html.firefox p.no-results {
    font-size: 13px; }
  .notice-warning span, .notice-preview span, p.no-results span {
    float: left;
    font-size: 1.1em;
    margin-top: 4px;
    color: #8d6a00; }
  .notice-warning p, .notice-preview p, p.no-results p {
    margin: 0 0 5px 0;
    padding-left: 30px;
    text-align: left;
    color: #8d6a00; }
    .notice-warning p:last-child, .notice-preview p:last-child, p.no-results p:last-child {
      margin: 0; }
    .notice-warning p a, .notice-preview p a, p.no-results p a {
      color: #745700;
      border-bottom: 1px solid #745700;
      padding-bottom: 1px; }
      .notice-warning p a:hover, .notice-preview p a:hover, p.no-results p a:hover {
        color: #413000; }
  .notice-warning.top, .top.notice-preview, p.top.no-results {
    margin-top: 0 !important; }
  .notice-warning.lrg, .lrg.notice-preview, p.lrg.no-results {
    padding: 22px 27px;
    margin: 45px 0; }
    .notice-warning.lrg span, .lrg.notice-preview span, p.lrg.no-results span {
      margin-top: 6px;
      font-size: 1.33em; }
    .notice-warning.lrg p, .lrg.notice-preview p, p.lrg.no-results p {
      font-size: 1.1em;
      padding-left: 42px; }

.notice-success {
  width: 100%;
  margin: 0 0 33px;
  padding: 16px 20px;
  background: #c7e1a8;
  border: 2px solid #c6da95; }
  html.ie8 .notice-success, html.ie9 .notice-success, html.ie10 .notice-success, html.firefox .notice-success {
    font-size: 13px; }
  .notice-success span {
    float: left;
    font-size: 1.1em;
    margin-top: 4px;
    color: #486624; }
  .notice-success p {
    margin: 0 0 5px 0;
    padding-left: 30px;
    text-align: left;
    color: #486624; }
    .notice-success p:last-child {
      margin: 0; }
    .notice-success p a {
      color: #3b531d;
      border-bottom: 1px solid #3b531d;
      padding-bottom: 1px; }
      .notice-success p a:hover {
        color: #202e10; }
  .notice-success.top {
    margin-top: 0 !important; }
  .notice-success.lrg {
    padding: 22px 27px;
    margin: 45px 0; }
    .notice-success.lrg span {
      margin-top: 6px;
      font-size: 1.33em; }
    .notice-success.lrg p {
      font-size: 1.1em;
      padding-left: 42px; }

.notice-info {
  width: 100%;
  margin: 0 0 33px;
  padding: 16px 20px;
  background: #718dc8;
  border: 2px solid #578abe; }
  html.ie8 .notice-info, html.ie9 .notice-info, html.ie10 .notice-info, html.firefox .notice-info {
    font-size: 13px; }
  .notice-info span {
    float: left;
    font-size: 1.1em;
    margin-top: 4px;
    color: #17233c; }
  .notice-info p {
    margin: 0 0 5px 0;
    padding-left: 30px;
    text-align: left;
    color: #17233c; }
    .notice-info p:last-child {
      margin: 0; }
    .notice-info p a {
      color: #10182a;
      border-bottom: 1px solid #10182a;
      padding-bottom: 1px; }
      .notice-info p a:hover {
        color: #020305; }
  .notice-info.top {
    margin-top: 0 !important; }
  .notice-info.lrg {
    padding: 22px 27px;
    margin: 45px 0; }
    .notice-info.lrg span {
      margin-top: 6px;
      font-size: 1.33em; }
    .notice-info.lrg p {
      font-size: 1.1em;
      padding-left: 42px; }

.notice-danger {
  width: 100%;
  margin: 0 0 33px;
  padding: 16px 20px;
  background: #ff8f83;
  border: 2px solid #ff6a74; }
  html.ie8 .notice-danger, html.ie9 .notice-danger, html.ie10 .notice-danger, html.firefox .notice-danger {
    font-size: 13px; }
  .notice-danger span {
    float: left;
    font-size: 1.1em;
    margin-top: 4px;
    color: #6a0a00; }
  .notice-danger p {
    margin: 0 0 5px 0;
    padding-left: 30px;
    text-align: left;
    color: #6a0a00; }
    .notice-danger p:last-child {
      margin: 0; }
    .notice-danger p a {
      color: #500800;
      border-bottom: 1px solid #500800;
      padding-bottom: 1px; }
      .notice-danger p a:hover {
        color: #1d0300; }
  .notice-danger.top {
    margin-top: 0 !important; }
  .notice-danger.lrg {
    padding: 22px 27px;
    margin: 45px 0; }
    .notice-danger.lrg span {
      margin-top: 6px;
      font-size: 1.33em; }
    .notice-danger.lrg p {
      font-size: 1.1em;
      padding-left: 42px; }

table {
  width: 100%;
  margin-bottom: 20px; }
  table tr th {
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: normal;
    background: #162A46;
    color: #ffffff; }
    body.kajjal table tr th {
      background: #33312C; }
    body.michaels table tr th {
      color: #33312C; }
    body.kinarakitchen table tr th {
      background: #33312C; }
  table tr td {
    padding: 10px 20px;
    color: rgba(129, 128, 126, 0.8); }
  table tr:nth-child(odd) {
    background: #F4F4F4;
    border-top: 1px solid #F4F4F4;
    border-bottom: 1px solid #F4F4F4; }

blockquote {
  padding: 0;
  margin: 0;
  color: #7F7F7E;
  border-bottom: 1px solid #DDD;
  font-style: italic;
  position: relative;
  padding: 20px 40px 20px 80px;
  margin-bottom: 25px;
  font-size: 1.4em;
  line-height: 140%; }
  blockquote:before {
    position: absolute;
    font-family: "icomoon";
    content: "\e19f";
    font-style: normal;
    color: #1c3659;
    top: 20px;
    font-size: 1.6em;
    left: 22px;
    opacity: 0.2; }

form div {
  display: block; }
  form div ul.checkboxes {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0; }
  form div label {
    display: block;
    outline: none;
    padding: 0;
    margin: 0;
    line-height: 100%;
    margin: 1.5em 0 1.1em;
    font-family: "Gill Sans W04 Roman", sans-serif;
    font-size: 0.9em;
    color: #46515F; }
    html.michaels form div label {
      font-family: "Avenir LT W01_55 Roman", sans-serif; }
  form div span.required {
    color: #B61200;
    float: right; }

form input:focus, form textarea:focus, form select:focus {
  outline: 0px; }

form input[type="text"],
form input[type="url"],
form input[type="email"],
form input[type="password"],
form input[type="search"],
form input[type="number"],
form input[type="date"],
form input[type="month"],
form input[type="week"],
form input[type="time"],
form input[type="datetime"],
form input[type="datetime-local"],
form input[type="tel"],
form input[type="datalist"],
form select,
form textarea {
  display: block;
  width: 100%;
  margin: 0 0 0.75em;
  padding: 10px 20px;
  border: 1px solid #E9E6E0;
  background: #ffffff;
  color: #444;
  line-height: 1.5em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

form input[type="range"],
form input[type="color"] {
  vertical-align: middle;
  height: 1.5em;
  width: 100%; }

form input[type="range"] {
  height: 1.4em; }

form input[type="color"] {
  width: 1.5em; }

form input[type="time"] {
  margin: 0 0 0.55em; }

form input[type="radio"],
form input[type="checkbox"] {
  margin-right: 10px;
  margin-bottom: 10px; }

form textarea {
  height: 120px; }
  html.ie9 form textarea {
    color: #888; }
  html.ie8 form textarea {
    color: #888; }

html.ie9 form input[type="text"] {
  color: #888; }

html.ie8 form input[type="text"] {
  color: #888; }

form select {
  height: 2.6em;
  font-size: 14px;
  font-weight: normal; }

form input[type="submit"],
form input[type="button"] {
  background-color: #FFAE27;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFAE27), color-stop(100%, #E49B00));
  background-image: -webkit-linear-gradient(#FFAE27, #E49B00);
  background-image: linear-gradient(#FFAE27, #E49B00);
  color: #ffffff;
  border-radius: 4px;
  padding: 10px 5%;
  display: inline-block;
  margin-bottom: 3%;
  font-family: "allerregular", sans-serif;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  margin-top: 10px;
  border: none; }
  @media screen and (max-width: 440px) {
    form input[type="submit"],
    form input[type="button"] {
      display: block; } }
  form input[type="submit"] .icon,
  form input[type="button"] .icon {
    margin-left: 10px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    position: relative; }
    @media screen and (max-width: 440px) {
      form input[type="submit"] .icon,
      form input[type="button"] .icon {
        float: right; } }
    html.ie8 form input[type="submit"] .icon, html.ie8
    form input[type="button"] .icon {
      border: none; }
  form input[type="submit"]:hover,
  form input[type="button"]:hover {
    color: #ffffff;
    background: #ce8f03; }
  body.kajjal form input[type="submit"], body.kajjal
  form input[type="button"] {
    background-color: #E50025;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E50025), color-stop(100%, #B60017));
    background-image: -webkit-linear-gradient(#E50025, #B60017);
    background-image: linear-gradient(#E50025, #B60017);
    color: #ffffff; }
    body.kajjal form input[type="submit"]:hover, body.kajjal
    form input[type="button"]:hover {
      background: #b2001d; }
  body.michaels form input[type="submit"], body.michaels
  form input[type="button"] {
    background-color: #3E8EDE;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3E8EDE), color-stop(100%, #3077BD));
    background-image: -webkit-linear-gradient(#3E8EDE, #3077BD);
    background-image: linear-gradient(#3E8EDE, #3077BD);
    color: #ffffff;
    font-family: "Avenir LT W01_85 Heavy", sans-serif; }
    body.michaels form input[type="submit"]:hover, body.michaels
    form input[type="button"]:hover {
      background: #3371ac; }
  body.kinarakitchen form input[type="submit"], body.kinarakitchen
  form input[type="button"] {
    color: #ffffff; }

mark {
  background: #162A46;
  color: #ffffff;
  padding: 5px 10px; }
  body.kajjal mark {
    background: #E50025; }
  body.michaels mark {
    color: #498BC9; }
  body.kinarakitchen mark {
    background: #33312C; }

/**
 * selectize.scss (v0.8.7)
 * Copyright (c) 2014 Emanuel Kluge
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Emanuel Kluge <mail@emanuel-kluge.de>
 */
.selectize-control {
  position: relative; }

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #444;
  font-size: 14px;
  line-height: 24px;
  -webkit-font-smoothing: inherit; }

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #ffffff;
  cursor: text;
  display: inline-block; }

.selectize-input {
  border: 1px solid #E9E6E0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }
  .selectize-control.multi .selectize-input.has-items {
    padding: 6px 8px 3px; }
  .selectize-input.full {
    background-color: #ffffff; }
  .selectize-input.disabled, .selectize-input.disabled * {
    cursor: default !important; }
  .selectize-input.focus {
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); }
  .selectize-input.dropdown-active {
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0; }
  .selectize-input > * {
    vertical-align: baseline;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline; }
  .selectize-control.multi .selectize-input > div {
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 2px 6px;
    background: black;
    color: white;
    border: 0 solid navy; }
    .selectize-control.multi .selectize-input > div.active {
      background: orange;
      color: blue;
      border: 0 solid yellow; }
  .selectize-control.multi .selectize-input.disabled > div, .selectize-control.multi .selectize-input.disabled > div.active {
    color: white;
    background: #4d4d4d;
    border: 0 solid #8d8d8d; }
  .selectize-input > input {
    padding: 0 !important;
    min-height: 0 !important;
    max-height: none !important;
    max-width: 100% !important;
    margin: 0 2px 0 0 !important;
    text-indent: 0 !important;
    border: 0 none !important;
    background: none !important;
    line-height: inherit !important;
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
    .selectize-input > input::-ms-clear {
      display: none; }
    .selectize-input > input:focus {
      outline: none !important; }

.selectize-input:after {
  content: ' ';
  display: block;
  clear: left; }

.selectize-input.dropdown-active:before {
  content: ' ';
  display: block;
  position: absolute;
  background: #DDD;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0; }

.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #E9E6E0;
  background: #ffffff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px; }
  .selectize-dropdown [data-selectable] {
    cursor: pointer;
    overflow: hidden; }
    .selectize-dropdown [data-selectable] .highlight {
      background: rgba(20, 38, 65, 0.95);
      -webkit-border-radius: 1px;
      -moz-border-radius: 1px;
      border-radius: 1px; }
  .selectize-dropdown [data-selectable], .selectize-dropdown .optgroup-header {
    padding: 6px 15px; }
  .selectize-dropdown .optgroup:first-child .optgroup-header {
    border-top: 0 none; }
  .selectize-dropdown .optgroup-header {
    color: #444;
    background: #ffffff;
    cursor: default; }
  .selectize-dropdown .active {
    background-color: #F4F4F4;
    color: #444; }
    .selectize-dropdown .active.create {
      color: #444; }
  .selectize-dropdown .create {
    color: rgba(68, 68, 68, 0.5); }

.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px; }

.selectize-control.single .selectize-input, .selectize-control.single .selectize-input input {
  cursor: pointer; }

.selectize-control.single .selectize-input.input-active, .selectize-control.single .selectize-input.input-active input {
  cursor: text; }

.selectize-control.single .selectize-input:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #444 transparent transparent transparent; }

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -3.2px;
  border-width: 0 4px 4px 4px;
  border-color: transparent transparent #444 transparent; }

.selectize-control.rtl.single .selectize-input:after {
  left: 20px;
  right: auto; }

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important; }

.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: yellow; }

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none; }

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0; }

.flexslider .slides > div {
  display: none;
  -webkit-backface-visibility: hidden; }

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block; }

.flex-pauseplay span {
  text-transform: capitalize; }

/* Clearfix for the .slides element */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

html[xmlns] .slides {
  display: block; }

* html .slides {
  height: 1%; }

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block; }

/* FlexSlider Default Theme
*********************************/
.flexslider {
  position: relative;
  zoom: 1; }

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.loading .flex-viewport {
  max-height: 300px; }

.flexslider .slides {
  zoom: 1; }

.carousel li {
  margin-right: 5px; }

/* Direction Nav */
.flex-direction-nav a {
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: white;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease; }

.flex-direction-nav .flex-prev {
  left: 15px; }

.flex-direction-nav .flex-next {
  right: 15px;
  text-align: right; }

.flexslider:hover .flex-prev {
  opacity: 0.7;
  left: 15px; }

.flexslider:hover .flex-next {
  opacity: 0.7;
  right: 15px; }

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1; }

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default; }

.flex-direction-nav a:before {
  font-family: "icomoon";
  font-size: 30px;
  display: inline-block;
  content: '\f053'; }

.flex-direction-nav a.flex-next:before {
  content: '\f054'; }

/* Pause/Play */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000; }

.flex-pauseplay a:before {
  font-family: "icomoon";
  font-size: 20px;
  display: inline-block;
  content: '\e381'; }

.flex-pauseplay a:hover {
  opacity: 1; }

.flex-pauseplay a.flex-play:before {
  content: '\e380'; }

/* Control Nav */
.flex-control-nav {
  width: 25%;
  position: absolute;
  bottom: 40px;
  right: 0px;
  text-align: center;
  z-index: 10000; }

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline; }

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: white;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px; }

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7); }

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default; }

@media screen and (max-width: 790px) {
  .flex-control-nav {
    display: none; } }

section#main_content, section#custom_content {
  background: url("/assets/images/backgrounds/bg_texture.png");
  width: 100%;
  padding-top: 4%; }
  @media screen and (max-width: 790px) {
    section#main_content, section#custom_content {
      padding-top: 30px; } }
  section#main_content > div, section#custom_content > div {
    *zoom: 1;
    max-width: 67.5em;
    margin-left: auto;
    margin-right: auto; }
    section#main_content > div:before, section#main_content > div:after, section#custom_content > div:before, section#custom_content > div:after {
      content: "";
      display: table; }
    section#main_content > div:after, section#custom_content > div:after {
      clear: both; }
    @media screen and (max-width: 1280px) {
      section#main_content > div, section#custom_content > div {
        max-width: 1080px; } }
    @media screen and (max-width: 1100px) {
      section#main_content > div, section#custom_content > div {
        max-width: 960px; } }
    @media screen and (max-width: 980px) {
      section#main_content > div, section#custom_content > div {
        max-width: 768px; } }
    @media screen and (max-width: 790px) {
      section#main_content > div, section#custom_content > div {
        max-width: 640px; } }
    @media screen and (max-width: 660px) {
      section#main_content > div, section#custom_content > div {
        max-width: 500px; } }
    @media screen and (max-width: 560px) {
      section#main_content > div, section#custom_content > div {
        max-width: 480px; } }
    @media screen and (max-width: 500px) {
      section#main_content > div, section#custom_content > div {
        max-width: 420px; } }
    @media screen and (max-width: 440px) {
      section#main_content > div, section#custom_content > div {
        max-width: 360px; } }
    @media screen and (max-width: 380px) {
      section#main_content > div, section#custom_content > div {
        max-width: 280px; } }
    section#main_content > div > div, section#custom_content > div > div {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%; }
      section#main_content > div > div:last-child, section#custom_content > div > div:last-child {
        margin-right: 0; }
      section#main_content > div > div > article, section#custom_content > div > div > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 66.0377358491%;
        background: #ffffff;
        padding: 10px;
        border: 1px solid #dedad1;
        margin-bottom: 40px; }
        section#main_content > div > div > article:last-child, section#custom_content > div > div > article:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          section#main_content > div > div > article, section#custom_content > div > div > article {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 100%;
            margin-left: 0%; }
            section#main_content > div > div > article:last-child, section#custom_content > div > div > article:last-child {
              margin-right: 0; } }
        section#main_content > div > div > article > .content_wrap, section#custom_content > div > div > article > .content_wrap {
          margin: 25px;
          overflow: scroll; }
          section#main_content > div > div > article > .content_wrap .instagram iframe, section#custom_content > div > div > article > .content_wrap .instagram iframe {
            height: 640px !important;
            margin: 0 !important;
            padding: 0 !important;
            box-shadow: none !important; }
            @media screen and (max-width: 1100px) {
              section#main_content > div > div > article > .content_wrap .instagram iframe, section#custom_content > div > div > article > .content_wrap .instagram iframe {
                height: 562px !important; } }
            @media screen and (max-width: 980px) {
              section#main_content > div > div > article > .content_wrap .instagram iframe, section#custom_content > div > div > article > .content_wrap .instagram iframe {
                height: 435px !important; } }
            @media screen and (max-width: 790px) {
              section#main_content > div > div > article > .content_wrap .instagram iframe, section#custom_content > div > div > article > .content_wrap .instagram iframe {
                height: 435px !important; } }
            @media screen and (max-width: 560px) {
              section#main_content > div > div > article > .content_wrap .instagram iframe, section#custom_content > div > div > article > .content_wrap .instagram iframe {
                height: 408px !important; } }
            @media screen and (max-width: 500px) {
              section#main_content > div > div > article > .content_wrap .instagram iframe, section#custom_content > div > div > article > .content_wrap .instagram iframe {
                height: 348px !important; } }
            @media screen and (max-width: 440px) {
              section#main_content > div > div > article > .content_wrap .instagram iframe, section#custom_content > div > div > article > .content_wrap .instagram iframe {
                height: 288px !important; } }
            @media screen and (max-width: 380px) {
              section#main_content > div > div > article > .content_wrap .instagram iframe, section#custom_content > div > div > article > .content_wrap .instagram iframe {
                height: 208px !important; } }
            section#main_content > div > div > article > .content_wrap .instagram iframe li, section#custom_content > div > div > article > .content_wrap .instagram iframe li {
              display: none !important; }
        section#main_content > div > div > article > .team_wrap, section#custom_content > div > div > article > .team_wrap {
          margin: 15px; }
      section#main_content > div > div > aside, section#custom_content > div > div > aside {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 27.8301886792%;
        margin-left: 4.2452830189%; }
        section#main_content > div > div > aside:last-child, section#custom_content > div > div > aside:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          section#main_content > div > div > aside, section#custom_content > div > div > aside {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 100%;
            margin-left: 0%; }
            section#main_content > div > div > aside:last-child, section#custom_content > div > div > aside:last-child {
              margin-right: 0; } }
      section#main_content > div > div > article.full_width, section#custom_content > div > div > article.full_width {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%; }
        section#main_content > div > div > article.full_width:last-child, section#custom_content > div > div > article.full_width:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          section#main_content > div > div > article.full_width, section#custom_content > div > div > article.full_width {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 100%;
            margin-left: 0%; }
            section#main_content > div > div > article.full_width:last-child, section#custom_content > div > div > article.full_width:last-child {
              margin-right: 0; } }

section#custom_content {
  padding-bottom: 2%; }
  section#custom_content > div > div section#layout_1 > article, section#custom_content > div > div section.layout_1 > article {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 100%; }
    section#custom_content > div > div section#layout_1 > article:last-child, section#custom_content > div > div section.layout_1 > article:last-child {
      margin-right: 0; }
    @media screen and (max-width: 790px) {
      section#custom_content > div > div section#layout_1 > article, section#custom_content > div > div section.layout_1 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        margin-left: 0%; }
        section#custom_content > div > div section#layout_1 > article:last-child, section#custom_content > div > div section.layout_1 > article:last-child {
          margin-right: 0; } }
  section#custom_content > div > div section#layout_2 > article, section#custom_content > div > div section.layout_2 > article {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 49.0566037736%; }
    section#custom_content > div > div section#layout_2 > article:last-child, section#custom_content > div > div section.layout_2 > article:last-child {
      margin-right: 0; }
    @media screen and (max-width: 790px) {
      section#custom_content > div > div section#layout_2 > article, section#custom_content > div > div section.layout_2 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        margin-left: 0%; }
        section#custom_content > div > div section#layout_2 > article:last-child, section#custom_content > div > div section.layout_2 > article:last-child {
          margin-right: 0; } }
  section#custom_content > div > div section#layout_3 > article, section#custom_content > div > div section.layout_3 > article {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 32.0754716981%; }
    section#custom_content > div > div section#layout_3 > article:last-child, section#custom_content > div > div section.layout_3 > article:last-child {
      margin-right: 0; }
    section#custom_content > div > div section#layout_3 > article:nth-child(4n), section#custom_content > div > div section.layout_3 > article:nth-child(4n) {
      margin-right: 0; }
    section#custom_content > div > div section#layout_3 > article:nth-child(4n+1), section#custom_content > div > div section.layout_3 > article:nth-child(4n+1) {
      clear: left; }
    @media screen and (max-width: 790px) {
      section#custom_content > div > div section#layout_3 > article, section#custom_content > div > div section.layout_3 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        margin-left: 0%; }
        section#custom_content > div > div section#layout_3 > article:last-child, section#custom_content > div > div section.layout_3 > article:last-child {
          margin-right: 0; } }
  section#custom_content > div > div section#layout_4 > article, section#custom_content > div > div section.layout_4 > article {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 23.5849056604%; }
    section#custom_content > div > div section#layout_4 > article:last-child, section#custom_content > div > div section.layout_4 > article:last-child {
      margin-right: 0; }
    @media screen and (max-width: 790px) {
      section#custom_content > div > div section#layout_4 > article, section#custom_content > div > div section.layout_4 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        margin-left: 0%; }
        section#custom_content > div > div section#layout_4 > article:last-child, section#custom_content > div > div section.layout_4 > article:last-child {
          margin-right: 0; } }
    @media screen and (max-width: 790px) {
      section#custom_content > div > div section#layout_4 > article, section#custom_content > div > div section.layout_4 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 49.0566037736%;
        margin-bottom: 20px; }
        section#custom_content > div > div section#layout_4 > article:last-child, section#custom_content > div > div section.layout_4 > article:last-child {
          margin-right: 0; }
        section#custom_content > div > div section#layout_4 > article:nth-child(2n), section#custom_content > div > div section.layout_4 > article:nth-child(2n) {
          margin-right: 0; }
        section#custom_content > div > div section#layout_4 > article:nth-child(2n+1), section#custom_content > div > div section.layout_4 > article:nth-child(2n+1) {
          clear: left; } }
    @media screen and (max-width: 500px) {
      section#custom_content > div > div section#layout_4 > article, section#custom_content > div > div section.layout_4 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        margin-bottom: 20px; }
        section#custom_content > div > div section#layout_4 > article:last-child, section#custom_content > div > div section.layout_4 > article:last-child {
          margin-right: 0; }
        section#custom_content > div > div section#layout_4 > article:nth-child(2n), section#custom_content > div > div section.layout_4 > article:nth-child(2n) {
          margin-right: 0; }
        section#custom_content > div > div section#layout_4 > article:nth-child(2n+1), section#custom_content > div > div section.layout_4 > article:nth-child(2n+1) {
          clear: left; } }
  section#custom_content > div > div section#layout_5 > article, section#custom_content > div > div section.layout_5 > article {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 18.4905660377%; }
    section#custom_content > div > div section#layout_5 > article:last-child, section#custom_content > div > div section.layout_5 > article:last-child {
      margin-right: 0; }
    @media screen and (max-width: 790px) {
      section#custom_content > div > div section#layout_5 > article, section#custom_content > div > div section.layout_5 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        margin-left: 0%; }
        section#custom_content > div > div section#layout_5 > article:last-child, section#custom_content > div > div section.layout_5 > article:last-child {
          margin-right: 0; } }
    @media screen and (max-width: 1100px) {
      section#custom_content > div > div section#layout_5 > article, section#custom_content > div > div section.layout_5 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 23.5849056604%;
        margin-bottom: 20px; }
        section#custom_content > div > div section#layout_5 > article:last-child, section#custom_content > div > div section.layout_5 > article:last-child {
          margin-right: 0; }
        section#custom_content > div > div section#layout_5 > article:nth-child(4n), section#custom_content > div > div section.layout_5 > article:nth-child(4n) {
          margin-right: 0; }
        section#custom_content > div > div section#layout_5 > article:nth-child(4n+1), section#custom_content > div > div section.layout_5 > article:nth-child(4n+1) {
          clear: left; } }
    @media screen and (max-width: 980px) {
      section#custom_content > div > div section#layout_5 > article, section#custom_content > div > div section.layout_5 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 32.0754716981%;
        margin-bottom: 20px; }
        section#custom_content > div > div section#layout_5 > article:nth-child(4n), section#custom_content > div > div section.layout_5 > article:nth-child(4n) {
          margin-right: 1.8867924528%; }
        section#custom_content > div > div section#layout_5 > article:nth-child(4n+1), section#custom_content > div > div section.layout_5 > article:nth-child(4n+1) {
          clear: none; }
        section#custom_content > div > div section#layout_5 > article:last-child, section#custom_content > div > div section.layout_5 > article:last-child {
          margin-right: 0; }
        section#custom_content > div > div section#layout_5 > article:nth-child(3n), section#custom_content > div > div section.layout_5 > article:nth-child(3n) {
          margin-right: 0; }
        section#custom_content > div > div section#layout_5 > article:nth-child(3n+1), section#custom_content > div > div section.layout_5 > article:nth-child(3n+1) {
          clear: left; } }
    @media screen and (max-width: 790px) {
      section#custom_content > div > div section#layout_5 > article, section#custom_content > div > div section.layout_5 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 49.0566037736%;
        margin-bottom: 20px; }
        section#custom_content > div > div section#layout_5 > article:nth-child(3n), section#custom_content > div > div section.layout_5 > article:nth-child(3n) {
          margin-right: 1.8867924528%; }
        section#custom_content > div > div section#layout_5 > article:nth-child(3n+1), section#custom_content > div > div section.layout_5 > article:nth-child(3n+1) {
          clear: none; }
        section#custom_content > div > div section#layout_5 > article:last-child, section#custom_content > div > div section.layout_5 > article:last-child {
          margin-right: 0; }
        section#custom_content > div > div section#layout_5 > article:nth-child(2n), section#custom_content > div > div section.layout_5 > article:nth-child(2n) {
          margin-right: 0; }
        section#custom_content > div > div section#layout_5 > article:nth-child(2n+1), section#custom_content > div > div section.layout_5 > article:nth-child(2n+1) {
          clear: left; } }
    @media screen and (max-width: 500px) {
      section#custom_content > div > div section#layout_5 > article, section#custom_content > div > div section.layout_5 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        margin-bottom: 20px; }
        section#custom_content > div > div section#layout_5 > article:nth-child(2n), section#custom_content > div > div section.layout_5 > article:nth-child(2n) {
          margin-right: 1.8867924528%; }
        section#custom_content > div > div section#layout_5 > article:nth-child(2n+1), section#custom_content > div > div section.layout_5 > article:nth-child(2n+1) {
          clear: none; }
        section#custom_content > div > div section#layout_5 > article:last-child, section#custom_content > div > div section.layout_5 > article:last-child {
          margin-right: 0; } }
  section#custom_content > div > div section#layout_6 > article, section#custom_content > div > div section.layout_6 > article {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 15.0943396226%; }
    section#custom_content > div > div section#layout_6 > article:last-child, section#custom_content > div > div section.layout_6 > article:last-child {
      margin-right: 0; }
    @media screen and (max-width: 790px) {
      section#custom_content > div > div section#layout_6 > article, section#custom_content > div > div section.layout_6 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        margin-left: 0%; }
        section#custom_content > div > div section#layout_6 > article:last-child, section#custom_content > div > div section.layout_6 > article:last-child {
          margin-right: 0; } }
    @media screen and (max-width: 1100px) {
      section#custom_content > div > div section#layout_6 > article, section#custom_content > div > div section.layout_6 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 23.5849056604%;
        margin-bottom: 20px; }
        section#custom_content > div > div section#layout_6 > article:last-child, section#custom_content > div > div section.layout_6 > article:last-child {
          margin-right: 0; }
        section#custom_content > div > div section#layout_6 > article:nth-child(4n), section#custom_content > div > div section.layout_6 > article:nth-child(4n) {
          margin-right: 0; }
        section#custom_content > div > div section#layout_6 > article:nth-child(4n+1), section#custom_content > div > div section.layout_6 > article:nth-child(4n+1) {
          clear: left; } }
    @media screen and (max-width: 980px) {
      section#custom_content > div > div section#layout_6 > article, section#custom_content > div > div section.layout_6 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 32.0754716981%;
        margin-bottom: 20px; }
        section#custom_content > div > div section#layout_6 > article:nth-child(4n), section#custom_content > div > div section.layout_6 > article:nth-child(4n) {
          margin-right: 1.8867924528%; }
        section#custom_content > div > div section#layout_6 > article:nth-child(4n+1), section#custom_content > div > div section.layout_6 > article:nth-child(4n+1) {
          clear: none; }
        section#custom_content > div > div section#layout_6 > article:last-child, section#custom_content > div > div section.layout_6 > article:last-child {
          margin-right: 0; }
        section#custom_content > div > div section#layout_6 > article:nth-child(3n), section#custom_content > div > div section.layout_6 > article:nth-child(3n) {
          margin-right: 0; }
        section#custom_content > div > div section#layout_6 > article:nth-child(3n+1), section#custom_content > div > div section.layout_6 > article:nth-child(3n+1) {
          clear: left; } }
    @media screen and (max-width: 790px) {
      section#custom_content > div > div section#layout_6 > article, section#custom_content > div > div section.layout_6 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 49.0566037736%;
        margin-bottom: 20px; }
        section#custom_content > div > div section#layout_6 > article:nth-child(3n), section#custom_content > div > div section.layout_6 > article:nth-child(3n) {
          margin-right: 1.8867924528%; }
        section#custom_content > div > div section#layout_6 > article:nth-child(3n+1), section#custom_content > div > div section.layout_6 > article:nth-child(3n+1) {
          clear: none; }
        section#custom_content > div > div section#layout_6 > article:last-child, section#custom_content > div > div section.layout_6 > article:last-child {
          margin-right: 0; }
        section#custom_content > div > div section#layout_6 > article:nth-child(2n), section#custom_content > div > div section.layout_6 > article:nth-child(2n) {
          margin-right: 0; }
        section#custom_content > div > div section#layout_6 > article:nth-child(2n+1), section#custom_content > div > div section.layout_6 > article:nth-child(2n+1) {
          clear: left; } }
    @media screen and (max-width: 500px) {
      section#custom_content > div > div section#layout_6 > article, section#custom_content > div > div section.layout_6 > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        margin-bottom: 20px; }
        section#custom_content > div > div section#layout_6 > article:nth-child(2n), section#custom_content > div > div section.layout_6 > article:nth-child(2n) {
          margin-right: 1.8867924528%; }
        section#custom_content > div > div section#layout_6 > article:nth-child(2n+1), section#custom_content > div > div section.layout_6 > article:nth-child(2n+1) {
          clear: none; }
        section#custom_content > div > div section#layout_6 > article:last-child, section#custom_content > div > div section.layout_6 > article:last-child {
          margin-right: 0; } }

#cookieMessage {
  box-shadow: 0px -1px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 200000000;
  width: 100%;
  bottom: 0px;
  right: 0px;
  font-size: 14px;
  padding: 0px 10px;
  text-align: center;
  padding-top: 15px;
  color: #81807E;
  background: #ffffff; }
  @media screen and (max-width: 660px) {
    #cookieMessage {
      padding: 10px 30px; } }
  #cookieMessage span {
    font-size: 1.2em;
    top: -40px;
    display: inline-block;
    margin-right: 6px;
    position: relative;
    top: 1px; }
  #cookieMessage p {
    padding: 15px;
    margin: 0;
    font-size: 1em;
    color: #ffffff; }
  #cookieMessage a {
    padding: 4px 30px;
    margin-bottom: 15px;
    color: #ffffff;
    background: #162A46;
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px; }
    @media screen and (max-width: 660px) {
      #cookieMessage a {
        display: block;
        margin-top: 10px; } }
    #cookieMessage a:hover {
      background: black; }
    body.kinarakitchen #cookieMessage a {
      color: #ffffff;
      background: #FCB008; }
      body.kinarakitchen #cookieMessage a:hover {
        background: #ce8f03; }
    body.kajjal #cookieMessage a {
      background: #E50025; }
      body.kajjal #cookieMessage a:hover {
        background: #b2001d; }

div.browser_message {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  bottom: 0;
  text-align: center;
  padding: 6% 0 10%;
  z-index: 100000000; }
  div.browser_message .logo {
    width: 135px;
    margin: 15px 0; }
  div.browser_message h1 {
    font-size: 4em;
    color: #ffffff;
    display: block;
    margin-bottom: 30px;
    font-weight: normal; }
  div.browser_message h2 {
    margin: 0px 30%;
    margin-bottom: 50px;
    padding: 10px 30px; }
  div.browser_message p {
    color: #ffffff;
    font-size: 1.1em; }
    div.browser_message p a {
      color: #ffffff;
      text-transform: uppercase;
      padding: 6px 10px;
      margin: 0px 10px; }

body#newsletter span#pointer {
  float: right;
  color: #162A46;
  font-size: 5em;
  margin-right: 50px;
  margin-top: -50px; }
  @media screen and (max-width: 790px) {
    body#newsletter span#pointer {
      display: none; } }

body#newsletter article#focus {
  background: #ffffff;
  border: 1px solid #DDD;
  box-shadow: 0px 0px 30px #EEE;
  padding: 10px 30px; }
  @media screen and (max-width: 790px) {
    body#newsletter article#focus {
      margin-bottom: 40px;
      padding: 10px 20px; } }
  body#newsletter article#focus form div input[type="text"] {
    background: #F4F4F4; }
  body#newsletter article#focus form div input[type="submit"] {
    text-transform: uppercase;
    background: #162A46;
    color: #ffffff;
    border: none; }
    body#newsletter article#focus form div input[type="submit"]:hover {
      background: #F66042; }

.lb_overlay, .js_lb_overlay {
  background: #162A46 !important;
  opacity: 0.9 !important; }

div#lightbox {
  position: relative;
  display: none;
  width: 600px;
  *zoom: 1;
  background: #ffffff;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 4px; }
  div#lightbox:before, div#lightbox:after {
    content: "";
    display: table; }
  div#lightbox:after {
    clear: both; }
  @media screen and (max-width: 790px) {
    div#lightbox {
      width: 500px; } }
  @media screen and (max-width: 560px) {
    div#lightbox {
      width: 360px; } }
  @media screen and (max-width: 440px) {
    div#lightbox {
      width: 300px; } }
  div#lightbox a#close-info {
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    font-size: 1.4em;
    position: absolute;
    top: -40px;
    right: 20px; }
    div#lightbox a#close-info span {
      color: rgba(255, 255, 255, 0.6); }
      div#lightbox a#close-info span:hover {
        color: #ffffff; }
  div#lightbox h2 {
    margin-bottom: 10px; }
  div#lightbox form div input[type="text"] {
    background: #F4F4F4; }
  div#lightbox form div input[type="submit"] {
    text-transform: uppercase;
    background: #162A46;
    color: #ffffff;
    border: none;
    padding: 10px 50px; }
    div#lightbox form div input[type="submit"]:hover {
      background: #F66042; }

header#top {
  position: absolute;
  z-index: 1000;
  width: 100%; }
  @media screen and (max-width: 790px) {
    header#top {
      position: auto;
      position: relative;
      background: #243346; }
      body.kajjal header#top {
        background: rgba(25, 25, 25, 0.9); }
      body.kinarakitchen header#top {
        background: rgba(25, 25, 25, 0.9); }
      body.michaels header#top {
        background: rgba(25, 25, 25, 0.9); } }
  header#top > section {
    *zoom: 1;
    max-width: 67.5em;
    margin-left: auto;
    margin-right: auto; }
    header#top > section:before, header#top > section:after {
      content: "";
      display: table; }
    header#top > section:after {
      clear: both; }
    @media screen and (max-width: 1280px) {
      header#top > section {
        max-width: 1080px; } }
    @media screen and (max-width: 1100px) {
      header#top > section {
        max-width: 960px; } }
    @media screen and (max-width: 980px) {
      header#top > section {
        max-width: 768px; } }
    @media screen and (max-width: 790px) {
      header#top > section {
        max-width: 640px; } }
    @media screen and (max-width: 660px) {
      header#top > section {
        max-width: 500px; } }
    @media screen and (max-width: 560px) {
      header#top > section {
        max-width: 480px; } }
    @media screen and (max-width: 500px) {
      header#top > section {
        max-width: 420px; } }
    @media screen and (max-width: 440px) {
      header#top > section {
        max-width: 360px; } }
    @media screen and (max-width: 380px) {
      header#top > section {
        max-width: 280px; } }
    header#top > section div#header_logo {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 15.0943396226%; }
      header#top > section div#header_logo:last-child {
        margin-right: 0; }
      body.michaels header#top > section div#header_logo {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 19.3396226415%; }
        body.michaels header#top > section div#header_logo:last-child {
          margin-right: 0; }
        @media screen and (max-width: 660px) {
          body.michaels header#top > section div#header_logo {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 32.0754716981%; }
            body.michaels header#top > section div#header_logo:last-child {
              margin-right: 0; } }
      body.default_site header#top > section div#header_logo {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 23.5849056604%; }
        body.default_site header#top > section div#header_logo:last-child {
          margin-right: 0; }
        @media screen and (max-width: 660px) {
          body.default_site header#top > section div#header_logo {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 32.0754716981%; }
            body.default_site header#top > section div#header_logo:last-child {
              margin-right: 0; } }
        @media screen and (max-width: 440px) {
          body.default_site header#top > section div#header_logo {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 74.5283018868%; }
            body.default_site header#top > section div#header_logo:last-child {
              margin-right: 0; } }
      body.kinarakitchen header#top > section div#header_logo {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 19.3396226415%; }
        body.kinarakitchen header#top > section div#header_logo:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          body.kinarakitchen header#top > section div#header_logo {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 23.5849056604%; }
            body.kinarakitchen header#top > section div#header_logo:last-child {
              margin-right: 0; } }
        @media screen and (max-width: 440px) {
          body.kinarakitchen header#top > section div#header_logo {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 74.5283018868%; }
            body.kinarakitchen header#top > section div#header_logo:last-child {
              margin-right: 0; } }
      body.kajjal header#top > section div#header_logo {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 23.5849056604%; }
        body.kajjal header#top > section div#header_logo:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          body.kajjal header#top > section div#header_logo {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 23.5849056604%; }
            body.kajjal header#top > section div#header_logo:last-child {
              margin-right: 0; } }
        @media screen and (max-width: 440px) {
          body.kajjal header#top > section div#header_logo {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 74.5283018868%; }
            body.kajjal header#top > section div#header_logo:last-child {
              margin-right: 0; } }
      @media screen and (max-width: 790px) {
        header#top > section div#header_logo {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 32.0754716981%; }
          header#top > section div#header_logo:last-child {
            margin-right: 0; } }
      @media screen and (max-width: 560px) {
        header#top > section div#header_logo {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 40.5660377358%; }
          header#top > section div#header_logo:last-child {
            margin-right: 0; } }
      header#top > section div#header_logo a {
        display: block;
        padding: 35px 0px 0px 0px; }
        body.kinarahub header#top > section div#header_logo a {
          padding: 40px 0px 0px 0px; }
          @media screen and (max-width: 790px) {
            body.kinarahub header#top > section div#header_logo a {
              padding: 18px 0 10px; } }
        body.michaels header#top > section div#header_logo a {
          padding: 55px 0 0; }
          @media screen and (max-width: 1100px) {
            body.michaels header#top > section div#header_logo a {
              padding: 45px 0 0; } }
          @media screen and (max-width: 980px) {
            body.michaels header#top > section div#header_logo a {
              padding: 40px 0 0; } }
          @media screen and (max-width: 790px) {
            body.michaels header#top > section div#header_logo a {
              padding: 30px 0 20px; } }
          @media screen and (max-width: 660px) {
            body.michaels header#top > section div#header_logo a {
              padding: 35px 0 20px; } }
          @media screen and (max-width: 500px) {
            body.michaels header#top > section div#header_logo a {
              padding: 40px 0 0px; } }
        @media screen and (max-width: 1100px) {
          header#top > section div#header_logo a {
            padding: 18px 0 10px; } }
        header#top > section div#header_logo a img {
          max-width: 100%; }
          @media screen and (max-width: 980px) {
            header#top > section div#header_logo a img {
              width: 140px; } }
          body.default_site header#top > section div#header_logo a img {
            width: 200px; }
            @media screen and (max-width: 1100px) {
              body.default_site header#top > section div#header_logo a img {
                width: 170px; } }
            @media screen and (max-width: 980px) {
              body.default_site header#top > section div#header_logo a img {
                width: 130px; } }
          body.kinarakitchen header#top > section div#header_logo a img {
            width: 170px; }
            @media screen and (max-width: 1100px) {
              body.kinarakitchen header#top > section div#header_logo a img {
                width: 130px; } }
            @media screen and (max-width: 980px) {
              body.kinarakitchen header#top > section div#header_logo a img {
                width: 110px; } }
            @media screen and (max-width: 790px) {
              body.kinarakitchen header#top > section div#header_logo a img {
                width: 95px; } }
          body.kajjal header#top > section div#header_logo a img {
            width: 180px; }
            @media screen and (max-width: 1100px) {
              body.kajjal header#top > section div#header_logo a img {
                width: 130px; } }
            @media screen and (max-width: 980px) {
              body.kajjal header#top > section div#header_logo a img {
                width: 110px; } }
            @media screen and (max-width: 790px) {
              body.kajjal header#top > section div#header_logo a img {
                width: 95px; } }
          @media screen and (max-width: 790px) {
            body.kinarahub header#top > section div#header_logo a img {
              width: 140px; } }
    header#top > section div#sub_header {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 83.0188679245%;
      margin-right: 0;
      padding-top: 25px;
      padding-bottom: 25px;
      text-align: right; }
      header#top > section div#sub_header:last-child {
        margin-right: 0; }
      body.kinarahub header#top > section div#sub_header {
        padding-bottom: 20px; }
        @media screen and (max-width: 980px) {
          body.kinarahub header#top > section div#sub_header {
            padding-bottom: 30px; } }
      body.michaels header#top > section div#sub_header {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 78.7735849057%;
        margin-right: 0; }
        body.michaels header#top > section div#sub_header:last-child {
          margin-right: 0; }
      @media screen and (max-width: 660px) {
        body.michaels header#top > section div#sub_header {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 66.0377358491%;
          margin-right: 0; }
          body.michaels header#top > section div#sub_header:last-child {
            margin-right: 0; } }
      body.default_site header#top > section div#sub_header {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 74.5283018868%;
        margin-right: 0; }
        body.default_site header#top > section div#sub_header:last-child {
          margin-right: 0; }
        @media screen and (max-width: 660px) {
          body.default_site header#top > section div#sub_header {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 66.0377358491%;
            margin-right: 0; }
            body.default_site header#top > section div#sub_header:last-child {
              margin-right: 0; } }
        @media screen and (max-width: 440px) {
          body.default_site header#top > section div#sub_header {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 23.5849056604%;
            margin-right: 0; }
            body.default_site header#top > section div#sub_header:last-child {
              margin-right: 0; } }
        @media screen and (max-width: 380px) {
          body.default_site header#top > section div#sub_header {
            padding-top: 28px; } }
      body.kinarakitchen header#top > section div#sub_header {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 78.7735849057%;
        margin-right: 0; }
        body.kinarakitchen header#top > section div#sub_header:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          body.kinarakitchen header#top > section div#sub_header {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 74.5283018868%;
            margin-right: 0;
            padding-top: 28px;
            padding-bottom: 0; }
            body.kinarakitchen header#top > section div#sub_header:last-child {
              margin-right: 0; } }
        @media screen and (max-width: 440px) {
          body.kinarakitchen header#top > section div#sub_header {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 23.5849056604%;
            margin-right: 0; }
            body.kinarakitchen header#top > section div#sub_header:last-child {
              margin-right: 0; } }
      body.kajjal header#top > section div#sub_header {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 74.5283018868%;
        margin-right: 0; }
        body.kajjal header#top > section div#sub_header:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          body.kajjal header#top > section div#sub_header {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 74.5283018868%;
            margin-right: 0;
            padding-top: 28px;
            padding-bottom: 0; }
            body.kajjal header#top > section div#sub_header:last-child {
              margin-right: 0; } }
        @media screen and (max-width: 440px) {
          body.kajjal header#top > section div#sub_header {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 23.5849056604%;
            margin-right: 0; }
            body.kajjal header#top > section div#sub_header:last-child {
              margin-right: 0; } }
      @media screen and (max-width: 1100px) {
        header#top > section div#sub_header {
          padding-bottom: 20px;
          padding-top: 15px; } }
      @media screen and (max-width: 1100px) {
        header#top > section div#sub_header {
          padding-bottom: 15px; } }
      @media screen and (max-width: 790px) {
        header#top > section div#sub_header {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 66.0377358491%;
          margin-right: 0;
          padding-top: 28px;
          padding-bottom: 0; }
          header#top > section div#sub_header:last-child {
            margin-right: 0; } }
      @media screen and (max-width: 660px) {
        header#top > section div#sub_header {
          padding-top: 28px;
          margin-right: 0; } }
      @media screen and (max-width: 560px) {
        header#top > section div#sub_header {
          padding-top: 28px;
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 15.0943396226%;
          margin-right: 0; }
          header#top > section div#sub_header:last-child {
            margin-right: 0; } }
      @media screen and (max-width: 380px) {
        header#top > section div#sub_header {
          padding-top: 28px; } }
      header#top > section div#sub_header div {
        display: inline-block;
        height: auto; }
      header#top > section div#sub_header div#social {
        width: 30px;
        margin-right: 13px; }
        @media screen and (max-width: 790px) {
          header#top > section div#sub_header div#social {
            display: none; } }
        header#top > section div#sub_header div#social a span {
          background: #EEE;
          border-top-left-radius: 4px;
          border-top-right-radius: 4px;
          border-bottom-left-radius: 4px;
          border-bottom-right-radius: 4px;
          border: 1px solid #DDD;
          width: 27px;
          height: 27px;
          text-align: center;
          line-height: 25px;
          font-size: 13px;
          position: relative;
          top: 3px;
          display: inline-block;
          color: #888;
          -webkit-transition: all .2s linear;
          -moz-transition: all .2s linear;
          -o-transition: all .2s linear;
          transition: all .2s linear;
          top: 2px; }
      header#top > section div#sub_header div#sub_links ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        margin-right: 10px; }
        @media screen and (max-width: 980px) {
          header#top > section div#sub_header div#sub_links ul {
            display: none; } }
        header#top > section div#sub_header div#sub_links ul li {
          display: inline-block;
          margin: 0 0 0 10px;
          padding-bottom: 0; }
          header#top > section div#sub_header div#sub_links ul li a {
            font-size: 14px;
            font-family: "Gill Sans W01 Light", sans-serif;
            padding: 0px 5px;
            color: #ffffff; }
            @media screen and (max-width: 980px) {
              header#top > section div#sub_header div#sub_links ul li a {
                display: none; } }
            body.michaels header#top > section div#sub_header div#sub_links ul li a {
              font-family: "Avenir LT W01_65 Medium", sans-serif; }
              @media screen and (max-width: 1100px) {
                body.michaels header#top > section div#sub_header div#sub_links ul li a {
                  font-size: 0.7em; } }
            header#top > section div#sub_header div#sub_links ul li a span {
              color: #FCB008;
              margin-right: 2px;
              position: relative;
              top: 1px; }
              body.kajjal header#top > section div#sub_header div#sub_links ul li a span {
                color: #E50025; }
              body.michaels header#top > section div#sub_header div#sub_links ul li a span {
                color: #498BC9; }
            header#top > section div#sub_header div#sub_links ul li a span.icon-phone4 {
              font-size: 0.8em;
              margin-right: 5px;
              top: 0; }
            header#top > section div#sub_header div#sub_links ul li a span.icon-mail {
              font-size: 1em;
              margin-right: 5px;
              top: 2px; }
            header#top > section div#sub_header div#sub_links ul li a span.icon-home {
              font-size: 1em;
              margin-right: 5px;
              top: 1px; }
            header#top > section div#sub_header div#sub_links ul li a:hover {
              color: #FCB008; }
              body.kajjal header#top > section div#sub_header div#sub_links ul li a:hover {
                color: #E50025; }
              body.michaels header#top > section div#sub_header div#sub_links ul li a:hover {
                color: #498BC9; }
          header#top > section div#sub_header div#sub_links ul li a.button {
            padding: 3px 13px !important; }
            @media screen and (max-width: 790px) {
              header#top > section div#sub_header div#sub_links ul li a.button {
                display: none; } }
            header#top > section div#sub_header div#sub_links ul li a.button span {
              color: #ffffff !important; }
            header#top > section div#sub_header div#sub_links ul li a.button:hover {
              color: #ffffff !important; }
          header#top > section div#sub_header div#sub_links ul li a.button.jobbio {
            margin-right: 10px; }
        body.michaels header#top > section div#sub_header div#sub_links ul li.facebook {
          border: 1px solid rgba(255, 255, 255, 0.2);
          border-radius: 20px;
          background: rgba(255, 255, 255, 0.1); }
          body.michaels header#top > section div#sub_header div#sub_links ul li.facebook a {
            padding: 0 22px; }
        body.michaels header#top > section div#sub_header div#sub_links ul li.twitter {
          border: 1px solid rgba(255, 255, 255, 0.2);
          border-radius: 20px;
          background: rgba(255, 255, 255, 0.1); }
          body.michaels header#top > section div#sub_header div#sub_links ul li.twitter a {
            padding: 0 22px; }
        @media screen and (max-width: 660px) {
          header#top > section div#sub_header div#sub_links ul li.telephone {
            display: none; } }
        @media screen and (max-width: 660px) {
          header#top > section div#sub_header div#sub_links ul li.contact_us {
            display: none; } }
      header#top > section div#sub_header div#search {
        width: 160px; }
        @media screen and (max-width: 560px) {
          header#top > section div#sub_header div#search {
            display: none; } }
        header#top > section div#sub_header div#search form {
          display: inline-block;
          position: relative; }
          header#top > section div#sub_header div#search form input {
            width: 100%;
            display: inline-block;
            margin: 0;
            background: #EEE;
            font-size: 10px;
            padding-left: 25px;
            font-size: 11px;
            color: #888;
            font-family: "daliregular", sans-serif; }
            html.ie8 header#top > section div#sub_header div#search form input, html.ie9 header#top > section div#sub_header div#search form input, html.ie10 header#top > section div#sub_header div#search form input {
              padding: 6px 10px 6px 28px;
              line-height: 10px; }
            html.ie11 header#top > section div#sub_header div#search form input {
              padding: 8px 10px 8px 28px; }
            header#top > section div#sub_header div#search form input:focus {
              background: #ffffff;
              color: #81807E; }
          header#top > section div#sub_header div#search form span.icon-search3 {
            position: absolute;
            top: 8px;
            left: 10px;
            font-size: 11px;
            color: #888; }
            html.ie11 header#top > section div#sub_header div#search form span.icon-search3 {
              top: 10px; }
          header#top > section div#sub_header div#search form .hiddenFields {
            display: none; }
      header#top > section div#sub_header div#languages {
        width: 120px; }
        @media screen and (max-width: 790px) {
          header#top > section div#sub_header div#languages {
            display: inline-block; } }
        header#top > section div#sub_header div#languages ul {
          list-style-type: none;
          padding: 0;
          margin: 0; }
          header#top > section div#sub_header div#languages ul li {
            margin: 0;
            padding: 0;
            display: inline-block;
            margin-left: 5px; }
            header#top > section div#sub_header div#languages ul li a {
              display: inline-block;
              opacity: 0.7;
              border-bottom: 2px solid #ffffff;
              margin: 0;
              line-height: 18px; }
              header#top > section div#sub_header div#languages ul li a img {
                max-width: 14px; }
              header#top > section div#sub_header div#languages ul li a:hover {
                opacity: 1; }
              header#top > section div#sub_header div#languages ul li a.active {
                opacity: 1; }
    header#top > section a.mobile_nav {
      display: none;
      background: none !important;
      opacity: 0.6; }
      @media screen and (max-width: 790px) {
        header#top > section a.mobile_nav {
          color: #888;
          text-shadow: 0px -1px 1px #ffffff;
          text-transform: uppercase;
          float: right;
          position: relative;
          border: 1px solid #EEE;
          display: block;
          padding: 10px;
          background-color: #ffffff;
          background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #EEE));
          background-image: -webkit-linear-gradient(#ffffff, #EEE);
          background-image: linear-gradient(#ffffff, #EEE);
          border-radius: 4px;
          font-family: "Gill Sans W01 Book", sans-serif;
          font-size: 0.9em; }
          body.michaels header#top > section a.mobile_nav {
            font-family: "Avenir LT W01_65 Medium", sans-serif; }
          html.ie8 header#top > section a.mobile_nav, html.ie9 header#top > section a.mobile_nav, html.ie10 header#top > section a.mobile_nav {
            background: #EEE;
            border: 1px solid #DDD; }
          header#top > section a.mobile_nav span.icon {
            color: #ffffff;
            float: right;
            font-size: 1.4em;
            text-shadow: none; } }
    header#top > section nav {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 83.0188679245%;
      margin-right: 0;
      position: relative; }
      header#top > section nav:last-child {
        margin-right: 0; }
      body.michaels header#top > section nav {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 78.7735849057%;
        float: right; }
        body.michaels header#top > section nav:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          body.michaels header#top > section nav {
            width: 100%;
            display: none; } }
      body.default_site header#top > section nav {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 74.5283018868%; }
        body.default_site header#top > section nav:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          body.default_site header#top > section nav {
            width: 100%;
            display: none; } }
      body.kinarakitchen header#top > section nav {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 74.5283018868%;
        float: right; }
        body.kinarakitchen header#top > section nav:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          body.kinarakitchen header#top > section nav {
            width: 100%;
            display: none; } }
      body.kajjal header#top > section nav {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 74.5283018868%; }
        body.kajjal header#top > section nav:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          body.kajjal header#top > section nav {
            width: 100%;
            display: none; } }
      @media screen and (min-width: 791px) {
        header#top > section nav {
          display: block !important; } }
      @media screen and (max-width: 790px) {
        header#top > section nav {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 100%;
          display: none;
          margin: 10px 0 0 0; }
          header#top > section nav:last-child {
            margin-right: 0; } }
      header#top > section nav ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        float: right; }
        @media screen and (max-width: 790px) {
          header#top > section nav ul {
            float: none; } }
        header#top > section nav ul li {
          float: left;
          padding-bottom: 0; }
          @media screen and (max-width: 790px) {
            header#top > section nav ul li {
              float: none; } }
          header#top > section nav ul li a {
            padding: 3px 12px;
            margin-left: 5px;
            display: inline-block;
            font-family: "Gill Sans W01 Book", sans-serif;
            color: #ffffff;
            font-size: 0.9em;
            line-height: 1.5em; }
            body.michaels header#top > section nav ul li a {
              font-family: "Avenir LT W01_65 Medium", sans-serif;
              font-size: 1em;
              padding: 3px 10px; }
              @media screen and (max-width: 980px) {
                body.michaels header#top > section nav ul li a {
                  padding: 3px 4px; } }
              @media screen and (max-width: 1100px) {
                body.michaels header#top > section nav ul li a {
                  font-size: 0.9em; } }
            header#top > section nav ul li a span.icon-arrow-down {
              font-size: 9px; }
              @media screen and (max-width: 980px) {
                header#top > section nav ul li a span.icon-arrow-down {
                  margin-top: 5px; } }
            body.default_site header#top > section nav ul li a {
              padding: 3px 5px;
              margin-left: 25px; }
              @media screen and (max-width: 980px) {
                body.default_site header#top > section nav ul li a {
                  margin-left: 12px; } }
              @media screen and (max-width: 790px) {
                body.default_site header#top > section nav ul li a {
                  margin-left: 0;
                  padding: 10px; } }
            body.kinarakitchen header#top > section nav ul li a {
              padding: 3px 5px;
              margin-left: 15px; }
              @media screen and (max-width: 1100px) {
                body.kinarakitchen header#top > section nav ul li a {
                  margin-left: 12px; } }
              @media screen and (max-width: 980px) {
                body.kinarakitchen header#top > section nav ul li a {
                  margin-left: 2px; } }
              @media screen and (max-width: 790px) {
                body.kinarakitchen header#top > section nav ul li a {
                  margin-left: 0;
                  padding: 10px; } }
            body.kajjal header#top > section nav ul li a {
              padding: 3px 5px;
              margin-left: 25px; }
              @media screen and (max-width: 980px) {
                body.kajjal header#top > section nav ul li a {
                  margin-left: 10px; } }
              @media screen and (max-width: 790px) {
                body.kajjal header#top > section nav ul li a {
                  margin-left: 0;
                  padding: 10px; } }
            @media screen and (max-width: 1100px) {
              header#top > section nav ul li a {
                margin-left: 6px;
                font-size: 0.8em; } }
            @media screen and (max-width: 980px) {
              header#top > section nav ul li a {
                padding: 4px 6px; } }
            @media screen and (max-width: 790px) {
              header#top > section nav ul li a {
                display: block;
                margin: 0px;
                text-align: left;
                padding: 10px;
                font-size: 1em;
                color: #ffffff; }
                header#top > section nav ul li a span.icon-home {
                  float: left;
                  font-size: 0.95em;
                  margin-right: 10px;
                  position: relative;
                  top: 3px; }
                header#top > section nav ul li a span.icon-twitter {
                  float: left;
                  font-size: 0.8em;
                  margin-right: 10px;
                  position: relative;
                  top: 5px; }
                header#top > section nav ul li a span.icon-facebook {
                  float: left;
                  font-size: 0.95em;
                  margin-right: 10px;
                  position: relative;
                  top: 3px; }
                header#top > section nav ul li a:hover {
                  color: #FCB008 !important; }
                  body.kajjal header#top > section nav ul li a:hover {
                    color: #E50025 !important; }
                  body.michaels header#top > section nav ul li a:hover {
                    color: #498BC9 !important; } }
          body.kajjal header#top > section nav ul li a:hover {
            color: #E50025; }
          body.michaels header#top > section nav ul li a:hover {
            color: #498BC9; }
          header#top > section nav ul li a.active {
            background: #e8a003;
            color: #ffffff;
            border-radius: 4px;
            font-family: "Gill Sans W01 Bold", sans-serif; }
            html.michaels header#top > section nav ul li a.active {
              font-family: "Avenir LT W01_65 Medium", sans-serif;
              border-radius: 100px;
              padding: 4px 18px; }
              @media screen and (max-width: 790px) {
                html.michaels header#top > section nav ul li a.active {
                  border-radius: 20px !important;
                  color: #ffffff !important;
                  padding: 10px 18px; } }
            body.michaels header#top > section nav ul li a.active {
              font-family: "Avenir LT W01_65 Medium", sans-serif;
              border-radius: 100px;
              padding: 4px 18px; }
              @media screen and (max-width: 790px) {
                body.michaels header#top > section nav ul li a.active {
                  border-radius: 20px !important;
                  color: #ffffff !important;
                  padding: 10px 18px; } }
            body.kinarahub header#top > section nav ul li a.active {
              color: #ffffff !important;
              padding: 3px 5px; }
              @media screen and (max-width: 790px) {
                body.kinarahub header#top > section nav ul li a.active {
                  padding: 10px; } }
            html.michaels body.default_site header#top > section nav ul li a.active {
              font-family: "Avenir LT W01_55 Roman", sans-serif; }
            @media screen and (max-width: 790px) {
              body.default_site header#top > section nav ul li a.active {
                border-bottom: none;
                background: #e8a003; } }
            html.michaels body.kinarakitchen header#top > section nav ul li a.active {
              font-family: "Avenir LT W01_55 Roman", sans-serif; }
            @media screen and (max-width: 790px) {
              body.kinarakitchen header#top > section nav ul li a.active {
                border-bottom: none;
                background: #e8a003; } }
            body.kinarakitchen header#top > section nav ul li a.active:hover {
              color: #ffffff !important; }
            body.kajjal header#top > section nav ul li a.active {
              background: #E50025; }
              body.kajjal header#top > section nav ul li a.active:hover {
                color: #ffffff !important; }
              @media screen and (max-width: 790px) {
                body.kajjal header#top > section nav ul li a.active {
                  color: #33312C; }
                  body.kajjal header#top > section nav ul li a.active:hover {
                    color: #33312C !important; } }
            body.michaels header#top > section nav ul li a.active {
              background: #498BC9; }
              body.michaels header#top > section nav ul li a.active:hover {
                color: #ffffff !important; }
              @media screen and (max-width: 790px) {
                body.michaels header#top > section nav ul li a.active {
                  color: #33312C; }
                  body.michaels header#top > section nav ul li a.active:hover {
                    color: #33312C !important; } }
            @media screen and (max-width: 790px) {
              header#top > section nav ul li a.active {
                border-radius: 0px;
                color: #162A46; }
                header#top > section nav ul li a.active:hover {
                  background: #e8a003;
                  color: #162A46 !important; } }
            header#top > section nav ul li a.active:hover {
              color: #ffffff !important; }
          header#top > section nav ul li .menu_hide {
            display: none; }
            @media screen and (max-width: 790px) {
              header#top > section nav ul li .menu_hide {
                display: block; } }
          header#top > section nav ul li div {
            display: none;
            background: rgba(22, 42, 70, 0.5);
            border-radius: 4px;
            margin: 0;
            opacity: 0;
            position: absolute;
            width: 240px;
            visibility: hidden;
            text-align: left;
            padding-top: 0px;
            margin-left: 10px;
            box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3); }
            html.ie8 header#top > section nav ul li div {
              background: #162A46; }
            @media screen and (max-width: 790px) {
              header#top > section nav ul li div {
                position: relative;
                width: auto;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                background: none;
                border: none; } }
            header#top > section nav ul li div ul {
              float: none; }
              header#top > section nav ul li div ul li {
                display: block;
                position: relative;
                padding: 0;
                margin: 0;
                width: 100%; }
                header#top > section nav ul li div ul li a {
                  margin: 0;
                  display: block;
                  text-decoration: none;
                  padding: 5px 15px;
                  text-transform: capitalize;
                  font-family: "Gill Sans W04 Roman", sans-serif;
                  font-size: 0.8em;
                  border-radius: 0px;
                  color: rgba(255, 255, 255, 0.7); }
                  html.michaels header#top > section nav ul li div ul li a {
                    font-family: "Avenir LT W01_55 Roman", sans-serif; }
                  header#top > section nav ul li div ul li a span.icon-arrow-right {
                    float: right;
                    position: relative;
                    top: 4px; }
                  header#top > section nav ul li div ul li a:hover {
                    background: #F66042;
                    border-radius: 0px;
                    color: #ffffff !important; }
                    body.kinarahub header#top > section nav ul li div ul li a:hover {
                      background: #e8a003 !important; }
                  @media screen and (max-width: 790px) {
                    header#top > section nav ul li div ul li a {
                      padding: 5px 10px; } }
                header#top > section nav ul li div ul li:hover a {
                  color: #ffffff !important; }
          header#top > section nav ul li:hover {
            background: none; }
            header#top > section nav ul li:hover a {
              color: #FCB008; }
            header#top > section nav ul li:hover a.active {
              color: #ffffff; }
            header#top > section nav ul li:hover > div {
              display: block;
              opacity: 1;
              z-index: 100000;
              visibility: visible; }
              header#top > section nav ul li:hover > div a {
                color: #ffffff; }
              @media screen and (max-width: 790px) {
                header#top > section nav ul li:hover > div {
                  display: none;
                  visibility: inherit; } }
        header#top > section nav ul li.hide_desktop {
          display: none; }
          @media screen and (max-width: 790px) {
            header#top > section nav ul li.hide_desktop {
              display: block; } }
  header#top > div#responsive_menu {
    display: none; }
    @media screen and (max-width: 790px) {
      header#top > div#responsive_menu {
        width: 100%;
        display: block; } }
    header#top > div#responsive_menu > div.left {
      width: 50%;
      float: left;
      display: inline-block;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      background: #394859; }
      body.kajjal header#top > div#responsive_menu > div.left {
        background: rgba(25, 25, 25, 0.9); }
      body.michaels header#top > div#responsive_menu > div.left {
        background: rgba(25, 25, 25, 0.9); }
      body.kinarakitchen header#top > div#responsive_menu > div.left {
        background: rgba(25, 25, 25, 0.9); }
      header#top > div#responsive_menu > div.left a {
        display: block;
        padding: 18px 0;
        text-align: center;
        color: rgba(255, 255, 255, 0.6); }
        header#top > div#responsive_menu > div.left a span {
          font-size: 0.8em;
          margin-right: 5px;
          position: relative; }
      header#top > div#responsive_menu > div.left:hover {
        border-right: 1px solid #FCB008;
        border-top: 1px solid #FCB008;
        border-bottom: 1px solid #FCB008; }
        body.kajjal header#top > div#responsive_menu > div.left:hover {
          border-right: 1px solid #E50025;
          border-top: 1px solid #E50025;
          border-bottom: 1px solid #E50025; }
        body.michaels header#top > div#responsive_menu > div.left:hover {
          border-right: 1px solid #498BC9;
          border-top: 1px solid #498BC9;
          border-bottom: 1px solid #498BC9; }
        header#top > div#responsive_menu > div.left:hover a {
          background: #FCB008;
          color: #ffffff; }
          body.kajjal header#top > div#responsive_menu > div.left:hover a {
            background: #E50025; }
          body.michaels header#top > div#responsive_menu > div.left:hover a {
            background: #498BC9; }
    header#top > div#responsive_menu > div.right {
      width: 50%;
      float: left;
      display: inline-block;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      background: #394859; }
      body.kajjal header#top > div#responsive_menu > div.right {
        background: rgba(25, 25, 25, 0.9); }
      body.kinarakitchen header#top > div#responsive_menu > div.right {
        background: rgba(25, 25, 25, 0.9); }
      body.michaels header#top > div#responsive_menu > div.right {
        background: rgba(25, 25, 25, 0.9); }
      header#top > div#responsive_menu > div.right a {
        display: block;
        padding: 18px 0;
        text-align: center;
        color: rgba(255, 255, 255, 0.6); }
        header#top > div#responsive_menu > div.right a span {
          font-size: 0.8em;
          margin-right: 5px;
          position: relative; }
      header#top > div#responsive_menu > div.right:hover {
        border-right: 1px solid #FCB008;
        border-top: 1px solid #FCB008;
        border-bottom: 1px solid #FCB008; }
        body.kajjal header#top > div#responsive_menu > div.right:hover {
          border-right: 1px solid #E50025;
          border-top: 1px solid #E50025;
          border-bottom: 1px solid #E50025; }
        body.michaels header#top > div#responsive_menu > div.right:hover {
          border-right: 1px solid #498BC9;
          border-top: 1px solid #498BC9;
          border-bottom: 1px solid #498BC9; }
        header#top > div#responsive_menu > div.right:hover a {
          background: #FCB008;
          color: #ffffff; }
          body.kajjal header#top > div#responsive_menu > div.right:hover a {
            background: #E50025; }
          body.michaels header#top > div#responsive_menu > div.right:hover a {
            background: #498BC9; }

section#pre_nav {
  background: #162A46;
  padding: 7px 0; }
  @media screen and (max-width: 500px) {
    section#pre_nav {
      padding: 10px 0; } }
  section#pre_nav > div {
    *zoom: 1;
    max-width: 67.5em;
    margin-left: auto;
    margin-right: auto; }
    section#pre_nav > div:before, section#pre_nav > div:after {
      content: "";
      display: table; }
    section#pre_nav > div:after {
      clear: both; }
    @media screen and (max-width: 1280px) {
      section#pre_nav > div {
        max-width: 1080px; } }
    @media screen and (max-width: 1100px) {
      section#pre_nav > div {
        max-width: 960px; } }
    @media screen and (max-width: 980px) {
      section#pre_nav > div {
        max-width: 768px; } }
    @media screen and (max-width: 790px) {
      section#pre_nav > div {
        max-width: 640px; } }
    @media screen and (max-width: 660px) {
      section#pre_nav > div {
        max-width: 500px; } }
    @media screen and (max-width: 560px) {
      section#pre_nav > div {
        max-width: 480px; } }
    @media screen and (max-width: 500px) {
      section#pre_nav > div {
        max-width: 420px; } }
    @media screen and (max-width: 440px) {
      section#pre_nav > div {
        max-width: 360px; } }
    @media screen and (max-width: 380px) {
      section#pre_nav > div {
        max-width: 280px; } }
    section#pre_nav > div > div {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 49.0566037736%; }
      section#pre_nav > div > div:last-child {
        margin-right: 0; }
      @media screen and (max-width: 500px) {
        section#pre_nav > div > div {
          display: none; } }
      section#pre_nav > div > div ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: inline-block;
        margin-right: 10px;
        margin-top: 2px; }
        @media screen and (max-width: 500px) {
          section#pre_nav > div > div ul {
            margin-right: 0; } }
        section#pre_nav > div > div ul li {
          display: inline-block;
          padding-bottom: 0; }
          section#pre_nav > div > div ul li a {
            padding: 7px;
            color: rgba(255, 255, 255, 0.4); }
            @media screen and (max-width: 500px) {
              section#pre_nav > div > div ul li a {
                padding: 15px; } }
            section#pre_nav > div > div ul li a:hover {
              color: #ffffff; }
      section#pre_nav > div > div div#search {
        width: 160px;
        display: inline-block; }
        @media screen and (max-width: 560px) {
          section#pre_nav > div > div div#search {
            display: none; } }
        @media screen and (max-width: 660px) {
          section#pre_nav > div > div div#search {
            display: none; } }
        section#pre_nav > div > div div#search form {
          display: inline-block;
          position: relative; }
          section#pre_nav > div > div div#search form input {
            width: 100%;
            display: inline-block;
            margin: 0;
            background: #EEE;
            font-size: 10px;
            padding-left: 25px;
            font-size: 11px;
            color: #888;
            font-family: "daliregular", sans-serif; }
            html.ie8 section#pre_nav > div > div div#search form input, html.ie9 section#pre_nav > div > div div#search form input, html.ie10 section#pre_nav > div > div div#search form input {
              padding: 6px 10px 6px 28px;
              line-height: 10px; }
            html.ie11 section#pre_nav > div > div div#search form input {
              padding: 8px 10px 8px 28px; }
            section#pre_nav > div > div div#search form input:focus {
              background: #ffffff;
              color: #81807E; }
          section#pre_nav > div > div div#search form span.icon-search3 {
            position: absolute;
            top: 8px;
            left: 10px;
            font-size: 11px;
            color: #888; }
            html.ie11 section#pre_nav > div > div div#search form span.icon-search3 {
              top: 10px; }
          section#pre_nav > div > div div#search form .hiddenFields {
            display: none; }
      section#pre_nav > div > div:last-child {
        text-align: right; }
        @media screen and (max-width: 500px) {
          section#pre_nav > div > div:last-child {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 100%;
            display: block; }
            section#pre_nav > div > div:last-child:last-child {
              margin-right: 0; } }

section#tagline_outer {
  background: url("/assets/images/backgrounds/standard_bg.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -ms-behavior: url(/assets/images/design/backgroundsize.min.htc);
  behavior: url(/assets/images/design/backgroundsize.min.htc);
  height: 320px;
  width: 100%;
  clear: both; }
  html.michaels section#tagline_outer {
    background: url("/assets/images/backgrounds/michaels_reviews_bg.jpg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -ms-behavior: url(/assets/images/design/backgroundsize.min.htc);
    behavior: url(/assets/images/design/backgroundsize.min.htc);
    height: 320px;
    width: 100%;
    clear: both; }
    @media screen and (max-width: 1100px) {
      html.michaels section#tagline_outer {
        height: 230px; } }
    @media screen and (max-width: 980px) {
      html.michaels section#tagline_outer {
        height: 210px; } }
    @media screen and (max-width: 790px) {
      html.michaels section#tagline_outer {
        height: 130px; } }
    @media screen and (max-width: 660px) {
      html.michaels section#tagline_outer {
        height: 120px; } }
  @media screen and (max-width: 1100px) {
    section#tagline_outer {
      height: 230px; } }
  @media screen and (max-width: 980px) {
    section#tagline_outer {
      height: 210px; } }
  @media screen and (max-width: 790px) {
    section#tagline_outer {
      height: 130px; } }
  @media screen and (max-width: 660px) {
    section#tagline_outer {
      height: 120px; } }
  section#tagline_outer span.slider_wrapping {
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: -moz-linear-gradient(left, rgba(22, 42, 70, 0.8) 0%, rgba(22, 42, 70, 0.6) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(22, 42, 70, 0.8)), color-stop(100%, rgba(22, 42, 70, 0.6)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(22, 42, 70, 0.8) 0%, rgba(22, 42, 70, 0.6) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(22, 42, 70, 0.8) 0%, rgba(22, 42, 70, 0.6) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(22, 42, 70, 0.8) 0%, rgba(22, 42, 70, 0.6) 100%);
    /* IE10+ */
    background: linear, to right, rgba(22, 42, 70, 0.8) 0%, rgba(22, 42, 70, 0.6) 100%;
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc162a46', endColorstr='#99162a46',GradientType=1 );
    /* IE6-8 */
    display: block;
    height: 100%; }
    body.kajjal section#tagline_outer span.slider_wrapping {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: -moz-linear-gradient(left, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.6) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(25, 25, 25, 0.9)), color-stop(100%, rgba(25, 25, 25, 0.6)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.6) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.6) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.6) 100%);
      /* IE10+ */
      background: linear, to right, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.6) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6191919', endColorstr='#99191919',GradientType=1 );
      /* IE6-8 */ }
    body.kinarakitchen section#tagline_outer span.slider_wrapping {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: -moz-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, #3b392c), color-stop(100%, rgba(71, 68, 53, 0.7)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* IE10+ */
      background: linear, to right, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b392c', endColorstr='#b3474435',GradientType=1 );
      /* IE6-8 */ }
    html.michaels section#tagline_outer span.slider_wrapping {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMzMzMzMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1NTU1NTUiIHN0b3Atb3BhY2l0eT0iMC42Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
      background: -moz-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, #333333), color-stop(100%, rgba(85, 85, 85, 0.6)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
      /* IE10+ */
      background: linear, to right, #333333 0%, rgba(85, 85, 85, 0.6) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#99555555',GradientType=1 );
      /* IE6-8 */ }
    section#tagline_outer span.slider_wrapping > div {
      padding-top: 175px;
      *zoom: 1;
      max-width: 67.5em;
      margin-left: auto;
      margin-right: auto; }
      @media screen and (max-width: 1100px) {
        section#tagline_outer span.slider_wrapping > div {
          padding-top: 130px; } }
      @media screen and (max-width: 980px) {
        section#tagline_outer span.slider_wrapping > div {
          padding-top: 110px; } }
      @media screen and (max-width: 790px) {
        section#tagline_outer span.slider_wrapping > div {
          padding-top: 30px; } }
      section#tagline_outer span.slider_wrapping > div:before, section#tagline_outer span.slider_wrapping > div:after {
        content: "";
        display: table; }
      section#tagline_outer span.slider_wrapping > div:after {
        clear: both; }
      @media screen and (max-width: 1280px) {
        section#tagline_outer span.slider_wrapping > div {
          max-width: 1080px; } }
      @media screen and (max-width: 1100px) {
        section#tagline_outer span.slider_wrapping > div {
          max-width: 960px; } }
      @media screen and (max-width: 980px) {
        section#tagline_outer span.slider_wrapping > div {
          max-width: 768px; } }
      @media screen and (max-width: 790px) {
        section#tagline_outer span.slider_wrapping > div {
          max-width: 640px; } }
      @media screen and (max-width: 660px) {
        section#tagline_outer span.slider_wrapping > div {
          max-width: 500px; } }
      @media screen and (max-width: 560px) {
        section#tagline_outer span.slider_wrapping > div {
          max-width: 480px; } }
      @media screen and (max-width: 500px) {
        section#tagline_outer span.slider_wrapping > div {
          max-width: 420px; } }
      @media screen and (max-width: 440px) {
        section#tagline_outer span.slider_wrapping > div {
          max-width: 360px; } }
      @media screen and (max-width: 380px) {
        section#tagline_outer span.slider_wrapping > div {
          max-width: 280px; } }
      section#tagline_outer span.slider_wrapping > div h1, section#tagline_outer span.slider_wrapping > div h2, section#tagline_outer span.slider_wrapping > div span.tagline {
        font-family: "noto_serifregular", sans-serif;
        font-size: 3em;
        line-height: 1em;
        color: #ffffff;
        margin: 0;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        margin-bottom: 20px; }
        section#tagline_outer span.slider_wrapping > div h1:last-child, section#tagline_outer span.slider_wrapping > div h2:last-child, section#tagline_outer span.slider_wrapping > div span.tagline:last-child {
          margin-right: 0; }
        @media screen and (max-width: 1100px) {
          section#tagline_outer span.slider_wrapping > div h1, section#tagline_outer span.slider_wrapping > div h2, section#tagline_outer span.slider_wrapping > div span.tagline {
            font-size: 2.5em; } }
        @media screen and (max-width: 660px) {
          section#tagline_outer span.slider_wrapping > div h1, section#tagline_outer span.slider_wrapping > div h2, section#tagline_outer span.slider_wrapping > div span.tagline {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 100%;
            font-size: 1.6em; }
            section#tagline_outer span.slider_wrapping > div h1:last-child, section#tagline_outer span.slider_wrapping > div h2:last-child, section#tagline_outer span.slider_wrapping > div span.tagline:last-child {
              margin-right: 0; } }

html.ie9 body.michaels section#tagline_outer {
  background: url("/assets/images/backgrounds/standard_bg_michaels_ie9.jpg") !important; }
  html.ie9 body.michaels section#tagline_outer span.slider_wrapping {
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMzMzMzMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1NTU1NTUiIHN0b3Atb3BhY2l0eT0iMC42Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background: -moz-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #333333), color-stop(100%, rgba(85, 85, 85, 0.6)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
    /* IE10+ */
    background: linear, to right, #333333 0%, rgba(85, 85, 85, 0.6) 100%;
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#99555555',GradientType=1 );
    /* IE6-8 */ }

html.ie8 body.michaels section#tagline_outer {
  background: url("/assets/images/backgrounds/standard_bg_michaels_ie9.jpg") !important; }
  html.ie8 body.michaels section#tagline_outer span.slider_wrapping {
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMzMzMzMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1NTU1NTUiIHN0b3Atb3BhY2l0eT0iMC42Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background: -moz-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #333333), color-stop(100%, rgba(85, 85, 85, 0.6)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
    /* IE10+ */
    background: linear, to right, #333333 0%, rgba(85, 85, 85, 0.6) 100%;
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#99555555',GradientType=1 );
    /* IE6-8 */ }

section#footer_begin {
  background: #162A46 !important; }
  @media screen and (max-width: 790px) {
    section#footer_begin {
      display: none; } }
  body.michaels section#footer_begin {
    background: #333333 !important; }
  body.kinarakitchen section#footer_begin {
    background: url("/assets/images/backgrounds/kitchen-bg.jpg") !important; }
    body.kinarakitchen section#footer_begin span.background {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: -moz-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, #3b392c), color-stop(100%, rgba(71, 68, 53, 0.7)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* IE10+ */
      background: linear, to right, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b392c', endColorstr='#b3474435',GradientType=1 );
      /* IE6-8 */
      display: block; }
  body.kajjal section#footer_begin {
    background: url("/assets/images/backgrounds/kitchen-bg.jpg") !important; }
    body.kajjal section#footer_begin span.background {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: -moz-linear-gradient(left, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(25, 25, 25, 0.8)), color-stop(100%, rgba(25, 25, 25, 0.8)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
      /* IE10+ */
      background: linear, to right, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc191919', endColorstr='#cc191919',GradientType=1 );
      /* IE6-8 */
      display: block; }
  section#footer_begin span > div {
    *zoom: 1;
    max-width: 67.5em;
    margin-left: auto;
    margin-right: auto;
    padding: 55px 0 20px; }
    section#footer_begin span > div:before, section#footer_begin span > div:after {
      content: "";
      display: table; }
    section#footer_begin span > div:after {
      clear: both; }
    @media screen and (max-width: 1280px) {
      section#footer_begin span > div {
        max-width: 1080px; } }
    @media screen and (max-width: 1100px) {
      section#footer_begin span > div {
        max-width: 960px; } }
    @media screen and (max-width: 980px) {
      section#footer_begin span > div {
        max-width: 768px; } }
    @media screen and (max-width: 790px) {
      section#footer_begin span > div {
        max-width: 640px; } }
    @media screen and (max-width: 660px) {
      section#footer_begin span > div {
        max-width: 500px; } }
    @media screen and (max-width: 560px) {
      section#footer_begin span > div {
        max-width: 480px; } }
    @media screen and (max-width: 500px) {
      section#footer_begin span > div {
        max-width: 420px; } }
    @media screen and (max-width: 440px) {
      section#footer_begin span > div {
        max-width: 360px; } }
    @media screen and (max-width: 380px) {
      section#footer_begin span > div {
        max-width: 280px; } }
    section#footer_begin span > div div#footer_logo {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 15.0943396226%; }
      section#footer_begin span > div div#footer_logo:last-child {
        margin-right: 0; }
      body.michaels section#footer_begin span > div div#footer_logo {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 19.3396226415%; }
        body.michaels section#footer_begin span > div div#footer_logo:last-child {
          margin-right: 0; }
    section#footer_begin span > div nav {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 83.0188679245%;
      margin-top: 7px;
      padding: 3% 0; }
      section#footer_begin span > div nav:last-child {
        margin-right: 0; }
      body.michaels section#footer_begin span > div nav {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 78.7735849057%;
        float: right;
        padding: 0;
        margin-top: 10px; }
        body.michaels section#footer_begin span > div nav:last-child {
          margin-right: 0; }
        @media screen and (max-width: 980px) {
          body.michaels section#footer_begin span > div nav {
            margin-top: 5px; } }
      @media screen and (max-width: 790px) {
        section#footer_begin span > div nav {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 100%; }
          section#footer_begin span > div nav:last-child {
            margin-right: 0; } }
      section#footer_begin span > div nav ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        float: right; }
        @media screen and (max-width: 790px) {
          section#footer_begin span > div nav ul {
            float: none;
            margin-bottom: 10px; } }
        section#footer_begin span > div nav ul li {
          float: left;
          padding-bottom: 0; }
          @media screen and (max-width: 790px) {
            section#footer_begin span > div nav ul li {
              float: none; } }
          section#footer_begin span > div nav ul li a {
            padding: 3px 15px;
            margin-left: 5px;
            display: inline-block;
            font-family: "Gill Sans W01 Book", sans-serif;
            color: #ffffff;
            font-size: 0.9em;
            line-height: 1.5em; }
            body.michaels section#footer_begin span > div nav ul li a {
              font-family: "Avenir LT W01_65 Medium", sans-serif;
              margin-left: 5px; }
            @media screen and (max-width: 1100px) {
              section#footer_begin span > div nav ul li a {
                margin-left: 6px;
                font-size: 0.8em; }
                body.kinarahub section#footer_begin span > div nav ul li a {
                  margin-left: 2px; }
                body.kinarakitchen section#footer_begin span > div nav ul li a {
                  margin-left: 2px; } }
            @media screen and (max-width: 980px) {
              section#footer_begin span > div nav ul li a {
                padding: 4px 6px; }
                body.kinarahub section#footer_begin span > div nav ul li a {
                  margin-left: 6px; } }
            @media screen and (max-width: 790px) {
              section#footer_begin span > div nav ul li a {
                display: block;
                margin: 0px;
                padding: 10px;
                font-size: 1em;
                border-bottom: 1px solid #DDD; }
                section#footer_begin span > div nav ul li a span {
                  float: right;
                  font-size: 1.2em; } }
          body.kajjal section#footer_begin span > div nav ul li a:hover {
            color: #E50025; }
          body.michaels section#footer_begin span > div nav ul li a:hover {
            color: #498BC9; }
          section#footer_begin span > div nav ul li a.active {
            background: #e8a003;
            color: #ffffff;
            border-radius: 4px;
            font-family: "Gill Sans W01 Book", sans-serif; }
            html.michaels section#footer_begin span > div nav ul li a.active {
              font-family: "Avenir LT W01_65 Medium", sans-serif;
              border-radius: 100px;
              padding: 4px 18px; }
            body.kajjal section#footer_begin span > div nav ul li a.active {
              background: #E50025; }
              body.kajjal section#footer_begin span > div nav ul li a.active:hover {
                color: #ffffff !important; }
            body.michaels section#footer_begin span > div nav ul li a.active {
              background: #498BC9; }
              body.michaels section#footer_begin span > div nav ul li a.active:hover {
                color: #ffffff !important; }
            body.kinarakitchen section#footer_begin span > div nav ul li a.active:hover {
              color: #ffffff !important; }
            @media screen and (max-width: 790px) {
              section#footer_begin span > div nav ul li a.active {
                border-radius: 0px;
                color: #162A46; }
                section#footer_begin span > div nav ul li a.active:hover {
                  background: #e8a003;
                  color: #162A46 !important; } }
            section#footer_begin span > div nav ul li a.active:hover {
              color: #ffffff; }
          section#footer_begin span > div nav ul li:hover {
            background: none; }
            section#footer_begin span > div nav ul li:hover a {
              color: #FCB008; }
              @media screen and (max-width: 790px) {
                section#footer_begin span > div nav ul li:hover a {
                  background: none;
                  color: #162A46; } }
            section#footer_begin span > div nav ul li:hover a.active {
              color: #ffffff; }

footer#bottom {
  position: relative;
  background-color: #162A46;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #162A46), color-stop(100%, #13243F));
  background-image: -webkit-linear-gradient(#162A46, #13243F);
  background-image: linear-gradient(#162A46, #13243F);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -ms-behavior: url(/assets/images/design/backgroundsize.min.htc);
  behavior: url(/assets/images/design/backgroundsize.min.htc); }
  @media screen and (max-width: 790px) {
    footer#bottom {
      padding: 50px 0; } }
  body.kinarakitchen footer#bottom {
    background: url("/assets/images/backgrounds/kitchen-bg.jpg") !important; }
    @media screen and (max-width: 790px) {
      body.kinarakitchen footer#bottom {
        padding: 0; } }
    body.kinarakitchen footer#bottom span.background {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: -moz-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, #3b392c), color-stop(100%, rgba(71, 68, 53, 0.7)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* IE10+ */
      background: linear, to right, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b392c', endColorstr='#b3474435',GradientType=1 );
      /* IE6-8 */
      display: block; }
  body.kajjal footer#bottom {
    background: url("/assets/images/backgrounds/kitchen-bg.jpg") !important;
    padding: 0; }
    body.kajjal footer#bottom span.background {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: -moz-linear-gradient(left, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(25, 25, 25, 0.8)), color-stop(100%, rgba(25, 25, 25, 0.8)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
      /* IE10+ */
      background: linear, to right, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc191919', endColorstr='#cc191919',GradientType=1 );
      /* IE6-8 */
      display: block; }
  body.michaels footer#bottom {
    background: #333333 !important; }
  footer#bottom span div#footer_bg {
    background: url("/assets/images/backgrounds/footer_bg.png");
    position: absolute;
    bottom: 0;
    width: 292px;
    height: 322px; }
    body.kinarakitchen footer#bottom span div#footer_bg {
      background: url("/assets/images/backgrounds/footer_kitchen_bg.png") !important; }
    body.kajjal footer#bottom span div#footer_bg {
      background: url("/assets/images/backgrounds/footer_kitchen_bg.png") !important; }
  footer#bottom span > section {
    *zoom: 1;
    max-width: 67.5em;
    margin-left: auto;
    margin-right: auto;
    position: relative; }
    footer#bottom span > section:before, footer#bottom span > section:after {
      content: "";
      display: table; }
    footer#bottom span > section:after {
      clear: both; }
    @media screen and (max-width: 1280px) {
      footer#bottom span > section {
        max-width: 1080px; } }
    @media screen and (max-width: 1100px) {
      footer#bottom span > section {
        max-width: 960px; } }
    @media screen and (max-width: 980px) {
      footer#bottom span > section {
        max-width: 768px; } }
    @media screen and (max-width: 790px) {
      footer#bottom span > section {
        max-width: 640px; } }
    @media screen and (max-width: 660px) {
      footer#bottom span > section {
        max-width: 500px; } }
    @media screen and (max-width: 560px) {
      footer#bottom span > section {
        max-width: 480px; } }
    @media screen and (max-width: 500px) {
      footer#bottom span > section {
        max-width: 420px; } }
    @media screen and (max-width: 440px) {
      footer#bottom span > section {
        max-width: 360px; } }
    @media screen and (max-width: 380px) {
      footer#bottom span > section {
        max-width: 280px; } }
    footer#bottom span > section > div#footer_content {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      padding: 3% 0; }
      footer#bottom span > section > div#footer_content:last-child {
        margin-right: 0; }
      footer#bottom span > section > div#footer_content > article {
        *zoom: 1;
        font-size: 0.95em; }
        footer#bottom span > section > div#footer_content > article:before, footer#bottom span > section > div#footer_content > article:after {
          content: "";
          display: table; }
        footer#bottom span > section > div#footer_content > article:after {
          clear: both; }
        @media screen and (max-width: 790px) {
          footer#bottom span > section > div#footer_content > article {
            font-size: 1em; } }
        @media screen and (max-width: 500px) {
          footer#bottom span > section > div#footer_content > article {
            font-size: 1.1em; } }
        footer#bottom span > section > div#footer_content > article h4 {
          color: #ffffff;
          font-family: "Gill Sans W01 Light", sans-serif;
          font-size: 1.5em;
          padding-bottom: 10px;
          margin-bottom: 10px; }
          html.michaels footer#bottom span > section > div#footer_content > article h4 {
            font-family: "Avenir LT W01_35 Light", sans-serif; }
        footer#bottom span > section > div#footer_content > article p {
          color: rgba(255, 255, 255, 0.6);
          font-size: 14px;
          line-height: 1.5em; }
          html.ie8 footer#bottom span > section > div#footer_content > article p {
            color: #DDDDDD; }
        footer#bottom span > section > div#footer_content > article a {
          color: rgba(255, 255, 255, 0.6);
          font-family: "Gill Sans W04 Roman", sans-serif; }
          html.michaels footer#bottom span > section > div#footer_content > article a {
            font-family: "Avenir LT W01_55 Roman", sans-serif; }
          footer#bottom span > section > div#footer_content > article a:hover {
            color: #FCB008; }
            body.kajjal footer#bottom span > section > div#footer_content > article a:hover {
              color: #E50025; }
            body.michaels footer#bottom span > section > div#footer_content > article a:hover {
              color: #498BC9; }
          html.ie8 footer#bottom span > section > div#footer_content > article a {
            color: #DDDDDD; }
            html.ie8 footer#bottom span > section > div#footer_content > article a:hover {
              color: #FCB008; }
        footer#bottom span > section > div#footer_content > article a.button {
          background: none;
          border-radius: 0;
          border-bottom: 2px solid rgba(255, 255, 255, 0.5);
          -webkit-transition: all .2s linear;
          -moz-transition: all .2s linear;
          -o-transition: all .2s linear;
          transition: all .2s linear;
          padding: 6px 0 9px;
          line-height: 18px;
          font-size: 11px;
          text-transform: uppercase; }
          footer#bottom span > section > div#footer_content > article a.button span {
            font-size: 8px;
            height: 16px;
            width: 17px;
            line-height: 16px; }
          footer#bottom span > section > div#footer_content > article a.button:hover {
            color: #FCB008;
            border-bottom: 2px solid #FCB008; }
            body.kajjal footer#bottom span > section > div#footer_content > article a.button:hover {
              color: #E50025;
              border-bottom: 2px solid #E50025; }
            body.michaels footer#bottom span > section > div#footer_content > article a.button:hover {
              color: #498BC9;
              border-bottom: 2px solid #498BC9; }
        footer#bottom span > section > div#footer_content > article ul {
          list-style-type: none;
          padding: 0;
          margin: 0; }
          footer#bottom span > section > div#footer_content > article ul li {
            font-size: 14px;
            display: block;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 5px;
            padding-bottom: 0;
            font-family: "Gill Sans W04 Roman", sans-serif; }
            html.michaels footer#bottom span > section > div#footer_content > article ul li {
              font-family: "Avenir LT W01_55 Roman", sans-serif; }
            html.ie8 footer#bottom span > section > div#footer_content > article ul li {
              color: #ffffff; }
            footer#bottom span > section > div#footer_content > article ul li a {
              font-family: "Gill Sans W04 Roman", sans-serif; }
              html.michaels footer#bottom span > section > div#footer_content > article ul li a {
                font-family: "Avenir LT W01_55 Roman", sans-serif; }
      footer#bottom span > section > div#footer_content > article#footer_contact p {
        margin-bottom: 15px; }
      footer#bottom span > section > div#footer_content > article#footer_contact ul li {
        position: relative;
        line-height: 150%;
        font-size: 14px;
        margin-bottom: 15px; }
        footer#bottom span > section > div#footer_content > article#footer_contact ul li span {
          margin-right: 10px;
          position: relative;
          top: 4px;
          left: 0px;
          font-size: 1.1em;
          -webkit-transition: all .2s linear;
          -moz-transition: all .2s linear;
          -o-transition: all .2s linear;
          transition: all .2s linear; }
      body.kajjal footer#bottom span > section > div#footer_content > article#footer_contact ul li:hover span {
        color: #E50025 !important; }
      body.kajjal footer#bottom span > section > div#footer_content > article#footer_contact ul li:hover a {
        color: #E50025 !important; }
      body.michaels footer#bottom span > section > div#footer_content > article#footer_contact ul li:hover span {
        color: #498BC9 !important; }
      body.michaels footer#bottom span > section > div#footer_content > article#footer_contact ul li:hover a {
        color: #498BC9 !important; }
      @media screen and (max-width: 660px) {
        footer#bottom span > section > div#footer_content > article#footer_newsletter {
          display: none; } }
    footer#bottom span > section > div#footer_content.layout_2 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 49.0566037736%; }
      footer#bottom span > section > div#footer_content.layout_2 > article:last-child {
        margin-right: 0; }
    footer#bottom span > section > div#footer_content.layout_3 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 32.0754716981%; }
      footer#bottom span > section > div#footer_content.layout_3 > article:last-child {
        margin-right: 0; }
    footer#bottom span > section > div#footer_content.layout_4 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 23.5849056604%; }
      footer#bottom span > section > div#footer_content.layout_4 > article:last-child {
        margin-right: 0; }
      @media screen and (max-width: 790px) {
        footer#bottom span > section > div#footer_content.layout_4 > article {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 49.0566037736%;
          margin-bottom: 40px; }
          footer#bottom span > section > div#footer_content.layout_4 > article:last-child {
            margin-right: 0; }
          footer#bottom span > section > div#footer_content.layout_4 > article:nth-child(2n) {
            margin-right: 0; }
          footer#bottom span > section > div#footer_content.layout_4 > article:nth-child(2n+1) {
            clear: left; } }
      @media screen and (max-width: 500px) {
        footer#bottom span > section > div#footer_content.layout_4 > article {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 100%;
          margin-bottom: 20px; }
          footer#bottom span > section > div#footer_content.layout_4 > article:last-child {
            margin-right: 0; } }
    footer#bottom span > section > div#footer_content.layout_5 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 18.4905660377%;
      opacity: 0.8;
      -webkit-transition: all .2s linear;
      -moz-transition: all .2s linear;
      -o-transition: all .2s linear;
      transition: all .2s linear; }
      footer#bottom span > section > div#footer_content.layout_5 > article:last-child {
        margin-right: 0; }
    @media screen and (max-width: 660px) {
      footer#bottom span > section > div#footer_content.layout_5 {
        display: none; } }
    footer#bottom span > section hr {
      background: rgba(14, 27, 46, 0.4);
      box-shadow: 0px 1px 0px rgba(103, 116, 136, 0.15);
      margin-bottom: 0; }
      body.michaels footer#bottom span > section hr {
        background: rgba(0, 0, 0, 0.1);
        box-shadow: 0px 1px 0px rgba(103, 116, 136, 0.15);
        margin-bottom: 0; }
      html.ie8 footer#bottom span > section hr {
        background: #ffffff;
        opacity: 0.5; }
    footer#bottom span > section > div#copyright, footer#bottom span > section > div#sub_links {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 49.0566037736%;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
      font-family: "Gill Sans W04 Roman", sans-serif;
      padding: 3% 0; }
      footer#bottom span > section > div#copyright:last-child, footer#bottom span > section > div#sub_links:last-child {
        margin-right: 0; }
      html.michaels footer#bottom span > section > div#copyright, html.michaels footer#bottom span > section > div#sub_links {
        font-family: "Avenir LT W01_55 Roman", sans-serif; }
      html.ie8 footer#bottom span > section > div#copyright, html.ie8 footer#bottom span > section > div#sub_links {
        color: #DDDDDD; }
      @media screen and (max-width: 660px) {
        footer#bottom span > section > div#copyright, footer#bottom span > section > div#sub_links {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 100%;
          text-align: center; }
          footer#bottom span > section > div#copyright:last-child, footer#bottom span > section > div#sub_links:last-child {
            margin-right: 0; } }
      footer#bottom span > section > div#copyright p, footer#bottom span > section > div#sub_links p {
        color: rgba(255, 255, 255, 0.3);
        font-family: "Gill Sans W04 Roman", sans-serif;
        margin-bottom: 0; }
        html.michaels footer#bottom span > section > div#copyright p, html.michaels footer#bottom span > section > div#sub_links p {
          font-family: "Avenir LT W01_55 Roman", sans-serif; }
      footer#bottom span > section > div#copyright a, footer#bottom span > section > div#sub_links a {
        font-size: auto;
        color: rgba(255, 255, 255, 0.3);
        font-family: "Gill Sans W04 Roman", sans-serif;
        margin-bottom: 0; }
        html.michaels footer#bottom span > section > div#copyright a, html.michaels footer#bottom span > section > div#sub_links a {
          font-family: "Avenir LT W01_55 Roman", sans-serif;
          color: rgba(255, 255, 255, 0.6); }
        html.ie8 footer#bottom span > section > div#copyright a, html.ie8 footer#bottom span > section > div#sub_links a {
          color: #DDDDDD; }
        footer#bottom span > section > div#copyright a:hover, footer#bottom span > section > div#sub_links a:hover {
          color: #FCB008; }
          body.kajjal footer#bottom span > section > div#copyright a:hover, body.kajjal footer#bottom span > section > div#sub_links a:hover {
            color: #E50025; }
          body.michaels footer#bottom span > section > div#copyright a:hover, body.michaels footer#bottom span > section > div#sub_links a:hover {
            color: #498BC9; }
    footer#bottom span > section > div#sub_links ul {
      float: right;
      list-style-type: none;
      padding: 0;
      margin: 0; }
      @media screen and (max-width: 660px) {
        footer#bottom span > section > div#sub_links ul {
          float: none; } }
      footer#bottom span > section > div#sub_links ul li {
        display: inline-block;
        margin-bottom: 0;
        padding-bottom: 0; }
        footer#bottom span > section > div#sub_links ul li a {
          padding: 0 5px;
          font-size: 1.125em;
          padding-bottom: 0; }
        footer#bottom span > section > div#sub_links ul li:after {
          content: " | "; }
      footer#bottom span > section > div#sub_links ul li.last:after {
        content: " "; }

footer#bottom.kajjal {
  background: url("/assets/images/backgrounds/kitchen-bg.jpg") !important; }
  footer#bottom.kajjal span.background {
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: -moz-linear-gradient(left, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(25, 25, 25, 0.8)), color-stop(100%, rgba(25, 25, 25, 0.8)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
    /* IE10+ */
    background: linear, to right, rgba(25, 25, 25, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%;
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc191919', endColorstr='#cc191919',GradientType=1 );
    /* IE6-8 */
    display: block; }

section#main_content > div > div > aside article {
  background: #ffffff;
  margin-bottom: 40px;
  font-size: 0.9em;
  border: 1px solid #dedad1; }
  @media screen and (max-width: 980px) {
    section#main_content > div > div > aside article {
      font-size: 0.8em; } }
  section#main_content > div > div > aside article h4 {
    font-size: 1.6em;
    background: #162A46;
    color: #ffffff;
    margin: 0;
    padding: 15px 20px; }
    body.kajjal section#main_content > div > div > aside article h4 {
      background: #33312C !important; }
    body.kinarakitchen section#main_content > div > div > aside article h4 {
      background: #3B392C !important; }
    body.michaels section#main_content > div > div > aside article h4 {
      background: #33312C !important; }
    body.michaels section#main_content > div > div > aside article h4 {
      background: #3B392C !important; }
    @media screen and (max-width: 980px) {
      section#main_content > div > div > aside article h4 {
        font-size: 1.1em; } }
  section#main_content > div > div > aside article p {
    color: #46515F;
    font-size: 14px;
    margin: 0px 0px 15px;
    line-height: 150%; }
  section#main_content > div > div > aside article ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    section#main_content > div > div > aside article ul li {
      list-style-type: none;
      padding: 0;
      margin: 0;
      border-bottom: 1px solid #eaeaea; }
      section#main_content > div > div > aside article ul li:nth-child(even) {
        background: #fbfbfb; }
      section#main_content > div > div > aside article ul li a {
        text-transform: uppercase;
        display: block;
        color: #6A737E;
        margin: 0;
        padding: 0;
        padding: 11px 20px;
        font-size: 0.9em; }
        body.kajjal section#main_content > div > div > aside article ul li a {
          color: #777367; }
          body.kajjal section#main_content > div > div > aside article ul li a:hover {
            color: #ffffff; }
        body.michaels section#main_content > div > div > aside article ul li a {
          color: #777367; }
          body.michaels section#main_content > div > div > aside article ul li a:hover {
            color: #ffffff; }
        body.kinarakitchen section#main_content > div > div > aside article ul li a {
          color: #777367; }
          body.kinarakitchen section#main_content > div > div > aside article ul li a:hover {
            color: #ffffff; }
        section#main_content > div > div > aside article ul li a .icon {
          float: right;
          text-align: center;
          line-height: 19px;
          font-size: 10px;
          position: relative;
          top: 3px; }
          @media screen and (max-width: 980px) {
            section#main_content > div > div > aside article ul li a .icon {
              top: 0px; } }
        section#main_content > div > div > aside article ul li a:hover {
          background: #FCB008;
          color: #ffffff; }
          section#main_content > div > div > aside article ul li a:hover .icon {
            border-color: #ffffff;
            color: #ffffff; }
          body.kajjal section#main_content > div > div > aside article ul li a:hover {
            background: #E50025; }
          body.michaels section#main_content > div > div > aside article ul li a:hover {
            background: #498BC9; }
    section#main_content > div > div > aside article ul li.active a {
      background: #FCB008;
      color: #ffffff; }
      body.kinarakitchen section#main_content > div > div > aside article ul li.active a {
        color: #ffffff; }
        body.kinarakitchen section#main_content > div > div > aside article ul li.active a:hover {
          color: #ffffff; }
      body.kajjal section#main_content > div > div > aside article ul li.active a {
        background: #E50025;
        color: #ffffff; }
        body.kajjal section#main_content > div > div > aside article ul li.active a:hover {
          color: #ffffff; }
      body.michaels section#main_content > div > div > aside article ul li.active a {
        background: #498BC9;
        color: #ffffff; }
        body.michaels section#main_content > div > div > aside article ul li.active a:hover {
          color: #ffffff; }
  section#main_content > div > div > aside article > div {
    padding: 20px; }
    section#main_content > div > div > aside article > div h5 {
      margin: 0; }
    section#main_content > div > div > aside article > div img {
      margin-bottom: 10px; }

section#main_content > div > div article#sidebar_contact_form {
  float: right;
  width: 100%; }
  @media screen and (max-width: 790px) {
    section#main_content > div > div article#sidebar_contact_form {
      width: 100%; } }
  section#main_content > div > div article#sidebar_contact_form input[type="submit"] {
    padding: 10px 40px;
    float: left;
    margin-bottom: 20px; }
  section#main_content > div > div article#sidebar_contact_form input[type="text"] {
    float: left; }
  section#main_content > div > div article#sidebar_contact_form input[type="email"] {
    float: left; }
  section#main_content > div > div article#sidebar_contact_form textarea {
    float: left; }
  section#main_content > div > div article#sidebar_contact_form span.form_errors {
    color: #B61200;
    float: left;
    margin-bottom: 10px; }
  section#main_content > div > div article#sidebar_contact_form ul.checkboxes li {
    border: none; }

section#main_content > div > div article#sidebar_awards img {
  padding: 9px;
  background: #ffffff;
  border: 1px solid #dedad1;
  margin-bottom: 20px; }
  @media screen and (max-width: 790px) {
    section#main_content > div > div article#sidebar_awards img {
      max-width: 260px; } }
  @media screen and (max-width: 380px) {
    section#main_content > div > div article#sidebar_awards img {
      max-width: 100%; } }

section#main_content > div > div article#sidebar_instagram iframe {
  margin: 0 0 20px;
  padding: 0;
  height: 175px !important;
  background: #ffffff; }
  @media screen and (max-width: 1100px) {
    section#main_content > div > div article#sidebar_instagram iframe {
      height: 150px !important; } }
  @media screen and (max-width: 980px) {
    section#main_content > div > div article#sidebar_instagram iframe {
      height: 115px !important; } }
  @media screen and (max-width: 790px) {
    section#main_content > div > div article#sidebar_instagram iframe {
      height: 400px !important; } }
  @media screen and (max-width: 660px) {
    section#main_content > div > div article#sidebar_instagram iframe {
      height: 305px !important; } }
  @media screen and (max-width: 560px) {
    section#main_content > div > div article#sidebar_instagram iframe {
      height: 295px !important; } }
  @media screen and (max-width: 500px) {
    section#main_content > div > div article#sidebar_instagram iframe {
      height: 255px !important; } }
  @media screen and (max-width: 440px) {
    section#main_content > div > div article#sidebar_instagram iframe {
      height: 215px !important; } }
  @media screen and (max-width: 440px) {
    section#main_content > div > div article#sidebar_instagram iframe {
      height: 160px !important; } }

section#main_content > div > div article#twitter_profile > iframe, section#main_content > div > div article#facebook_profile > iframe {
  background: none;
  margin: 0;
  padding: 10px 15px;
  box-shadow: none;
  height: 260px !important; }

div#breadcrumbs {
  float: left;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5); }
  html.ie8 div#breadcrumbs {
    color: #ffffff; }
  @media screen and (max-width: 660px) {
    div#breadcrumbs {
      margin-bottom: 10px; } }
  div#breadcrumbs span.home_icon, div#breadcrumbs span.arrow_icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-right: 10px;
    position: relative; }
  div#breadcrumbs span.arrow_icon {
    font-size: 12px;
    top: 0;
    margin-right: 5px;
    margin-left: 5px; }
  div#breadcrumbs a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Gill Sans W04 Roman", sans-serif; }
    html.michaels div#breadcrumbs a {
      font-family: "Avenir LT W01_55 Roman", sans-serif; }
    div#breadcrumbs a:hover {
      color: #FCB008; }
      html.kajjal div#breadcrumbs a:hover {
        color: #E50025; }
      body.kajjal div#breadcrumbs a:hover {
        color: #E50025; }
      html.michaels div#breadcrumbs a:hover {
        color: #498BC9; }
      body.michaels div#breadcrumbs a:hover {
        color: #498BC9; }
    html.ie8 div#breadcrumbs a {
      color: #ffffff; }
      html.ie8 div#breadcrumbs a:hover {
        color: #fcb008; }
        body.kajjal html.ie8 div#breadcrumbs a:hover {
          color: #E50025 !important; }
        body.michaels html.ie8 div#breadcrumbs a:hover {
          color: #498BC9 !important; }

html.ie8 body.kajjal div#breadcrumbs a:hover {
  color: #E50025 !important; }

html.ie8 body.michaels div#breadcrumbs a:hover {
  color: #498BC9 !important; }

div#pagin_links {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 100%;
  *zoom: 1;
  display: table;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 10px; }
  div#pagin_links:last-child {
    margin-right: 0; }
  div#pagin_links:before, div#pagin_links:after {
    content: "";
    display: table; }
  div#pagin_links:after {
    clear: both; }
  div#pagin_links #pagin_left, div#pagin_links #pagin_right {
    text-align: left;
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 23.5849056604%;
    padding: 1.8867924528%; }
    div#pagin_links #pagin_left:last-child, div#pagin_links #pagin_right:last-child {
      margin-right: 0; }
    @media screen and (max-width: 500px) {
      div#pagin_links #pagin_left, div#pagin_links #pagin_right {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 13.3962264151%;
        text-align: center; }
        div#pagin_links #pagin_left:last-child, div#pagin_links #pagin_right:last-child {
          margin-right: 0; } }
    div#pagin_links #pagin_left a, div#pagin_links #pagin_right a {
      display: inline-block;
      color: #969492; }
      div#pagin_links #pagin_left a:hover, div#pagin_links #pagin_right a:hover {
        color: #FCB008; }
        html.kajjal div#pagin_links #pagin_left a:hover, html.kajjal div#pagin_links #pagin_right a:hover {
          color: red; }
        body.kajjal div#pagin_links #pagin_left a:hover, body.kajjal div#pagin_links #pagin_right a:hover {
          color: red; }
        html.michaels div#pagin_links #pagin_left a:hover, html.michaels div#pagin_links #pagin_right a:hover {
          color: #498BC9; }
        body.michaels div#pagin_links #pagin_left a:hover, body.michaels div#pagin_links #pagin_right a:hover {
          color: #498BC9; }
      @media screen and (max-width: 500px) {
        div#pagin_links #pagin_left a, div#pagin_links #pagin_right a {
          font-size: 2em;
          text-align: center;
          line-height: 18px; }
          div#pagin_links #pagin_left a span, div#pagin_links #pagin_right a span {
            display: none; } }
  div#pagin_links #pagin_right {
    text-align: right; }
    @media screen and (max-width: 500px) {
      div#pagin_links #pagin_right {
        text-align: center; } }
  div#pagin_links ul {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 49.0566037736%;
    padding: 1.8867924528%;
    text-align: center; }
    div#pagin_links ul:last-child {
      margin-right: 0; }
    @media screen and (max-width: 500px) {
      div#pagin_links ul {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 67.7358490566%; }
        div#pagin_links ul:last-child {
          margin-right: 0; } }
    div#pagin_links ul li {
      list-style-type: none;
      padding: 0;
      margin: 0;
      display: inline; }
      div#pagin_links ul li span {
        padding: 8px 15px;
        color: #ffffff; }
      div#pagin_links ul li a {
        padding: 8px 15px;
        font-size: 0.9em;
        margin: 0px 2px;
        border: 1px solid #969492;
        border-radius: 4px; }
        div#pagin_links ul li a:hover {
          background: #FCB008;
          color: #ffffff;
          border: 1px solid #FCB008; }
          html.kajjal div#pagin_links ul li a:hover {
            background: #E50025;
            color: #ffffff;
            border: 1px solid #E50025; }
          body.kajjal div#pagin_links ul li a:hover {
            background: #E50025;
            color: #ffffff;
            border: 1px solid #E50025; }
          html.michaels div#pagin_links ul li a:hover {
            background: #498BC9;
            color: #ffffff;
            border: 1px solid #498BC9; }
          body.michaels div#pagin_links ul li a:hover {
            background: #498BC9;
            color: #ffffff;
            border: 1px solid #498BC9; }
      div#pagin_links ul li a.current_page {
        background: #162A46;
        color: #ffffff;
        border-color: #162A46; }
        html.kinarakitchen div#pagin_links ul li a.current_page {
          background: #33312C; }
        body.kinarakitchen div#pagin_links ul li a.current_page {
          background: #33312C; }
        html.kajjal div#pagin_links ul li a.current_page {
          background: #33312C; }
        body.kajjal div#pagin_links ul li a.current_page {
          background: #33312C; }
        html.michaels div#pagin_links ul li a.current_page {
          background: #33312C; }
        body.michaels div#pagin_links ul li a.current_page {
          background: #33312C; }
        html.kajjal div#pagin_links ul li a.current_page:hover {
          border: 1px solid #33312C; }
        body.kajjal div#pagin_links ul li a.current_page:hover {
          border: 1px solid #33312C; }
        html.michales div#pagin_links ul li a.current_page:hover {
          border: 1px solid #33312C; }
        body.michales div#pagin_links ul li a.current_page:hover {
          border: 1px solid #33312C; }

.faq_listing {
  box-shadow: 0px 1px 0px #EEE;
  padding: 20px 0; }
  .faq_listing h3 {
    color: #162A46;
    margin-bottom: 10px;
    position: relative;
    padding-left: 35px; }
    @media screen and (max-width: 500px) {
      .faq_listing h3 {
        padding-left: 25px; } }
    .faq_listing h3:hover {
      color: #F66042;
      cursor: pointer; }
    .faq_listing h3 span {
      position: absolute;
      top: 0;
      left: 0; }
  .faq_listing p.answer {
    display: block;
    width: 100%;
    display: none;
    background: #F4F4F4;
    border: 1px solid #EEE;
    padding: 10px 35px;
    margin-bottom: 0;
    margin-top: 30px;
    position: relative; }
    .faq_listing p.answer span {
      position: absolute;
      top: -26px;
      left: 20px;
      color: #F4F4F4;
      font-size: 43px;
      text-shadow: 0px -1px 0px #EEE; }

div.team_member {
  *zoom: 1;
  margin-bottom: 30px;
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 49.0566037736%; }
  div.team_member:before, div.team_member:after {
    content: "";
    display: table; }
  div.team_member:after {
    clear: both; }
  div.team_member:last-child {
    margin-right: 0; }
  div.team_member:nth-child(2n) {
    margin-right: 0; }
  div.team_member:nth-child(2n+1) {
    clear: left; }
  @media screen and (max-width: 440px) {
    div.team_member {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%; }
      div.team_member:last-child {
        margin-right: 0; }
      div.team_member:nth-child(2n) {
        margin-right: 1.8867924528%; }
      div.team_member:nth-child(2n+1) {
        clear: none; } }
  div.team_member > figure {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    *zoom: 1;
    padding: 5px; }
    div.team_member > figure:before, div.team_member > figure:after {
      content: "";
      display: table; }
    div.team_member > figure:after {
      clear: both; }
  div.team_member > div {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-top: 30px; }
    @media screen and (max-width: 500px) {
      div.team_member > div {
        padding-top: 10px;
        padding-left: 10px; } }
    div.team_member > div h3 {
      margin-bottom: 0; }
    div.team_member > div p.position {
      color: #162a46;
      font-size: 0.9em;
      margin-bottom: 10px;
      margin-top: 10px;
      text-transform: uppercase; }
      html.kinarakitchen div.team_member > div p.position {
        color: #FCB008; }
      body.kinarakitchen div.team_member > div p.position {
        color: #FCB008; }
      html.kajjal div.team_member > div p.position {
        color: #E50025; }
      body.kajjal div.team_member > div p.position {
        color: #E50025; }
      html.michaels div.team_member > div p.position {
        color: #498BC9; }
      body.michaels div.team_member > div p.position {
        color: #498BC9; }
      @media screen and (max-width: 500px) {
        div.team_member > div p.position {
          margin-bottom: 10px;
          font-size: 1em;
          margin-top: 10px; } }
    div.team_member > div p {
      font-size: 0.9em;
      margin-bottom: 10px;
      line-height: 1.65em; }
    div.team_member > div ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
      margin-bottom: 30px; }
      div.team_member > div ul li {
        padding-bottom: 5px; }
        div.team_member > div ul li a {
          display: block;
          font-size: 0.9em; }
          div.team_member > div ul li a span {
            display: inline-block;
            width: 20px; }

section#toc_listing div.content_top {
  background: #ffffff;
  padding: 10px;
  border: 1px solid #dedad1;
  margin-bottom: 40px; }

section#toc_listing > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 32.0754716981%;
  text-align: center;
  border: 1px solid #dedad1;
  background: #ffffff;
  margin-bottom: 30px;
  padding: 20px; }
  section#toc_listing > article:last-child {
    margin-right: 0; }
  section#toc_listing > article:nth-child(3n) {
    margin-right: 0; }
  section#toc_listing > article:nth-child(3n+1) {
    clear: left; }
  @media screen and (max-width: 790px) {
    section#toc_listing > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 49.0566037736%; }
      section#toc_listing > article:last-child {
        margin-right: 0; }
      section#toc_listing > article:nth-child(3n) {
        margin-right: 1.8867924528%; }
      section#toc_listing > article:nth-child(3n+1) {
        clear: none; }
      section#toc_listing > article:nth-child(2n) {
        margin-right: 0; }
      section#toc_listing > article:nth-child(2n+1) {
        clear: left; } }
  @media screen and (max-width: 500px) {
    section#toc_listing > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%; }
      section#toc_listing > article:last-child {
        margin-right: 0; }
      section#toc_listing > article:nth-child(2n) {
        margin-right: 1.8867924528%; }
      section#toc_listing > article:nth-child(2n+1) {
        clear: none; } }
  section#toc_listing > article a.module_image {
    display: block;
    line-height: 0;
    margin-bottom: 20px; }
  section#toc_listing > article span.toc_icon {
    display: inline-block;
    padding: 25px;
    font-size: 2em;
    background: #ffffff;
    border-radius: 50px;
    border: 1px solid #162A46;
    color: #162A46;
    margin-bottom: 20px; }
  section#toc_listing > article p {
    font-size: 0.9em;
    color: #888;
    padding: 0 20px; }
    @media screen and (max-width: 1100px) {
      section#toc_listing > article p {
        height: 55px; } }

section#toc_listing.locations > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 49.0566037736%;
  text-align: center;
  border: 1px solid #dedad1;
  background: #ffffff;
  margin-bottom: 30px;
  padding: 20px; }
  section#toc_listing.locations > article:last-child {
    margin-right: 0; }
  section#toc_listing.locations > article:nth-child(3n) {
    margin-right: 1.8867924528%; }
  section#toc_listing.locations > article:nth-child(3n+1) {
    clear: none; }
  section#toc_listing.locations > article:nth-child(2n) {
    margin-right: 0; }
  section#toc_listing.locations > article:nth-child(2n+1) {
    clear: left; }
  @media screen and (max-width: 790px) {
    section#toc_listing.locations > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%; }
      section#toc_listing.locations > article:last-child {
        margin-right: 0; }
      section#toc_listing.locations > article:nth-child(2n) {
        margin-right: 1.8867924528%; }
      section#toc_listing.locations > article:nth-child(2n+1) {
        clear: none; }
      section#toc_listing.locations > article:nth-child(1n) {
        margin-right: 0; }
      section#toc_listing.locations > article:nth-child(1n+1) {
        clear: left; } }

section#location_listing div.content_top {
  background: #ffffff;
  padding: 45px;
  border: 1px solid #dedad1;
  margin-bottom: 40px;
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 100%; }
  section#location_listing div.content_top:last-child {
    margin-right: 0; }
  section#location_listing div.content_top > article {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 66.0377358491%; }
    section#location_listing div.content_top > article:last-child {
      margin-right: 0; }
    @media screen and (max-width: 790px) {
      section#location_listing div.content_top > article {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        margin-bottom: 20px; }
        section#location_listing div.content_top > article:last-child {
          margin-right: 0; } }
    section#location_listing div.content_top > article div.telephone {
      float: left;
      margin: 0 20px 20px 0; }
      section#location_listing div.content_top > article div.telephone a {
        color: rgba(129, 128, 126, 0.8);
        text-transform: uppercase;
        font-size: 1.05em; }
        section#location_listing div.content_top > article div.telephone a span {
          color: #FCB008;
          font-size: 0.95em;
          margin-right: 5px;
          position: relative;
          top: 2px; }
        section#location_listing div.content_top > article div.telephone a:hover {
          color: #162A46; }
    section#location_listing div.content_top > article div.fax {
      float: left;
      margin: 0 20px 20px 0; }
      section#location_listing div.content_top > article div.fax a {
        color: rgba(129, 128, 126, 0.8);
        text-transform: uppercase;
        font-size: 1.05em; }
        section#location_listing div.content_top > article div.fax a span {
          color: #FCB008;
          font-size: 0.95em;
          margin-right: 5px;
          position: relative;
          top: 2px; }
        section#location_listing div.content_top > article div.fax a:hover {
          color: #162A46; }
    section#location_listing div.content_top > article div.email {
      float: left;
      margin: 0 20px 20px 0; }
      @media screen and (max-width: 560px) {
        section#location_listing div.content_top > article div.email {
          clear: both; } }
      section#location_listing div.content_top > article div.email a {
        color: rgba(129, 128, 126, 0.8);
        font-size: 1.05em; }
        section#location_listing div.content_top > article div.email a span {
          color: #FCB008;
          font-size: 0.95em;
          margin-right: 5px;
          position: relative;
          top: 2px; }
        section#location_listing div.content_top > article div.email a:hover {
          color: #162A46; }
    section#location_listing div.content_top > article div.address {
      clear: both;
      float: left;
      margin: 0 20px 20px 0; }
      section#location_listing div.content_top > article div.address a {
        color: rgba(129, 128, 126, 0.8);
        font-size: 1.05em;
        float: left; }
        section#location_listing div.content_top > article div.address a span {
          color: #FCB008;
          font-size: 0.95em;
          margin-right: 5px;
          position: relative;
          top: 2px; }
      section#location_listing div.content_top > article div.address a.view_map {
        background: #F4F4F4;
        font-size: 0.7em;
        padding: 5px 10px;
        margin-left: 10px;
        border-radius: 4px; }
        section#location_listing div.content_top > article div.address a.view_map:hover {
          background: #FCB008;
          color: #ffffff; }
      section#location_listing div.content_top > article div.address a.view_address {
        padding-top: 2px; }
    section#location_listing div.content_top > article div.content {
      clear: both; }
      @media screen and (max-width: 440px) {
        section#location_listing div.content_top > article div.content a.button {
          text-align: center; } }
  section#location_listing div.content_top > aside {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 32.0754716981%; }
    section#location_listing div.content_top > aside:last-child {
      margin-right: 0; }
    @media screen and (max-width: 790px) {
      section#location_listing div.content_top > aside {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%; }
        section#location_listing div.content_top > aside:last-child {
          margin-right: 0; } }
    section#location_listing div.content_top > aside div.opening_wrap {
      background: #162A46; }
      section#location_listing div.content_top > aside div.opening_wrap h4 {
        color: #ffffff;
        text-align: center;
        font-size: 1.5em;
        padding: 15px 0;
        margin-bottom: 0; }
    section#location_listing div.content_top > aside div.opening {
      background: #FAFAFA;
      border-right: 1px solid #F0F0F0;
      border-left: 1px solid #F0F0F0;
      border-bottom: 1px solid #F0F0F0;
      padding: 18px 10px; }
      section#location_listing div.content_top > aside div.opening:nth-child(odd) {
        background: #ffffff; }
      section#location_listing div.content_top > aside div.opening span.title {
        text-align: center;
        display: block;
        text-transform: uppercase;
        color: #162A46;
        margin-bottom: 10px; }
      section#location_listing div.content_top > aside div.opening span.time {
        text-align: center;
        display: block;
        color: #81807E; }

section#location_listing div.map {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 49.0566037736%;
  background: #ffffff;
  padding: 10px;
  margin-bottom: 40px;
  border: 1px solid #dedad1; }
  section#location_listing div.map:last-child {
    margin-right: 0; }
  section#location_listing div.map div#map .gmnoprint img {
    max-width: none; }
  @media screen and (max-width: 1100px) {
    section#location_listing div.map div#map {
      height: 430px !important; } }
  @media screen and (max-width: 980px) {
    section#location_listing div.map div#map {
      height: 395px !important; } }
  @media screen and (max-width: 790px) {
    section#location_listing div.map {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%; }
      section#location_listing div.map:last-child {
        margin-right: 0; } }

section#location_listing div.review_wrap {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 49.0566037736%;
  margin-right: 0;
  margin-bottom: 10px;
  background: #ffffff;
  padding: 20px 40px;
  border: 1px solid #dedad1; }
  section#location_listing div.review_wrap:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    section#location_listing div.review_wrap {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-bottom: 40px; }
      section#location_listing div.review_wrap:last-child {
        margin-right: 0; } }
  section#location_listing div.review_wrap h2 {
    font-size: 1.45em;
    margin-bottom: 8px; }
  section#location_listing div.review_wrap div.name {
    float: left;
    margin: 0 20px 0 0; }
    section#location_listing div.review_wrap div.name p {
      color: #162A46;
      text-transform: uppercase;
      font-size: 1.05em;
      margin-bottom: 5px; }
      section#location_listing div.review_wrap div.name p span {
        color: #FCB008;
        font-size: 0.9em;
        margin-right: 10px; }
  section#location_listing div.review_wrap div.company {
    float: left; }
    section#location_listing div.review_wrap div.company p {
      color: #162A46;
      text-transform: uppercase;
      font-size: 1.05em; }
      section#location_listing div.review_wrap div.company p span {
        color: #FCB008;
        font-size: 0.9em;
        margin-right: 10px; }
  section#location_listing div.review_wrap div.full_review {
    clear: both; }
    section#location_listing div.review_wrap div.full_review p {
      margin-bottom: 0; }

div.testimonial {
  padding: 0;
  margin: 0;
  color: #888;
  border: 1px solid #EEE;
  position: relative;
  padding: 20px 40px 20px 80px;
  margin-bottom: 25px;
  line-height: 170%; }
  div.testimonial h3 {
    margin-bottom: 10px; }
  div.testimonial p {
    margin-bottom: 0; }
  div.testimonial p.date {
    margin-bottom: 5px;
    font-weight: 900;
    font-size: 0.9em; }
  div.testimonial:before {
    position: absolute;
    font-family: "icomoon";
    content: "\e19f";
    color: #888;
    top: 20px;
    font-size: 1.6em;
    left: 22px;
    opacity: 0.2; }

body#home div.flexslider {
  clear: both;
  min-height: 550px; }
  @media screen and (max-width: 1100px) {
    body#home div.flexslider {
      min-height: 500px; } }
  @media screen and (max-width: 980px) {
    body#home div.flexslider {
      min-height: 360px; } }
  @media screen and (max-width: 790px) {
    body#home div.flexslider {
      min-height: 0; } }
  body#home div.flexslider div.slides {
    *zoom: 1; }
    body#home div.flexslider div.slides:before, body#home div.flexslider div.slides:after {
      content: "";
      display: table; }
    body#home div.flexslider div.slides:after {
      clear: both; }
    body#home div.flexslider div.slides > div, body#home div.flexslider div.slides span {
      *zoom: 1;
      background-size: cover; }
      body#home div.flexslider div.slides > div:before, body#home div.flexslider div.slides > div:after, body#home div.flexslider div.slides span:before, body#home div.flexslider div.slides span:after {
        content: "";
        display: table; }
      body#home div.flexslider div.slides > div:after, body#home div.flexslider div.slides span:after {
        clear: both; }
      body#home div.flexslider div.slides > div > div, body#home div.flexslider div.slides span > div {
        *zoom: 1;
        max-width: 67.5em;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        height: 590px; }
        body#home div.flexslider div.slides > div > div:before, body#home div.flexslider div.slides > div > div:after, body#home div.flexslider div.slides span > div:before, body#home div.flexslider div.slides span > div:after {
          content: "";
          display: table; }
        body#home div.flexslider div.slides > div > div:after, body#home div.flexslider div.slides span > div:after {
          clear: both; }
        @media screen and (max-width: 1280px) {
          body#home div.flexslider div.slides > div > div, body#home div.flexslider div.slides span > div {
            max-width: 1080px; } }
        @media screen and (max-width: 1100px) {
          body#home div.flexslider div.slides > div > div, body#home div.flexslider div.slides span > div {
            max-width: 960px; } }
        @media screen and (max-width: 980px) {
          body#home div.flexslider div.slides > div > div, body#home div.flexslider div.slides span > div {
            max-width: 768px; } }
        @media screen and (max-width: 790px) {
          body#home div.flexslider div.slides > div > div, body#home div.flexslider div.slides span > div {
            max-width: 640px; } }
        @media screen and (max-width: 660px) {
          body#home div.flexslider div.slides > div > div, body#home div.flexslider div.slides span > div {
            max-width: 500px; } }
        @media screen and (max-width: 560px) {
          body#home div.flexslider div.slides > div > div, body#home div.flexslider div.slides span > div {
            max-width: 480px; } }
        @media screen and (max-width: 500px) {
          body#home div.flexslider div.slides > div > div, body#home div.flexslider div.slides span > div {
            max-width: 420px; } }
        @media screen and (max-width: 440px) {
          body#home div.flexslider div.slides > div > div, body#home div.flexslider div.slides span > div {
            max-width: 360px; } }
        @media screen and (max-width: 380px) {
          body#home div.flexslider div.slides > div > div, body#home div.flexslider div.slides span > div {
            max-width: 280px; } }
        @media screen and (max-width: 1100px) {
          body#home div.flexslider div.slides > div > div, body#home div.flexslider div.slides span > div {
            height: 340px; } }
        @media screen and (max-width: 790px) {
          body#home div.flexslider div.slides > div > div, body#home div.flexslider div.slides span > div {
            height: auto; } }
    body#home div.flexslider div.slides > div.layout_1 {
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
      -ms-behavior: url(/assets/images/design/backgroundsize.min.htc);
      behavior: url(/assets/images/design/backgroundsize.min.htc); }
      body#home div.flexslider div.slides > div.layout_1 > div article {
        padding: 20px;
        margin-top: 7%;
        margin-bottom: 7%;
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 49.0566037736%;
        border-radius: 4px; }
        body#home div.flexslider div.slides > div.layout_1 > div article:last-child {
          margin-right: 0; }
        body#home div.flexslider div.slides > div.layout_1 > div article h2, body#home div.flexslider div.slides > div.layout_1 > div article p, body#home div.flexslider div.slides > div.layout_1 > div article a {
          color: #ffffff; }
        body#home div.flexslider div.slides > div.layout_1 > div article h2 {
          font-size: 2.5em;
          margin-bottom: 10px; }
          @media screen and (max-width: 790px) {
            body#home div.flexslider div.slides > div.layout_1 > div article h2 {
              font-size: 1.4em; } }
          @media screen and (max-width: 440px) {
            body#home div.flexslider div.slides > div.layout_1 > div article h2 {
              height: 30px;
              overflow: hidden;
              margin-bottom: 5px; } }
        body#home div.flexslider div.slides > div.layout_1 > div article p {
          line-height: 150%;
          opacity: 0.8; }
          @media screen and (max-width: 440px) {
            body#home div.flexslider div.slides > div.layout_1 > div article p {
              height: 40px;
              overflow: hidden; } }
        @media screen and (max-width: 790px) {
          body#home div.flexslider div.slides > div.layout_1 > div article a.button {
            display: inline-block; }
            body#home div.flexslider div.slides > div.layout_1 > div article a.button span.icon {
              float: none; } }
        @media screen and (max-width: 500px) {
          body#home div.flexslider div.slides > div.layout_1 > div article a.button {
            padding: 5px 10px; } }
        @media screen and (max-width: 1100px) {
          body#home div.flexslider div.slides > div.layout_1 > div article {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 66.0377358491%; }
            body#home div.flexslider div.slides > div.layout_1 > div article:last-child {
              margin-right: 0; } }
        @media screen and (max-width: 790px) {
          body#home div.flexslider div.slides > div.layout_1 > div article {
            float: left;
            display: block;
            margin-right: 1.8867924528%;
            width: 100%;
            text-align: center;
            margin: 10% 0;
            padding: 20px 10%; }
            body#home div.flexslider div.slides > div.layout_1 > div article:last-child {
              margin-right: 0; } }
        @media screen and (max-width: 440px) {
          body#home div.flexslider div.slides > div.layout_1 > div article {
            padding: 15px;
            margin: 10% 0; } }
    body#home div.flexslider div.slides > div.layout_2 > div article {
      margin-top: 10%;
      margin-bottom: 10%;
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 49.0566037736%;
      margin-left: 25.4716981132%;
      text-align: center; }
      body#home div.flexslider div.slides > div.layout_2 > div article:last-child {
        margin-right: 0; }
      body#home div.flexslider div.slides > div.layout_2 > div article h2, body#home div.flexslider div.slides > div.layout_2 > div article p, body#home div.flexslider div.slides > div.layout_2 > div article a {
        color: #ffffff;
        text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.4); }
      body#home div.flexslider div.slides > div.layout_2 > div article h2 {
        font-size: 2em;
        margin-bottom: 10px; }
      @media screen and (max-width: 790px) {
        body#home div.flexslider div.slides > div.layout_2 > div article {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 100%;
          margin-left: 0%; }
          body#home div.flexslider div.slides > div.layout_2 > div article:last-child {
            margin-right: 0; } }
    body#home div.flexslider div.slides > div.layout_3 {
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
      -ms-behavior: url(/assets/images/design/backgroundsize.min.htc);
      behavior: url(/assets/images/design/backgroundsize.min.htc); }
      body#home div.flexslider div.slides > div.layout_3 > span {
        display: block;
        /* IE9 SVG, needs conditional override of 'filter' to 'none' */
        background: -moz-linear-gradient(left, rgba(22, 42, 70, 0.8) 0%, rgba(22, 42, 70, 0.6) 100%);
        /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(22, 42, 70, 0.8)), color-stop(100%, rgba(22, 42, 70, 0.6)));
        /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, rgba(22, 42, 70, 0.8) 0%, rgba(22, 42, 70, 0.6) 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, rgba(22, 42, 70, 0.8) 0%, rgba(22, 42, 70, 0.6) 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, rgba(22, 42, 70, 0.8) 0%, rgba(22, 42, 70, 0.6) 100%);
        /* IE10+ */
        background: linear, to right, rgba(22, 42, 70, 0.8) 0%, rgba(22, 42, 70, 0.6) 100%;
        /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc162a46', endColorstr='#99162a46',GradientType=1 );
        /* IE6-8 */
        *zoom: 1;
        left: 0;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0; }
        body#home div.flexslider div.slides > div.layout_3 > span:before, body#home div.flexslider div.slides > div.layout_3 > span:after {
          content: "";
          display: table; }
        body#home div.flexslider div.slides > div.layout_3 > span:after {
          clear: both; }
        body#home div.flexslider div.slides > div.layout_3 > span > div article {
          padding: 20px 0;
          margin-top: 18%;
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 74.5283018868%;
          border-radius: 4px; }
          body#home div.flexslider div.slides > div.layout_3 > span > div article:last-child {
            margin-right: 0; }
          body#home div.flexslider div.slides > div.layout_3 > span > div article h2, body#home div.flexslider div.slides > div.layout_3 > span > div article p, body#home div.flexslider div.slides > div.layout_3 > span > div article a {
            color: #ffffff; }
          body#home div.flexslider div.slides > div.layout_3 > span > div article h2 {
            font-size: 3.4em;
            margin-bottom: 20px;
            line-height: 1em;
            font-family: "noto_serifregular", sans-serif; }
            @media screen and (max-width: 980px) {
              body#home div.flexslider div.slides > div.layout_3 > span > div article h2 {
                font-size: 2em; } }
            @media screen and (max-width: 790px) {
              body#home div.flexslider div.slides > div.layout_3 > span > div article h2 {
                font-size: 1.4em; } }
            body#home div.flexslider div.slides > div.layout_3 > span > div article h2 a {
              text-shadow: 0px 1px 10px black; }
              body#home div.flexslider div.slides > div.layout_3 > span > div article h2 a:hover {
                color: #FCB008; }
                html.kajjal body#home div.flexslider div.slides > div.layout_3 > span > div article h2 a:hover {
                  color: #E50025; }
                html.michaels body#home div.flexslider div.slides > div.layout_3 > span > div article h2 a:hover {
                  color: #498BC9; }
          body#home div.flexslider div.slides > div.layout_3 > span > div article p {
            width: 60%;
            line-height: 150%;
            opacity: 0.8;
            font-size: 1.2em;
            font-family: "Gill Sans W01 Light", sans-serif;
            color: #ffffff;
            opacity: 0.6; }
            html.michaels body#home div.flexslider div.slides > div.layout_3 > span > div article p {
              font-family: "Avenir LT W01_65 Medium", sans-serif; }
            @media screen and (max-width: 790px) {
              body#home div.flexslider div.slides > div.layout_3 > span > div article p {
                width: 100%; } }
          body#home div.flexslider div.slides > div.layout_3 > span > div article div a.button {
            padding: 17px 20px 17px 32px;
            border-radius: 25px;
            font-family: "allerregular", sans-serif;
            margin-bottom: 0;
            margin-right: 10px; }
            html.michaels body#home div.flexslider div.slides > div.layout_3 > span > div article div a.button {
              font-family: "Avenir LT W01_85 Heavy", sans-serif; }
            @media screen and (max-width: 790px) {
              body#home div.flexslider div.slides > div.layout_3 > span > div article div a.button {
                display: inline-block; }
                body#home div.flexslider div.slides > div.layout_3 > span > div article div a.button span.icon {
                  float: none; } }
            @media screen and (max-width: 500px) {
              body#home div.flexslider div.slides > div.layout_3 > span > div article div a.button {
                padding: 10px 10px 10px 22px;
                margin-bottom: 20px; } }
          @media screen and (max-width: 1100px) {
            body#home div.flexslider div.slides > div.layout_3 > span > div article {
              float: left;
              display: block;
              margin-right: 1.8867924528%;
              width: 83.0188679245%;
              margin-top: 15%;
              margin-bottom: 5%; }
              body#home div.flexslider div.slides > div.layout_3 > span > div article:last-child {
                margin-right: 0; } }
          @media screen and (max-width: 980px) {
            body#home div.flexslider div.slides > div.layout_3 > span > div article {
              float: left;
              display: block;
              margin-right: 1.8867924528%;
              width: 100%; }
              body#home div.flexslider div.slides > div.layout_3 > span > div article:last-child {
                margin-right: 0; } }
          @media screen and (max-width: 790px) {
            body#home div.flexslider div.slides > div.layout_3 > span > div article {
              text-align: center;
              margin: 10% 0;
              padding: 20px 10%; } }
          @media screen and (max-width: 440px) {
            body#home div.flexslider div.slides > div.layout_3 > span > div article {
              padding: 15px;
              margin: 10% 0; } }
      body#home div.flexslider div.slides > div.layout_3 > span.kinarakitchen {
        /* IE9 SVG, needs conditional override of 'filter' to 'none' */
        background: -moz-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
        /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%, #3b392c), color-stop(100%, rgba(71, 68, 53, 0.7)));
        /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
        /* IE10+ */
        background: linear, to right, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%;
        /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b392c', endColorstr='#b3474435',GradientType=1 );
        /* IE6-8 */ }
      body#home div.flexslider div.slides > div.layout_3 > span.kajjal {
        /* IE9 SVG, needs conditional override of 'filter' to 'none' */
        background: -moz-linear-gradient(left, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.6) 100%);
        /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(25, 25, 25, 0.9)), color-stop(100%, rgba(25, 25, 25, 0.6)));
        /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.6) 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.6) 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.6) 100%);
        /* IE10+ */
        background: linear, to right, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.6) 100%;
        /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6191919', endColorstr='#99191919',GradientType=1 );
        /* IE6-8 */ }
      body#home div.flexslider div.slides > div.layout_3 > span.michaels {
        /* IE9 SVG, needs conditional override of 'filter' to 'none' */
        background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMzMzMzMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1NTU1NTUiIHN0b3Atb3BhY2l0eT0iMC42Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
        background: -moz-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
        /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%, #333333), color-stop(100%, rgba(85, 85, 85, 0.6)));
        /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.6) 100%);
        /* IE10+ */
        background: linear, to right, #333333 0%, rgba(85, 85, 85, 0.6) 100%;
        /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#99555555',GradientType=1 );
        /* IE6-8 */ }
  body#home div.flexslider .flex-direction-nav a:before {
    font-family: "icomoon";
    content: '\f053';
    font-size: 30px;
    display: inline-block;
    color: #ffffff; }
    @media screen and (max-width: 1100px) {
      body#home div.flexslider .flex-direction-nav a:before {
        font-size: 20px; } }
  body#home div.flexslider .flex-direction-nav a.flex-next:before {
    content: '\f054';
    color: #ffffff; }
  body#home div.flexslider .flex-control-paging li a {
    background: #ffffff; }
  body#home div.flexslider .flex-control-paging li a:hover {
    background: #162A46; }
  body#home div.flexslider .flex-control-paging li a.flex-active {
    background: #162A46; }

body#home > section:nth-child(even) {
  background: rgba(255, 255, 255, 0.1); }

body#home > section > div {
  *zoom: 1;
  max-width: 67.5em;
  margin-left: auto;
  margin-right: auto; }
  body#home > section > div:before, body#home > section > div:after {
    content: "";
    display: table; }
  body#home > section > div:after {
    clear: both; }
  @media screen and (max-width: 1280px) {
    body#home > section > div {
      max-width: 1080px; } }
  @media screen and (max-width: 1100px) {
    body#home > section > div {
      max-width: 960px; } }
  @media screen and (max-width: 980px) {
    body#home > section > div {
      max-width: 768px; } }
  @media screen and (max-width: 790px) {
    body#home > section > div {
      max-width: 640px; } }
  @media screen and (max-width: 660px) {
    body#home > section > div {
      max-width: 500px; } }
  @media screen and (max-width: 560px) {
    body#home > section > div {
      max-width: 480px; } }
  @media screen and (max-width: 500px) {
    body#home > section > div {
      max-width: 420px; } }
  @media screen and (max-width: 440px) {
    body#home > section > div {
      max-width: 360px; } }
  @media screen and (max-width: 380px) {
    body#home > section > div {
      max-width: 280px; } }

body#home > section div.layout_1, body#home > section div.layout_2, body#home > section div.layout_3, body#home > section div.layout_4, body#home > section div.layout_5, body#home > section div.layout_6, body#home > section div.layout_7, body#home > section div.layout_8 {
  padding: 4% 0; }

body#home > section > div.layout_1 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 100%; }
  body#home > section > div.layout_1 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_1 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > div.layout_1 > article:last-child {
        margin-right: 0; } }

body#home > section > div.layout_2 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 49.0566037736%; }
  body#home > section > div.layout_2 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_2 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > div.layout_2 > article:last-child {
        margin-right: 0; } }

body#home > section > div.layout_3 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 32.0754716981%; }
  body#home > section > div.layout_3 > article:last-child {
    margin-right: 0; }
  body#home > section > div.layout_3 > article:nth-child(4n) {
    margin-right: 0; }
  body#home > section > div.layout_3 > article:nth-child(4n+1) {
    clear: left; }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_3 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > div.layout_3 > article:last-child {
        margin-right: 0; } }

body#home > section > div.layout_4 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 23.5849056604%; }
  body#home > section > div.layout_4 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_4 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > div.layout_4 > article:last-child {
        margin-right: 0; } }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_4 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 49.0566037736%;
      margin-bottom: 20px; }
      body#home > section > div.layout_4 > article:last-child {
        margin-right: 0; }
      body#home > section > div.layout_4 > article:nth-child(2n) {
        margin-right: 0; }
      body#home > section > div.layout_4 > article:nth-child(2n+1) {
        clear: left; } }
  @media screen and (max-width: 500px) {
    body#home > section > div.layout_4 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-bottom: 20px; }
      body#home > section > div.layout_4 > article:last-child {
        margin-right: 0; }
      body#home > section > div.layout_4 > article:nth-child(2n) {
        margin-right: 0; }
      body#home > section > div.layout_4 > article:nth-child(2n+1) {
        clear: left; } }

body#home > section > div.layout_5 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 18.4905660377%; }
  body#home > section > div.layout_5 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_5 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > div.layout_5 > article:last-child {
        margin-right: 0; } }
  @media screen and (max-width: 1100px) {
    body#home > section > div.layout_5 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 23.5849056604%;
      margin-bottom: 20px; }
      body#home > section > div.layout_5 > article:last-child {
        margin-right: 0; }
      body#home > section > div.layout_5 > article:nth-child(4n) {
        margin-right: 0; }
      body#home > section > div.layout_5 > article:nth-child(4n+1) {
        clear: left; } }
  @media screen and (max-width: 980px) {
    body#home > section > div.layout_5 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 32.0754716981%;
      margin-bottom: 20px; }
      body#home > section > div.layout_5 > article:nth-child(4n) {
        margin-right: 1.8867924528%; }
      body#home > section > div.layout_5 > article:nth-child(4n+1) {
        clear: none; }
      body#home > section > div.layout_5 > article:last-child {
        margin-right: 0; }
      body#home > section > div.layout_5 > article:nth-child(3n) {
        margin-right: 0; }
      body#home > section > div.layout_5 > article:nth-child(3n+1) {
        clear: left; } }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_5 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 49.0566037736%;
      margin-bottom: 20px; }
      body#home > section > div.layout_5 > article:nth-child(3n) {
        margin-right: 1.8867924528%; }
      body#home > section > div.layout_5 > article:nth-child(3n+1) {
        clear: none; }
      body#home > section > div.layout_5 > article:last-child {
        margin-right: 0; }
      body#home > section > div.layout_5 > article:nth-child(2n) {
        margin-right: 0; }
      body#home > section > div.layout_5 > article:nth-child(2n+1) {
        clear: left; } }
  @media screen and (max-width: 500px) {
    body#home > section > div.layout_5 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-bottom: 20px; }
      body#home > section > div.layout_5 > article:nth-child(2n) {
        margin-right: 1.8867924528%; }
      body#home > section > div.layout_5 > article:nth-child(2n+1) {
        clear: none; }
      body#home > section > div.layout_5 > article:last-child {
        margin-right: 0; } }

body#home > section > div.layout_6 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 15.0943396226%; }
  body#home > section > div.layout_6 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_6 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > div.layout_6 > article:last-child {
        margin-right: 0; } }
  @media screen and (max-width: 1100px) {
    body#home > section > div.layout_6 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 23.5849056604%;
      margin-bottom: 20px; }
      body#home > section > div.layout_6 > article:last-child {
        margin-right: 0; }
      body#home > section > div.layout_6 > article:nth-child(4n) {
        margin-right: 0; }
      body#home > section > div.layout_6 > article:nth-child(4n+1) {
        clear: left; } }
  @media screen and (max-width: 980px) {
    body#home > section > div.layout_6 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 32.0754716981%;
      margin-bottom: 20px; }
      body#home > section > div.layout_6 > article:nth-child(4n) {
        margin-right: 1.8867924528%; }
      body#home > section > div.layout_6 > article:nth-child(4n+1) {
        clear: none; }
      body#home > section > div.layout_6 > article:last-child {
        margin-right: 0; }
      body#home > section > div.layout_6 > article:nth-child(3n) {
        margin-right: 0; }
      body#home > section > div.layout_6 > article:nth-child(3n+1) {
        clear: left; } }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_6 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 49.0566037736%;
      margin-bottom: 20px; }
      body#home > section > div.layout_6 > article:nth-child(3n) {
        margin-right: 1.8867924528%; }
      body#home > section > div.layout_6 > article:nth-child(3n+1) {
        clear: none; }
      body#home > section > div.layout_6 > article:last-child {
        margin-right: 0; }
      body#home > section > div.layout_6 > article:nth-child(2n) {
        margin-right: 0; }
      body#home > section > div.layout_6 > article:nth-child(2n+1) {
        clear: left; } }
  @media screen and (max-width: 500px) {
    body#home > section > div.layout_6 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-bottom: 20px; }
      body#home > section > div.layout_6 > article:nth-child(2n) {
        margin-right: 1.8867924528%; }
      body#home > section > div.layout_6 > article:nth-child(2n+1) {
        clear: none; }
      body#home > section > div.layout_6 > article:last-child {
        margin-right: 0; } }

body#home > section > div.layout_7 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 66.0377358491%; }
  body#home > section > div.layout_7 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_7 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > div.layout_7 > article:last-child {
        margin-right: 0; } }

body#home > section > div.layout_7 > article:nth-child(odd) {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 32.0754716981%; }
  body#home > section > div.layout_7 > article:nth-child(odd):last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_7 > article:nth-child(odd) {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > div.layout_7 > article:nth-child(odd):last-child {
        margin-right: 0; } }

body#home > section > div.layout_8 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 66.0377358491%; }
  body#home > section > div.layout_8 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_8 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > div.layout_8 > article:last-child {
        margin-right: 0; } }

body#home > section > div.layout_8 > article:nth-child(even) {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 32.0754716981%; }
  body#home > section > div.layout_8 > article:nth-child(even):last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > div.layout_8 > article:nth-child(even) {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > div.layout_8 > article:nth-child(even):last-child {
        margin-right: 0; } }

body#home > section > span > div {
  *zoom: 1;
  max-width: 67.5em;
  margin-left: auto;
  margin-right: auto; }
  body#home > section > span > div:before, body#home > section > span > div:after {
    content: "";
    display: table; }
  body#home > section > span > div:after {
    clear: both; }
  @media screen and (max-width: 1280px) {
    body#home > section > span > div {
      max-width: 1080px; } }
  @media screen and (max-width: 1100px) {
    body#home > section > span > div {
      max-width: 960px; } }
  @media screen and (max-width: 980px) {
    body#home > section > span > div {
      max-width: 768px; } }
  @media screen and (max-width: 790px) {
    body#home > section > span > div {
      max-width: 640px; } }
  @media screen and (max-width: 660px) {
    body#home > section > span > div {
      max-width: 500px; } }
  @media screen and (max-width: 560px) {
    body#home > section > span > div {
      max-width: 480px; } }
  @media screen and (max-width: 500px) {
    body#home > section > span > div {
      max-width: 420px; } }
  @media screen and (max-width: 440px) {
    body#home > section > span > div {
      max-width: 360px; } }
  @media screen and (max-width: 380px) {
    body#home > section > span > div {
      max-width: 280px; } }

body#home > section > span div.layout_1, body#home > section > span div.layout_2, body#home > section > span div.layout_3, body#home > section > span div.layout_4, body#home > section > span div.layout_5, body#home > section > span div.layout_6, body#home > section > span div.layout_7, body#home > section > span div.layout_8 {
  padding: 4% 0; }

body#home > section > span > div.layout_1 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 100%; }
  body#home > section > span > div.layout_1 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_1 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > span > div.layout_1 > article:last-child {
        margin-right: 0; } }

body#home > section > span > div.layout_2 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 49.0566037736%; }
  body#home > section > span > div.layout_2 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_2 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > span > div.layout_2 > article:last-child {
        margin-right: 0; } }

body#home > section > span > div.layout_3 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 32.0754716981%; }
  body#home > section > span > div.layout_3 > article:last-child {
    margin-right: 0; }
  body#home > section > span > div.layout_3 > article:nth-child(4n) {
    margin-right: 0; }
  body#home > section > span > div.layout_3 > article:nth-child(4n+1) {
    clear: left; }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_3 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > span > div.layout_3 > article:last-child {
        margin-right: 0; } }

body#home > section > span > div.layout_4 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 23.5849056604%; }
  body#home > section > span > div.layout_4 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_4 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > span > div.layout_4 > article:last-child {
        margin-right: 0; } }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_4 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 49.0566037736%;
      margin-bottom: 20px; }
      body#home > section > span > div.layout_4 > article:last-child {
        margin-right: 0; }
      body#home > section > span > div.layout_4 > article:nth-child(2n) {
        margin-right: 0; }
      body#home > section > span > div.layout_4 > article:nth-child(2n+1) {
        clear: left; } }
  @media screen and (max-width: 500px) {
    body#home > section > span > div.layout_4 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-bottom: 20px; }
      body#home > section > span > div.layout_4 > article:last-child {
        margin-right: 0; }
      body#home > section > span > div.layout_4 > article:nth-child(2n) {
        margin-right: 0; }
      body#home > section > span > div.layout_4 > article:nth-child(2n+1) {
        clear: left; } }

body#home > section > span > div.layout_5 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 18.4905660377%; }
  body#home > section > span > div.layout_5 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_5 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > span > div.layout_5 > article:last-child {
        margin-right: 0; } }
  @media screen and (max-width: 1100px) {
    body#home > section > span > div.layout_5 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 23.5849056604%;
      margin-bottom: 20px; }
      body#home > section > span > div.layout_5 > article:last-child {
        margin-right: 0; }
      body#home > section > span > div.layout_5 > article:nth-child(4n) {
        margin-right: 0; }
      body#home > section > span > div.layout_5 > article:nth-child(4n+1) {
        clear: left; } }
  @media screen and (max-width: 980px) {
    body#home > section > span > div.layout_5 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 32.0754716981%;
      margin-bottom: 20px; }
      body#home > section > span > div.layout_5 > article:nth-child(4n) {
        margin-right: 1.8867924528%; }
      body#home > section > span > div.layout_5 > article:nth-child(4n+1) {
        clear: none; }
      body#home > section > span > div.layout_5 > article:last-child {
        margin-right: 0; }
      body#home > section > span > div.layout_5 > article:nth-child(3n) {
        margin-right: 0; }
      body#home > section > span > div.layout_5 > article:nth-child(3n+1) {
        clear: left; } }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_5 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 49.0566037736%;
      margin-bottom: 20px; }
      body#home > section > span > div.layout_5 > article:nth-child(3n) {
        margin-right: 1.8867924528%; }
      body#home > section > span > div.layout_5 > article:nth-child(3n+1) {
        clear: none; }
      body#home > section > span > div.layout_5 > article:last-child {
        margin-right: 0; }
      body#home > section > span > div.layout_5 > article:nth-child(2n) {
        margin-right: 0; }
      body#home > section > span > div.layout_5 > article:nth-child(2n+1) {
        clear: left; } }
  @media screen and (max-width: 500px) {
    body#home > section > span > div.layout_5 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-bottom: 20px; }
      body#home > section > span > div.layout_5 > article:nth-child(2n) {
        margin-right: 1.8867924528%; }
      body#home > section > span > div.layout_5 > article:nth-child(2n+1) {
        clear: none; }
      body#home > section > span > div.layout_5 > article:last-child {
        margin-right: 0; } }

body#home > section > span > div.layout_6 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 15.0943396226%; }
  body#home > section > span > div.layout_6 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_6 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > span > div.layout_6 > article:last-child {
        margin-right: 0; } }
  @media screen and (max-width: 1100px) {
    body#home > section > span > div.layout_6 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 23.5849056604%;
      margin-bottom: 20px; }
      body#home > section > span > div.layout_6 > article:last-child {
        margin-right: 0; }
      body#home > section > span > div.layout_6 > article:nth-child(4n) {
        margin-right: 0; }
      body#home > section > span > div.layout_6 > article:nth-child(4n+1) {
        clear: left; } }
  @media screen and (max-width: 980px) {
    body#home > section > span > div.layout_6 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 32.0754716981%;
      margin-bottom: 20px; }
      body#home > section > span > div.layout_6 > article:nth-child(4n) {
        margin-right: 1.8867924528%; }
      body#home > section > span > div.layout_6 > article:nth-child(4n+1) {
        clear: none; }
      body#home > section > span > div.layout_6 > article:last-child {
        margin-right: 0; }
      body#home > section > span > div.layout_6 > article:nth-child(3n) {
        margin-right: 0; }
      body#home > section > span > div.layout_6 > article:nth-child(3n+1) {
        clear: left; } }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_6 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 49.0566037736%;
      margin-bottom: 20px; }
      body#home > section > span > div.layout_6 > article:nth-child(3n) {
        margin-right: 1.8867924528%; }
      body#home > section > span > div.layout_6 > article:nth-child(3n+1) {
        clear: none; }
      body#home > section > span > div.layout_6 > article:last-child {
        margin-right: 0; }
      body#home > section > span > div.layout_6 > article:nth-child(2n) {
        margin-right: 0; }
      body#home > section > span > div.layout_6 > article:nth-child(2n+1) {
        clear: left; } }
  @media screen and (max-width: 500px) {
    body#home > section > span > div.layout_6 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-bottom: 20px; }
      body#home > section > span > div.layout_6 > article:nth-child(2n) {
        margin-right: 1.8867924528%; }
      body#home > section > span > div.layout_6 > article:nth-child(2n+1) {
        clear: none; }
      body#home > section > span > div.layout_6 > article:last-child {
        margin-right: 0; } }

body#home > section > span > div.layout_7 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 66.0377358491%; }
  body#home > section > span > div.layout_7 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_7 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > span > div.layout_7 > article:last-child {
        margin-right: 0; } }

body#home > section > span > div.layout_7 > article:nth-child(odd) {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 32.0754716981%; }
  body#home > section > span > div.layout_7 > article:nth-child(odd):last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_7 > article:nth-child(odd) {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > span > div.layout_7 > article:nth-child(odd):last-child {
        margin-right: 0; } }

body#home > section > span > div.layout_8 > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 66.0377358491%; }
  body#home > section > span > div.layout_8 > article:last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_8 > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > span > div.layout_8 > article:last-child {
        margin-right: 0; } }

body#home > section > span > div.layout_8 > article:nth-child(even) {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 32.0754716981%; }
  body#home > section > span > div.layout_8 > article:nth-child(even):last-child {
    margin-right: 0; }
  @media screen and (max-width: 790px) {
    body#home > section > span > div.layout_8 > article:nth-child(even) {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      margin-left: 0%; }
      body#home > section > span > div.layout_8 > article:nth-child(even):last-child {
        margin-right: 0; } }

body#home section#home_panels_wrap {
  background: url("/assets/images/backgrounds/bg_texture.png"); }
  @media screen and (max-width: 660px) {
    body#home section#home_panels_wrap div.layout_4 {
      padding-top: 50px;
      padding-bottom: 30px; }
      body#home section#home_panels_wrap div.layout_4 > article {
        margin-bottom: 40px; } }
  body#home section#home_panels_wrap div.layout_4 article.home_panels h2 {
    color: #6A737E;
    font-size: 1.35em;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10%; }
    html.michaels body#home section#home_panels_wrap div.layout_4 article.home_panels h2 {
      font-family: "Avenir LT W01_85 Heavy", sans-serif; }
    body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a {
      color: #46515F; }
      body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a:hover {
        color: #FCB008; }
      html.kajjal body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a {
        color: #33312C; }
        html.kajjal body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a:hover {
          color: #E50025; }
      body.kajjal body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a {
        color: #33312C; }
        body.kajjal body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a:hover {
          color: #E50025; }
      html.michaels body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a {
        color: #33312C; }
        html.michaels body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a:hover {
          color: #498BC9; }
      body.michaels body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a {
        color: #33312C; }
        body.michaels body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a:hover {
          color: #498BC9; }
      html.kinarakitchen body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a {
        color: #33312C; }
        html.kinarakitchen body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a:hover {
          color: #FCB008; }
      body.kinarakitchen body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a {
        color: #33312C; }
        body.kinarakitchen body#home section#home_panels_wrap div.layout_4 article.home_panels h2 a:hover {
          color: #FCB008; }
    @media screen and (max-width: 980px) {
      body#home section#home_panels_wrap div.layout_4 article.home_panels h2 {
        padding: 0 5%; } }
    @media screen and (max-width: 790px) {
      body#home section#home_panels_wrap div.layout_4 article.home_panels h2 {
        padding: 0; } }
    @media screen and (max-width: 660px) {
      body#home section#home_panels_wrap div.layout_4 article.home_panels h2 {
        padding: 0 15%;
        margin-bottom: 40px; } }
    @media screen and (max-width: 500px) {
      body#home section#home_panels_wrap div.layout_4 article.home_panels h2 {
        padding: 0 5%; } }
  body#home section#home_panels_wrap div.layout_4 article.home_panels p {
    color: #46515F;
    font-family: "Gill Sans W01 Light", sans-serif;
    font-size: 0.95em;
    line-height: 1.5em;
    text-align: center;
    padding: 10px 10%;
    margin-bottom: 5px;
    height: 170px;
    overflow: hidden; }
    html.michaels body#home section#home_panels_wrap div.layout_4 article.home_panels p {
      font-family: "Avenir LT W01_35 Light", sans-serif; }
    @media screen and (max-width: 1100px) {
      body#home section#home_panels_wrap div.layout_4 article.home_panels p {
        height: 190px; } }
    @media screen and (max-width: 980px) {
      body#home section#home_panels_wrap div.layout_4 article.home_panels p {
        height: 180px; } }
    @media screen and (max-width: 790px) {
      body#home section#home_panels_wrap div.layout_4 article.home_panels p {
        height: 120px; } }
    @media screen and (max-width: 660px) {
      body#home section#home_panels_wrap div.layout_4 article.home_panels p {
        height: 135px; } }
    @media screen and (max-width: 560px) {
      body#home section#home_panels_wrap div.layout_4 article.home_panels p {
        height: 155px; } }
    @media screen and (max-width: 500px) {
      body#home section#home_panels_wrap div.layout_4 article.home_panels p {
        height: auto; } }
  body#home section#home_panels_wrap div.layout_4 article.home_panels a.image_wrap {
    display: block;
    line-height: 0;
    margin-bottom: 10px; }
    body#home section#home_panels_wrap div.layout_4 article.home_panels a.image_wrap img {
      padding: 5px;
      background: #ffffff;
      border: 1px solid #dedad1; }
  body#home section#home_panels_wrap div.layout_4 article.home_panels a.button {
    background: none;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-family: "Gill Sans W04 Roman", sans-serif;
    border-bottom: 3px solid #dedad1;
    color: #46515F;
    font-size: 0.75em;
    margin: 0 25%;
    border-radius: 0; }
    html.kajjal body#home section#home_panels_wrap div.layout_4 article.home_panels a.button {
      color: #33312C; }
    body.kajjal body#home section#home_panels_wrap div.layout_4 article.home_panels a.button {
      color: #33312C; }
    html.michaels body#home section#home_panels_wrap div.layout_4 article.home_panels a.button {
      color: #33312C;
      font-family: "Avenir LT W01_55 Roman", sans-serif; }
    body.michaels body#home section#home_panels_wrap div.layout_4 article.home_panels a.button {
      color: #33312C; }
    html.kinarakitchen body#home section#home_panels_wrap div.layout_4 article.home_panels a.button {
      color: #33312C; }
    body.kinarakitchen body#home section#home_panels_wrap div.layout_4 article.home_panels a.button {
      color: #33312C; }
    body#home section#home_panels_wrap div.layout_4 article.home_panels a.button:hover {
      color: #FCB008;
      border-bottom: 3px solid #FCB008; }
      html.kajjal body#home section#home_panels_wrap div.layout_4 article.home_panels a.button:hover {
        color: #E50025;
        border-bottom: 3px solid #E50025; }
      body.kajjal body#home section#home_panels_wrap div.layout_4 article.home_panels a.button:hover {
        color: #E50025;
        border-bottom: 3px solid #E50025; }
      html.michaels body#home section#home_panels_wrap div.layout_4 article.home_panels a.button:hover {
        color: #498BC9;
        border-bottom: 3px solid #498BC9; }
      body.michaels body#home section#home_panels_wrap div.layout_4 article.home_panels a.button:hover {
        color: #498BC9;
        border-bottom: 3px solid #498BC9; }
      html.kinarakitchen body#home section#home_panels_wrap div.layout_4 article.home_panels a.button:hover {
        color: #FCB008;
        border-bottom: 3px solid #FCB008; }
      body.kinarakitchen body#home section#home_panels_wrap div.layout_4 article.home_panels a.button:hover {
        color: #FCB008;
        border-bottom: 3px solid #FCB008; }

@media screen and (max-width: 660px) {
  body#home section#events div.layout_8 {
    padding-top: 50px;
    padding-bottom: 50px; } }

@media screen and (max-width: 790px) {
  body#home section#events div.layout_8 article.event_wrap {
    margin-bottom: 20px; } }

html.michaels body#home section#events div.layout_8 article.event_wrap h2 {
  font-family: "Avenir LT W01_85 Heavy", sans-serif;
  font-size: 1.75em; }

body#home section#events div.layout_8 article.event_wrap div.event_home {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 49.0566037736%;
  margin-bottom: 40px; }
  body#home section#events div.layout_8 article.event_wrap div.event_home:last-child {
    margin-right: 0; }
  body#home section#events div.layout_8 article.event_wrap div.event_home:nth-child(odd) {
    margin-right: 0; }
  @media screen and (max-width: 660px) {
    body#home section#events div.layout_8 article.event_wrap div.event_home {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%; }
      body#home section#events div.layout_8 article.event_wrap div.event_home:last-child {
        margin-right: 0; } }
  body#home section#events div.layout_8 article.event_wrap div.event_home a div.left_box {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 32.0754716981%;
    border-radius: 4px;
    border: 1px solid #D3D0CC; }
    body#home section#events div.layout_8 article.event_wrap div.event_home a div.left_box:last-child {
      margin-right: 0; }
    body#home section#events div.layout_8 article.event_wrap div.event_home a div.left_box div.icon_top {
      background: #969492;
      padding: 6px 0; }
      body#home section#events div.layout_8 article.event_wrap div.event_home a div.left_box div.icon_top span {
        color: #ffffff;
        text-align: center;
        display: block; }
    body#home section#events div.layout_8 article.event_wrap div.event_home a div.left_box div.icon_bottom {
      text-align: center;
      display: block;
      color: #969492;
      padding: 5px 10px; }
      html.michaels body#home section#events div.layout_8 article.event_wrap div.event_home a div.left_box div.icon_bottom span {
        font-size: 0.8em; }
  body#home section#events div.layout_8 article.event_wrap div.event_home a div.right_box {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 66.0377358491%;
    padding: 0 10px; }
    body#home section#events div.layout_8 article.event_wrap div.event_home a div.right_box:last-child {
      margin-right: 0; }
    body#home section#events div.layout_8 article.event_wrap div.event_home a div.right_box h3 {
      margin-bottom: 10px;
      font-size: 1.25em; }
      html.michaels body#home section#events div.layout_8 article.event_wrap div.event_home a div.right_box h3 {
        font-family: "Avenir LT W01_85 Heavy", sans-serif;
        font-size: 1.1em; }
    body#home section#events div.layout_8 article.event_wrap div.event_home a div.right_box p {
      font-family: "Gill Sans W01 Light", sans-serif;
      font-size: 1em;
      line-height: 1.4em;
      color: #7F7F7E;
      margin-bottom: 0; }
      html.michaels body#home section#events div.layout_8 article.event_wrap div.event_home a div.right_box p {
        font-family: "Avenir LT W01_55 Roman", sans-serif;
        font-size: 0.9em; }
  body#home section#events div.layout_8 article.event_wrap div.event_home a:hover {
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear; }
    body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box {
      border: 1px solid #FCB008;
      -webkit-transition: all .2s linear;
      -moz-transition: all .2s linear;
      -o-transition: all .2s linear;
      transition: all .2s linear; }
      body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_top {
        background: #FCB008;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear; }
      body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_bottom {
        color: #FCB008;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear; }
    body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 66.0377358491%; }
      body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box:last-child {
        margin-right: 0; }
      body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box h3 {
        color: #FCB008;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear; }
    html.michaels body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box {
      border: 1px solid #498BC9;
      -webkit-transition: all .2s linear;
      -moz-transition: all .2s linear;
      -o-transition: all .2s linear;
      transition: all .2s linear; }
      html.michaels body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_top {
        background: #498BC9;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear; }
      html.michaels body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_bottom {
        color: #498BC9;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear; }
    html.michaels body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 66.0377358491%; }
      html.michaels body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box:last-child {
        margin-right: 0; }
      html.michaels body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box h3 {
        color: #498BC9;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear; }
    html.kajjal body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box {
      border: 1px solid #E50025;
      -webkit-transition: all .2s linear;
      -moz-transition: all .2s linear;
      -o-transition: all .2s linear;
      transition: all .2s linear; }
      html.kajjal body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_top {
        background: #E50025;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear; }
      html.kajjal body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_bottom {
        color: #E50025;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear; }
    html.kajjal body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 66.0377358491%; }
      html.kajjal body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box:last-child {
        margin-right: 0; }
      html.kajjal body#home section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box h3 {
        color: #E50025;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear; }

body#home section#events div.layout_8 article.event_wrap div.no-results {
  font-size: 0.75em; }
  body#home section#events div.layout_8 article.event_wrap div.no-results h2 span {
    font-size: 0.8em;
    margin-right: 10px; }

body#home section#events div.layout_8 article.event_wrap span.button_wrap {
  width: 100%;
  float: left; }
  body#home section#events div.layout_8 article.event_wrap span.button_wrap a.button {
    background: none;
    border-bottom: 3px solid #D3D0CC;
    border-radius: 0;
    padding: 0 0 10px;
    text-align: left;
    text-transform: uppercase;
    font-family: "Gill Sans W04 Roman", sans-serif;
    color: #162A46;
    font-size: 0.75em; }
    html.michaels body#home section#events div.layout_8 article.event_wrap span.button_wrap a.button {
      font-family: "Avenir LT W01_55 Roman", sans-serif; }
    body#home section#events div.layout_8 article.event_wrap span.button_wrap a.button:hover {
      color: #FCB008;
      border-bottom: 3px solid #FCB008; }
      html.kajjal body#home section#events div.layout_8 article.event_wrap span.button_wrap a.button:hover {
        color: #E50025;
        border-bottom: 3px solid #E50025; }
      body.kajjal body#home section#events div.layout_8 article.event_wrap span.button_wrap a.button:hover {
        color: #E50025;
        border-bottom: 3px solid #E50025; }
      html.michaels body#home section#events div.layout_8 article.event_wrap span.button_wrap a.button:hover {
        color: #498BC9;
        border-bottom: 3px solid #498BC9; }
      body.michaels body#home section#events div.layout_8 article.event_wrap span.button_wrap a.button:hover {
        color: #E50025;
        border-bottom: 3px solid #498BC9; }

body#home section#events div.layout_8 article.group_booking {
  background: url("/assets/images/backgrounds/untitled-1.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -ms-behavior: url(/assets/images/design/backgroundsize.min.htc);
  behavior: url(/assets/images/design/backgroundsize.min.htc);
  border-radius: 6px;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  padding: 20px; }
  html.michaels body#home section#events div.layout_8 article.group_booking {
    background: url("/assets/images/backgrounds/bookings_bg_michaels.jpg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -ms-behavior: url(/assets/images/design/backgroundsize.min.htc);
    behavior: url(/assets/images/design/backgroundsize.min.htc);
    box-shadow: none;
    border: transparent; }
  html.ie8 body#home section#events div.layout_8 article.group_booking {
    border: 1px solid #DDD; }
  @media screen and (max-width: 790px) {
    body#home section#events div.layout_8 article.group_booking {
      margin-bottom: 20px; } }
  body#home section#events div.layout_8 article.group_booking h2 {
    text-align: center;
    color: #46515F;
    font-size: 2.5em; }
    html.michaels body#home section#events div.layout_8 article.group_booking h2 {
      font-family: "Avenir LT W01_85 Heavy", sans-serif;
      font-size: 2.2em;
      padding-top: 20px; }
    html.michaels body#home section#events div.layout_8 article.group_booking h2 {
      color: #ffffff; }
  body#home section#events div.layout_8 article.group_booking p {
    color: #6A737E;
    font-size: 1em;
    line-height: 1.5em;
    text-align: center; }
    html.michaels body#home section#events div.layout_8 article.group_booking p {
      color: rgba(255, 255, 255, 0.6); }
  body#home section#events div.layout_8 article.group_booking a.button {
    border: 2px solid #ffffff;
    border-radius: 30px;
    display: block;
    margin: 0 10% 10px;
    padding: 15px 5%;
    text-align: center; }
    html.michaels body#home section#events div.layout_8 article.group_booking a.button {
      border: transparent; }

body#home section#vouchers {
  background: url("/assets/images/backgrounds/vouchers_bg.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -ms-behavior: url(/assets/images/design/backgroundsize.min.htc);
  behavior: url(/assets/images/design/backgroundsize.min.htc);
  position: relative; }
  html.michaels body#home section#vouchers {
    background: url("/assets/images/backgrounds/vouchers_michaels_bg.jpg"); }
  body#home section#vouchers span {
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: -moz-linear-gradient(left, #162a46 0%, rgba(22, 42, 70, 0.8) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #162a46), color-stop(100%, rgba(22, 42, 70, 0.8)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #162a46 0%, rgba(22, 42, 70, 0.8) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #162a46 0%, rgba(22, 42, 70, 0.8) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #162a46 0%, rgba(22, 42, 70, 0.8) 100%);
    /* IE10+ */
    background: linear, to right, #162a46 0%, rgba(22, 42, 70, 0.8) 100%;
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc162a46', endColorstr='#99162a46',GradientType=1 );
    /* IE6-8 */
    display: block; }
    html.kinarakitchen body#home section#vouchers span {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: -moz-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, #3b392c), color-stop(100%, rgba(71, 68, 53, 0.7)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* IE10+ */
      background: linear, to right, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b392c', endColorstr='#b3474435',GradientType=1 );
      /* IE6-8 */ }
    html.kajjal body#home section#vouchers span {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: -moz-linear-gradient(left, #191919 0%, rgba(25, 25, 25, 0.5) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, #191919), color-stop(100%, rgba(25, 25, 25, 0.5)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, #191919 0%, rgba(25, 25, 25, 0.5) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, #191919 0%, rgba(25, 25, 25, 0.5) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, #191919 0%, rgba(25, 25, 25, 0.5) 100%);
      /* IE10+ */
      background: linear, to right, #191919 0%, rgba(25, 25, 25, 0.5) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#80191919',GradientType=1 );
      /* IE6-8 */ }
    html.michaels body#home section#vouchers span {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMzMzMzMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1NTU1NTUiIHN0b3Atb3BhY2l0eT0iMC41Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
      background: -moz-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.5) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, #333333), color-stop(100%, rgba(85, 85, 85, 0.5)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.5) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.5) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.5) 100%);
      /* IE10+ */
      background: linear, to right, #333333 0%, rgba(85, 85, 85, 0.5) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#80555555',GradientType=1 );
      /* IE6-8 */ }
    body#home section#vouchers span div.layout_2 {
      padding: 3% 0; }
      @media screen and (max-width: 660px) {
        body#home section#vouchers span div.layout_2 {
          padding-top: 50px;
          padding-bottom: 50px; } }
      body#home section#vouchers span div.layout_2 article h2 {
        color: #ffffff;
        font-size: 1.7em;
        line-height: 1em;
        margin-bottom: 10px; }
        html.michaels body#home section#vouchers span div.layout_2 article h2 {
          font-family: "Avenir LT W01_85 Heavy", sans-serif; }
      body#home section#vouchers span div.layout_2 article p {
        font-family: "Gill Sans W01 Light", sans-serif;
        color: #ffffff;
        opacity: 0.5;
        line-height: 1.5em; }
        html.michaels body#home section#vouchers span div.layout_2 article p {
          font-family: "Avenir LT W01_35 Light", sans-serif; }
      body#home section#vouchers span div.layout_2 article a.button {
        background: none;
        border-bottom: 3px solid rgba(255, 255, 255, 0.5);
        border-radius: 0;
        padding: 0 0 10px;
        text-align: left;
        text-transform: uppercase;
        font-family: "Gill Sans W04 Roman", sans-serif;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.75em; }
        html.michaels body#home section#vouchers span div.layout_2 article a.button {
          font-family: "Avenir LT W01_55 Roman", sans-serif; }
        html.ie8 body#home section#vouchers span div.layout_2 article a.button {
          border-bottom: 3px solid #ffffff; }
          html.ie8 body#home section#vouchers span div.layout_2 article a.button:hover {
            border-bottom: 3px solid #FCB008; }
        body#home section#vouchers span div.layout_2 article a.button:hover {
          color: #FCB008;
          border-bottom: 3px solid #FCB008; }
          html.kajjal body#home section#vouchers span div.layout_2 article a.button:hover {
            color: #E50025;
            border-bottom: 3px solid #E50025; }
          body.kajjal body#home section#vouchers span div.layout_2 article a.button:hover {
            color: #E50025;
            border-bottom: 3px solid #E50025; }
          html.michaels body#home section#vouchers span div.layout_2 article a.button:hover {
            color: #498BC9;
            border-bottom: 3px solid #498BC9; }
          body.michaels body#home section#vouchers span div.layout_2 article a.button:hover {
            color: #498BC9;
            border-bottom: 3px solid #498BC9; }
      body#home section#vouchers span div.layout_2 div.envelope {
        background: url("/assets/images/backgrounds/envelope_bg.png");
        bottom: 0;
        height: 114px;
        left: 30%;
        position: absolute;
        width: 205px; }
        @media screen and (max-width: 790px) {
          body#home section#vouchers span div.layout_2 div.envelope {
            display: none; } }

body#home section#preface {
  background: url("/assets/images/backgrounds/bg_texture.png"); }
  body#home section#preface div.layout_1 {
    padding: 60px 0 0;
    position: relative; }
    body#home section#preface div.layout_1 h2 {
      font-family: "Avenir LT W01_85 Heavy", sans-serif;
      font-size: 1.75em; }
    body#home section#preface div.layout_1 a.button {
      background: none;
      border-bottom: 3px solid #33312C;
      border-radius: 0;
      padding: 0 0 10px;
      margin-bottom: 0;
      text-align: left;
      text-transform: uppercase;
      font-family: "Gill Sans W04 Roman", sans-serif;
      color: #33312C;
      font-size: 0.75em;
      position: absolute;
      right: 0;
      top: 65px; }
      html.michaels body#home section#preface div.layout_1 a.button {
        font-family: "Avenir LT W01_55 Roman", sans-serif; }
      body#home section#preface div.layout_1 a.button:hover {
        color: #498BC9;
        border-bottom: 3px solid #498BC9; }
  @media screen and (max-width: 660px) {
    body#home section#preface div.layout_2 {
      padding-top: 50px;
      padding-bottom: 50px; } }
  html.michaels body#home section#preface div.layout_2 {
    padding-top: 0;
    padding-bottom: 50px; }
  body#home section#preface div.layout_2 article h2 {
    font-size: 1.8em;
    color: #46515F; }
    html.kajjal body#home section#preface div.layout_2 article h2 {
      color: #33312C; }
    body.kajjal body#home section#preface div.layout_2 article h2 {
      color: #33312C; }
    html.michaels body#home section#preface div.layout_2 article h2 {
      color: #33312C; }
    body.michaels body#home section#preface div.layout_2 article h2 {
      color: #33312C; }
    html.kinarakitchen body#home section#preface div.layout_2 article h2 {
      color: #33312C; }
    body.kinarakitchen body#home section#preface div.layout_2 article h2 {
      color: #33312C; }
  body#home section#preface div.layout_2 article div.info_image {
    background: #ffffff;
    padding: 10px;
    position: relative;
    display: block;
    line-height: 0;
    border: 1px solid #dedad1;
    margin: 0 0 20px; }
    body#home section#preface div.layout_2 article div.info_image iframe {
      margin: 0;
      padding: 0;
      box-shadow: none;
      border: transparent;
      height: 285px !important; }
    body#home section#preface div.layout_2 article div.info_image div.general_label {
      background-color: #FFAE27;
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFAE27), color-stop(100%, #E49B00));
      background-image: -webkit-linear-gradient(#FFAE27, #E49B00);
      background-image: linear-gradient(#FFAE27, #E49B00);
      position: absolute;
      padding: 20px 35px 20px 30px;
      position: absolute;
      top: 33%; }
      @media screen and (max-width: 1100px) {
        body#home section#preface div.layout_2 article div.info_image div.general_label {
          top: 30%; } }
      @media screen and (max-width: 980px) {
        body#home section#preface div.layout_2 article div.info_image div.general_label {
          top: 23%; } }
      @media screen and (max-width: 790px) {
        body#home section#preface div.layout_2 article div.info_image div.general_label {
          top: 35%; } }
      @media screen and (max-width: 660px) {
        body#home section#preface div.layout_2 article div.info_image div.general_label {
          top: 30%; } }
      @media screen and (max-width: 560px) {
        body#home section#preface div.layout_2 article div.info_image div.general_label {
          top: 26%; } }
      @media screen and (max-width: 500px) {
        body#home section#preface div.layout_2 article div.info_image div.general_label {
          display: none; } }
      body#home section#preface div.layout_2 article div.info_image div.general_label div.icon_wrap {
        position: relative; }
        body#home section#preface div.layout_2 article div.info_image div.general_label div.icon_wrap span.icon {
          color: #ffffff;
          font-size: 1.8em;
          margin-right: 5px; }
        body#home section#preface div.layout_2 article div.info_image div.general_label div.icon_wrap span.label {
          color: #ffffff;
          text-transform: uppercase;
          font-family: "Gill Sans W04 Roman", sans-serif;
          line-height: 1em;
          float: right; }
          html.michaels body#home section#preface div.layout_2 article div.info_image div.general_label div.icon_wrap span.label {
            font-family: "Avenir LT W01_55 Roman", sans-serif; }
  html.michaels body#home section#preface div.layout_2 article h3 {
    font-family: "Avenir LT W01_85 Heavy", sans-serif;
    font-size: 1.25em; }
  body#home section#preface div.layout_2 article p {
    font-family: "Gill Sans W01 Light", sans-serif;
    color: #81807E;
    line-height: 1.6em; }
    html.michaels body#home section#preface div.layout_2 article p {
      font-family: "Avenir LT W01_35 Light", sans-serif;
      font-size: 1em; }
  body#home section#preface div.layout_2 article a.button {
    background: none;
    border-bottom: 3px solid #dedad1;
    border-radius: 0;
    padding: 0 0 10px;
    text-align: left;
    text-transform: uppercase;
    font-family: "Gill Sans W04 Roman", sans-serif;
    color: #6A737E;
    font-size: 0.75em;
    margin-right: 30px; }
    html.kajjal body#home section#preface div.layout_2 article a.button {
      color: #5c584f; }
    body.kajjal body#home section#preface div.layout_2 article a.button {
      color: #5c584f; }
    html.michaels body#home section#preface div.layout_2 article a.button {
      color: #5c584f;
      font-family: "Avenir LT W01_55 Roman", sans-serif; }
    body.michaels body#home section#preface div.layout_2 article a.button {
      color: #5c584f; }
    html.kinarakitchen body#home section#preface div.layout_2 article a.button {
      color: #5c584f; }
    body.kinarakitchen body#home section#preface div.layout_2 article a.button {
      color: #5c584f; }
    @media screen and (max-width: 500px) {
      body#home section#preface div.layout_2 article a.button {
        margin-right: 0; } }
    body#home section#preface div.layout_2 article a.button:hover {
      color: #FCB008;
      border-bottom: 3px solid #FCB008; }
      html.kajjal body#home section#preface div.layout_2 article a.button:hover {
        color: #E50025;
        border-bottom: 3px solid #E50025; }
      body.kajjal body#home section#preface div.layout_2 article a.button:hover {
        color: #E50025;
        border-bottom: 3px solid #E50025; }
      html.michaels body#home section#preface div.layout_2 article a.button:hover {
        color: #498BC9;
        border-bottom: 3px solid #498BC9; }
      body.michaels body#home section#preface div.layout_2 article a.button:hover {
        color: #498BC9;
        border-bottom: 3px solid #498BC9; }

body#home section#testimonials {
  background: url("/assets/images/backgrounds/testimonials_bg.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -ms-behavior: url(/assets/images/design/backgroundsize.min.htc);
  behavior: url(/assets/images/design/backgroundsize.min.htc); }
  html.michaels body#home section#testimonials {
    background: url("/assets/images/backgrounds/michaels_reviews_bg.jpg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -ms-behavior: url(/assets/images/design/backgroundsize.min.htc);
    behavior: url(/assets/images/design/backgroundsize.min.htc); }
  body#home section#testimonials span {
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: -moz-linear-gradient(left, rgba(22, 42, 70, 0.9) 0%, rgba(22, 42, 70, 0.7) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(22, 42, 70, 0.9)), color-stop(100%, rgba(22, 42, 70, 0.7)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(22, 42, 70, 0.9) 0%, rgba(22, 42, 70, 0.7) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(22, 42, 70, 0.9) 0%, rgba(22, 42, 70, 0.7) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(22, 42, 70, 0.9) 0%, rgba(22, 42, 70, 0.7) 100%);
    /* IE10+ */
    background: linear, to right, rgba(22, 42, 70, 0.9) 0%, rgba(22, 42, 70, 0.7) 100%;
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc162a46', endColorstr='#99162a46',GradientType=1 );
    /* IE6-8 */
    display: block; }
    html.kinarakitchen body#home section#testimonials span {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: -moz-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, #3b392c), color-stop(100%, rgba(71, 68, 53, 0.7)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%);
      /* IE10+ */
      background: linear, to right, #3b392c 0%, rgba(71, 68, 53, 0.7) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b392c', endColorstr='#b3474435',GradientType=1 );
      /* IE6-8 */ }
    html.kajjal body#home section#testimonials span {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: -moz-linear-gradient(left, #191919 0%, rgba(25, 25, 25, 0.5) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, #191919), color-stop(100%, rgba(25, 25, 25, 0.5)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, #191919 0%, rgba(25, 25, 25, 0.5) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, #191919 0%, rgba(25, 25, 25, 0.5) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, #191919 0%, rgba(25, 25, 25, 0.5) 100%);
      /* IE10+ */
      background: linear, to right, #191919 0%, rgba(25, 25, 25, 0.5) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#80191919',GradientType=1 );
      /* IE6-8 */ }
    html.michaels body#home section#testimonials span {
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
      background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMzMzMzMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1NTU1NTUiIHN0b3Atb3BhY2l0eT0iMC41Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
      background: -moz-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.5) 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, #333333), color-stop(100%, rgba(85, 85, 85, 0.5)));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.5) 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.5) 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(left, #333333 0%, rgba(85, 85, 85, 0.5) 100%);
      /* IE10+ */
      background: linear, to right, #333333 0%, rgba(85, 85, 85, 0.5) 100%;
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#80555555',GradientType=1 );
      /* IE6-8 */ }
    body#home section#testimonials span div.layout_2 {
      padding: 7.75% 0; }
      @media screen and (max-width: 500px) {
        body#home section#testimonials span div.layout_2 {
          padding-top: 50px;
          padding-bottom: 30px; } }
      body#home section#testimonials span div.layout_2 div.headings {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 49.0566037736%;
        margin-bottom: 20px; }
        body#home section#testimonials span div.layout_2 div.headings:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          body#home section#testimonials span div.layout_2 div.headings {
            width: auto;
            margin-right: 0; } }
        body#home section#testimonials span div.layout_2 div.headings h2 {
          color: #ffffff;
          font-size: 1.75em; }
          html.michaels body#home section#testimonials span div.layout_2 div.headings h2 {
            font-family: "Avenir LT W01_85 Heavy", sans-serif;
            font-size: 1.75em; }
      body#home section#testimonials span div.layout_2 div.links {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 49.0566037736%;
        margin-right: 0; }
        body#home section#testimonials span div.layout_2 div.links:last-child {
          margin-right: 0; }
        @media screen and (max-width: 790px) {
          body#home section#testimonials span div.layout_2 div.links {
            display: none; } }
        body#home section#testimonials span div.layout_2 div.links a {
          color: #ffffff;
          float: right;
          background: none;
          border-bottom: 3px solid rgba(255, 255, 255, 0.5);
          border-radius: 0;
          padding: 0 0 10px;
          text-transform: uppercase;
          font-family: "Gill Sans W04 Roman", sans-serif;
          font-size: 0.75em;
          color: rgba(255, 255, 255, 0.8); }
          html.michaels body#home section#testimonials span div.layout_2 div.links a {
            font-family: "Avenir LT W01_55 Roman", sans-serif; }
          body#home section#testimonials span div.layout_2 div.links a:hover {
            color: #FCB008;
            border-bottom: 3px solid #FCB008; }
            html.kajjal body#home section#testimonials span div.layout_2 div.links a:hover {
              color: #E50025;
              border-bottom: 3px solid #E50025; }
            body.kajjal body#home section#testimonials span div.layout_2 div.links a:hover {
              color: #E50025;
              border-bottom: 3px solid #E50025; }
            html.michaels body#home section#testimonials span div.layout_2 div.links a:hover {
              color: #498BC9;
              border-bottom: 3px solid #498BC9; }
            body.michaels body#home section#testimonials span div.layout_2 div.links a:hover {
              color: #498BC9;
              border-bottom: 3px solid #498BC9; }
      body#home section#testimonials span div.layout_2 article.testimonial {
        position: relative;
        min-height: 200px; }
        @media screen and (max-width: 790px) {
          body#home section#testimonials span div.layout_2 article.testimonial {
            margin-bottom: 40px;
            min-height: 0; } }
        body#home section#testimonials span div.layout_2 article.testimonial div.quote {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 83.0188679245%; }
          body#home section#testimonials span div.layout_2 article.testimonial div.quote:last-child {
            margin-right: 0; }
          body#home section#testimonials span div.layout_2 article.testimonial div.quote p {
            font-family: "Gill Sans W01 Light", sans-serif;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.25em;
            line-height: 1.6em;
            margin-bottom: 15px; }
            html.michaels body#home section#testimonials span div.layout_2 article.testimonial div.quote p {
              font-family: "Avenir LT W01_35 Light", sans-serif;
              font-size: 1.1em; }
            html.ie8 body#home section#testimonials span div.layout_2 article.testimonial div.quote p {
              color: #ffffff; }
        body#home section#testimonials span div.layout_2 article.testimonial span.icon-quotes-right {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 15.0943396226%;
          margin-right: 0;
          background: none;
          color: rgba(255, 255, 255, 0.4);
          float: right;
          font-size: 2em; }
          body#home section#testimonials span div.layout_2 article.testimonial span.icon-quotes-right:last-child {
            margin-right: 0; }
          html.ie9 body#home section#testimonials span div.layout_2 article.testimonial span.icon-quotes-right {
            filter: none; }
          html.ie8 body#home section#testimonials span div.layout_2 article.testimonial span.icon-quotes-right {
            filter: none;
            color: #ffffff; }
        body#home section#testimonials span div.layout_2 article.testimonial .name {
          color: #FCB008;
          font-family: "Gill Sans W04 Roman", sans-serif;
          font-size: 0.9em;
          margin-bottom: 0;
          clear: both;
          position: absolute;
          bottom: 0; }
          html.michaels body#home section#testimonials span div.layout_2 article.testimonial .name {
            font-family: "Avenir LT W01_55 Roman", sans-serif; }
          @media screen and (max-width: 790px) {
            body#home section#testimonials span div.layout_2 article.testimonial .name {
              position: relative; } }
          html.kajjal body#home section#testimonials span div.layout_2 article.testimonial .name {
            color: #E50025; }
          body.kajjal body#home section#testimonials span div.layout_2 article.testimonial .name {
            color: #E50025; }
          html.michaels body#home section#testimonials span div.layout_2 article.testimonial .name {
            color: #498BC9; }
          body.michaels body#home section#testimonials span div.layout_2 article.testimonial .name {
            color: #498BC9; }

@media screen and (max-width: 660px) {
  body#home section#news div.layout_3 {
    padding-top: 50px;
    padding-bottom: 50px; } }

body#home section#news div.layout_3 h2 {
  color: #46515F;
  font-size: 1.75em; }
  html.michaels body#home section#news div.layout_3 h2 {
    font-family: "Avenir LT W01_85 Heavy", sans-serif;
    font-size: 1.7em; }
  html.kajjal body#home section#news div.layout_3 h2 {
    color: #33312C; }
  body.kajjal body#home section#news div.layout_3 h2 {
    color: #33312C; }
  html.michaels body#home section#news div.layout_3 h2 {
    color: #33312C; }
  body.michaels body#home section#news div.layout_3 h2 {
    color: #33312C; }
  html.kinarakitchen body#home section#news div.layout_3 h2 {
    color: #33312C; }
  body.kinarakitchen body#home section#news div.layout_3 h2 {
    color: #33312C; }

body#home section#news div.layout_3 article h3 {
  margin-bottom: 10px; }
  body#home section#news div.layout_3 article h3 a {
    color: #46515F;
    font-size: 0.775em; }
    body#home section#news div.layout_3 article h3 a:hover {
      color: #FCB008; }
    html.kajjal body#home section#news div.layout_3 article h3 a {
      color: #33312C; }
    body.kajjal body#home section#news div.layout_3 article h3 a {
      color: #33312C; }
    html.michaels body#home section#news div.layout_3 article h3 a {
      color: #33312C; }
    body.michaels body#home section#news div.layout_3 article h3 a {
      color: #33312C; }
    html.kinarakitchen body#home section#news div.layout_3 article h3 a {
      color: #33312C; }
    body.kinarakitchen body#home section#news div.layout_3 article h3 a {
      color: #33312C; }

body#home section#news div.layout_3 article p.time {
  font-family: "Gill Sans W04 Roman", sans-serif;
  color: #C6C3BF;
  font-size: 0.9em;
  margin-bottom: 10px; }
  html.michaels body#home section#news div.layout_3 article p.time {
    font-family: "Avenir LT W01_55 Roman", sans-serif; }
  body#home section#news div.layout_3 article p.time span {
    color: #C6C3BF;
    font-size: 0.8em;
    margin-right: 5px; }

body#home section#news div.layout_3 article p.text {
  color: #81807E;
  font-family: "Gill Sans W01 Light", sans-serif;
  font-size: 1em;
  line-height: 1.6em;
  height: 100px;
  overflow: hidden; }
  html.michaels body#home section#news div.layout_3 article p.text {
    font-family: "Avenir LT W01_35 Light", sans-serif; }
  @media screen and (max-width: 1100px) {
    body#home section#news div.layout_3 article p.text {
      height: 80px; } }
  @media screen and (max-width: 980px) {
    body#home section#news div.layout_3 article p.text {
      height: 90px; } }
  @media screen and (max-width: 790px) {
    body#home section#news div.layout_3 article p.text {
      height: auto; } }

body#home section#news div.layout_3 article a.button {
  background: none;
  border-bottom: 3px solid #dedad1;
  border-radius: 0;
  padding: 0 0 10px;
  text-align: left;
  text-transform: uppercase;
  font-family: "Gill Sans W04 Roman", sans-serif;
  color: #6A737E;
  font-size: 0.75em;
  margin-right: 30px; }
  html.kajjal body#home section#news div.layout_3 article a.button {
    color: #777367; }
  body.kajjal body#home section#news div.layout_3 article a.button {
    color: #777367; }
  html.michaels body#home section#news div.layout_3 article a.button {
    color: #777367;
    font-family: "Avenir LT W01_55 Roman", sans-serif; }
  body.michaels body#home section#news div.layout_3 article a.button {
    color: #777367; }
  html.kinarakitchen body#home section#news div.layout_3 article a.button {
    color: #777367; }
  body.kinarakitchen body#home section#news div.layout_3 article a.button {
    color: #777367; }
  @media screen and (max-width: 500px) {
    body#home section#news div.layout_3 article a.button {
      margin-right: 0; } }
  body#home section#news div.layout_3 article a.button:hover {
    color: #FCB008;
    border-bottom: 3px solid #FCB008; }
    html.kajjal body#home section#news div.layout_3 article a.button:hover {
      color: #E50025;
      border-bottom: 3px solid #E50025; }
    body.kajjal body#home section#news div.layout_3 article a.button:hover {
      color: #E50025;
      border-bottom: 3px solid #E50025; }
    html.michaels body#home section#news div.layout_3 article a.button:hover {
      color: #498BC9;
      border-bottom: 3px solid #498BC9; }
    body.michaels body#home section#news div.layout_3 article a.button:hover {
      color: #498BC9;
      border-bottom: 3px solid #498BC9; }
    html.kinarakitchen body#home section#news div.layout_3 article a.button:hover {
      color: #FCB008;
      border-bottom: 3px solid #FCB008; }
    body.kinarakitchen body#home section#news div.layout_3 article a.button:hover {
      color: #FCB008;
      border-bottom: 3px solid #FCB008; }

body#home section#news div.layout_3 article.awards {
  position: relative; }
  body#home section#news div.layout_3 article.awards h2 {
    position: absolute;
    top: -55px; }
    @media screen and (max-width: 790px) {
      body#home section#news div.layout_3 article.awards h2 {
        position: relative;
        top: 0;
        margin-top: 20px; } }
  body#home section#news div.layout_3 article.awards img {
    padding: 9px;
    background: #ffffff;
    border: 1px solid #dedad1; }
    @media screen and (max-width: 790px) {
      body#home section#news div.layout_3 article.awards img {
        max-width: 350px; } }
    @media screen and (max-width: 380px) {
      body#home section#news div.layout_3 article.awards img {
        max-width: 100%; } }

html.ie9 body.kinarakitchen section#vouchers span {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b392c', endColorstr='#b3474435',GradientType=1 ) !important;
  /* IE6-8 */ }

html.ie9 body.kinarakitchen section#testimonials span {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b392c', endColorstr='#b3474435',GradientType=1 ) !important;
  /* IE6-8 */ }
  html.ie9 body.kinarakitchen section#testimonials span span.icon-quotes-right {
    filter: none !important; }

html.ie9 body.kajjal div.flexslider div.slides > div.layout_3 > span > div article h2 a:hover {
  color: #ffffff !important;
  color: #E50025 !important; }

html.ie9 body.kajjal section#home_panels_wrap div.layout_4 article.home_panels h2 a:hover {
  color: #E50025 !important; }

html.ie9 body.kajjal section#home_panels_wrap div.layout_4 article.home_panels a.button:hover {
  color: #E50025 !important;
  border-bottom: 2px solid #E50025 !important; }

html.ie9 body.kajjal section#vouchers span {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#80191919',GradientType=1 ) !important;
  /* IE6-8 */ }
  html.ie9 body.kajjal section#vouchers span div.layout_2 article a.button:hover {
    border-bottom: 3px solid #E50025 !important;
    color: #E50025 !important; }

html.ie9 body.kajjal section#testimonials span {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#80191919',GradientType=1 ) !important;
  /* IE6-8 */ }
  html.ie9 body.kajjal section#testimonials span span.icon-quotes-right {
    filter: none !important; }

html.ie9 body.kajjal section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box {
  border: 1px solid #E50025 !important; }
  html.ie9 body.kajjal section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_top {
    background: #E50025 !important; }
  html.ie9 body.kajjal section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_bottom {
    color: #E50025 !important; }

html.ie9 body.kajjal section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box h3 {
  color: #E50025 !important; }

html.ie9 body.kajjal section#events div.layout_8 article.event_wrap span.button_wrap a.button:hover {
  border-bottom: 3px solid #E50025 !important;
  color: #E50025 !important; }

html.ie9 body.kajjal section#preface div.layout_2 article a.button:hover {
  border-bottom: 3px solid #E50025 !important;
  color: #E50025 !important; }

html.ie9 body.kajjal section#testimonials span div.layout_2 div.links a:hover {
  border-bottom: 3px solid #E50025 !important;
  color: #E50025 !important; }

html.ie9 body.kajjal section#testimonials span div.layout_2 article.testimonial .name {
  color: #E50025 !important; }

html.ie9 body.kajjal section#news div.layout_3 article h3 a:hover {
  color: #E50025 !important; }

html.ie9 body.kajjal section#news div.layout_3 article a.button:hover {
  border-bottom: 3px solid #E50025 !important;
  color: #E50025 !important; }

html.ie9 body.michaels div.flexslider div.slides > div.layout_3 > span > div article h2 a:hover {
  color: #ffffff !important;
  color: #498BC9 !important; }

html.ie9 body.michaels section#home_panels_wrap div.layout_4 article.home_panels h2 a:hover {
  color: #498BC9 !important; }

html.ie9 body.michaels section#home_panels_wrap div.layout_4 article.home_panels a.button:hover {
  color: #498BC9 !important;
  border-bottom: 2px solid #498BC9 !important; }

html.ie9 body.michaels section#vouchers span {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#80191919',GradientType=1 ) !important;
  /* IE6-8 */ }
  html.ie9 body.michaels section#vouchers span div.layout_2 article a.button:hover {
    border-bottom: 3px solid #498BC9 !important;
    color: #498BC9 !important; }

html.ie9 body.michaels section#testimonials span {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#80191919',GradientType=1 ) !important;
  /* IE6-8 */ }
  html.ie9 body.michaels section#testimonials span span.icon-quotes-right {
    filter: none !important; }

html.ie9 body.michaels section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box {
  border: 1px solid #498BC9 !important; }
  html.ie9 body.michaels section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_top {
    background: #498BC9 !important; }
  html.ie9 body.michaels section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_bottom {
    color: #498BC9 !important; }

html.ie9 body.michaels section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box h3 {
  color: #498BC9 !important; }

html.ie9 body.michaels section#events div.layout_8 article.event_wrap span.button_wrap a.button:hover {
  border-bottom: 3px solid #498BC9 !important;
  color: #498BC9 !important; }

html.ie9 body.michaels section#preface div.layout_2 article a.button:hover {
  border-bottom: 3px solid #498BC9 !important;
  color: #498BC9 !important; }

html.ie9 body.michaels section#testimonials span div.layout_2 div.links a:hover {
  border-bottom: 3px solid #498BC9 !important;
  color: #498BC9 !important; }

html.ie9 body.michaels section#testimonials span div.layout_2 article.testimonial .name {
  color: #498BC9 !important; }

html.ie9 body.michaels section#news div.layout_3 article h3 a:hover {
  color: #498BC9 !important; }

html.ie9 body.michaels section#news div.layout_3 article a.button:hover {
  border-bottom: 3px solid #498BC9 !important;
  color: #498BC9 !important; }

html.ie8 body.kinarakitchen section#vouchers span {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b392c', endColorstr='#b3474435',GradientType=1 ) !important;
  /* IE6-8 */ }

html.ie8 body.kinarakitchen section#testimonials span {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b392c', endColorstr='#b3474435',GradientType=1 ) !important;
  /* IE6-8 */ }
  html.ie8 body.kinarakitchen section#testimonials span span.icon-quotes-right {
    filter: none !important; }

html.ie8 body.kajjal div.flexslider div.slides > div.layout_3 > span > div article h2 a:hover {
  color: #ffffff !important;
  color: #E50025 !important; }

html.ie8 body.kajjal section#home_panels_wrap div.layout_4 article.home_panels h2 a:hover {
  color: #E50025 !important; }

html.ie8 body.kajjal section#home_panels_wrap div.layout_4 article.home_panels a.button:hover {
  color: #E50025 !important;
  border-bottom: 2px solid #E50025 !important; }

html.ie8 body.kajjal section#vouchers span {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#80191919',GradientType=1 ) !important;
  /* IE6-8 */ }
  html.ie8 body.kajjal section#vouchers span div.layout_2 article a.button:hover {
    border-bottom: 3px solid #E50025 !important;
    color: #E50025 !important; }

html.ie8 body.kajjal section#testimonials span {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#80191919',GradientType=1 ) !important;
  /* IE6-8 */ }
  html.ie8 body.kajjal section#testimonials span span.icon-quotes-right {
    filter: none !important; }

html.ie8 body.kajjal section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box {
  border: 1px solid #E50025 !important; }
  html.ie8 body.kajjal section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_top {
    background: #E50025 !important; }
  html.ie8 body.kajjal section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_bottom {
    color: #E50025 !important; }

html.ie8 body.kajjal section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box h3 {
  color: #E50025 !important; }

html.ie8 body.kajjal section#events div.layout_8 article.event_wrap span.button_wrap a.button:hover {
  border-bottom: 3px solid #E50025 !important;
  color: #E50025 !important; }

html.ie8 body.kajjal section#preface div.layout_2 article a.button:hover {
  border-bottom: 3px solid #E50025 !important;
  color: #E50025 !important; }

html.ie8 body.kajjal section#testimonials span div.layout_2 div.links a:hover {
  border-bottom: 3px solid #E50025 !important;
  color: #E50025 !important; }

html.ie8 body.kajjal section#testimonials span div.layout_2 article.testimonial .name {
  color: #E50025 !important; }

html.ie8 body.kajjal section#news div.layout_3 article h3 a:hover {
  color: #E50025 !important; }

html.ie8 body.kajjal section#news div.layout_3 article a.button:hover {
  border-bottom: 3px solid #E50025 !important;
  color: #E50025 !important; }

html.ie8 body.michaels div.flexslider div.slides > div.layout_3 > span > div article h2 a:hover {
  color: #ffffff !important;
  color: #498BC9 !important; }

html.ie8 body.michaels section#home_panels_wrap div.layout_4 article.home_panels h2 a:hover {
  color: #498BC9 !important; }

html.ie8 body.michaels section#home_panels_wrap div.layout_4 article.home_panels a.button:hover {
  color: #498BC9 !important;
  border-bottom: 2px solid #498BC9 !important; }

html.ie8 body.michaels section#vouchers span {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#80191919',GradientType=1 ) !important;
  /* IE6-8 */ }
  html.ie8 body.michaels section#vouchers span div.layout_2 article a.button:hover {
    border-bottom: 3px solid #498BC9 !important;
    color: #498BC9 !important; }

html.ie8 body.michaels section#testimonials span {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#80191919',GradientType=1 ) !important;
  /* IE6-8 */ }
  html.ie8 body.michaels section#testimonials span span.icon-quotes-right {
    filter: none !important; }

html.ie8 body.michaels section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box {
  border: 1px solid #498BC9 !important; }
  html.ie8 body.michaels section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_top {
    background: #498BC9 !important; }
  html.ie8 body.michaels section#events div.layout_8 article.event_wrap div.event_home a:hover div.left_box div.icon_bottom {
    color: #498BC9 !important; }

html.ie8 body.michaels section#events div.layout_8 article.event_wrap div.event_home a:hover div.right_box h3 {
  color: #498BC9 !important; }

html.ie8 body.michaels section#events div.layout_8 article.event_wrap span.button_wrap a.button:hover {
  border-bottom: 3px solid #498BC9 !important;
  color: #498BC9 !important; }

html.ie8 body.michaels section#preface div.layout_2 article a.button:hover {
  border-bottom: 3px solid #498BC9 !important;
  color: #498BC9 !important; }

html.ie8 body.michaels section#testimonials span div.layout_2 div.links a:hover {
  border-bottom: 3px solid #498BC9 !important;
  color: #498BC9 !important; }

html.ie8 body.michaels section#testimonials span div.layout_2 article.testimonial .name {
  color: #498BC9 !important; }

html.ie8 body.michaels section#news div.layout_3 article h3 a:hover {
  color: #498BC9 !important; }

html.ie8 body.michaels section#news div.layout_3 article a.button:hover {
  border-bottom: 3px solid #498BC9 !important;
  color: #498BC9 !important; }

body#news section#main_content > div > div > article {
  background: none;
  border: none;
  padding: 0; }
  body#news section#main_content > div > div > article div.no-results h2 span.icon-minus-circle {
    font-size: 0.8em;
    margin-right: 10px; }
  body#news section#main_content > div > div > article article.news_listing_1 {
    margin-bottom: 40px;
    background: #ffffff;
    border: 1px solid #dedad1;
    padding: 10px; }
    body#news section#main_content > div > div > article article.news_listing_1 .news_bottom {
      margin: 0 25px; }
    body#news section#main_content > div > div > article article.news_listing_1 .no_news_image h2 {
      margin-top: 20px; }
    body#news section#main_content > div > div > article article.news_listing_1 h2 {
      font-family: "Gill Sans W04 Roman", sans-serif;
      font-size: 1.9em;
      margin: 0 0 20px;
      line-height: 1em; }
      html.michaels body#news section#main_content > div > div > article article.news_listing_1 h2 {
        font-family: "Avenir LT W01_55 Roman", sans-serif; }
      body#news section#main_content > div > div > article article.news_listing_1 h2 a {
        color: #162A46; }
        body.kajjal body#news section#main_content > div > div > article article.news_listing_1 h2 a {
          color: #33312C; }
        body.michaels body#news section#main_content > div > div > article article.news_listing_1 h2 a {
          color: #33312C; }
        body#news section#main_content > div > div > article article.news_listing_1 h2 a:hover {
          color: #FCB008; }
          body.kajjal body#news section#main_content > div > div > article article.news_listing_1 h2 a:hover {
            color: #E50025; }
          body.michaels body#news section#main_content > div > div > article article.news_listing_1 h2 a:hover {
            color: #498BC9; }
      @media screen and (max-width: 790px) {
        body#news section#main_content > div > div > article article.news_listing_1 h2 {
          font-size: 1.3em; } }
    body#news section#main_content > div > div > article article.news_listing_1 p {
      line-height: 1.5em; }
      @media screen and (max-width: 380px) {
        body#news section#main_content > div > div > article article.news_listing_1 p {
          font-size: 1em; } }
    body#news section#main_content > div > div > article article.news_listing_1 div.entry_date {
      color: #a2a2a2;
      font-size: 0.8em;
      margin: 10px 0; }
      @media screen and (max-width: 790px) {
        body#news section#main_content > div > div > article article.news_listing_1 div.entry_date {
          margin-top: 15px; } }
      body#news section#main_content > div > div > article article.news_listing_1 div.entry_date span.icon {
        margin-right: 2px; }
    body#news section#main_content > div > div > article article.news_listing_1 a {
      font-size: 0.85em; }
      @media screen and (max-width: 560px) {
        body#news section#main_content > div > div > article article.news_listing_1 a {
          text-align: center; } }
      body#news section#main_content > div > div > article article.news_listing_1 a img:hover {
        border-color: #dddddd; }
    body#news section#main_content > div > div > article article.news_listing_1 a.image_wrap {
      display: block;
      line-height: 0;
      margin-bottom: 30px; }

html.ie9 body#news.kajjal section#main_content > div > div > article article.review_listing_1 div.company p span {
  color: #E50025 !important; }

html.ie9 body#news.kajjal section#main_content > div > div > article article.news_listing_1 h2 a:hover {
  color: #E50025 !important; }

html.ie9 body#news.kajjal section#main_content > div > div > article article.events_listing_1 p.event_date span {
  color: #E50025 !important; }

html.ie9 body#news.kajjal section#main_content > div > div > article article.events_detail_1 p.event_date span {
  color: #E50025 !important; }

html.ie9 body#news.michaels section#main_content > div > div > article article.review_listing_1 div.company p span {
  color: #498BC9 !important; }

html.ie9 body#news.michaels section#main_content > div > div > article article.news_listing_1 h2 a:hover {
  color: #498BC9 !important; }

html.ie9 body#news.michaels section#main_content > div > div > article article.events_listing_1 p.event_date span {
  color: #498BC9 !important; }

html.ie9 body#news.michaels section#main_content > div > div > article article.events_detail_1 p.event_date span {
  color: #498BC9 !important; }

html.ie8 body#news.kajjal section#main_content > div > div > article article.review_listing_1 div.company p span {
  color: #E50025 !important; }

html.ie8 body#news.kajjal section#main_content > div > div > article article.news_listing_1 h2 a:hover {
  color: #E50025 !important; }

html.ie8 body#news.kajjal section#main_content > div > div > article article.events_listing_1 p.event_date span {
  color: #E50025 !important; }

html.ie8 body#news.kajjal section#main_content > div > div > article article.events_detail_1 p.event_date span {
  color: #E50025 !important; }

html.ie8 body#news.michaels section#main_content > div > div > article article.review_listing_1 div.company p span {
  color: #498BC9 !important; }

html.ie8 body#news.michaels section#main_content > div > div > article article.news_listing_1 h2 a:hover {
  color: #498BC9 !important; }

html.ie8 body#news.michaels section#main_content > div > div > article article.events_listing_1 p.event_date span {
  color: #498BC9 !important; }

html.ie8 body#news.michaels section#main_content > div > div > article article.events_detail_1 p.event_date span {
  color: #498BC9 !important; }

html.ie8 body#news.michaels section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner h3 {
  color: #498BC9 !important; }

body#news section#main_content > div > div > article article.news_detail_1 {
  background: #ffffff;
  padding: 10px;
  border: 1px solid #dedad1; }
  body#news section#main_content > div > div > article article.news_detail_1 .no_news_image h2 {
    margin-top: 20px; }
  body#news section#main_content > div > div > article article.news_detail_1 h2 {
    font-family: "Gill Sans W04 Roman", sans-serif;
    font-size: 1.9em;
    margin: 0 0 20px;
    line-height: 1em; }
    html.michaels body#news section#main_content > div > div > article article.news_detail_1 h2 {
      font-family: "Avenir LT W01_55 Roman", sans-serif; }
    body#news section#main_content > div > div > article article.news_detail_1 h2 a {
      color: #162A46; }
      body#news section#main_content > div > div > article article.news_detail_1 h2 a:hover {
        color: #162A46; }
    @media screen and (max-width: 790px) {
      body#news section#main_content > div > div > article article.news_detail_1 h2 {
        font-size: 1.3em; } }
  body#news section#main_content > div > div > article article.news_detail_1 div.entry_date {
    color: #a2a2a2;
    font-size: 0.8em;
    margin: 10px 0; }
    @media screen and (max-width: 790px) {
      body#news section#main_content > div > div > article article.news_detail_1 div.entry_date {
        margin-top: 15px; } }
    body#news section#main_content > div > div > article article.news_detail_1 div.entry_date span.icon {
      margin-right: 2px; }
  body#news section#main_content > div > div > article article.news_detail_1 img {
    margin-bottom: 30px; }
  body#news section#main_content > div > div > article article.news_detail_1 p {
    line-height: 1.5em; }
  body#news section#main_content > div > div > article article.news_detail_1 .news_bottom {
    margin: 0 25px; }
  body#news section#main_content > div > div > article article.news_detail_1 a.entry_share {
    background-color: #162A46;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #162A46), color-stop(100%, #13243F));
    background-image: -webkit-linear-gradient(#162A46, #13243F);
    background-image: linear-gradient(#162A46, #13243F); }
    body#news section#main_content > div > div > article article.news_detail_1 a.entry_share:hover {
      border-color: #F66042; }
  body#news section#main_content > div > div > article article.news_detail_1 a.entry_share.twitter {
    color: #00aced; }
    body#news section#main_content > div > div > article article.news_detail_1 a.entry_share.twitter:hover {
      color: #006287; }

body#news section#main_content > div > div > article a.entry_share {
  background-color: #FFAE27;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFAE27), color-stop(100%, #E49B00));
  background-image: -webkit-linear-gradient(#FFAE27, #E49B00);
  background-image: linear-gradient(#FFAE27, #E49B00);
  color: #ffffff;
  border-radius: 4px;
  padding: 10px 5%;
  display: inline-block;
  margin-bottom: 3%;
  font-family: "allerregular", sans-serif;
  margin-bottom: 20px; }
  @media screen and (max-width: 440px) {
    body#news section#main_content > div > div > article a.entry_share {
      display: block; } }
  body#news section#main_content > div > div > article a.entry_share .icon {
    margin-left: 10px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    position: relative; }
    @media screen and (max-width: 440px) {
      body#news section#main_content > div > div > article a.entry_share .icon {
        float: right; } }
    html.ie8 body#news section#main_content > div > div > article a.entry_share .icon {
      border: none; }
  body#news section#main_content > div > div > article a.entry_share:hover {
    color: #ffffff;
    background: #ce8f03; }
  body.kajjal body#news section#main_content > div > div > article a.entry_share {
    background-color: #E50025;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E50025), color-stop(100%, #B60017));
    background-image: -webkit-linear-gradient(#E50025, #B60017);
    background-image: linear-gradient(#E50025, #B60017);
    color: #ffffff; }
    body.kajjal body#news section#main_content > div > div > article a.entry_share:hover {
      background: #b2001d; }
  body.michaels body#news section#main_content > div > div > article a.entry_share {
    background-color: #3E8EDE;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3E8EDE), color-stop(100%, #3077BD));
    background-image: -webkit-linear-gradient(#3E8EDE, #3077BD);
    background-image: linear-gradient(#3E8EDE, #3077BD);
    color: #ffffff;
    font-family: "Avenir LT W01_85 Heavy", sans-serif; }
    body.michaels body#news section#main_content > div > div > article a.entry_share:hover {
      background: #3371ac; }
  body.kinarakitchen body#news section#main_content > div > div > article a.entry_share {
    color: #ffffff; }
  body#news section#main_content > div > div > article a.entry_share span.social_icon {
    font-size: 12px;
    margin-left: 5px; }

body#news section#main_content > div > div > article {
  background: none;
  border: none;
  padding: 0; }
  body#news section#main_content > div > div > article div.no_results {
    background: #F4F4F4;
    border-bottom: 3px solid #DDD;
    padding: 20px 20px 20px 50px;
    margin-bottom: 40px; }
    body#news section#main_content > div > div > article div.no_results h2 {
      position: relative;
      font-size: 1.6em;
      padding: 0;
      margin: 0;
      color: #888; }
      @media screen and (max-width: 660px) {
        body#news section#main_content > div > div > article div.no_results h2 {
          font-size: 1.3em;
          margin-bottom: 10px; } }
      body#news section#main_content > div > div > article div.no_results h2 span.icon-minus-circle {
        font-size: 14px;
        position: absolute;
        top: 7px;
        left: -30px;
        margin-right: 5px; }
  body#news section#main_content > div > div > article article.events_listing_1 {
    margin-bottom: 40px;
    background: #ffffff;
    border: 1px solid #dedad1;
    padding: 10px; }
    body#news section#main_content > div > div > article article.events_listing_1 .events_bottom {
      margin: 25px; }
    body#news section#main_content > div > div > article article.events_listing_1 h2 {
      font-family: "Gill Sans W04 Roman", sans-serif;
      font-size: 1.9em;
      margin: 0 0 20px;
      line-height: 1em; }
      html.michaels body#news section#main_content > div > div > article article.events_listing_1 h2 {
        font-family: "Avenir LT W01_55 Roman", sans-serif; }
      body#news section#main_content > div > div > article article.events_listing_1 h2 a {
        color: #162A46; }
        html.kinarakitchen body#news section#main_content > div > div > article article.events_listing_1 h2 a {
          color: #33312C; }
          html.kinarakitchen body#news section#main_content > div > div > article article.events_listing_1 h2 a:hover {
            color: #FCB008; }
        body.kinarakitchen body#news section#main_content > div > div > article article.events_listing_1 h2 a {
          color: #33312C; }
          body.kinarakitchen body#news section#main_content > div > div > article article.events_listing_1 h2 a:hover {
            color: #FCB008; }
        html.kajjal body#news section#main_content > div > div > article article.events_listing_1 h2 a {
          color: #33312C; }
          html.kajjal body#news section#main_content > div > div > article article.events_listing_1 h2 a:hover {
            color: #E50025; }
        body.kajjal body#news section#main_content > div > div > article article.events_listing_1 h2 a {
          color: #33312C; }
          body.kajjal body#news section#main_content > div > div > article article.events_listing_1 h2 a:hover {
            color: #E50025; }
        html.michaels body#news section#main_content > div > div > article article.events_listing_1 h2 a {
          color: #33312C; }
          html.michaels body#news section#main_content > div > div > article article.events_listing_1 h2 a:hover {
            color: #498BC9; }
        body.michaels body#news section#main_content > div > div > article article.events_listing_1 h2 a {
          color: #33312C; }
          body.michaels body#news section#main_content > div > div > article article.events_listing_1 h2 a:hover {
            color: #498BC9; }
        body#news section#main_content > div > div > article article.events_listing_1 h2 a:hover {
          color: #FCB008; }
      @media screen and (max-width: 790px) {
        body#news section#main_content > div > div > article article.events_listing_1 h2 {
          font-size: 1.3em; } }
    body#news section#main_content > div > div > article article.events_listing_1 p.event_date {
      color: rgba(129, 128, 126, 0.8);
      text-transform: uppercase;
      font-size: 1.05em;
      margin: 0 0 20px; }
      body#news section#main_content > div > div > article article.events_listing_1 p.event_date span {
        color: #FCB008;
        font-size: 0.95em;
        margin-right: 10px;
        position: relative;
        top: 2px; }
        html.kajjal body#news section#main_content > div > div > article article.events_listing_1 p.event_date span {
          color: #E50025; }
        body.kajjal body#news section#main_content > div > div > article article.events_listing_1 p.event_date span {
          color: #E50025; }
        html.michaels body#news section#main_content > div > div > article article.events_listing_1 p.event_date span {
          color: #498BC9; }
        body.michaels body#news section#main_content > div > div > article article.events_listing_1 p.event_date span {
          color: #498BC9; }
    body#news section#main_content > div > div > article article.events_listing_1 p {
      line-height: 1.5em; }
      @media screen and (max-width: 380px) {
        body#news section#main_content > div > div > article article.events_listing_1 p {
          font-size: 1em; } }
    body#news section#main_content > div > div > article article.events_listing_1 a {
      font-size: 0.85em;
      margin-bottom: 0; }
      @media screen and (max-width: 560px) {
        body#news section#main_content > div > div > article article.events_listing_1 a {
          text-align: center; } }

body#news section#main_content > div > div > article article.events_detail_1 {
  background: #ffffff;
  padding: 10px;
  border: 1px solid #dedad1; }
  body#news section#main_content > div > div > article article.events_detail_1 h2 {
    font-family: "Gill Sans W04 Roman", sans-serif;
    font-size: 1.9em;
    margin: 0 0 20px;
    line-height: 1em; }
    html.michaels body#news section#main_content > div > div > article article.events_detail_1 h2 {
      font-family: "Avenir LT W01_55 Roman", sans-serif; }
    body#news section#main_content > div > div > article article.events_detail_1 h2 a {
      color: #162A46; }
      html.kajjal body#news section#main_content > div > div > article article.events_detail_1 h2 a {
        color: #33312C; }
      body.kajjal body#news section#main_content > div > div > article article.events_detail_1 h2 a {
        color: #33312C; }
      html.michaels body#news section#main_content > div > div > article article.events_detail_1 h2 a {
        color: #33312C; }
      body.michaels body#news section#main_content > div > div > article article.events_detail_1 h2 a {
        color: #33312C; }
      body#news section#main_content > div > div > article article.events_detail_1 h2 a:hover {
        color: #162A46; }
    @media screen and (max-width: 790px) {
      body#news section#main_content > div > div > article article.events_detail_1 h2 {
        font-size: 1.3em; } }
  body#news section#main_content > div > div > article article.events_detail_1 p.event_date {
    color: #7F7F7E;
    text-transform: uppercase;
    font-size: 1.05em;
    margin: 0 10px 20px 0;
    background: #F6F6F6;
    border-radius: 4px;
    float: left;
    padding: 5px 10px; }
    body#news section#main_content > div > div > article article.events_detail_1 p.event_date span {
      color: #FCB008;
      font-size: 0.95em;
      margin-right: 10px;
      position: relative;
      top: 2px; }
      html.kajjal body#news section#main_content > div > div > article article.events_detail_1 p.event_date span {
        color: #E50025; }
      body.kajjal body#news section#main_content > div > div > article article.events_detail_1 p.event_date span {
        color: #E50025; }
      html.michaels body#news section#main_content > div > div > article article.events_detail_1 p.event_date span {
        color: #498BC9; }
      body.michaels body#news section#main_content > div > div > article article.events_detail_1 p.event_date span {
        color: #498BC9; }
  body#news section#main_content > div > div > article article.events_detail_1 div.event_content {
    clear: both; }
  body#news section#main_content > div > div > article article.events_detail_1 p {
    line-height: 1.5em; }
  body#news section#main_content > div > div > article article.events_detail_1 .events_bottom {
    margin: 25px; }

body#news section#main_content > div > div > article a.entry_share {
  background-color: #FFAE27;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFAE27), color-stop(100%, #E49B00));
  background-image: -webkit-linear-gradient(#FFAE27, #E49B00);
  background-image: linear-gradient(#FFAE27, #E49B00);
  color: #ffffff;
  border-radius: 4px;
  padding: 10px 5%;
  display: inline-block;
  margin-bottom: 3%;
  font-family: "allerregular", sans-serif;
  margin-bottom: 20px; }
  @media screen and (max-width: 440px) {
    body#news section#main_content > div > div > article a.entry_share {
      display: block; } }
  body#news section#main_content > div > div > article a.entry_share .icon {
    margin-left: 10px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    position: relative; }
    @media screen and (max-width: 440px) {
      body#news section#main_content > div > div > article a.entry_share .icon {
        float: right; } }
    html.ie8 body#news section#main_content > div > div > article a.entry_share .icon {
      border: none; }
  body#news section#main_content > div > div > article a.entry_share:hover {
    color: #ffffff;
    background: #ce8f03; }
  body.kajjal body#news section#main_content > div > div > article a.entry_share {
    background-color: #E50025;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E50025), color-stop(100%, #B60017));
    background-image: -webkit-linear-gradient(#E50025, #B60017);
    background-image: linear-gradient(#E50025, #B60017);
    color: #ffffff; }
    body.kajjal body#news section#main_content > div > div > article a.entry_share:hover {
      background: #b2001d; }
  body.michaels body#news section#main_content > div > div > article a.entry_share {
    background-color: #3E8EDE;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3E8EDE), color-stop(100%, #3077BD));
    background-image: -webkit-linear-gradient(#3E8EDE, #3077BD);
    background-image: linear-gradient(#3E8EDE, #3077BD);
    color: #ffffff;
    font-family: "Avenir LT W01_85 Heavy", sans-serif; }
    body.michaels body#news section#main_content > div > div > article a.entry_share:hover {
      background: #3371ac; }
  body.kinarakitchen body#news section#main_content > div > div > article a.entry_share {
    color: #ffffff; }
  body#news section#main_content > div > div > article a.entry_share span.social_icon {
    font-size: 12px;
    margin-left: 5px; }

body#news section#main_content > div > div > article div.menus_top {
  background: #ffffff;
  border: 1px solid #dedad1;
  margin-bottom: 40px;
  float: left;
  max-width: 100%; }
  body#news section#main_content > div > div > article div.menus_top img {
    padding: 10px; }
  body#news section#main_content > div > div > article div.menus_top div.availability {
    float: left;
    padding: 10px 10px 25px;
    width: 100%; }
    body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 40.5660377358%;
      border-right: 1px solid rgba(129, 128, 126, 0.2);
      padding-left: 30px; }
      body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left:last-child {
        margin-right: 0; }
      @media screen and (max-width: 1100px) {
        body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left {
          padding-left: 10px; } }
      @media screen and (max-width: 500px) {
        body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 100%;
          border-right: none;
          border-bottom: 1px solid rgba(129, 128, 126, 0.2);
          margin-bottom: 20px;
          padding-bottom: 20px; }
          body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left:last-child {
            margin-right: 0; } }
      body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left p.menu_available {
        color: #162A46;
        text-transform: uppercase;
        font-size: 1em;
        margin: 0; }
        html.kajjal body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left p.menu_available {
          color: #33312C; }
        body.kajjal body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left p.menu_available {
          color: #33312C; }
        html.michaels body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left p.menu_available {
          color: #33312C; }
        body.michaels body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left p.menu_available {
          color: #33312C; }
        @media screen and (max-width: 500px) {
          body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left p.menu_available {
            display: block;
            text-align: center; } }
        body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left p.menu_available span {
          color: #162A46;
          font-size: 0.8em;
          margin-right: 10px;
          position: relative;
          top: 0; }
          body.kajjal body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left p.menu_available span {
            color: #E50025; }
          body.michaels body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left p.menu_available span {
            color: #498BC9; }
      body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left p {
        margin-bottom: 0; }
        @media screen and (max-width: 500px) {
          body#news section#main_content > div > div > article div.menus_top div.availability div.availability_left p {
            display: block;
            text-align: center; } }
    body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 57.5471698113%;
      padding-left: 30px; }
      body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right:last-child {
        margin-right: 0; }
      @media screen and (max-width: 1100px) {
        body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right {
          padding-left: 10px; } }
      @media screen and (max-width: 500px) {
        body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 100%; }
          body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right:last-child {
            margin-right: 0; } }
      body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right p.menu_available {
        color: #162A46;
        text-transform: uppercase;
        font-size: 1em;
        margin: 0; }
        html.kajjal body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right p.menu_available {
          color: #33312C; }
        html.michaels body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right p.menu_available {
          color: #33312C; }
        @media screen and (max-width: 500px) {
          body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right p.menu_available {
            display: block;
            text-align: center; } }
        body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right p.menu_available span {
          color: #162A46;
          font-size: 0.8em;
          margin-right: 10px;
          position: relative;
          top: 0; }
          body.kajjal body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right p.menu_available span {
            color: #E50025; }
          body.michaels body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right p.menu_available span {
            color: #498BC9; }
      body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right span.courses {
        line-height: 1.9em;
        margin-bottom: 0;
        color: rgba(129, 128, 126, 0.8);
        font-size: 1.125em;
        margin-right: 10px; }
        @media screen and (max-width: 500px) {
          body#news section#main_content > div > div > article div.menus_top div.availability div.availability_right span.courses {
            display: block;
            text-align: center; } }
  body#news section#main_content > div > div > article div.menus_top div.availability_tags {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 100%;
    border-top: 1px solid rgba(129, 128, 126, 0.2); }
    body#news section#main_content > div > div > article div.menus_top div.availability_tags:last-child {
      margin-right: 0; }
    body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      padding: 20px 40px; }
      body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner:last-child {
        margin-right: 0; }
      body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags {
        color: #162A46;
        text-transform: uppercase;
        font-size: 1em;
        margin: 0 20px 0 0;
        float: left; }
        body.kajjal body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags {
          color: #33312C; }
        body.michaels body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags {
          color: #33312C; }
        @media screen and (max-width: 980px) {
          body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags {
            width: 28%; } }
        @media screen and (max-width: 790px) {
          body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags {
            width: auto; } }
        @media screen and (max-width: 660px) {
          body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags {
            width: 28%; } }
        @media screen and (max-width: 560px) {
          body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags {
            width: 40%; } }
        @media screen and (max-width: 440px) {
          body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags {
            margin-right: 0;
            width: 50%; } }
        @media screen and (max-width: 380px) {
          body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags {
            margin-right: 0;
            width: 100%; } }
        body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span {
          color: #FCB008;
          font-size: 0.8em;
          margin-right: 10px;
          position: relative;
          top: 7px; }
          body.kajjal body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span {
            color: #E50025; }
          body.michaels body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span {
            color: #498BC9; }
        body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.mild {
          background: url("/assets/images/icons/icon-mild.png") no-repeat;
          width: 11px;
          height: 15px;
          float: left; }
          body.kajjal body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.mild {
            background: url("/assets/images/icons/icon-mild-red.png") no-repeat; }
          body.michaels body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.mild {
            background: url("/assets/images/icons/icon-mild-blue.png") no-repeat; }
          @media screen and (max-width: 980px) {
            body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.mild {
              background-size: 10px 13px; } }
          @media screen and (max-width: 380px) {
            body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.mild {
              margin-right: 40px; } }
        body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.medium {
          background: url("/assets/images/icons/icon-medium.png") no-repeat;
          width: 26px;
          height: 15px;
          float: left; }
          body.kajjal body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.medium {
            background: url("/assets/images/icons/icon-medium-red.png") no-repeat; }
          body.michaels body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.medium {
            background: url("/assets/images/icons/icon-medium-blue.png") no-repeat; }
          @media screen and (max-width: 980px) {
            body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.medium {
              background-size: 23px 13px; } }
          @media screen and (max-width: 380px) {
            body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.medium {
              margin-right: 25px; } }
        body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.hot {
          background: url("/assets/images/icons/icon-hot.png") no-repeat;
          width: 41px;
          height: 15px;
          float: left; }
          body.kajjal body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.hot {
            background: url("/assets/images/icons/icon-hot-red.png") no-repeat; }
          body.michaels body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.hot {
            background: url("/assets/images/icons/icon-hot-blue.png") no-repeat; }
          @media screen and (max-width: 980px) {
            body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.hot {
              background-size: 36px 13px; } }
        body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.vegetarian {
          background: url("/assets/images/icons/icon-vegetarian.png") no-repeat;
          width: 19px;
          height: 15px;
          float: left; }
          body.kajjal body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.vegetarian {
            background: url("/assets/images/icons/icon-vegetarian-red.png") no-repeat; }
          body.michaels body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.vegetarian {
            background: url("/assets/images/icons/icon-vegetarian-blue.png") no-repeat; }
          @media screen and (max-width: 980px) {
            body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.vegetarian {
              background-size: 16px 13px; } }
          @media screen and (max-width: 380px) {
            body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.vegetarian {
              margin-right: 32px; } }
        body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.glutenfree {
          background: url("/assets/images/icons/icon-glutenfree.png") no-repeat;
          width: 7px;
          height: 15px;
          float: left; }
          body.kajjal body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.glutenfree {
            background: url("/assets/images/icons/icon-glutenfree-red.png") no-repeat; }
          body.michaels body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.glutenfree {
            background: url("/assets/images/icons/icon-glutenfree-blue.png") no-repeat; }
          @media screen and (max-width: 980px) {
            body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.glutenfree {
              background-size: 7px 14px; } }
          @media screen and (max-width: 380px) {
            body#news section#main_content > div > div > article div.menus_top div.availability_tags div.availability_tags_inner p.tags span.glutenfree {
              margin-right: 44px; } }

body#news section#main_content > div > div > article article.menus_detail_1 {
  background: #ffffff;
  padding: 10px;
  border: 1px solid #dedad1;
  float: left;
  max-width: 100%; }
  body#news section#main_content > div > div > article article.menus_detail_1 div.menu_content {
    clear: both; }
  body#news section#main_content > div > div > article article.menus_detail_1 p {
    line-height: 1.5em; }
  body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom {
    margin: 20px 10px; }
    body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 100%;
      padding-bottom: 10px; }
      body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap:last-child {
        margin-right: 0; }
      body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap h2 {
        margin: 0 20px 20px;
        font-size: 2em; }
      body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        border-bottom: 1px solid rgba(129, 128, 126, 0.2);
        margin-bottom: 40px; }
        body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner:last-child {
          margin-right: 0; }
        body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner .dish_height {
          float: left;
          width: 100%; }
        body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner h3 {
          margin: 0 20px 20px;
          padding-bottom: 5px;
          font-size: 1.5em;
          color: #FCB008;
          text-transform: uppercase;
          border-bottom: 1px dotted rgba(129, 128, 126, 0.2); }
          html.kajjal body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner h3 {
            color: #E50025; }
          html.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner h3 {
            color: #498BC9; }
          body.kajjal body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner h3 {
            color: #E50025; }
          body.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner h3 {
            color: #498BC9; }
        body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish {
          float: left;
          display: block;
          margin-right: 1.8867924528%;
          width: 49.0566037736%;
          padding: 0 20px 20px;
          margin-bottom: 30px;
          position: relative; }
          body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish:last-child {
            margin-right: 0; }
          @media screen and (max-width: 560px) {
            body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish {
              height: auto; } }
          @media screen and (max-width: 560px) {
            body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish {
              float: left;
              display: block;
              margin-right: 1.8867924528%;
              width: 100%; }
              body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish:last-child {
                margin-right: 0; } }
          body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish h4 {
            float: left;
            font-size: 16px;
            margin-bottom: 15px;
            width: 70%; }
            html.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish h4 {
              width: 60%; }
              @media screen and (max-width: 1100px) {
                html.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish h4 {
                  width: 55%; } }
              @media screen and (max-width: 980px) {
                html.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish h4 {
                  width: 100%; } }
              @media screen and (max-width: 560px) {
                html.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish h4 {
                  width: 55%; } }
              @media screen and (max-width: 380px) {
                html.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish h4 {
                  width: 100%; } }
          body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.price {
            color: #162A46;
            float: right;
            font-size: 16px; }
            body.kajjal body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.price {
              color: #33312C; }
            html.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.price {
              color: #33312C; }
              @media screen and (max-width: 980px) {
                html.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.price {
                  width: 100%;
                  float: left;
                  margin-bottom: 10px; } }
              @media screen and (max-width: 560px) {
                html.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.price {
                  float: right;
                  width: auto; } }
              @media screen and (max-width: 380px) {
                html.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.price {
                  width: 100%;
                  float: left;
                  margin-bottom: 10px; } }
            body.kinarakitchen body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.price {
              color: #33312C; }
          body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish p.description {
            clear: both;
            line-height: 1.3em;
            margin-bottom: 15px;
            font-size: 0.9em; }
          body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag {
            color: #FCB008;
            position: absolute;
            bottom: 0; }
            body.kajjal body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag {
              color: #E50025; }
            body.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag {
              color: #498BC9; }
            @media screen and (max-width: 560px) {
              body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag {
                position: relative; } }
            body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.mild {
              background: url("/assets/images/icons/icon-mild.png") no-repeat;
              width: 11px;
              height: 15px;
              float: left; }
              body.kajjal body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.mild {
                background: url("/assets/images/icons/icon-mild-red.png") no-repeat; }
              body.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.mild {
                background: url("/assets/images/icons/icon-mild-blue.png") no-repeat; }
            body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.medium {
              background: url("/assets/images/icons/icon-medium.png") no-repeat;
              width: 26px;
              height: 15px;
              float: left; }
              body.kajjal body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.medium {
                background: url("/assets/images/icons/icon-medium-red.png") no-repeat; }
              body.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.medium {
                background: url("/assets/images/icons/icon-medium-blue.png") no-repeat; }
            body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.hot {
              background: url("/assets/images/icons/icon-hot.png") no-repeat;
              width: 41px;
              height: 15px;
              float: left; }
              body.kajjal body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.hot {
                background: url("/assets/images/icons/icon-hot-red.png") no-repeat; }
              body.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.hot {
                background: url("/assets/images/icons/icon-hot-blue.png") no-repeat; }
            body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.vegetarian {
              background: url("/assets/images/icons/icon-vegetarian.png") no-repeat;
              width: 19px;
              height: 15px;
              float: left; }
              body.kajjal body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.vegetarian {
                background: url("/assets/images/icons/icon-vegetarian-red.png") no-repeat; }
              body.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.vegetarian {
                background: url("/assets/images/icons/icon-vegetarian-blue.png") no-repeat; }
            body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.glutenfree {
              background: url("/assets/images/icons/icon-glutenfree.png") no-repeat;
              width: 7px;
              height: 15px;
              float: left; }
              body.kajjal body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.glutenfree {
                background: url("/assets/images/icons/icon-glutenfree-red.png") no-repeat; }
              body.michaels body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish span.tag span.glutenfree {
                background: url("/assets/images/icons/icon-glutenfree-blue.png") no-repeat; }
          body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.dish:nth-child(odd) {
            margin-right: 0; }
        body#news section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner div.long_desc {
          width: 100%; }

body#news section#main_content > div > div > article html.ie9 body#news.michaels section#main_content > div > div > article article.menus_detail_1 .menus_bottom div.dish_wrap div.dish_wrap_inner h3 {
  color: #498BC9 !important; }

body#news section#main_content > div > div > article a.entry_share {
  background-color: #FFAE27;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFAE27), color-stop(100%, #E49B00));
  background-image: -webkit-linear-gradient(#FFAE27, #E49B00);
  background-image: linear-gradient(#FFAE27, #E49B00);
  color: #ffffff;
  border-radius: 4px;
  padding: 10px 5%;
  display: inline-block;
  margin-bottom: 3%;
  font-family: "allerregular", sans-serif;
  margin-bottom: 20px; }
  @media screen and (max-width: 440px) {
    body#news section#main_content > div > div > article a.entry_share {
      display: block; } }
  body#news section#main_content > div > div > article a.entry_share .icon {
    margin-left: 10px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    position: relative; }
    @media screen and (max-width: 440px) {
      body#news section#main_content > div > div > article a.entry_share .icon {
        float: right; } }
    html.ie8 body#news section#main_content > div > div > article a.entry_share .icon {
      border: none; }
  body#news section#main_content > div > div > article a.entry_share:hover {
    color: #ffffff;
    background: #ce8f03; }
  body.kajjal body#news section#main_content > div > div > article a.entry_share {
    background-color: #E50025;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E50025), color-stop(100%, #B60017));
    background-image: -webkit-linear-gradient(#E50025, #B60017);
    background-image: linear-gradient(#E50025, #B60017);
    color: #ffffff; }
    body.kajjal body#news section#main_content > div > div > article a.entry_share:hover {
      background: #b2001d; }
  body.michaels body#news section#main_content > div > div > article a.entry_share {
    background-color: #3E8EDE;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3E8EDE), color-stop(100%, #3077BD));
    background-image: -webkit-linear-gradient(#3E8EDE, #3077BD);
    background-image: linear-gradient(#3E8EDE, #3077BD);
    color: #ffffff;
    font-family: "Avenir LT W01_85 Heavy", sans-serif; }
    body.michaels body#news section#main_content > div > div > article a.entry_share:hover {
      background: #3371ac; }
  body.kinarakitchen body#news section#main_content > div > div > article a.entry_share {
    color: #ffffff; }
  body#news section#main_content > div > div > article a.entry_share span.social_icon {
    font-size: 12px;
    margin-left: 5px; }

div.upstairs_bar_contents table {
  margin-bottom: 40px; }
  div.upstairs_bar_contents table tr td {
    width: 70%; }

div.dish_wrap_inner table tbody tr td {
  width: 70%; }

div.upstairs_bar_contents p a.button {
  font-size: 0.9em;
  padding: 5px 20px; }

div.dish_wrap p.menu_description {
  background: #F4F4F4;
  float: left;
  font-size: 0.9em;
  margin: 0 0 40px;
  width: 100%; }
  div.dish_wrap p.menu_description span {
    float: left;
    padding: 10px 20px; }

body#news section#main_content > div > div > article {
  background: none;
  border: none;
  padding: 0; }
  body#news section#main_content > div > div > article div.no_results {
    background: #F4F4F4;
    border-bottom: 3px solid #DDD;
    padding: 20px 20px 20px 50px;
    margin-bottom: 40px; }
    body#news section#main_content > div > div > article div.no_results h2 {
      position: relative;
      font-size: 1.6em;
      padding: 0;
      margin: 0;
      color: #888; }
      @media screen and (max-width: 660px) {
        body#news section#main_content > div > div > article div.no_results h2 {
          font-size: 1.3em;
          margin-bottom: 10px; } }
      body#news section#main_content > div > div > article div.no_results h2 span.icon-minus-circle {
        font-size: 14px;
        position: absolute;
        top: 7px;
        left: -30px;
        margin-right: 5px; }
  body#news section#main_content > div > div > article article.review_listing_1 {
    margin-bottom: 40px;
    background: #ffffff;
    border: 1px solid #dedad1;
    padding: 10px; }
    body#news section#main_content > div > div > article article.review_listing_1 .review_bottom {
      margin: 30px; }
    body#news section#main_content > div > div > article article.review_listing_1 h2 {
      font-family: "Gill Sans W04 Roman", sans-serif;
      font-size: 1.8em;
      margin: 0 0 20px;
      line-height: 1em; }
      html.michaels body#news section#main_content > div > div > article article.review_listing_1 h2 {
        font-family: "Avenir LT W01_55 Roman", sans-serif; }
      body#news section#main_content > div > div > article article.review_listing_1 h2 a {
        color: #162A46; }
        body#news section#main_content > div > div > article article.review_listing_1 h2 a:hover {
          color: #162A46; }
      @media screen and (max-width: 790px) {
        body#news section#main_content > div > div > article article.review_listing_1 h2 {
          font-size: 1.3em; } }
    body#news section#main_content > div > div > article article.review_listing_1 div.name {
      float: left;
      margin: 0 20px 0 0; }
      body#news section#main_content > div > div > article article.review_listing_1 div.name p {
        color: #162A46;
        text-transform: uppercase;
        font-size: 0.95em; }
        html.kinarakitchen body#news section#main_content > div > div > article article.review_listing_1 div.name p {
          color: #33312C; }
        body.kinarakitchen body#news section#main_content > div > div > article article.review_listing_1 div.name p {
          color: #33312C; }
        html.kajjal body#news section#main_content > div > div > article article.review_listing_1 div.name p {
          color: #33312C; }
        body.kajjal body#news section#main_content > div > div > article article.review_listing_1 div.name p {
          color: #33312C; }
        html.michaels body#news section#main_content > div > div > article article.review_listing_1 div.name p {
          color: #33312C; }
        body.michaels body#news section#main_content > div > div > article article.review_listing_1 div.name p {
          color: #33312C; }
        body#news section#main_content > div > div > article article.review_listing_1 div.name p span {
          color: #FCB008;
          font-size: 0.9em;
          margin-right: 10px; }
          html.kajjal body#news section#main_content > div > div > article article.review_listing_1 div.name p span {
            color: #E50025; }
          body.kajjal body#news section#main_content > div > div > article article.review_listing_1 div.name p span {
            color: #E50025; }
          html.michaels body#news section#main_content > div > div > article article.review_listing_1 div.name p span {
            color: #498BC9; }
          body.michaels body#news section#main_content > div > div > article article.review_listing_1 div.name p span {
            color: #498BC9; }
    body#news section#main_content > div > div > article article.review_listing_1 div.company {
      float: left; }
      body#news section#main_content > div > div > article article.review_listing_1 div.company p {
        color: #162A46;
        text-transform: uppercase;
        font-size: 0.95em; }
        html.kinarakitchen body#news section#main_content > div > div > article article.review_listing_1 div.company p {
          color: #33312C; }
        body.kinarakitchen body#news section#main_content > div > div > article article.review_listing_1 div.company p {
          color: #33312C; }
        html.kajjal body#news section#main_content > div > div > article article.review_listing_1 div.company p {
          color: #33312C; }
        body.kajjal body#news section#main_content > div > div > article article.review_listing_1 div.company p {
          color: #33312C; }
        html.michaels body#news section#main_content > div > div > article article.review_listing_1 div.company p {
          color: #33312C; }
        body.michaels body#news section#main_content > div > div > article article.review_listing_1 div.company p {
          color: #33312C; }
        body#news section#main_content > div > div > article article.review_listing_1 div.company p span {
          color: #FCB008;
          font-size: 0.9em;
          margin-right: 10px; }
          html.kajjal body#news section#main_content > div > div > article article.review_listing_1 div.company p span {
            color: #E50025; }
          body.kajjal body#news section#main_content > div > div > article article.review_listing_1 div.company p span {
            color: #E50025; }
          html.michaels body#news section#main_content > div > div > article article.review_listing_1 div.company p span {
            color: #498BC9; }
          body.michaels body#news section#main_content > div > div > article article.review_listing_1 div.company p span {
            color: #498BC9; }
    body#news section#main_content > div > div > article article.review_listing_1 .full_review {
      clear: both; }
    body#news section#main_content > div > div > article article.review_listing_1 p {
      line-height: 1.5em; }
      @media screen and (max-width: 380px) {
        body#news section#main_content > div > div > article article.review_listing_1 p {
          font-size: 1em; } }

body#contact div.content_wrap {
  margin: 25px 35px; }
  body#contact div.content_wrap article#opening_hours {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 49.0566037736%;
    border-right: 1px solid #F0F0F0;
    margin-bottom: 40px; }
    body#contact div.content_wrap article#opening_hours:last-child {
      margin-right: 0; }
    @media screen and (max-width: 560px) {
      body#contact div.content_wrap article#opening_hours {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        border: none;
        margin-right: 0; }
        body#contact div.content_wrap article#opening_hours:last-child {
          margin-right: 0; } }
    body#contact div.content_wrap article#opening_hours h3 {
      margin-bottom: 10px; }
    body#contact div.content_wrap article#opening_hours div.opening {
      border-bottom: 1px solid #F0F0F0;
      padding: 20px 0;
      margin-right: 40px; }
      body#contact div.content_wrap article#opening_hours div.opening span.title {
        display: block;
        text-transform: uppercase;
        color: #162A46;
        margin-bottom: 5px; }
        html.kajjal body#contact div.content_wrap article#opening_hours div.opening span.title {
          color: #33312C; }
        body.kajjal body#contact div.content_wrap article#opening_hours div.opening span.title {
          color: #33312C; }
        html.michaels body#contact div.content_wrap article#opening_hours div.opening span.title {
          color: #33312C; }
        body.michaels body#contact div.content_wrap article#opening_hours div.opening span.title {
          color: #33312C; }
      body#contact div.content_wrap article#opening_hours div.opening span.time {
        display: block;
        color: #81807E; }
  body#contact div.content_wrap article#contact_details, body#contact div.content_wrap article#website_links {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 49.0566037736%;
    padding: 0 0 0 40px;
    margin-bottom: 40px; }
    body#contact div.content_wrap article#contact_details:last-child, body#contact div.content_wrap article#website_links:last-child {
      margin-right: 0; }
    @media screen and (max-width: 980px) {
      body#contact div.content_wrap article#contact_details, body#contact div.content_wrap article#website_links {
        padding: 0 0 0 8px; } }
    @media screen and (max-width: 560px) {
      body#contact div.content_wrap article#contact_details, body#contact div.content_wrap article#website_links {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        padding: 0; }
        body#contact div.content_wrap article#contact_details:last-child, body#contact div.content_wrap article#website_links:last-child {
          margin-right: 0; } }
    body#contact div.content_wrap article#contact_details ul.contact_list, body#contact div.content_wrap article#website_links ul.contact_list {
      list-style-type: none;
      padding: 0;
      margin: 0 0 20px; }
      body#contact div.content_wrap article#contact_details ul.contact_list li a, body#contact div.content_wrap article#website_links ul.contact_list li a {
        color: rgba(129, 128, 126, 0.8);
        font-size: 1.05em; }
        body#contact div.content_wrap article#contact_details ul.contact_list li a span, body#contact div.content_wrap article#website_links ul.contact_list li a span {
          color: #FCB008;
          font-size: 0.95em;
          margin-right: 10px;
          position: relative;
          top: 2px; }
          html.kajjal body#contact div.content_wrap article#contact_details ul.contact_list li a span, html.kajjal body#contact div.content_wrap article#website_links ul.contact_list li a span {
            color: #E50025; }
          body.kajjal body#contact div.content_wrap article#contact_details ul.contact_list li a span, body.kajjal body#contact div.content_wrap article#website_links ul.contact_list li a span {
            color: #E50025; }
          html.michaels body#contact div.content_wrap article#contact_details ul.contact_list li a span, html.michaels body#contact div.content_wrap article#website_links ul.contact_list li a span {
            color: #498BC9; }
          body.michaels body#contact div.content_wrap article#contact_details ul.contact_list li a span, body.michaels body#contact div.content_wrap article#website_links ul.contact_list li a span {
            color: #498BC9; }
        body#contact div.content_wrap article#contact_details ul.contact_list li a:hover, body#contact div.content_wrap article#website_links ul.contact_list li a:hover {
          color: #162A46; }
          html.kajjal body#contact div.content_wrap article#contact_details ul.contact_list li a:hover, html.kajjal body#contact div.content_wrap article#website_links ul.contact_list li a:hover {
            color: #E50025; }
          body.kajjal body#contact div.content_wrap article#contact_details ul.contact_list li a:hover, body.kajjal body#contact div.content_wrap article#website_links ul.contact_list li a:hover {
            color: #E50025; }
          html.michaels body#contact div.content_wrap article#contact_details ul.contact_list li a:hover, html.michaels body#contact div.content_wrap article#website_links ul.contact_list li a:hover {
            color: #498BC9; }
          body.michaels body#contact div.content_wrap article#contact_details ul.contact_list li a:hover, body.michaels body#contact div.content_wrap article#website_links ul.contact_list li a:hover {
            color: #498BC9; }
    body#contact div.content_wrap article#contact_details ul, body#contact div.content_wrap article#website_links ul {
      list-style-type: none;
      padding: 0;
      margin: 0; }
      body#contact div.content_wrap article#contact_details ul li a, body#contact div.content_wrap article#website_links ul li a {
        color: rgba(129, 128, 126, 0.8);
        font-size: 1.05em; }
        body#contact div.content_wrap article#contact_details ul li a span, body#contact div.content_wrap article#website_links ul li a span {
          color: #FCB008;
          font-size: 0.95em;
          margin-right: 10px;
          position: relative;
          top: 2px; }
          html.kajjal body#contact div.content_wrap article#contact_details ul li a span, html.kajjal body#contact div.content_wrap article#website_links ul li a span {
            color: #E50025; }
          body.kajjal body#contact div.content_wrap article#contact_details ul li a span, body.kajjal body#contact div.content_wrap article#website_links ul li a span {
            color: #E50025; }
          html.michaels body#contact div.content_wrap article#contact_details ul li a span, html.michaels body#contact div.content_wrap article#website_links ul li a span {
            color: #498BC9; }
          body.michaels body#contact div.content_wrap article#contact_details ul li a span, body.michaels body#contact div.content_wrap article#website_links ul li a span {
            color: #498BC9; }
        body#contact div.content_wrap article#contact_details ul li a:hover, body#contact div.content_wrap article#website_links ul li a:hover {
          color: #162A46; }
          html.kajjal body#contact div.content_wrap article#contact_details ul li a:hover, html.kajjal body#contact div.content_wrap article#website_links ul li a:hover {
            color: #E50025; }
          body.kajjal body#contact div.content_wrap article#contact_details ul li a:hover, body.kajjal body#contact div.content_wrap article#website_links ul li a:hover {
            color: #E50025; }
          html.kajjal body#contact div.content_wrap article#contact_details ul li a:hover, html.kajjal body#contact div.content_wrap article#website_links ul li a:hover {
            color: #498BC9; }
          body.kajjal body#contact div.content_wrap article#contact_details ul li a:hover, body.kajjal body#contact div.content_wrap article#website_links ul li a:hover {
            color: #498BC9; }

body#contact div.contact-map {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 100%; }
  body#contact div.contact-map:last-child {
    margin-right: 0; }

body#contact-hub section#main_content > div > div > article {
  padding: 0;
  background: none;
  border: none; }
  body#contact-hub section#main_content > div > div > article article#opening_hours {
    float: left;
    display: block;
    margin-right: 1.8867924528%;
    width: 49.0566037736%;
    border-right: 1px solid #F0F0F0;
    margin-bottom: 40px; }
    body#contact-hub section#main_content > div > div > article article#opening_hours:last-child {
      margin-right: 0; }
    @media screen and (max-width: 560px) {
      body#contact-hub section#main_content > div > div > article article#opening_hours {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        border: none;
        margin-right: 0; }
        body#contact-hub section#main_content > div > div > article article#opening_hours:last-child {
          margin-right: 0; } }
    body#contact-hub section#main_content > div > div > article article#opening_hours h3 {
      font-size: 1.6em; }
    body#contact-hub section#main_content > div > div > article article#opening_hours div.opening {
      border-bottom: 1px solid #F0F0F0;
      padding: 20px 0;
      margin-right: 40px; }
      body#contact-hub section#main_content > div > div > article article#opening_hours div.opening span.title {
        display: block;
        text-transform: uppercase;
        color: #162A46;
        margin-bottom: 5px; }
        html.kajjal body#contact-hub section#main_content > div > div > article article#opening_hours div.opening span.title {
          color: #33312C; }
        body.kajjal body#contact-hub section#main_content > div > div > article article#opening_hours div.opening span.title {
          color: #33312C; }
        html.michaels body#contact-hub section#main_content > div > div > article article#opening_hours div.opening span.title {
          color: #33312C; }
        body.michaels body#contact-hub section#main_content > div > div > article article#opening_hours div.opening span.title {
          color: #33312C; }
      body#contact-hub section#main_content > div > div > article article#opening_hours div.opening span.time {
        display: block;
        color: #81807E; }
  body#contact-hub section#main_content > div > div > article article#contact_details, body#contact-hub section#main_content > div > div > article article#website_links {
    margin-bottom: 35px;
    background: #ffffff;
    border: 1px solid #E9E6E0; }
    body#contact-hub section#main_content > div > div > article article#contact_details h3, body#contact-hub section#main_content > div > div > article article#website_links h3 {
      background: #162A46;
      color: #ffffff;
      margin: 0;
      padding: 15px 20px; }
    body#contact-hub section#main_content > div > div > article article#contact_details div, body#contact-hub section#main_content > div > div > article article#website_links div {
      padding: 20px; }
    @media screen and (max-width: 980px) {
      body#contact-hub section#main_content > div > div > article article#contact_details, body#contact-hub section#main_content > div > div > article article#website_links {
        margin-bottom: 45px; } }
    @media screen and (max-width: 790px) {
      body#contact-hub section#main_content > div > div > article article#contact_details, body#contact-hub section#main_content > div > div > article article#website_links {
        margin-bottom: 0; } }
    @media screen and (max-width: 560px) {
      body#contact-hub section#main_content > div > div > article article#contact_details, body#contact-hub section#main_content > div > div > article article#website_links {
        float: left;
        display: block;
        margin-right: 1.8867924528%;
        width: 100%;
        padding: 0; }
        body#contact-hub section#main_content > div > div > article article#contact_details:last-child, body#contact-hub section#main_content > div > div > article article#website_links:last-child {
          margin-right: 0; } }
    body#contact-hub section#main_content > div > div > article article#contact_details ul.contact_list, body#contact-hub section#main_content > div > div > article article#website_links ul.contact_list {
      list-style-type: none;
      padding: 0;
      margin: 0; }
      body#contact-hub section#main_content > div > div > article article#contact_details ul.contact_list li a, body#contact-hub section#main_content > div > div > article article#website_links ul.contact_list li a {
        color: rgba(129, 128, 126, 0.8);
        font-size: 1.05em; }
        body#contact-hub section#main_content > div > div > article article#contact_details ul.contact_list li a span, body#contact-hub section#main_content > div > div > article article#website_links ul.contact_list li a span {
          color: #FCB008;
          font-size: 0.95em;
          margin-right: 10px;
          position: relative;
          top: 2px; }
          html.kajjal body#contact-hub section#main_content > div > div > article article#contact_details ul.contact_list li a span, html.kajjal body#contact-hub section#main_content > div > div > article article#website_links ul.contact_list li a span {
            color: #E50025; }
          body.kajjal body#contact-hub section#main_content > div > div > article article#contact_details ul.contact_list li a span, body.kajjal body#contact-hub section#main_content > div > div > article article#website_links ul.contact_list li a span {
            color: #E50025; }
          html.michaels body#contact-hub section#main_content > div > div > article article#contact_details ul.contact_list li a span, html.michaels body#contact-hub section#main_content > div > div > article article#website_links ul.contact_list li a span {
            color: #498BC9; }
          body.michaels body#contact-hub section#main_content > div > div > article article#contact_details ul.contact_list li a span, body.michaels body#contact-hub section#main_content > div > div > article article#website_links ul.contact_list li a span {
            color: #498BC9; }
        body#contact-hub section#main_content > div > div > article article#contact_details ul.contact_list li a:hover, body#contact-hub section#main_content > div > div > article article#website_links ul.contact_list li a:hover {
          color: #162A46; }
          html.kajjal body#contact-hub section#main_content > div > div > article article#contact_details ul.contact_list li a:hover, html.kajjal body#contact-hub section#main_content > div > div > article article#website_links ul.contact_list li a:hover {
            color: #E50025; }
          body.kajjal body#contact-hub section#main_content > div > div > article article#contact_details ul.contact_list li a:hover, body.kajjal body#contact-hub section#main_content > div > div > article article#website_links ul.contact_list li a:hover {
            color: #E50025; }
          html.michaels body#contact-hub section#main_content > div > div > article article#contact_details ul.contact_list li a:hover, html.michaels body#contact-hub section#main_content > div > div > article article#website_links ul.contact_list li a:hover {
            color: #498BC9; }
          body.michaels body#contact-hub section#main_content > div > div > article article#contact_details ul.contact_list li a:hover, body.michaels body#contact-hub section#main_content > div > div > article article#website_links ul.contact_list li a:hover {
            color: #498BC9; }
    body#contact-hub section#main_content > div > div > article article#contact_details ul, body#contact-hub section#main_content > div > div > article article#website_links ul {
      list-style-type: none;
      padding: 0;
      margin: 0; }
      body#contact-hub section#main_content > div > div > article article#contact_details ul li a, body#contact-hub section#main_content > div > div > article article#website_links ul li a {
        color: rgba(129, 128, 126, 0.8);
        font-size: 1.05em; }
        body#contact-hub section#main_content > div > div > article article#contact_details ul li a span, body#contact-hub section#main_content > div > div > article article#website_links ul li a span {
          color: #FCB008;
          font-size: 0.95em;
          margin-right: 10px;
          position: relative;
          top: 2px; }
          html.kajjal body#contact-hub section#main_content > div > div > article article#contact_details ul li a span, html.kajjal body#contact-hub section#main_content > div > div > article article#website_links ul li a span {
            color: #E50025; }
          body.kajjal body#contact-hub section#main_content > div > div > article article#contact_details ul li a span, body.kajjal body#contact-hub section#main_content > div > div > article article#website_links ul li a span {
            color: #E50025; }
          html.michaels body#contact-hub section#main_content > div > div > article article#contact_details ul li a span, html.michaels body#contact-hub section#main_content > div > div > article article#website_links ul li a span {
            color: #498BC9; }
          body.michaels body#contact-hub section#main_content > div > div > article article#contact_details ul li a span, body.michaels body#contact-hub section#main_content > div > div > article article#website_links ul li a span {
            color: #498BC9; }
        body#contact-hub section#main_content > div > div > article article#contact_details ul li a:hover, body#contact-hub section#main_content > div > div > article article#website_links ul li a:hover {
          color: #162A46; }
          html.kajjal body#contact-hub section#main_content > div > div > article article#contact_details ul li a:hover, html.kajjal body#contact-hub section#main_content > div > div > article article#website_links ul li a:hover {
            color: #E50025; }
          body.kajjal body#contact-hub section#main_content > div > div > article article#contact_details ul li a:hover, body.kajjal body#contact-hub section#main_content > div > div > article article#website_links ul li a:hover {
            color: #E50025; }
          html.michaels body#contact-hub section#main_content > div > div > article article#contact_details ul li a:hover, html.michaels body#contact-hub section#main_content > div > div > article article#website_links ul li a:hover {
            color: #498BC9; }
          body.michaels body#contact-hub section#main_content > div > div > article article#contact_details ul li a:hover, body.michaels body#contact-hub section#main_content > div > div > article article#website_links ul li a:hover {
            color: #498BC9; }
  @media screen and (max-width: 790px) {
    body#contact-hub section#main_content > div > div > article article#contact_details {
      margin-bottom: 40px; } }

body#contact-hub div.contact-map {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 100%; }
  body#contact-hub div.contact-map:last-child {
    margin-right: 0; }

html.ie9 body#contact.kajjal div.content_wrap article#contact_details ul li a span {
  color: #E50025 !important; }

html.ie9 body#contact.michaels div.content_wrap article#contact_details ul li a span {
  color: #498BC9 !important; }

html.ie8 body#contact.kajjal div.content_wrap article#contact_details ul li a span {
  color: #E50025 !important; }

html.ie8 body#contact.michaels div.content_wrap article#contact_details ul li a span {
  color: #498BC9 !important; }

body#search h2 span.icon {
  font-size: 24px;
  position: relative;
  top: -2px; }

body#search div.search_result {
  display: block;
  border-left: 5px solid #F4F4F4;
  padding: 10px;
  padding-left: 25px;
  margin-bottom: 20px; }
  @media screen and (max-width: 660px) {
    body#search div.search_result {
      border-left-width: 3px; } }
  body#search div.search_result h3 {
    margin-bottom: 8px;
    font-family: "daliregular", sans-serif;
    font-size: 1.2em;
    line-height: 150%; }
    @media screen and (max-width: 660px) {
      body#search div.search_result h3 {
        font-size: 1em; } }
    body#search div.search_result h3 a {
      color: #888;
      display: block; }
  body#search div.search_result a.link {
    color: #888;
    font-size: 0.9em;
    display: block; }
    @media screen and (max-width: 660px) {
      body#search div.search_result a.link {
        font-size: 0.8em; } }
    body#search div.search_result a.link span {
      margin-right: 5px;
      font-size: 12px; }
    body#search div.search_result a.link span.icon-link4 {
      margin-left: 10px; }
  body#search div.search_result:hover {
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    border-left: 5px solid #162A46; }
    @media screen and (max-width: 660px) {
      body#search div.search_result:hover {
        border-left-width: 3px; } }
    body#search div.search_result:hover h3 a {
      color: #F66042; }
    body#search div.search_result:hover a.link {
      color: #162A46; }

body#search form#main_search {
  background: #F4F4F4;
  border: 1px solid #DDD;
  border-radius: 4px;
  padding: 30px;
  *zoom: 1;
  margin-bottom: 50px;
  margin-top: 15px; }
  body#search form#main_search:before, body#search form#main_search:after {
    content: "";
    display: table; }
  body#search form#main_search:after {
    clear: both; }
  @media screen and (max-width: 560px) {
    body#search form#main_search {
      padding: 15px; } }
  body#search form#main_search input {
    width: 60%;
    float: left;
    margin: 0;
    height: 30px;
    padding: 5px 15px; }
    @media screen and (max-width: 560px) {
      body#search form#main_search input {
        width: 90%; } }
  body#search form#main_search input[type="submit"] {
    width: 20%;
    float: left;
    margin-left: 2%;
    height: 43px;
    background: #162A46;
    color: #ffffff;
    border: none; }
    body#search form#main_search input[type="submit"]:hover {
      background: #F66042; }
    @media screen and (max-width: 560px) {
      body#search form#main_search input[type="submit"] {
        width: 100%;
        margin: 10px 0; } }

div#gallery_section > article {
  float: left;
  display: block;
  margin-right: 1.8867924528%;
  width: 23.5849056604%;
  padding: 0;
  margin-bottom: 20px; }
  div#gallery_section > article:last-child {
    margin-right: 0; }
  div#gallery_section > article:nth-child(4n) {
    margin-right: 0; }
  div#gallery_section > article:nth-child(4n+1) {
    clear: left; }
  @media screen and (max-width: 790px) {
    div#gallery_section > article {
      float: left;
      display: block;
      margin-right: 1.8867924528%;
      width: 32.0754716981%; }
      div#gallery_section > article:nth-child(4n) {
        margin-right: 1.8867924528%; }
      div#gallery_section > article:nth-child(4n+1) {
        clear: none; }
      div#gallery_section > article:last-child {
        margin-right: 0; }
      div#gallery_section > article:nth-child(2n) {
        margin-right: 0; }
      div#gallery_section > article:nth-child(2n+1) {
        clear: left; } }
  @media screen and (max-width: 440px) {
    div#gallery_section > article {
      width: 100%;
      margin: 0 0 20px; } }
  div#gallery_section > article > a {
    display: block;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dedad1;
    padding: 10px; }
    div#gallery_section > article > a > span.gallery_cover {
      display: block;
      position: relative;
      line-height: 0; }
      div#gallery_section > article > a > span.gallery_cover span.gallery_heading {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        padding-bottom: 10px;
        padding-top: 60px;
        background-color: transparent;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(0, 0, 0, 0.8)));
        background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); }
        @media screen and (max-width: 560px) {
          div#gallery_section > article > a > span.gallery_cover span.gallery_heading {
            font-size: 110%; } }
    div#gallery_section > article > a > span.gallery_title {
      margin-top: 20px; }
      @media screen and (max-width: 500px) {
        div#gallery_section > article > a > span.gallery_title {
          margin: 20px 20% 0; } }

body#sitemap ul#sitemap_nav {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  body#sitemap ul#sitemap_nav li {
    list-style-type: none;
    position: relative;
    display: block;
    margin-bottom: 0; }
    body#sitemap ul#sitemap_nav li a {
      padding: 5px 45px;
      background: #F4F4F4;
      border: 1px solid #DDD;
      color: #81807E;
      display: block;
      font-family: "Gill Sans W04 Roman", sans-serif; }
      html.michaels body#sitemap ul#sitemap_nav li a {
        font-family: "Avenir LT W01_55 Roman", sans-serif; }
      body#sitemap ul#sitemap_nav li a:before {
        position: absolute;
        font-family: "icomoon";
        content: "\f0f6";
        color: #81807E;
        top: 5px;
        left: 20px; }
      body#sitemap ul#sitemap_nav li a:hover {
        color: #ffffff;
        background: #162A46;
        border: 1px solid #162A46; }
        html.kajjal body#sitemap ul#sitemap_nav li a:hover {
          background: #E50025;
          border: 1px solid #E50025; }
        html.michaels body#sitemap ul#sitemap_nav li a:hover {
          background: #498BC9;
          border: 1px solid #498BC9; }
        html.kinarakitchen body#sitemap ul#sitemap_nav li a:hover {
          background: #FCB008;
          border: 1px solid #FCB008; }
        body#sitemap ul#sitemap_nav li a:hover:before {
          color: #ffffff; }
    body#sitemap ul#sitemap_nav li ul {
      margin-top: 10px; }
      body#sitemap ul#sitemap_nav li ul li {
        margin-bottom: 0; }
        body#sitemap ul#sitemap_nav li ul li a {
          padding: 5px 35px;
          background: none;
          font-size: 0.9em;
          font-family: "Gill Sans W04 Roman", sans-serif; }
          html.michaels body#sitemap ul#sitemap_nav li ul li a {
            font-family: "Avenir LT W01_55 Roman", sans-serif; }
          body#sitemap ul#sitemap_nav li ul li a:before {
            position: absolute;
            font-family: "icomoon";
            content: "\e61d";
            color: #81807E;
            left: 10px; }

html.ie8 body#sitemap.kinarakitchen ul#sitemap_nav li a:hover {
  background: #FCB008 !important;
  border: 1px solid #FCB008 !important; }

html.ie8 body#sitemap.kajjal ul#sitemap_nav li a:hover {
  background: #E50025 !important;
  border: 1px solid #E50025 !important; }

html.ie8 body#sitemap.michaels ul#sitemap_nav li a:hover {
  background: #498BC9 !important;
  border: 1px solid #498BC9 !important; }

body#cache section#main_content > div > div > article {
  width: 100%; }
  body#cache section#main_content > div > div > article table#cache_table th, body#cache section#main_content > div > div > article table#cache_table td {
    text-align: center;
    border-right: 1px solid #fff;
    width: 17.5%; }
  body#cache section#main_content > div > div > article table#cache_table th:first-child, body#cache section#main_content > div > div > article table#cache_table td:first-child {
    text-align: left;
    width: 12.5%; }
  body#cache section#main_content > div > div > article table#cache_table th:last-child, body#cache section#main_content > div > div > article table#cache_table td:last-child {
    border-right: 0; }
  body#cache section#main_content > div > div > article table#cache_table td {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #444; }
    body#cache section#main_content > div > div > article table#cache_table td a {
      color: #fff;
      background: #E50025;
      padding: 3px 8px;
      border-radius: 4px; }
    body#cache section#main_content > div > div > article table#cache_table td a.done {
      background: #FFAE27; }
  body#cache section#main_content > div > div > article table#cache_table td:first-child {
    font-family: "Gill Sans W01 Bold", sans-serif; }
    html.michaels body#cache section#main_content > div > div > article table#cache_table td:first-child {
      font-family: "Avenir LT W01_85 Heavy", sans-serif; }
    body#cache section#main_content > div > div > article table#cache_table td:first-child span {
      font-family: "Gill Sans W01 Book", sans-serif; }
      body.michaels body#cache section#main_content > div > div > article table#cache_table td:first-child span {
        font-family: "Avenir LT W01_65 Medium", sans-serif; }
  body#cache section#main_content > div > div > article table#cache_table td.section_break {
    padding: 0 !important;
    background: #bbb;
    height: 2px;
    font-size: 1px; }
