/**
   * @file
   * Generic theme-independent base styles.
   */
  
  /**
   * Autocomplete.
   *
   * @see autocomplete.js
   */
  /* Suggestion list */
  #autocomplete {
    border: 1px solid;
    overflow: hidden;
    position: absolute;
    z-index: 100;
  }
  #autocomplete ul {
    list-style: none;
    list-style-image: none;
    margin: 0;
    padding: 0;
  }
  #autocomplete li {
    background: #fff;
    color: #000;
    cursor: default;
    white-space: pre;
    zoom: 1; /* IE7 */
  }
  /* Animated throbber */
  html.js input.form-autocomplete {
    background-image: url(/misc/throbber-inactive.png);
    background-position: 100% center; /* LTR */
    background-repeat: no-repeat;
  }
  html.js input.throbbing {
    background-image: url(/misc/throbber-active.gif);
    background-position: 100% center; /* LTR */
  }
  
  /**
   * Collapsible fieldsets.
   *
   * @see collapse.js
   */
  html.js fieldset.collapsed {
    border-bottom-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    height: 1em;
  }
  html.js fieldset.collapsed .fieldset-wrapper {
    display: none;
  }
  fieldset.collapsible {
    position: relative;
  }
  fieldset.collapsible .fieldset-legend {
    display: block;
  }
  
  /**
   * Resizable textareas.
   *
   * @see textarea.js
   */
  .form-textarea-wrapper textarea {
    display: block;
    margin: 0;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .resizable-textarea .grippie {
    background: #eee url(/misc/grippie.png) no-repeat center 2px;
    border: 1px solid #ddd;
    border-top-width: 0;
    cursor: s-resize;
    height: 9px;
    overflow: hidden;
  }
  
  /**
   * TableDrag behavior.
   *
   * @see tabledrag.js
   */
  body.drag {
    cursor: move;
  }
  .draggable a.tabledrag-handle {
    cursor: move;
    float: left; /* LTR */
    height: 1.7em;
    margin-left: -1em; /* LTR */
    overflow: hidden;
    text-decoration: none;
  }
  a.tabledrag-handle:hover {
    text-decoration: none;
  }
  a.tabledrag-handle .handle {
    background: url(/misc/draggable.png) no-repeat 6px 9px;
    height: 13px;
    margin: -0.4em 0.5em; /* LTR */
    padding: 0.42em 0.5em; /* LTR */
    width: 13px;
  }
  a.tabledrag-handle-hover .handle {
    background-position: 6px -11px;
  }
  div.indentation {
    float: left; /* LTR */
    height: 1.7em;
    margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */
    padding: 0.42em 0 0.42em 0.6em; /* LTR */
    width: 20px;
  }
  div.tree-child {
    background: url(/misc/tree.png) no-repeat 11px center; /* LTR */
  }
  div.tree-child-last {
    background: url(/misc/tree-bottom.png) no-repeat 11px center; /* LTR */
  }
  div.tree-child-horizontal {
    background: url(/misc/tree.png) no-repeat -11px center;
  }
  .tabledrag-toggle-weight-wrapper {
    text-align: right; /* LTR */
  }
  
  /**
   * TableHeader behavior.
   *
   * @see tableheader.js
   */
  table.sticky-header {
    background-color: #fff;
    margin-top: 0;
  }
  
  /**
   * Progress behavior.
   *
   * @see progress.js
   */
  /* Bar */
  .progress .bar {
    background-color: #fff;
    border: 1px solid;
  }
  .progress .filled {
    background-color: #000;
    height: 1.5em;
    width: 5px;
  }
  .progress .percentage {
    float: right; /* LTR */
  }
  /* Throbber */
  .ajax-progress {
    display: inline-block;
  }
  .ajax-progress .throbber {
    background: transparent url(/misc/throbber-active.gif) no-repeat 0px center;
    float: left; /* LTR */
    height: 15px;
    margin: 2px;
    width: 15px;
  }
  .ajax-progress .message {
    padding-left: 20px;
  }
  tr .ajax-progress .throbber {
    margin: 0 2px;
  }
  .ajax-progress-bar {
    width: 16em;
  }
  
  /**
   * Inline items.
   */
  .container-inline div,
  .container-inline label {
    display: inline;
  }
  /* Fieldset contents always need to be rendered as block. */
  .container-inline .fieldset-wrapper {
    display: block;
  }
  
  /**
   * Prevent text wrapping.
   */
  .nowrap {
    white-space: nowrap;
  }
  
  /**
   * For anything you want to hide on page load when JS is enabled, so
   * that you can use the JS to control visibility and avoid flicker.
   */
  html.js .js-hide {
    display: none;
  }
  
  /**
   * Hide elements from all users.
   *
   * Used for elements which should not be immediately displayed to any user. An
   * example would be a collapsible fieldset that will be expanded with a click
   * from a user. The effect of this class can be toggled with the jQuery show()
   * and hide() functions.
   */
  .element-hidden {
    display: none;
  }
  
  /**
   * Hide elements visually, but keep them available for screen-readers.
   *
   * Used for information required for screen-reader users to understand and use
   * the site where visual display is undesirable. Information provided in this
   * manner should be kept concise, to avoid unnecessary burden on the user.
   * "!important" is used to prevent unintentional overrides.
   */
  .element-invisible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
  }
  
  /**
   * The .element-focusable class extends the .element-invisible class to allow
   * the element to be focusable when navigated to via the keyboard.
   */
  .element-invisible.element-focusable:active,
  .element-invisible.element-focusable:focus {
    position: static !important;
    clip: auto;
    overflow: visible;
    height: auto;
  }
  
  /**
   * Markup free clearing.
   *
   * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
   */
  .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  /* IE6 */
  * html .clearfix {
    height: 1%;
  }
  /* IE7 */
  *:first-child + html .clearfix {
    min-height: 1%;
  }
/*})'"*/
/**
   * @file
   * Styles for menus and navigation markup.
   */
  
  /**
   * Markup generated by theme_menu_tree().
   */
  ul.menu {
    border: none;
    list-style: none;
    text-align: left; /* LTR */
  }
  ul.menu li {
    margin: 0 0 0 0.5em; /* LTR */
  }
  ul li.expanded {
    list-style-image: url(/misc/menu-expanded.png);
    list-style-type: circle;
  }
  ul li.collapsed {
    list-style-image: url(/misc/menu-collapsed.png); /* LTR */
    list-style-type: disc;
  }
  ul li.leaf {
    list-style-image: url(/misc/menu-leaf.png);
    list-style-type: square;
  }
  li.expanded,
  li.collapsed,
  li.leaf {
    padding: 0.2em 0.5em 0 0; /* LTR */
    margin: 0;
  }
  li a.active {
    color: #000;
  }
  td.menu-disabled {
    background: #ccc;
  }
  
  /**
   * Markup generated by theme_links().
   */
  ul.inline,
  ul.links.inline {
    display: inline;
    padding-left: 0;
  }
  ul.inline li {
    display: inline;
    list-style-type: none;
    padding: 0 0.5em;
  }
  
  /**
   * Markup generated by theme_breadcrumb().
   */
  .breadcrumb {
    padding-bottom: 0.5em;
  }
  
  /**
   * Markup generated by theme_menu_local_tasks().
   */
  ul.primary {
    border-bottom: 1px solid #bbb;
    border-collapse: collapse;
    height: auto;
    line-height: normal;
    list-style: none;
    margin: 5px;
    padding: 0 0 0 1em; /* LTR */
    white-space: nowrap;
  }
  ul.primary li {
    display: inline;
  }
  ul.primary li a {
    background-color: #ddd;
    border-color: #bbb;
    border-style: solid solid none solid;
    border-width: 1px;
    height: auto;
    margin-right: 0.5em; /* LTR */
    padding: 0 1em;
    text-decoration: none;
  }
  ul.primary li.active a {
    background-color: #fff;
    border: 1px solid #bbb;
    border-bottom: 1px solid #fff;
  }
  ul.primary li a:hover {
    background-color: #eee;
    border-color: #ccc;
    border-bottom-color: #eee;
  }
  ul.secondary {
    border-bottom: 1px solid #bbb;
    padding: 0.5em 1em;
    margin: 5px;
  }
  ul.secondary li {
    border-right: 1px solid #ccc; /* LTR */
    display: inline;
    padding: 0 1em;
  }
  ul.secondary a {
    padding: 0;
    text-decoration: none;
  }
  ul.secondary a.active {
    border-bottom: 4px solid #999;
  }
/*})'"*/
/**
   * @file
   * Styles for system messages.
   */
  
  div.messages {
    background-position: 8px 8px; /* LTR */
    background-repeat: no-repeat;
    border: 1px solid;
    margin: 6px 0;
    padding: 10px 10px 10px 50px; /* LTR */
  }
  
  div.status {
    background-image: url(/misc/message-24-ok.png);
    border-color: #be7;
  }
  div.status,
  .ok {
    color: #234600;
  }
  div.status,
  table tr.ok {
    background-color: #f8fff0;
  }
  
  div.warning {
    background-image: url(/misc/message-24-warning.png);
    border-color: #ed5;
  }
  div.warning,
  .warning {
    color: #840;
  }
  div.warning,
  table tr.warning {
    background-color: #fffce5;
  }
  
  div.error {
    background-image: url(/misc/message-24-error.png);
    border-color: #ed541d;
  }
  div.error,
  .error {
    color: #8c2e0b;
  }
  div.error,
  table tr.error {
    background-color: #fef5f1;
  }
  div.error p.error {
    color: #333;
  }
  
  div.messages ul {
    margin: 0 0 0 1em; /* LTR */
    padding: 0;
  }
  div.messages ul li {
    list-style-image: none;
  }
/*})'"*/
/**
   * @file
   * Basic styling for common markup.
   */
  
  /**
   * HTML elements.
   */
  fieldset {
    margin-bottom: 1em;
    padding: 0.5em;
  }
  form {
    margin: 0;
    padding: 0;
  }
  hr {
    border: 1px solid gray;
    height: 1px;
  }
  img {
    border: 0;
  }
  table {
    border-collapse: collapse;
  }
  th {
    border-bottom: 3px solid #ccc;
    padding-right: 1em; /* LTR */
    text-align: left; /* LTR */
  }
  tbody {
    border-top: 1px solid #ccc;
  }
  tr.even,
  tr.odd {
    background-color: #eee;
    border-bottom: 1px solid #ccc;
    padding: 0.1em 0.6em;
  }
  
  /**
   * Markup generated by theme_tablesort_indicator().
   */
  th.active img {
    display: inline;
  }
  td.active {
    background-color: #ddd;
  }
  
  /**
   * Markup generated by theme_item_list().
   */
  .item-list .title {
    font-weight: bold;
  }
  .item-list ul {
    margin: 0 0 0.75em 0;
    padding: 0;
  }
  .item-list ul li {
    margin: 0 0 0.25em 1.5em; /* LTR */
    padding: 0;
  }
  
  /**
   * Markup generated by Form API.
   */
  .form-item,
  .form-actions {
    margin-top: 1em;
    margin-bottom: 1em;
  }
  tr.odd .form-item,
  tr.even .form-item {
    margin-top: 0;
    margin-bottom: 0;
    white-space: nowrap;
  }
  .form-item .description {
    font-size: 0.85em;
  }
  label {
    display: block;
    font-weight: bold;
  }
  label.option {
    display: inline;
    font-weight: normal;
  }
  .form-checkboxes .form-item,
  .form-radios .form-item {
    margin-top: 0.4em;
    margin-bottom: 0.4em;
  }
  .form-type-radio .description,
  .form-type-checkbox .description {
    margin-left: 2.4em;
  }
  input.form-checkbox,
  input.form-radio {
    vertical-align: middle;
  }
  .marker,
  .form-required {
    color: #f00;
  }
  .form-item input.error,
  .form-item textarea.error,
  .form-item select.error {
    border: 2px solid red;
  }
  
  /**
   * Inline items.
   */
  .container-inline .form-actions,
  .container-inline.form-actions {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  /**
   * Markup generated by theme_more_link().
   */
  .more-link {
    text-align: right; /* LTR */
  }
  
  /**
   * Markup generated by theme_more_help_link().
   */
  .more-help-link {
    text-align: right; /* LTR */
  }
  .more-help-link a {
    background: url(/misc/help.png) 0 50% no-repeat; /* LTR */
    padding: 1px 0 1px 20px; /* LTR */
  }
  
  /**
   * Markup generated by theme_pager().
   */
  .item-list .pager {
    clear: both;
    text-align: center;
  }
  .item-list .pager li {
    background-image: none;
    display: inline;
    list-style-type: none;
    padding: 0.5em;
  }
  .pager-current {
    font-weight: bold;
  }
  
  /**
   * Autocomplete.
   *
   * @see autocomplete.js
   */
  /* Suggestion list */
  #autocomplete li.selected {
    background: #0072b9;
    color: #fff;
  }
  
  /**
   * Collapsible fieldsets.
   *
   * @see collapse.js
   */
  html.js fieldset.collapsible .fieldset-legend {
    background: url(/misc/menu-expanded.png) 5px 65% no-repeat; /* LTR */
    padding-left: 15px; /* LTR */
  }
  html.js fieldset.collapsed .fieldset-legend {
    background-image: url(/misc/menu-collapsed.png); /* LTR */
    background-position: 5px 50%; /* LTR */
  }
  .fieldset-legend span.summary {
    color: #999;
    font-size: 0.9em;
    margin-left: 0.5em;
  }
  
  /**
   * TableDrag behavior.
   *
   * @see tabledrag.js
   */
  tr.drag {
    background-color: #fffff0;
  }
  tr.drag-previous {
    background-color: #ffd;
  }
  .tabledrag-toggle-weight {
    font-size: 0.9em;
  }
  body div.tabledrag-changed-warning {
    margin-bottom: 0.5em;
  }
  
  /**
   * TableSelect behavior.
   *
   * @see tableselect.js
  */
  tr.selected td {
    background: #ffc;
  }
  td.checkbox,
  th.checkbox {
    text-align: center;
  }
  
  /**
   * Progress bar.
   *
   * @see progress.js
   */
  .progress {
    font-weight: bold;
  }
  .progress .bar {
    background: #ccc;
    border-color: #666;
    margin: 0 0.2em;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }
  .progress .filled {
    background: #0072b9 url(/misc/progress.gif);
  }
/*})'"*/
/**
   * Styles for theme in the Aggregator module.
   */
  
  #aggregator .feed-source .feed-title {
    margin-top: 0;
  }
  #aggregator .feed-source .feed-image img {
    margin-bottom: 0.75em;
  }
  #aggregator .feed-source .feed-icon {
    float: right; /* LTR */
    display: block;
  }
  #aggregator .feed-item {
    margin-bottom: 1.5em;
  }
  #aggregator .feed-item-title {
    margin-bottom: 0;
    font-size: 1.3em;
  }
  #aggregator .feed-item-meta,
  #aggregator .feed-item-body {
    margin-bottom: 0.5em;
  }
  #aggregator .feed-item-categories {
    font-size: 0.9em;
  }
  #aggregator td {
    vertical-align: bottom;
  }
  #aggregator td.categorize-item {
    white-space: nowrap;
  }
  #aggregator .categorize-item .news-item .body {
    margin-top: 0;
  }
  #aggregator .categorize-item h3 {
    margin-bottom: 1em;
    margin-top: 0;
  }
/*})'"*/
img.adaptive {
    max-width: 100%;
    height: auto;
    width: auto;
  }
/*})'"*/
#comments {
    margin-top: 15px;
  }
  .indented {
    margin-left: 25px; /* LTR */
  }
  .comment-unpublished {
    background-color: #fff4f4;
  }
  .comment-preview {
    background-color: #ffffea;
  }
/*})'"*/
/**
   * @file
   * Main stylesheet for Date module.
   */
  
  /* Force start/end dates to float using inline-block, where it works, otherwise inline. */
  .container-inline-date {
    clear: both;
  }
  .container-inline-date .form-item {
    float: none;
    margin: 0;
    padding: 0;
  }
  .container-inline-date > .form-item {
    display: inline-block;
    margin-right: 0.5em; /* LTR */
    vertical-align: top;
  }
  fieldset.date-combo .container-inline-date > .form-item {
    margin-bottom: 10px;
  }
  .container-inline-date .form-item .form-item {
    float: left; /* LTR */
  }
  .container-inline-date .form-item,
  .container-inline-date .form-item input {
    width: auto;
  }
  .container-inline-date .description {
    clear: both;
  }
  
  .container-inline-date .form-item input,
  .container-inline-date .form-item select,
  .container-inline-date .form-item option {
    margin-right: 5px; /* LTR */
  }
  
  .container-inline-date .date-spacer {
    margin-left: -5px; /* LTR */
  }
  
  .views-right-60 .container-inline-date div {
    margin: 0;
    padding: 0;
  }
  
  .container-inline-date .date-timezone .form-item {
    clear: both;
    float: none;
    width: auto;
  }
  
  /* The exposed Views form doesn't need some of these styles */
  .container-inline-date .date-padding {
    float: left;
  }
  fieldset.date-combo .container-inline-date .date-padding {
    padding: 10px;
  }
  .views-exposed-form .container-inline-date .date-padding {
    padding: 0;
  }
  
  /* Fixes for date popup css so it will behave in Drupal */
  #calendar_div,
  #calendar_div td,
  #calendar_div th {
    margin: 0;
    padding: 0;
  }
  #calendar_div,
  .calendar_control,
  .calendar_links,
  .calendar_header,
  .calendar {
    border-collapse: separate;
    margin: 0;
    width: 185px;
  }
  
  .calendar td {
    padding: 0;
  }
  
  /* formatting for start/end dates in nodes and views */
  span.date-display-single {
  }
  span.date-display-start {
  }
  span.date-display-end {
  }
  
  .date-prefix-inline {
    display: inline-block;
  }
  
  .date-clear {
    clear: both;
    display: block;
    float: none;
  }
  
  .date-no-float {
    clear: both;
    float: none;
    width: 98%;
  }
  
  .date-float {
    clear: none;
    float: left;
    width: auto;
  }
  
  /* Add space between date option checkboxes ('All day' & 'Collect End Date') */
  .date-float .form-type-checkbox{
    padding-right: 1em;
  }
  
  /* Add space between the date and time portions of the date_select widget. */
  .form-type-date-select .form-type-select[class*=hour] {
    margin-left: .75em; /* LTR */
  }
  
  .date-container .date-format-delete {
    float: left;
    margin-top: 1.8em;
    margin-left: 1.5em;
  }
  .date-container .date-format-name {
    float: left;
  }
  .date-container .date-format-type {
    float: left;
    padding-left: 10px;
  }
  
  .date-container .select-container {
    clear: left;
    float: left;
  }
  
  /* Calendar day css */
  div.date-calendar-day {
    background: #F3F3F3;
    border-top: 1px solid #EEE;
    border-left: 1px solid #EEE;
    border-right: 1px solid #BBB;
    border-bottom: 1px solid #BBB;
    color: #999;
    float: left;
    line-height: 1;
    margin: 6px 10px 0 0;
    text-align: center;
    width: 40px;
  }
  
  div.date-calendar-day span {
    display: block;
    text-align: center;
  }
  div.date-calendar-day span.month {
    background-color: #B5BEBE;
    color: white;
    font-size: .9em;
    padding: 2px;
    text-transform: uppercase;
  }
  div.date-calendar-day span.day {
    font-size: 2em;
    font-weight: bold;
  }
  div.date-calendar-day span.year {
    font-size: .9em;
    padding: 2px;
  }
  
  .date-form-element-content-multiline {
    padding: 10px;
    border: 1px solid #CCC;
  }
  /* Admin styling */
  .form-item.form-item-instance-widget-settings-input-format-custom,
  .form-item.form-item-field-settings-enddate-required {
    margin-left: 1.3em;
  }
  
  #edit-field-settings-granularity .form-type-checkbox {
    margin-right: .6em; /* LTR */
  }
  
  .date-year-range-select {
    margin-right: 1em;
  }
/*})'"*/
#ui-datepicker-div {
  font-size: 100%;
  font-family: Verdana, sans-serif;
  background: #eee;
  border-right:2px #666 solid;
  border-bottom:2px #666 solid;
  z-index: 9999;
  }
  
  /* Datepicker
  ----------------------------------*/
  .ui-datepicker { width: 17em; padding: .2em .2em 0; }
  .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
  .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
  .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
  .ui-datepicker .ui-datepicker-prev { left:2px; }
  .ui-datepicker .ui-datepicker-next { right:2px; }
  .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
  .ui-datepicker .ui-datepicker-next-hover { right:1px; }
  .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;  }
  .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
  .ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; }
  .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
  .ui-datepicker select.ui-datepicker-month,
  .ui-datepicker select.ui-datepicker-year { width: 49%;}
  .ui-datepicker .ui-datepicker-title select.ui-datepicker-year { float: right; }
  .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
  .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0;  }
  .ui-datepicker td { border: 0; padding: 1px; }
  .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
  .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
  .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
  .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
  
  /* with multiple calendars */
  .ui-datepicker.ui-datepicker-multi { width:auto; }
  .ui-datepicker-multi .ui-datepicker-group { float:left; }
  .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
  .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
  .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
  .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
  .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
  .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
  .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
  .ui-datepicker-row-break { clear:both; width:100%; }
  
  /* RTL support */
  .ui-datepicker-rtl { direction: rtl; }
  .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
  .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
  .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
  .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
  .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
  .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
  .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
  .ui-datepicker-rtl .ui-datepicker-group { float:right; }
  .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
  .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
/*})'"*/
.date-repeat-input {
    float: left; /* LTR */
    margin-right: 5px; /* LTR */
    width: auto;
  }
  .date-repeat-input select {
    min-width: 7em;
  }
  .date-repeat fieldset {
    clear: both;
    float: none;
  }
  
  .date-repeat-radios {
    margin-bottom: 1em;
  }
  
  .date-repeat-radios input[type=radio] {
    float: left;
    margin: 0.75em 0.75em 0 0;
  }
  
  .date-repeat-radios .form-wrapper {
    float: left;
  }
  
  .date-repeat-radios .form-type-checkboxes .form-type-checkbox {
    width: 15%;
    float: left;
    margin: 0;
  }
  
  .date-repeat-radios .date-repeat-radios-item {
    margin-bottom: 1em;
  }
  
  .weekly .form-type-checkboxes .form-type-checkbox {
    float: left;
    margin-right: 10px;
  }
  
  .date-repeat-input.byday-count label,
  .date-repeat-input.byday-count select,
  .date-clear.bymonthday label,
  .date-clear.bymonthday select {
    display: inline;
  }
  
  .date-repeat-input.byday-day label,
  .date-clear.bymonthday .field-suffix {
    font-weight: bold;
  }
  
  .range-of-repeat .form-radios > div {
    margin-top: 0.5em;
  }
  
  .range-of-repeat .count input[type=text] {
    margin: 0 0.5em;
  }
  
  .range-of-repeat .until .form-wrapper {
    margin: 0 0.5em;
    display: inline-block;
    vertical-align: middle;
  }
  
  .range-of-repeat .until .form-radio,
  .range-of-repeat .until .date-prefix-inline {
    margin: 0 0 1.4em 0;
    vertical-align: middle;
  }
  
  .range-of-repeat .until.widget-date_popup.label-above .form-radio,
  .range-of-repeat .until.widget-date_popup.label-above .date-prefix-inline {
    margin: 0;
    vertical-align: middle;
  }
  
  .range-of-repeat .until.widget-date_select.label-within .form-radio,
  .range-of-repeat .until.widget-date_select.label-within .date-prefix-inline {
    margin: 0;
    vertical-align: middle;
  }
  
  .range-of-repeat .until.widget-date_select.label-above .form-radio,
  .range-of-repeat .until.widget-date_select.label-above .date-prefix-inline {
    margin: 1.4em 0 0 0;
    vertical-align: middle;
  }
  
  .range-of-repeat .until .form-type-date-text .date-padding {
    padding: 0;
  }
  
  .range-of-repeat .until.widget-date_select.label-within .date-padding {
    padding: 0;
  }
  
  .range-of-repeat .until.widget-date_select.label-above .date-padding {
    padding: 0;
  }
  
  .range-of-repeat .until .form-type-date-select,
  .range-of-repeat .until .form-type-date-popup,
  .range-of-repeat .until .form-type-date-text {
    border: none;
    margin: 0;
  }
/*})'"*/
/* Field display */
  .field .field-label {
    font-weight: bold;
  }
  .field-label-inline .field-label,
  .field-label-inline .field-items {
    float:left; /*LTR*/
  }
  
  /* Form display */
  form .field-multiple-table {
    margin: 0;
  }
  form .field-multiple-table th.field-label {
    padding-left: 0; /*LTR*/
  }
  form .field-multiple-table td.field-multiple-drag {
    width: 30px;
    padding-right: 0; /*LTR*/
  }
  form .field-multiple-table td.field-multiple-drag a.tabledrag-handle {
    padding-right: .5em; /*LTR*/
  }
  
  form .field-add-more-submit {
    margin: .5em 0 0;
  }
/*})'"*/
.node-unpublished {
    background-color: #fff4f4;
  }
  .preview .node {
    background-color: #ffffea;
  }
  td.revision-current {
    background: #ffc;
  }
/*})'"*/
.search-form {
    margin-bottom: 1em;
  }
  .search-form input {
    margin-top: 0;
    margin-bottom: 0;
  }
  .search-results {
    list-style: none;
  }
  .search-results p {
    margin-top: 0;
  }
  .search-results .title {
    font-size: 1.2em;
  }
  .search-results li {
    margin-bottom: 1em;
  }
  .search-results .search-snippet-info {
    padding-left: 1em; /* LTR */
  }
  .search-results .search-info {
    font-size: 0.85em;
  }
  .search-advanced .criterion {
    float: left; /* LTR */
    margin-right: 2em; /* LTR */
  }
  .search-advanced .action {
    float: left; /* LTR */
    clear: left; /* LTR */
  }
/*})'"*/
#permissions td.module {
    font-weight: bold;
  }
  #permissions td.permission {
    padding-left: 1.5em; /* LTR */
  }
  #permissions tr.odd .form-item,
  #permissions tr.even .form-item {
    white-space: normal;
  }
  #user-admin-settings fieldset .fieldset-description {
    font-size: 0.85em;
    padding-bottom: .5em;
  }
  
  /**
   * Override default textfield float to put the "Add role" button next to
   * the input textfield.
   */
  #user-admin-roles td.edit-name {
    clear: both;
  }
  #user-admin-roles .form-item-name {
    float: left; /* LTR */
    margin-right: 1em; /* LTR */
  }
  
  /**
   * Password strength indicator.
   */
  .password-strength {
    width: 17em;
    float: right;  /* LTR */
    margin-top: 1.4em;
  }
  .password-strength-title {
    display: inline;
  }
  .password-strength-text {
    float: right; /* LTR */
    font-weight: bold;
  }
  .password-indicator {
    background-color: #C4C4C4;
    height: 0.3em;
    width: 100%;
  }
  .password-indicator div {
    height: 100%;
    width: 0%;
    background-color: #47C965;
  }
  input.password-confirm,
  input.password-field {
    width: 16em;
    margin-bottom: 0.4em;
  }
  div.password-confirm {
    float: right;  /* LTR */
    margin-top: 1.5em;
    visibility: hidden;
    width: 17em;
  }
  div.form-item div.password-suggestions {
    padding: 0.2em 0.5em;
    margin: 0.7em 0;
    width: 38.5em;
    border: 1px solid #B4B4B4;
  }
  div.password-suggestions ul {
    margin-bottom: 0;
  }
  .confirm-parent,
  .password-parent {
    clear: left; /* LTR */
    margin: 0;
    width: 36.3em;
  }
  
  /* Generated by user.module but used by profile.module: */
  .profile {
    clear: both;
    margin: 1em 0;
  }
  .profile .user-picture {
    float: right; /* LTR */
    margin: 0 1em 1em 0; /* LTR */
  }
  .profile h3 {
    border-bottom: 1px solid #ccc;
  }
  .profile dl {
    margin: 0 0 1.5em 0;
  }
  .profile dt {
    margin: 0 0 0.2em 0;
    font-weight: bold;
  }
  .profile dd {
    margin: 0 0 1em 0;
  }
/*})'"*/
/**
   * @file
   * Styling for the Forum module.
   */
  
  #forum .description {
    font-size: 0.9em;
    margin: 0.5em;
  }
  #forum td.created,
  #forum td.posts,
  #forum td.topics,
  #forum td.last-reply,
  #forum td.replies,
  #forum td.pager {
    white-space: nowrap;
  }
  
  #forum td.forum .icon {
    background-image: url(/misc/forum-icons.png);
    background-repeat: no-repeat;
    float: left; /* LTR */
    height: 24px;
    margin: 0 9px 0 0; /* LTR */
    width: 24px;
  }
  #forum td.forum .forum-status-new {
    background-position: -24px 0;
  }
  
  #forum div.indent {
    margin-left: 20px; /* LTR */
  }
  #forum .icon div {
    background-image: url(/misc/forum-icons.png);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
  }
  #forum .icon .topic-status-new {
    background-position: -24px 0;
  }
  #forum .icon .topic-status-hot {
    background-position: -48px 0;
  }
  #forum .icon .topic-status-hot-new {
    background-position: -72px 0;
  }
  #forum .icon .topic-status-sticky {
    background-position: -96px 0;
  }
  #forum .icon .topic-status-closed {
    background-position: -120px 0;
  }
/*})'"*/
.views-exposed-form .views-exposed-widget {
    float: left; /* LTR */
    padding: .5em 1em 0 0; /* LTR */
  }
  
  .views-exposed-form .views-exposed-widget .form-submit {
    margin-top: 1.6em;
  }
  
  .views-exposed-form .form-item,
  .views-exposed-form .form-submit {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .views-exposed-form label {
    font-weight: bold;
  }
  
  .views-exposed-widgets {
    margin-bottom: .5em;
  }
  
  /* table style column align */
  .views-align-left {
    text-align: left;
  }
  .views-align-right {
    text-align: right;
  }
  .views-align-center {
    text-align: center;
  }
  
  /* Remove the border on tbody that system puts in */
  .views-view-grid tbody {
    border-top: none;
  }
  
  .view .progress-disabled {
    float: none;
  }
/*})'"*/
/* General indentation & positioning classes */
  
  .rteindent1 {
      margin-left: 40px;
  }
  .rteindent2 {
      margin-left: 80px;
  }
  .rteindent3 {
      margin-left: 120px;
  }
  .rteindent4 {
      margin-left: 160px;
  }
  .rteleft {
      text-align: left;
  }
  .rteright {
      text-align: right;
  }
  .rtecenter {
      text-align: center;
  }
  .rtejustify {
      text-align: justify;
  }
  .ibimage_left {
      float: left;
  }
  .ibimage_right {
      float: right;
  }
/*})'"*/
/**
   * Colorbox Core Style:
   * The following CSS is consistent between example themes and should not be altered.
   */
  #colorbox, #cboxOverlay, #cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
  }
  #cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  #cboxMiddleLeft, #cboxBottomLeft {
    clear: left;
  }
  #cboxContent {
    position: relative;
  }
  #cboxLoadedContent {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #cboxTitle {
    margin: 0;
  }
  #cboxLoadingOverlay, #cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /**
   * These elements are buttons, and may need to have additional
   * styles reset to avoid unwanted base styles.
   */
  #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
    border: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    width: auto;
    background: none;
    cursor: pointer;
  }
  /**
   * Avoid outlines on :active (mouseclick),
   * but preserve outlines on :focus (tabbed navigating)
   */
  #cboxPrevious:active, #cboxNext:active, #cboxClose:active, #cboxSlideshow:active {
    outline: 0;
  }
  .cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
    max-width: none;
  }
  .cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
  }
  /* Reset box sizing to content-box if theme is using border-box. */
  #colorbox, #cboxContent, #cboxLoadedContent {
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }
  
  /**
   * Colorbox module default style:
   * The styles are ordered & tabbed in a way that represents
   * the nesting of the generated HTML.
   */
  #cboxOverlay {
    background: #000;
  }
  #colorbox {
    outline: 0;
  }
    #cboxWrapper {
      background: #fff;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
    }
      #cboxTopLeft {
        width: 15px;
        height: 15px;
      }
      #cboxTopCenter {
        height: 15px;
      }
      #cboxTopRight {
        width: 15px;
        height: 15px;
      }
      #cboxBottomLeft {
        width: 15px;
        height: 10px;
      }
      #cboxBottomCenter {
        height: 10px;
      }
      #cboxBottomRight {
        width: 15px;
        height: 10px;
      }
      #cboxMiddleLeft {
        width: 15px;
      }
      #cboxMiddleRight {
        width: 15px;
      }
      #cboxContent {
        background: #fff;
        overflow: hidden;
      }
        #cboxError {
          padding: 50px;
          border: 1px solid #ccc;
        }
        #cboxLoadedContent {
          margin-bottom: 28px;
        }
        #cboxTitle {
          position: absolute;
          background: rgba(255, 255, 255, 0.7);
          bottom: 28px;
          left: 0;
          color: #535353;
          width: 100%;
          padding: 4px 6px;
          -moz-box-sizing: border-box;
          -webkit-box-sizing: border-box;
          box-sizing: border-box;
        }
        #cboxCurrent {
          position: absolute;
          bottom: 4px;
          left: 60px;
          color: #949494;
        }
        .cboxSlideshow_on #cboxSlideshow {
          position: absolute;
          bottom: 0px;
          right: 30px;
          background: url(/sites/all/modules/colorbox/styles/default/images/controls.png) no-repeat -75px -50px;
          width: 25px;
          height: 25px;
          text-indent: -9999px;
        }
        .cboxSlideshow_on #cboxSlideshow:hover {
          background-position: -101px -50px;
        }
        .cboxSlideshow_off #cboxSlideshow {
          position: absolute;
          bottom: 0px;
          right: 30px;
          background: url(/sites/all/modules/colorbox/styles/default/images/controls.png) no-repeat -25px -50px;
          width: 25px;
          height: 25px;
          text-indent: -9999px;
        }
        .cboxSlideshow_off #cboxSlideshow:hover {
          background-position: -49px -50px;
        }
        #cboxPrevious {
          position: absolute;
          bottom: 0;
          left: 0;
          background: url(/sites/all/modules/colorbox/styles/default/images/controls.png) no-repeat -75px 0px;
          width: 25px;
          height: 25px;
          text-indent: -9999px;
        }
        #cboxPrevious:hover {
          background-position: -75px -25px;
        }
        #cboxNext {
          position: absolute;
          bottom: 0;
          left: 27px;
          background: url(/sites/all/modules/colorbox/styles/default/images/controls.png) no-repeat -50px 0px;
          width: 25px;
          height: 25px;
          text-indent: -9999px;
        }
        #cboxNext:hover {
          background-position: -50px -25px;
        }
        #cboxLoadingOverlay {
          background: #fff;
        }
        #cboxLoadingGraphic {
          background: url(/sites/all/modules/colorbox/styles/default/images/loading_animation.gif) no-repeat center center;
        }
        #cboxClose {
          position: absolute;
          bottom: 0;
          right: 0;
          background: url(/sites/all/modules/colorbox/styles/default/images/controls.png) no-repeat -25px 0px;
          width: 25px;
          height: 25px;
          text-indent: -9999px;
        }
        #cboxClose:hover {
          background-position: -25px -25px;
        }
/*})'"*/
.ctools-locked {
    color: red;
    border: 1px solid red;
    padding: 1em;
  }
  
  .ctools-owns-lock {
    background: #ffffdd none repeat scroll 0 0;
    border: 1px solid #f0c020;
    padding: 1em;
  }
  
  a.ctools-ajaxing,
  input.ctools-ajaxing,
  button.ctools-ajaxing,
  select.ctools-ajaxing {
    padding-right: 18px !important;
    background: url(/sites/all/modules/ctools/images/status-active.gif) right center no-repeat;
  }
  
  div.ctools-ajaxing {
    float: left;
    width: 18px;
    background: url(/sites/all/modules/ctools/images/status-active.gif) center center no-repeat;
  }
/*})'"*/
.animated{
    -webkit-animation-fill-mode:both;
    -moz-animation-fill-mode:both;
    -ms-animation-fill-mode:both;
    -o-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    -ms-animation-duration:1s;
    -o-animation-duration:1s;
    animation-duration:1s;
  }
  
  @-webkit-keyframes flash {
  	0%, 50%, 100% {opacity: 1;}	25%, 75% {opacity: 0;}
  }
  
  @-moz-keyframes flash {
  	0%, 50%, 100% {opacity: 1;}	
  	25%, 75% {opacity: 0;}
  }
  
  @-o-keyframes flash {
  	0%, 50%, 100% {opacity: 1;}	
  	25%, 75% {opacity: 0;}
  }
  
  @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;
  }
  @-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);}
  }
  
  @-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);}
  }
  
  @-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);}
  }
  
  @keyframes shake {
  	0%, 100% {transform: translateX(0);}
  	10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
  	20%, 40%, 60%, 80% {transform: translateX(10px);}
  }
  
  .shake {
  	-webkit-animation-name: shake;
  	-moz-animation-name: shake;
  	-o-animation-name: shake;
  	animation-name: shake;
  }
  @-webkit-keyframes bounce {
  	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
  	40% {-webkit-transform: translateY(-30px);}
  	60% {-webkit-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);}
  }
  
  @-o-keyframes bounce {
  	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
  	40% {-o-transform: translateY(-30px);}
  	60% {-o-transform: translateY(-15px);}
  }
  @keyframes bounce {
  	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  	40% {transform: translateY(-30px);}
  	60% {transform: translateY(-15px);}
  }
  
  .bounce {
  	-webkit-animation-name: bounce;
  	-moz-animation-name: bounce;
  	-o-animation-name: bounce;
  	animation-name: bounce;
  }
  @-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);}
  }
  
  @-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);}
  }
  
  @-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);}
  }
  
  @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);}
  }
  
  .tada {
  	-webkit-animation-name: tada;
  	-moz-animation-name: tada;
  	-o-animation-name: tada;
  	animation-name: tada;
  }
  @-webkit-keyframes swing {
  	20%, 40%, 60%, 80%, 100% { -webkit-transform-origin: top center; }
  	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); }
  }
  
  @-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); }
  }
  
  @-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); }
  }
  
  @keyframes swing {
  	20% { transform: rotate(15deg); }	
  	40% { transform: rotate(-10deg); }
  	60% { transform: rotate(5deg); }	
  	80% { transform: rotate(-5deg); }	
  	100% { transform: rotate(0deg); }
  }
  
  .swing {
  	-webkit-transform-origin: top center;
  	-moz-transform-origin: top center;
  	-o-transform-origin: top center;
  	transform-origin: top center;
  	-webkit-animation-name: swing;
  	-moz-animation-name: swing;
  	-o-animation-name: swing;
  	animation-name: swing;
  }
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  
  @-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%); }
  }
  
  @-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%); }
  }
  
  @-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%); }
  }
  
  @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%); }
  }
  
  .wobble {
  	-webkit-animation-name: wobble;
  	-moz-animation-name: wobble;
  	-o-animation-name: wobble;
  	animation-name: wobble;
  }
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  
  @-webkit-keyframes pulse {
      0% { -webkit-transform: scale(1); }	
  	50% { -webkit-transform: scale(1.1); }
      100% { -webkit-transform: scale(1); }
  }
  @-moz-keyframes pulse {
      0% { -moz-transform: scale(1); }	
  	50% { -moz-transform: scale(1.1); }
      100% { -moz-transform: scale(1); }
  }
  @-o-keyframes pulse {
      0% { -o-transform: scale(1); }	
  	50% { -o-transform: scale(1.1); }
      100% { -o-transform: scale(1); }
  }
  @keyframes pulse {
      0% { transform: scale(1); }	
  	50% { transform: scale(1.1); }
      100% { transform: scale(1); }
  }
  
  .pulse {
  	-webkit-animation-name: pulse;
  	-moz-animation-name: pulse;
  	-o-animation-name: pulse;
  	animation-name: pulse;
  }
  @-webkit-keyframes flip {
  	0% {
  		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
  		-webkit-animation-timing-function: ease-out;
  	}
  	40% {
  		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
  		-webkit-animation-timing-function: ease-out;
  	}
  	50% {
  		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
  		-webkit-animation-timing-function: ease-in;
  	}
  	80% {
  		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
  		-webkit-animation-timing-function: ease-in;
  	}
  	100% {
  		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
  		-webkit-animation-timing-function: ease-in;
  	}
  }
  @-moz-keyframes flip {
  	0% {
  		-moz-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
  		-moz-animation-timing-function: ease-out;
  	}
  	40% {
  		-moz-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
  		-moz-animation-timing-function: ease-out;
  	}
  	50% {
  		-moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
  		-moz-animation-timing-function: ease-in;
  	}
  	80% {
  		-moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
  		-moz-animation-timing-function: ease-in;
  	}
  	100% {
  		-moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
  		-moz-animation-timing-function: ease-in;
  	}
  }
  @-o-keyframes flip {
  	0% {
  		-o-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
  		-o-animation-timing-function: ease-out;
  	}
  	40% {
  		-o-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
  		-o-animation-timing-function: ease-out;
  	}
  	50% {
  		-o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
  		-o-animation-timing-function: ease-in;
  	}
  	80% {
  		-o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
  		-o-animation-timing-function: ease-in;
  	}
  	100% {
  		-o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
  		-o-animation-timing-function: ease-in;
  	}
  }
  @keyframes flip {
  	0% {
  		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
  		animation-timing-function: ease-out;
  	}
  	40% {
  		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
  		animation-timing-function: ease-out;
  	}
  	50% {
  		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
  		animation-timing-function: ease-in;
  	}
  	80% {
  		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
  		animation-timing-function: ease-in;
  	}
  	100% {
  		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
  		animation-timing-function: ease-in;
  	}
  }
  
  .animated.flip {
  	-webkit-backface-visibility: visible !important;
  	-webkit-animation-name: flip;
  	-moz-backface-visibility: visible !important;
  	-moz-animation-name: flip;
  	-o-backface-visibility: visible !important;
  	-o-animation-name: flip;
  	backface-visibility: visible !important;
  	animation-name: flip;
  }
  
  @-webkit-keyframes flipInX {
      0% {
          -webkit-transform: perspective(400px) rotateX(90deg);
          opacity: 0;
      }
      
      40% {
          -webkit-transform: perspective(400px) rotateX(-10deg);
      }
      
      70% {
          -webkit-transform: perspective(400px) rotateX(10deg);
      }
      
      100% {
          -webkit-transform: perspective(400px) rotateX(0deg);
          opacity: 1;
      }
  }
  @-moz-keyframes flipInX {
      0% {
          -moz-transform: perspective(400px) rotateX(90deg);
          opacity: 0;
      }
      
      40% {
          -moz-transform: perspective(400px) rotateX(-10deg);
      }
      
      70% {
          -moz-transform: perspective(400px) rotateX(10deg);
      }
      
      100% {
          -moz-transform: perspective(400px) rotateX(0deg);
          opacity: 1;
      }
  }
  @-o-keyframes flipInX {
      0% {
          -o-transform: perspective(400px) rotateX(90deg);
          opacity: 0;
      }
      
      40% {
          -o-transform: perspective(400px) rotateX(-10deg);
      }
      
      70% {
          -o-transform: perspective(400px) rotateX(10deg);
      }
      
      100% {
          -o-transform: perspective(400px) rotateX(0deg);
          opacity: 1;
      }
  }
  @keyframes flipInX {
      0% {
          transform: perspective(400px) rotateX(90deg);
          opacity: 0;
      }
      
      40% {
          transform: perspective(400px) rotateX(-10deg);
      }
      
      70% {
          transform: perspective(400px) rotateX(10deg);
      }
      
      100% {
          transform: perspective(400px) rotateX(0deg);
          opacity: 1;
      }
  }
  
  .flipInX {
  	-webkit-backface-visibility: visible !important;
  	-webkit-animation-name: flipInX;
  	-moz-backface-visibility: visible !important;
  	-moz-animation-name: flipInX;
  	-o-backface-visibility: visible !important;
  	-o-animation-name: flipInX;
  	backface-visibility: visible !important;
  	animation-name: flipInX;
  }
  @-webkit-keyframes flipInY {
      0% {
          -webkit-transform: perspective(400px) rotateY(90deg);
          opacity: 0;
      }
      
      40% {
          -webkit-transform: perspective(400px) rotateY(-10deg);
      }
      
      70% {
          -webkit-transform: perspective(400px) rotateY(10deg);
      }
      
      100% {
          -webkit-transform: perspective(400px) rotateY(0deg);
          opacity: 1;
      }
  }
  @-moz-keyframes flipInY {
      0% {
          -moz-transform: perspective(400px) rotateY(90deg);
          opacity: 0;
      }
      
      40% {
          -moz-transform: perspective(400px) rotateY(-10deg);
      }
      
      70% {
          -moz-transform: perspective(400px) rotateY(10deg);
      }
      
      100% {
          -moz-transform: perspective(400px) rotateY(0deg);
          opacity: 1;
      }
  }
  @-o-keyframes flipInY {
      0% {
          -o-transform: perspective(400px) rotateY(90deg);
          opacity: 0;
      }
      
      40% {
          -o-transform: perspective(400px) rotateY(-10deg);
      }
      
      70% {
          -o-transform: perspective(400px) rotateY(10deg);
      }
      
      100% {
          -o-transform: perspective(400px) rotateY(0deg);
          opacity: 1;
      }
  }
  @keyframes flipInY {
      0% {
          transform: perspective(400px) rotateY(90deg);
          opacity: 0;
      }
      
      40% {
          transform: perspective(400px) rotateY(-10deg);
      }
      
      70% {
          transform: perspective(400px) rotateY(10deg);
      }
      
      100% {
          transform: perspective(400px) rotateY(0deg);
          opacity: 1;
      }
  }
  
  .flipInY {
  	-webkit-backface-visibility: visible !important;
  	-webkit-animation-name: flipInY;
  	-moz-backface-visibility: visible !important;
  	-moz-animation-name: flipInY;
  	-o-backface-visibility: visible !important;
  	-o-animation-name: flipInY;
  	backface-visibility: visible !important;
  	animation-name: flipInY;
  }
  @-webkit-keyframes fadeIn {
  	0% {opacity: 0;}	
  	100% {opacity: 1;}
  }
  
  @-moz-keyframes fadeIn {
  	0% {opacity: 0;}	
  	100% {opacity: 1;}
  }
  
  @-o-keyframes fadeIn {
  	0% {opacity: 0;}	
  	100% {opacity: 1;}
  }
  
  @keyframes fadeIn {
  	0% {opacity: 0;}	
  	100% {opacity: 1;}
  }
  
  .fadeIn {
  	-webkit-animation-name: fadeIn;
  	-moz-animation-name: fadeIn;
  	-o-animation-name: fadeIn;
  	animation-name: fadeIn;
  }
  @-webkit-keyframes fadeInUp {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateY(20px);
  	}
  	
  	100% {
  		opacity: 1;
  		-webkit-transform: translateY(0);
  	}
  }
  
  @-moz-keyframes fadeInUp {
  	0% {
  		opacity: 0;
  		-moz-transform: translateY(20px);
  	}
  	
  	100% {
  		opacity: 1;
  		-moz-transform: translateY(0);
  	}
  }
  
  @-o-keyframes fadeInUp {
  	0% {
  		opacity: 0;
  		-o-transform: translateY(20px);
  	}
  	
  	100% {
  		opacity: 1;
  		-o-transform: translateY(0);
  	}
  }
  
  @keyframes fadeInUp {
  	0% {
  		opacity: 0;
  		transform: translateY(20px);
  	}
  	
  	100% {
  		opacity: 1;
  		transform: translateY(0);
  	}
  }
  
  .fadeInUp {
  	-webkit-animation-name: fadeInUp;
  	-moz-animation-name: fadeInUp;
  	-o-animation-name: fadeInUp;
  	animation-name: fadeInUp;
  }
  @-webkit-keyframes fadeInDown {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateY(-20px);
  	}
  	
  	100% {
  		opacity: 1;
  		-webkit-transform: translateY(0);
  	}
  }
  
  @-moz-keyframes fadeInDown {
  	0% {
  		opacity: 0;
  		-moz-transform: translateY(-20px);
  	}
  	
  	100% {
  		opacity: 1;
  		-moz-transform: translateY(0);
  	}
  }
  
  @-o-keyframes fadeInDown {
  	0% {
  		opacity: 0;
  		-o-transform: translateY(-20px);
  	}
  	
  	100% {
  		opacity: 1;
  		-o-transform: translateY(0);
  	}
  }
  
  @keyframes fadeInDown {
  	0% {
  		opacity: 0;
  		transform: translateY(-20px);
  	}
  	
  	100% {
  		opacity: 1;
  		transform: translateY(0);
  	}
  }
  
  .fadeInDown {
  	-webkit-animation-name: fadeInDown;
  	-moz-animation-name: fadeInDown;
  	-o-animation-name: fadeInDown;
  	animation-name: fadeInDown;
  }
  @-webkit-keyframes fadeInLeft {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateX(-20px);
  	}
  	
  	100% {
  		opacity: 1;
  		-webkit-transform: translateX(0);
  	}
  }
  
  @-moz-keyframes fadeInLeft {
  	0% {
  		opacity: 0;
  		-moz-transform: translateX(-20px);
  	}
  	
  	100% {
  		opacity: 1;
  		-moz-transform: translateX(0);
  	}
  }
  
  @-o-keyframes fadeInLeft {
  	0% {
  		opacity: 0;
  		-o-transform: translateX(-20px);
  	}
  	
  	100% {
  		opacity: 1;
  		-o-transform: translateX(0);
  	}
  }
  
  @keyframes fadeInLeft {
  	0% {
  		opacity: 0;
  		transform: translateX(-20px);
  	}
  	
  	100% {
  		opacity: 1;
  		transform: translateX(0);
  	}
  }
  
  .fadeInLeft {
  	-webkit-animation-name: fadeInLeft;
  	-moz-animation-name: fadeInLeft;
  	-o-animation-name: fadeInLeft;
  	animation-name: fadeInLeft;
  }
  @-webkit-keyframes fadeInRight {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateX(20px);
  	}
  	
  	100% {
  		opacity: 1;
  		-webkit-transform: translateX(0);
  	}
  }
  
  @-moz-keyframes fadeInRight {
  	0% {
  		opacity: 0;
  		-moz-transform: translateX(20px);
  	}
  	
  	100% {
  		opacity: 1;
  		-moz-transform: translateX(0);
  	}
  }
  
  @-o-keyframes fadeInRight {
  	0% {
  		opacity: 0;
  		-o-transform: translateX(20px);
  	}
  	
  	100% {
  		opacity: 1;
  		-o-transform: translateX(0);
  	}
  }
  
  @keyframes fadeInRight {
  	0% {
  		opacity: 0;
  		transform: translateX(20px);
  	}
  	
  	100% {
  		opacity: 1;
  		transform: translateX(0);
  	}
  }
  
  .fadeInRight {
  	-webkit-animation-name: fadeInRight;
  	-moz-animation-name: fadeInRight;
  	-o-animation-name: fadeInRight;
  	animation-name: fadeInRight;
  }
  @-webkit-keyframes fadeInUpBig {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateY(2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		-webkit-transform: translateY(0);
  	}
  }
  
  @-moz-keyframes fadeInUpBig {
  	0% {
  		opacity: 0;
  		-moz-transform: translateY(2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		-moz-transform: translateY(0);
  	}
  }
  
  @-o-keyframes fadeInUpBig {
  	0% {
  		opacity: 0;
  		-o-transform: translateY(2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		-o-transform: translateY(0);
  	}
  }
  
  @keyframes fadeInUpBig {
  	0% {
  		opacity: 0;
  		transform: translateY(2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		transform: translateY(0);
  	}
  }
  
  .fadeInUpBig {
  	-webkit-animation-name: fadeInUpBig;
  	-moz-animation-name: fadeInUpBig;
  	-o-animation-name: fadeInUpBig;
  	animation-name: fadeInUpBig;
  }
  @-webkit-keyframes fadeInDownBig {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateY(-2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		-webkit-transform: translateY(0);
  	}
  }
  
  @-moz-keyframes fadeInDownBig {
  	0% {
  		opacity: 0;
  		-moz-transform: translateY(-2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		-moz-transform: translateY(0);
  	}
  }
  
  @-o-keyframes fadeInDownBig {
  	0% {
  		opacity: 0;
  		-o-transform: translateY(-2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		-o-transform: translateY(0);
  	}
  }
  
  @keyframes fadeInDownBig {
  	0% {
  		opacity: 0;
  		transform: translateY(-2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		transform: translateY(0);
  	}
  }
  
  .fadeInDownBig {
  	-webkit-animation-name: fadeInDownBig;
  	-moz-animation-name: fadeInDownBig;
  	-o-animation-name: fadeInDownBig;
  	animation-name: fadeInDownBig;
  }
  @-webkit-keyframes fadeInLeftBig {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateX(-2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		-webkit-transform: translateX(0);
  	}
  }
  @-moz-keyframes fadeInLeftBig {
  	0% {
  		opacity: 0;
  		-moz-transform: translateX(-2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		-moz-transform: translateX(0);
  	}
  }
  @-o-keyframes fadeInLeftBig {
  	0% {
  		opacity: 0;
  		-o-transform: translateX(-2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		-o-transform: translateX(0);
  	}
  }
  @keyframes fadeInLeftBig {
  	0% {
  		opacity: 0;
  		transform: translateX(-2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		transform: translateX(0);
  	}
  }
  
  .fadeInLeftBig {
  	-webkit-animation-name: fadeInLeftBig;
  	-moz-animation-name: fadeInLeftBig;
  	-o-animation-name: fadeInLeftBig;
  	animation-name: fadeInLeftBig;
  }
  @-webkit-keyframes fadeInRightBig {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateX(2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		-webkit-transform: translateX(0);
  	}
  }
  
  @-moz-keyframes fadeInRightBig {
  	0% {
  		opacity: 0;
  		-moz-transform: translateX(2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		-moz-transform: translateX(0);
  	}
  }
  
  @-o-keyframes fadeInRightBig {
  	0% {
  		opacity: 0;
  		-o-transform: translateX(2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		-o-transform: translateX(0);
  	}
  }
  
  @keyframes fadeInRightBig {
  	0% {
  		opacity: 0;
  		transform: translateX(2000px);
  	}
  	
  	100% {
  		opacity: 1;
  		transform: translateX(0);
  	}
  }
  
  .fadeInRightBig {
  	-webkit-animation-name: fadeInRightBig;
  	-moz-animation-name: fadeInRightBig;
  	-o-animation-name: fadeInRightBig;
  	animation-name: fadeInRightBig;
  }
  @-webkit-keyframes slideInDown {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateY(-2000px);
  	}
  
  	100% {
  		-webkit-transform: translateY(0);
  	}
  }
  
  @-moz-keyframes slideInDown {
  	0% {
  		opacity: 0;
  		-moz-transform: translateY(-2000px);
  	}
  
  	100% {
  		-moz-transform: translateY(0);
  	}
  }
  
  @-o-keyframes slideInDown {
  	0% {
  		opacity: 0;
  		-o-transform: translateY(-2000px);
  	}
  
  	100% {
  		-o-transform: translateY(0);
  	}
  }
  
  @keyframes slideInDown {
  	0% {
  		opacity: 0;
  		transform: translateY(-2000px);
  	}
  
  	100% {
  		transform: translateY(0);
  	}
  }
  
  .slideInDown {
  	-webkit-animation-name: slideInDown;
  	-moz-animation-name: slideInDown;
  	-o-animation-name: slideInDown;
  	animation-name: slideInDown;
  }
  @-webkit-keyframes slideInLeft {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateX(-2000px);
  	}
  	
  	100% {
  		-webkit-transform: translateX(0);
  	}
  }
  
  @-moz-keyframes slideInLeft {
  	0% {
  		opacity: 0;
  		-moz-transform: translateX(-2000px);
  	}
  	
  	100% {
  		-moz-transform: translateX(0);
  	}
  }
  
  @-o-keyframes slideInLeft {
  	0% {
  		opacity: 0;
  		-o-transform: translateX(-2000px);
  	}
  	
  	100% {
  		-o-transform: translateX(0);
  	}
  }
  
  @keyframes slideInLeft {
  	0% {
  		opacity: 0;
  		transform: translateX(-2000px);
  	}
  	
  	100% {
  		transform: translateX(0);
  	}
  }
  
  .slideInLeft {
  	-webkit-animation-name: slideInLeft;
  	-moz-animation-name: slideInLeft;
  	-o-animation-name: slideInLeft;
  	animation-name: slideInLeft;
  }
  @-webkit-keyframes slideInRight {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateX(2000px);
  	}
  	
  	100% {
  		-webkit-transform: translateX(0);
  	}
  }
  
  @-moz-keyframes slideInRight {
  	0% {
  		opacity: 0;
  		-moz-transform: translateX(2000px);
  	}
  	
  	100% {
  		-moz-transform: translateX(0);
  	}
  }
  
  @-o-keyframes slideInRight {
  	0% {
  		opacity: 0;
  		-o-transform: translateX(2000px);
  	}
  	
  	100% {
  		-o-transform: translateX(0);
  	}
  }
  
  @keyframes slideInRight {
  	0% {
  		opacity: 0;
  		transform: translateX(2000px);
  	}
  	
  	100% {
  		transform: translateX(0);
  	}
  }
  
  .slideInRight {
  	-webkit-animation-name: slideInRight;
  	-moz-animation-name: slideInRight;
  	-o-animation-name: slideInRight;
  	animation-name: slideInRight;
  }
  @-webkit-keyframes bounceIn {
  	0% {
  		opacity: 0;
  		-webkit-transform: scale(.3);
  	}
  	
  	50% {
  		opacity: 1;
  		-webkit-transform: scale(1.05);
  	}
  	
  	70% {
  		-webkit-transform: scale(.9);
  	}
  	
  	100% {
  		-webkit-transform: scale(1);
  	}
  }
  
  @-moz-keyframes bounceIn {
  	0% {
  		opacity: 0;
  		-moz-transform: scale(.3);
  	}
  	
  	50% {
  		opacity: 1;
  		-moz-transform: scale(1.05);
  	}
  	
  	70% {
  		-moz-transform: scale(.9);
  	}
  	
  	100% {
  		-moz-transform: scale(1);
  	}
  }
  
  @-o-keyframes bounceIn {
  	0% {
  		opacity: 0;
  		-o-transform: scale(.3);
  	}
  	
  	50% {
  		opacity: 1;
  		-o-transform: scale(1.05);
  	}
  	
  	70% {
  		-o-transform: scale(.9);
  	}
  	
  	100% {
  		-o-transform: scale(1);
  	}
  }
  
  @keyframes bounceIn {
  	0% {
  		opacity: 0;
  		transform: scale(.3);
  	}
  	
  	50% {
  		opacity: 1;
  		transform: scale(1.05);
  	}
  	
  	70% {
  		transform: scale(.9);
  	}
  	
  	100% {
  		transform: scale(1);
  	}
  }
  
  .bounceIn {
  	-webkit-animation-name: bounceIn;
  	-moz-animation-name: bounceIn;
  	-o-animation-name: bounceIn;
  	animation-name: bounceIn;
  }
  @-webkit-keyframes bounceInUp {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateY(2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		-webkit-transform: translateY(-30px);
  	}
  	
  	80% {
  		-webkit-transform: translateY(10px);
  	}
  	
  	100% {
  		-webkit-transform: translateY(0);
  	}
  }
  @-moz-keyframes bounceInUp {
  	0% {
  		opacity: 0;
  		-moz-transform: translateY(2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		-moz-transform: translateY(-30px);
  	}
  	
  	80% {
  		-moz-transform: translateY(10px);
  	}
  	
  	100% {
  		-moz-transform: translateY(0);
  	}
  }
  
  @-o-keyframes bounceInUp {
  	0% {
  		opacity: 0;
  		-o-transform: translateY(2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		-o-transform: translateY(-30px);
  	}
  	
  	80% {
  		-o-transform: translateY(10px);
  	}
  	
  	100% {
  		-o-transform: translateY(0);
  	}
  }
  
  @keyframes bounceInUp {
  	0% {
  		opacity: 0;
  		transform: translateY(2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		transform: translateY(-30px);
  	}
  	
  	80% {
  		transform: translateY(10px);
  	}
  	
  	100% {
  		transform: translateY(0);
  	}
  }
  
  .bounceInUp {
  	-webkit-animation-name: bounceInUp;
  	-moz-animation-name: bounceInUp;
  	-o-animation-name: bounceInUp;
  	animation-name: bounceInUp;
  }
  @-webkit-keyframes bounceInDown {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateY(-2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		-webkit-transform: translateY(30px);
  	}
  	
  	80% {
  		-webkit-transform: translateY(-10px);
  	}
  	
  	100% {
  		-webkit-transform: translateY(0);
  	}
  }
  
  @-moz-keyframes bounceInDown {
  	0% {
  		opacity: 0;
  		-moz-transform: translateY(-2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		-moz-transform: translateY(30px);
  	}
  	
  	80% {
  		-moz-transform: translateY(-10px);
  	}
  	
  	100% {
  		-moz-transform: translateY(0);
  	}
  }
  
  @-o-keyframes bounceInDown {
  	0% {
  		opacity: 0;
  		-o-transform: translateY(-2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		-o-transform: translateY(30px);
  	}
  	
  	80% {
  		-o-transform: translateY(-10px);
  	}
  	
  	100% {
  		-o-transform: translateY(0);
  	}
  }
  
  @keyframes bounceInDown {
  	0% {
  		opacity: 0;
  		transform: translateY(-2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		transform: translateY(30px);
  	}
  	
  	80% {
  		transform: translateY(-10px);
  	}
  	
  	100% {
  		transform: translateY(0);
  	}
  }
  
  .bounceInDown {
  	-webkit-animation-name: bounceInDown;
  	-moz-animation-name: bounceInDown;
  	-o-animation-name: bounceInDown;
  	animation-name: bounceInDown;
  }
  @-webkit-keyframes bounceInLeft {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateX(-2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		-webkit-transform: translateX(30px);
  	}
  	
  	80% {
  		-webkit-transform: translateX(-10px);
  	}
  	
  	100% {
  		-webkit-transform: translateX(0);
  	}
  }
  
  @-moz-keyframes bounceInLeft {
  	0% {
  		opacity: 0;
  		-moz-transform: translateX(-2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		-moz-transform: translateX(30px);
  	}
  	
  	80% {
  		-moz-transform: translateX(-10px);
  	}
  	
  	100% {
  		-moz-transform: translateX(0);
  	}
  }
  
  @-o-keyframes bounceInLeft {
  	0% {
  		opacity: 0;
  		-o-transform: translateX(-2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		-o-transform: translateX(30px);
  	}
  	
  	80% {
  		-o-transform: translateX(-10px);
  	}
  	
  	100% {
  		-o-transform: translateX(0);
  	}
  }
  
  @keyframes bounceInLeft {
  	0% {
  		opacity: 0;
  		transform: translateX(-2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		transform: translateX(30px);
  	}
  	
  	80% {
  		transform: translateX(-10px);
  	}
  	
  	100% {
  		transform: translateX(0);
  	}
  }
  
  .bounceInLeft {
  	-webkit-animation-name: bounceInLeft;
  	-moz-animation-name: bounceInLeft;
  	-o-animation-name: bounceInLeft;
  	animation-name: bounceInLeft;
  }
  @-webkit-keyframes bounceInRight {
  	0% {
  		opacity: 0;
  		-webkit-transform: translateX(2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		-webkit-transform: translateX(-30px);
  	}
  	
  	80% {
  		-webkit-transform: translateX(10px);
  	}
  	
  	100% {
  		-webkit-transform: translateX(0);
  	}
  }
  
  @-moz-keyframes bounceInRight {
  	0% {
  		opacity: 0;
  		-moz-transform: translateX(2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		-moz-transform: translateX(-30px);
  	}
  	
  	80% {
  		-moz-transform: translateX(10px);
  	}
  	
  	100% {
  		-moz-transform: translateX(0);
  	}
  }
  
  @-o-keyframes bounceInRight {
  	0% {
  		opacity: 0;
  		-o-transform: translateX(2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		-o-transform: translateX(-30px);
  	}
  	
  	80% {
  		-o-transform: translateX(10px);
  	}
  	
  	100% {
  		-o-transform: translateX(0);
  	}
  }
  
  @keyframes bounceInRight {
  	0% {
  		opacity: 0;
  		transform: translateX(2000px);
  	}
  	
  	60% {
  		opacity: 1;
  		transform: translateX(-30px);
  	}
  	
  	80% {
  		transform: translateX(10px);
  	}
  	
  	100% {
  		transform: translateX(0);
  	}
  }
  
  .bounceInRight {
  	-webkit-animation-name: bounceInRight;
  	-moz-animation-name: bounceInRight;
  	-o-animation-name: bounceInRight;
  	animation-name: bounceInRight;
  }
  @-webkit-keyframes rotateIn {
  	0% {
  		-webkit-transform-origin: center center;
  		-webkit-transform: rotate(-200deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-webkit-transform-origin: center center;
  		-webkit-transform: rotate(0);
  		opacity: 1;
  	}
  }
  @-moz-keyframes rotateIn {
  	0% {
  		-moz-transform-origin: center center;
  		-moz-transform: rotate(-200deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-moz-transform-origin: center center;
  		-moz-transform: rotate(0);
  		opacity: 1;
  	}
  }
  @-o-keyframes rotateIn {
  	0% {
  		-o-transform-origin: center center;
  		-o-transform: rotate(-200deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-o-transform-origin: center center;
  		-o-transform: rotate(0);
  		opacity: 1;
  	}
  }
  @keyframes rotateIn {
  	0% {
  		transform-origin: center center;
  		transform: rotate(-200deg);
  		opacity: 0;
  	}
  	
  	100% {
  		transform-origin: center center;
  		transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  .rotateIn {
  	-webkit-animation-name: rotateIn;
  	-moz-animation-name: rotateIn;
  	-o-animation-name: rotateIn;
  	animation-name: rotateIn;
  }
  @-webkit-keyframes rotateInUpLeft {
  	0% {
  		-webkit-transform-origin: left bottom;
  		-webkit-transform: rotate(90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-webkit-transform-origin: left bottom;
  		-webkit-transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  @-moz-keyframes rotateInUpLeft {
  	0% {
  		-moz-transform-origin: left bottom;
  		-moz-transform: rotate(90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-moz-transform-origin: left bottom;
  		-moz-transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  @-o-keyframes rotateInUpLeft {
  	0% {
  		-o-transform-origin: left bottom;
  		-o-transform: rotate(90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-o-transform-origin: left bottom;
  		-o-transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  @keyframes rotateInUpLeft {
  	0% {
  		transform-origin: left bottom;
  		transform: rotate(90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		transform-origin: left bottom;
  		transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  .rotateInUpLeft {
  	-webkit-animation-name: rotateInUpLeft;
  	-moz-animation-name: rotateInUpLeft;
  	-o-animation-name: rotateInUpLeft;
  	animation-name: rotateInUpLeft;
  }
  @-webkit-keyframes rotateInDownLeft {
  	0% {
  		-webkit-transform-origin: left bottom;
  		-webkit-transform: rotate(-90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-webkit-transform-origin: left bottom;
  		-webkit-transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  @-moz-keyframes rotateInDownLeft {
  	0% {
  		-moz-transform-origin: left bottom;
  		-moz-transform: rotate(-90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-moz-transform-origin: left bottom;
  		-moz-transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  @-o-keyframes rotateInDownLeft {
  	0% {
  		-o-transform-origin: left bottom;
  		-o-transform: rotate(-90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-o-transform-origin: left bottom;
  		-o-transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  @keyframes rotateInDownLeft {
  	0% {
  		transform-origin: left bottom;
  		transform: rotate(-90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		transform-origin: left bottom;
  		transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  .rotateInDownLeft {
  	-webkit-animation-name: rotateInDownLeft;
  	-moz-animation-name: rotateInDownLeft;
  	-o-animation-name: rotateInDownLeft;
  	animation-name: rotateInDownLeft;
  }
  @-webkit-keyframes rotateInUpRight {
  	0% {
  		-webkit-transform-origin: right bottom;
  		-webkit-transform: rotate(-90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-webkit-transform-origin: right bottom;
  		-webkit-transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  @-moz-keyframes rotateInUpRight {
  	0% {
  		-moz-transform-origin: right bottom;
  		-moz-transform: rotate(-90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-moz-transform-origin: right bottom;
  		-moz-transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  @-o-keyframes rotateInUpRight {
  	0% {
  		-o-transform-origin: right bottom;
  		-o-transform: rotate(-90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-o-transform-origin: right bottom;
  		-o-transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  @keyframes rotateInUpRight {
  	0% {
  		transform-origin: right bottom;
  		transform: rotate(-90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		transform-origin: right bottom;
  		transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  .rotateInUpRight {
  	-webkit-animation-name: rotateInUpRight;
  	-moz-animation-name: rotateInUpRight;
  	-o-animation-name: rotateInUpRight;
  	animation-name: rotateInUpRight;
  }
  @-webkit-keyframes rotateInDownRight {
  	0% {
  		-webkit-transform-origin: right bottom;
  		-webkit-transform: rotate(90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-webkit-transform-origin: right bottom;
  		-webkit-transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  @-moz-keyframes rotateInDownRight {
  	0% {
  		-moz-transform-origin: right bottom;
  		-moz-transform: rotate(90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-moz-transform-origin: right bottom;
  		-moz-transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  @-o-keyframes rotateInDownRight {
  	0% {
  		-o-transform-origin: right bottom;
  		-o-transform: rotate(90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		-o-transform-origin: right bottom;
  		-o-transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  @keyframes rotateInDownRight {
  	0% {
  		transform-origin: right bottom;
  		transform: rotate(90deg);
  		opacity: 0;
  	}
  	
  	100% {
  		transform-origin: right bottom;
  		transform: rotate(0);
  		opacity: 1;
  	}
  }
  
  .rotateInDownRight {
  	-webkit-animation-name: rotateInDownRight;
  	-moz-animation-name: rotateInDownRight;
  	-o-animation-name: rotateInDownRight;
  	animation-name: rotateInDownRight;
  }
  @-webkit-keyframes lightSpeedIn {
  	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; }
  }
  
  @-moz-keyframes lightSpeedIn {
  	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; }
  }
  
  @-o-keyframes lightSpeedIn {
  	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; }
  }
  
  @keyframes lightSpeedIn {
  	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; }
  }
  
  .lightSpeedIn {
      -webkit-animation-name: lightSpeedIn;
      -moz-animation-name: lightSpeedIn;
      -o-animation-name: lightSpeedIn;
      animation-name: lightSpeedIn;
  
      -webkit-animation-timing-function: ease-out;
      -moz-animation-timing-function: ease-out;
      -o-animation-timing-function: ease-out;
      animation-timing-function: ease-out;
  }
  @-webkit-keyframes lightSpeedOut {
      0% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
  	100% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
  }
  
  @-moz-keyframes lightSpeedOut {
  	0% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
  	100% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
  }
  
  @-o-keyframes lightSpeedOut {
  	0% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
  	100% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
  }
  
  @keyframes lightSpeedOut {
  	0% { transform: translateX(0%) skewX(0deg); opacity: 1; }
  	100% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
  }
  
  .lightSpeedOut {
      -webkit-animation-name: lightSpeedOut;
      -moz-animation-name: lightSpeedOut;
      -o-animation-name: lightSpeedOut;
      animation-name: lightSpeedOut;
  
      -webkit-animation-timing-function: ease-in;
      -moz-animation-timing-function: ease-in;
      -o-animation-timing-function: ease-in;
      animation-timing-function: ease-in;
  }
  @-webkit-keyframes hinge {
  	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); opacity: 1; -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }	
  	100% { -webkit-transform: translateY(700px); opacity: 0; }
  }
  
  @-moz-keyframes hinge {
  	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); opacity: 1; -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }	
  	100% { -moz-transform: translateY(700px); opacity: 0; }
  }
  
  @-o-keyframes hinge {
  	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); opacity: 1; -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }	
  	100% { -o-transform: translateY(700px); opacity: 0; }
  }
  
  @keyframes hinge {
  	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); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; }	
  	100% { transform: translateY(700px); opacity: 0; }
  }
  
  .hinge {
  	-webkit-animation-name: hinge;
  	-moz-animation-name: hinge;
  	-o-animation-name: hinge;
  	animation-name: hinge;
  }
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  
  @-webkit-keyframes rollIn {
  	0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); }
  	100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); }
  }
  
  @-moz-keyframes rollIn {
  	0% { opacity: 0; -moz-transform: translateX(-100%) rotate(-120deg); }
  	100% { opacity: 1; -moz-transform: translateX(0px) rotate(0deg); }
  }
  
  @-o-keyframes rollIn {
  	0% { opacity: 0; -o-transform: translateX(-100%) rotate(-120deg); }
  	100% { opacity: 1; -o-transform: translateX(0px) rotate(0deg); }
  }
  
  @keyframes rollIn {
  	0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
  	100% { opacity: 1; transform: translateX(0px) rotate(0deg); }
  }
  
  .rollIn {
  	-webkit-animation-name: rollIn;
  	-moz-animation-name: rollIn;
  	-o-animation-name: rollIn;
  	animation-name: rollIn;
  }
  
  /*===================================================================================*/
  /*  lightSpeedLeft                                                                  */
  /*===================================================================================*/
  
  @-webkit-keyframes lightSpeedLeft {
      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; }
  }
  
  @-moz-keyframes lightSpeedLeft {
      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; }
  }
  
  @-o-keyframes lightSpeedLeft {
      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; }
  }
  
  @keyframes lightSpeedLeft {
      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; }
  }
  
  .lightSpeedLeft {
      opacity: 1;
  
      -webkit-animation-name: lightSpeedLeft;
         -moz-animation-name: lightSpeedLeft;
           -o-animation-name: lightSpeedLeft;
              animation-name: lightSpeedLeft;
  
      -webkit-animation-timing-function: ease-out;
         -moz-animation-timing-function: ease-out;
           -o-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
  }
  
  .lightSpeedLeft {
      opacity: 1;
  
      -webkit-animation-duration: 0.5s;
         -moz-animation-duration: 0.5s;
           -o-animation-duration: 0.5s;
              animation-duration: 0.5s;
  }
  
  /*===================================================================================*/
  /*  lightSpeedRight                                                                  */
  /*===================================================================================*/
  
  @-webkit-keyframes lightSpeedRight {
      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; }
  }
  
  @-moz-keyframes lightSpeedRight {
      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; }
  }
  
  @-o-keyframes lightSpeedRight {
      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; }
  }
  
  @keyframes lightSpeedRight {
      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; }
  }
  
  .lightSpeedRight {
      opacity: 1;
  
      -webkit-animation-name: lightSpeedRight;
         -moz-animation-name: lightSpeedRight;
           -o-animation-name: lightSpeedRight;
              animation-name: lightSpeedRight;
  
      -webkit-animation-timing-function: ease-out;
         -moz-animation-timing-function: ease-out;
           -o-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
  }
  
  .lightSpeedRight {
      opacity: 1;
  
      -webkit-animation-duration: 0.5s;
         -moz-animation-duration: 0.5s;
           -o-animation-duration: 0.5s;
              animation-duration: 0.5s;
  }
/*})'"*/
/*-----------------------------------------------------------------------------
  
  	-	Revolution Slider 4.1 Captions -
  
  		Screen Stylesheet
  
  version:   	1.4.5
  date:      	27/11/13
  author:		themepunch
  email:     	info@themepunch.com
  website:   	http://www.themepunch.com
  -----------------------------------------------------------------------------*/
  
  
  
  /*************************
  	-	CAPTIONS	-
  **************************/
  
  .tp-static-layers	{	position:absolute; z-index:505; top:0px;left:0px}
  
  .tp-hide-revslider,.tp-caption.tp-hidden-caption	{	visibility:hidden !important; display:none !important}
  
  
  .tp-caption { z-index:1; white-space:nowrap}
  
  .tp-caption-demo .tp-caption	{	position:relative !important; display:inline-block; margin-bottom:10px; margin-right:20px !important}
  
  
  .tp-caption.whitedivider3px {
  
  	color: #000000;
  	text-shadow: none;
  	background-color: rgb(255, 255, 255);
  	background-color: rgba(255, 255, 255, 1);
  	text-decoration: none;
  	min-width: 408px;
  	min-height: 3px;
  	background-position: initial initial;
  	background-repeat: initial initial;
  	border-width: 0px;
  	border-color: #000000;
  	border-style: none;
  }
  
  
  .tp-caption.finewide_large_white {
  color:#ffffff;
  text-shadow:none;
  font-size:60px;
  line-height:60px;
  font-weight:300;
  font-family:"Open Sans", sans-serif;
  background-color:transparent;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:8px;
  border-width:0px;
  border-color:rgb(0, 0, 0);
  border-style:none;
  }
  
  .tp-caption.whitedivider3px {
  color:#000000;
  text-shadow:none;
  background-color:rgb(255, 255, 255);
  background-color:rgba(255, 255, 255, 1);
  text-decoration:none;
  font-size:0px;
  line-height:0;
  min-width:468px;
  min-height:3px;
  border-width:0px;
  border-color:rgb(0, 0, 0);
  border-style:none;
  }
  
  .tp-caption.finewide_medium_white {
  color:#ffffff;
  text-shadow:none;
  font-size:37px;
  line-height:37px;
  font-weight:300;
  font-family:"Open Sans", sans-serif;
  background-color:transparent;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:5px;
  border-width:0px;
  border-color:rgb(0, 0, 0);
  border-style:none;
  }
  
  .tp-caption.boldwide_small_white {
  font-size:25px;
  line-height:25px;
  font-weight:800;
  font-family:"Open Sans", sans-serif;
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:transparent;
  text-shadow:none;
  text-transform:uppercase;
  letter-spacing:5px;
  border-width:0px;
  border-color:rgb(0, 0, 0);
  border-style:none;
  }
  
  .tp-caption.whitedivider3px_vertical {
  color:#000000;
  text-shadow:none;
  background-color:rgb(255, 255, 255);
  background-color:rgba(255, 255, 255, 1);
  text-decoration:none;
  font-size:0px;
  line-height:0;
  min-width:3px;
  min-height:130px;
  border-width:0px;
  border-color:rgb(0, 0, 0);
  border-style:none;
  }
  
  .tp-caption.finewide_small_white {
  color:#ffffff;
  text-shadow:none;
  font-size:25px;
  line-height:25px;
  font-weight:300;
  font-family:"Open Sans", sans-serif;
  background-color:transparent;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:5px;
  border-width:0px;
  border-color:rgb(0, 0, 0);
  border-style:none;
  }
  
  .tp-caption.finewide_verysmall_white_mw {
  font-size:13px;
  line-height:25px;
  font-weight:400;
  font-family:"Open Sans", sans-serif;
  color:#ffffff;
  text-decoration:none;
  background-color:transparent;
  text-shadow:none;
  text-transform:uppercase;
  letter-spacing:5px;
  max-width:470px;
  white-space:normal !important;
  border-width:0px;
  border-color:rgb(0, 0, 0);
  border-style:none;
  }
  
  .tp-caption.lightgrey_divider {
  text-decoration:none;
  background-color:rgb(235, 235, 235);
  background-color:rgba(235, 235, 235, 1);
  width:370px;
  height:3px;
  background-position:initial initial;
  background-repeat:initial initial;
  border-width:0px;
  border-color:rgb(34, 34, 34);
  border-style:none;
  }
  
  .tp-caption.finewide_large_white {
  color: #FFF;
  text-shadow: none;
  font-size: 60px;
  line-height: 60px;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 8px;
  border-width: 0px;
  border-color: #000;
  border-style: none;
  }
  
  .tp-caption.finewide_medium_white {
  color: #FFF;
  text-shadow: none;
  font-size: 34px;
  line-height: 34px;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 5px;
  border-width: 0px;
  border-color: #000;
  border-style: none;
  }
  
  .tp-caption.huge_red {
  position:absolute;
  color:rgb(223,75,107);
  font-weight:400;
  font-size:150px;
  line-height:130px;
  font-family: 'Oswald', sans-serif;
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  background-color:rgb(45,49,54);
  padding:0px;
  }
  
  .tp-caption.middle_yellow {
  position:absolute;
  color:rgb(251,213,114);
  font-weight:600;
  font-size:50px;
  line-height:50px;
  font-family: 'Open Sans', sans-serif;
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  }
  
  .tp-caption.huge_thin_yellow {
  	position:absolute;
  color:rgb(251,213,114);
  font-weight:300;
  font-size:90px;
  line-height:90px;
  font-family: 'Open Sans', sans-serif;
  margin:0px;
  letter-spacing: 20px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  }
  
  .tp-caption.big_dark {
  position:absolute;
  color:#333;
  font-weight:700;
  font-size:70px;
  line-height:70px;
  font-family:"Open Sans";
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  }
  
  .tp-caption.medium_dark {
  position:absolute;
  color:#333;
  font-weight:300;
  font-size:40px;
  line-height:40px;
  font-family:"Open Sans";
  margin:0px;
  letter-spacing: 5px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  }
  
  
  .tp-caption.medium_grey {
  position:absolute;
  color:#fff;
  text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
  font-weight:700;
  font-size:20px;
  line-height:20px;
  font-family:Arial;
  padding:2px 4px;
  margin:0px;
  border-width:0px;
  border-style:none;
  background-color:#888;
  white-space:nowrap;
  }
  
  .tp-caption.small_text {
  position:absolute;
  color:#fff;
  text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
  font-weight:700;
  font-size:14px;
  line-height:20px;
  font-family:Arial;
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  }
  
  .tp-caption.medium_text {
  position:absolute;
  color:#fff;
  text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
  font-weight:700;
  font-size:20px;
  line-height:20px;
  font-family:Arial;
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  }
  
  
  .tp-caption.large_bold_white_25 {
  font-size:55px;
  line-height:65px;
  font-weight:700;
  font-family:"Open Sans";
  color:#fff;
  text-decoration:none;
  background-color:transparent;
  text-align:center;
  text-shadow:#000 0px 5px 10px;
  border-width:0px;
  border-color:rgb(255, 255, 255);
  border-style:none;
  }
  
  .tp-caption.medium_text_shadow {
  font-size:25px;
  line-height:25px;
  font-weight:600;
  font-family:"Open Sans";
  color:#fff;
  text-decoration:none;
  background-color:transparent;
  text-align:center;
  text-shadow:#000 0px 5px 10px;
  border-width:0px;
  border-color:rgb(255, 255, 255);
  border-style:none;
  }
  
  .tp-caption.large_text {
  position:absolute;
  color:#fff;
  text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
  font-weight:700;
  font-size:40px;
  line-height:40px;
  font-family:Arial;
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  }
  
  .tp-caption.medium_bold_grey {
  font-size:30px;
  line-height:30px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(102, 102, 102);
  text-decoration:none;
  background-color:transparent;
  text-shadow:none;
  margin:0px;
  padding:1px 4px 0px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.very_large_text {
  position:absolute;
  color:#fff;
  text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
  font-weight:700;
  font-size:60px;
  line-height:60px;
  font-family:Arial;
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  letter-spacing:-2px;
  }
  
  .tp-caption.very_big_white {
  position:absolute;
  color:#fff;
  text-shadow:none;
  font-weight:800;
  font-size:60px;
  line-height:60px;
  font-family:Arial;
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  padding:0px 4px;
  padding-top:1px;
  background-color:#000;
  }
  
  .tp-caption.very_big_black {
  position:absolute;
  color:#000;
  text-shadow:none;
  font-weight:700;
  font-size:60px;
  line-height:60px;
  font-family:Arial;
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  padding:0px 4px;
  padding-top:1px;
  background-color:#fff;
  }
  
  .tp-caption.modern_medium_fat {
  position:absolute;
  color:#000;
  text-shadow:none;
  font-weight:800;
  font-size:24px;
  line-height:20px;
  font-family:"Open Sans", sans-serif;
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  }
  
  .tp-caption.modern_medium_fat_white {
  position:absolute;
  color:#fff;
  text-shadow:none;
  font-weight:800;
  font-size:24px;
  line-height:20px;
  font-family:"Open Sans", sans-serif;
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  }
  
  .tp-caption.modern_medium_light {
  position:absolute;
  color:#000;
  text-shadow:none;
  font-weight:300;
  font-size:24px;
  line-height:20px;
  font-family:"Open Sans", sans-serif;
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  }
  
  .tp-caption.modern_big_bluebg {
  position:absolute;
  color:#fff;
  text-shadow:none;
  font-weight:800;
  font-size:30px;
  line-height:36px;
  font-family:"Open Sans", sans-serif;
  padding:3px 10px;
  margin:0px;
  border-width:0px;
  border-style:none;
  background-color:#4e5b6c;
  letter-spacing:0;
  }
  
  .tp-caption.modern_big_redbg {
  position:absolute;
  color:#fff;
  text-shadow:none;
  font-weight:300;
  font-size:30px;
  line-height:36px;
  font-family:"Open Sans", sans-serif;
  padding:3px 10px;
  padding-top:1px;
  margin:0px;
  border-width:0px;
  border-style:none;
  background-color:#de543e;
  letter-spacing:0;
  }
  
  .tp-caption.modern_small_text_dark {
  position:absolute;
  color:#555;
  text-shadow:none;
  font-size:14px;
  line-height:22px;
  font-family:Arial;
  margin:0px;
  border-width:0px;
  border-style:none;
  white-space:nowrap;
  }
  
  .tp-caption.boxshadow {
  -moz-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
  box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
  }
  
  .tp-caption.black {
  color:#000;
  text-shadow:none;
  }
  
  .tp-caption.noshadow {
  text-shadow:none;
  }
  
  .tp-caption a {
  color:#ff7302;
  text-shadow:none;
  -webkit-transition:all 0.2s ease-out;
  -moz-transition:all 0.2s ease-out;
  -o-transition:all 0.2s ease-out;
  -ms-transition:all 0.2s ease-out;
  }
  
  .tp-caption a:hover {
  color:#ffa902;
  }
  
  .tp-caption.thinheadline_dark {
  position:absolute;
  color:rgba(0,0,0,0.85);
  text-shadow:none;
  font-weight:300;
  font-size:30px;
  line-height:30px;
  font-family:"Open Sans";
  background-color:transparent;
  }
  
  .tp-caption.thintext_dark {
  position:absolute;
  color:rgba(0,0,0,0.85);
  text-shadow:none;
  font-weight:300;
  font-size:16px;
  line-height:26px;
  font-family:"Open Sans";
  background-color:transparent;
  }
  
  .tp-caption.medium_bg_red a {
  	color: #fff;
      text-decoration: none;
  }
  
  .tp-caption.medium_bg_red a:hover {
  	color: #fff;
      text-decoration: underline;
  }
  
  .tp-caption.smoothcircle {
  font-size:30px;
  line-height:75px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:rgb(0, 0, 0);
  background-color:rgba(0, 0, 0, 0.498039);
  padding:50px 25px;
  text-align:center;
  border-radius:500px 500px 500px 500px;
  border-width:0px;
  border-color:rgb(0, 0, 0);
  border-style:none;
  }
  
  .tp-caption.largeblackbg {
  font-size:50px;
  line-height:70px;
  font-weight:300;
  font-family:"Open Sans";
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:rgb(0, 0, 0);
  padding:0px 20px 5px;
  text-shadow:none;
  border-width:0px;
  border-color:rgb(255, 255, 255);
  border-style:none;
  }
  
  .tp-caption.largepinkbg {
  position:absolute;
  color:#fff;
  text-shadow:none;
  font-weight:300;
  font-size:50px;
  line-height:70px;
  font-family:"Open Sans";
  background-color:#db4360;
  padding:0px 20px;
  -webkit-border-radius:0px;
  -moz-border-radius:0px;
  border-radius:0px;
  }
  
  .tp-caption.largewhitebg {
  position:absolute;
  color:#000;
  text-shadow:none;
  font-weight:300;
  font-size:50px;
  line-height:70px;
  font-family:"Open Sans";
  background-color:#fff;
  padding:0px 20px;
  -webkit-border-radius:0px;
  -moz-border-radius:0px;
  border-radius:0px;
  }
  
  .tp-caption.largegreenbg {
  position:absolute;
  color:#fff;
  text-shadow:none;
  font-weight:300;
  font-size:50px;
  line-height:70px;
  font-family:"Open Sans";
  background-color:#67ae73;
  padding:0px 20px;
  -webkit-border-radius:0px;
  -moz-border-radius:0px;
  border-radius:0px;
  }
  
  .tp-caption.excerpt {
  font-size:36px;
  line-height:36px;
  font-weight:700;
  font-family:Arial;
  color:#ffffff;
  text-decoration:none;
  background-color:rgba(0, 0, 0, 1);
  text-shadow:none;
  margin:0px;
  letter-spacing:-1.5px;
  padding:1px 4px 0px 4px;
  width:150px;
  white-space:normal !important;
  height:auto;
  border-width:0px;
  border-color:rgb(255, 255, 255);
  border-style:none;
  }
  
  .tp-caption.large_bold_grey {
  font-size:60px;
  line-height:60px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(102, 102, 102);
  text-decoration:none;
  background-color:transparent;
  text-shadow:none;
  margin:0px;
  padding:1px 4px 0px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.medium_thin_grey {
  font-size:34px;
  line-height:30px;
  font-weight:300;
  font-family:"Open Sans";
  color:rgb(102, 102, 102);
  text-decoration:none;
  background-color:transparent;
  padding:1px 4px 0px;
  text-shadow:none;
  margin:0px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.small_thin_grey {
  font-size:18px;
  line-height:26px;
  font-weight:300;
  font-family:"Open Sans";
  color:rgb(117, 117, 117);
  text-decoration:none;
  background-color:transparent;
  padding:1px 4px 0px;
  text-shadow:none;
  margin:0px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.lightgrey_divider {
  text-decoration:none;
  background-color:rgba(235, 235, 235, 1);
  width:370px;
  height:3px;
  background-position:initial initial;
  background-repeat:initial initial;
  border-width:0px;
  border-color:rgb(34, 34, 34);
  border-style:none;
  }
  
  .tp-caption.large_bold_darkblue {
  font-size:58px;
  line-height:60px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(52, 73, 94);
  text-decoration:none;
  background-color:transparent;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.medium_bg_darkblue {
  font-size:20px;
  line-height:20px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:rgb(52, 73, 94);
  padding:10px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.medium_bold_red {
  font-size:24px;
  line-height:30px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(227, 58, 12);
  text-decoration:none;
  background-color:transparent;
  padding:0px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.medium_light_red {
  font-size:21px;
  line-height:26px;
  font-weight:300;
  font-family:"Open Sans";
  color:rgb(227, 58, 12);
  text-decoration:none;
  background-color:transparent;
  padding:0px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.medium_bg_red {
  font-size:20px;
  line-height:20px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:rgb(227, 58, 12);
  padding:10px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.medium_bold_orange {
  font-size:24px;
  line-height:30px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(243, 156, 18);
  text-decoration:none;
  background-color:transparent;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.medium_bg_orange {
  font-size:20px;
  line-height:20px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:rgb(243, 156, 18);
  padding:10px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.grassfloor {
  text-decoration:none;
  background-color:rgba(160, 179, 151, 1);
  width:4000px;
  height:150px;
  border-width:0px;
  border-color:rgb(34, 34, 34);
  border-style:none;
  }
  
  .tp-caption.large_bold_white {
  font-size:58px;
  line-height:60px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:transparent;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.medium_light_white {
  font-size:30px;
  line-height:36px;
  font-weight:300;
  font-family:"Open Sans";
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:transparent;
  padding:0px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.mediumlarge_light_white {
  font-size:34px;
  line-height:40px;
  font-weight:300;
  font-family:"Open Sans";
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:transparent;
  padding:0px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.mediumlarge_light_white_center {
  font-size:34px;
  line-height:40px;
  font-weight:300;
  font-family:"Open Sans";
  color:#ffffff;
  text-decoration:none;
  background-color:transparent;
  padding:0px 0px 0px 0px;
  text-align:center;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.medium_bg_asbestos {
  font-size:20px;
  line-height:20px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:rgb(127, 140, 141);
  padding:10px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.medium_light_black {
  font-size:30px;
  line-height:36px;
  font-weight:300;
  font-family:"Open Sans";
  color:rgb(0, 0, 0);
  text-decoration:none;
  background-color:transparent;
  padding:0px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.large_bold_black {
  font-size:58px;
  line-height:60px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(0, 0, 0);
  text-decoration:none;
  background-color:transparent;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.mediumlarge_light_darkblue {
  font-size:34px;
  line-height:40px;
  font-weight:300;
  font-family:"Open Sans";
  color:rgb(52, 73, 94);
  text-decoration:none;
  background-color:transparent;
  padding:0px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.small_light_white {
  font-size:17px;
  line-height:28px;
  font-weight:300;
  font-family:"Open Sans";
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:transparent;
  padding:0px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.roundedimage {
  border-width:0px;
  border-color:rgb(34, 34, 34);
  border-style:none;
  }
  
  .tp-caption.large_bg_black {
  font-size:40px;
  line-height:40px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:rgb(0, 0, 0);
  padding:10px 20px 15px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  .tp-caption.mediumwhitebg {
  font-size:30px;
  line-height:30px;
  font-weight:300;
  font-family:"Open Sans";
  color:rgb(0, 0, 0);
  text-decoration:none;
  background-color:rgb(255, 255, 255);
  padding:5px 15px 10px;
  text-shadow:none;
  border-width:0px;
  border-color:rgb(0, 0, 0);
  border-style:none;
  }
  
  .tp-caption.medium_bg_orange_new1 {
  font-size:20px;
  line-height:20px;
  font-weight:800;
  font-family:"Open Sans";
  color:rgb(255, 255, 255);
  text-decoration:none;
  background-color:rgb(243, 156, 18);
  padding:10px;
  border-width:0px;
  border-color:rgb(255, 214, 88);
  border-style:none;
  }
  
  
  
  .tp-caption.boxshadow{
  		-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  		-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  	}
  
  .tp-caption.black{
  		color: #000;
  		text-shadow: none;
  		font-weight: 300;
  		font-size: 19px;
  		line-height: 19px;
  		font-family: 'Open Sans', sans;
  	}
  
  .tp-caption.noshadow {
  		text-shadow: none;
  	}
  
  
  .tp_inner_padding	{	box-sizing:border-box;
  						-webkit-box-sizing:border-box;
  						-moz-box-sizing:border-box;
  						max-height:none !important;	}
  
  
  /*.tp-caption			{	transform:none !important}*/
  
  
  /*********************************
  	-	SPECIAL TP CAPTIONS -
  **********************************/
  .tp-caption .frontcorner		{
  										width: 0;
  										height: 0;
  										border-left: 40px solid transparent;
  										border-right: 0px solid transparent;
  										border-top: 40px solid #00A8FF;
  										position: absolute;left:-40px;top:0px;
  									}
  
  .tp-caption .backcorner		{
  										width: 0;
  										height: 0;
  										border-left: 0px solid transparent;
  										border-right: 40px solid transparent;
  										border-bottom: 40px solid #00A8FF;
  										position: absolute;right:0px;top:0px;
  									}
  
  .tp-caption .frontcornertop		{
  										width: 0;
  										height: 0;
  										border-left: 40px solid transparent;
  										border-right: 0px solid transparent;
  										border-bottom: 40px solid #00A8FF;
  										position: absolute;left:-40px;top:0px;
  									}
  
  .tp-caption .backcornertop		{
  										width: 0;
  										height: 0;
  										border-left: 0px solid transparent;
  										border-right: 40px solid transparent;
  										border-top: 40px solid #00A8FF;
  										position: absolute;right:0px;top:0px;
  									}
  
  /******************************
  	-	BUTTONS	-
  *******************************/
  
  .tp-simpleresponsive .button				{	padding:6px 13px 5px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; height:30px;
  												cursor:pointer;
  												color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important;
  												background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/images/gradient/g30.png) repeat-x top; font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px;
  											}
  
  .tp-simpleresponsive  .button.big			{	color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px;  line-height:57px !important; background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/images/gradient/g40.png) repeat-x top}
  
  
  .tp-simpleresponsive  .purchase:hover,
  .tp-simpleresponsive  .button:hover,
  .tp-simpleresponsive  .button.big:hover		{	background-position:bottom, 15px 11px}@media only screen and (min-width: 768px) and (max-width: 959px) {
  
}@media only screen and (min-width: 480px) and (max-width: 767px) {
 .tp-simpleresponsive  .button	{	padding:4px 8px 3px; line-height:25px !important; font-size:11px !important;font-weight:normal;	}
  		.tp-simpleresponsive  a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 } 
}@media only screen and (min-width: 0px) and (max-width: 479px) {
 .tp-simpleresponsive  .button	{	padding:2px 5px 2px; line-height:20px !important; font-size:10px !important}
  		.tp-simpleresponsive  a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 } 
}/*	BUTTON COLORS	*/
  
  
  
  .tp-simpleresponsive  .button.green, .tp-simpleresponsive  .button:hover.green,
  .tp-simpleresponsive  .purchase.green, .tp-simpleresponsive  .purchase:hover.green			{ background-color:#21a117; -webkit-box-shadow:  0px 3px 0px 0px #104d0b;        -moz-box-shadow:   0px 3px 0px 0px #104d0b;        box-shadow:   0px 3px 0px 0px #104d0b;  }
  
  
  .tp-simpleresponsive  .button.blue, .tp-simpleresponsive  .button:hover.blue,
  .tp-simpleresponsive  .purchase.blue, .tp-simpleresponsive  .purchase:hover.blue			{ background-color:#1d78cb; -webkit-box-shadow:  0px 3px 0px 0px #0f3e68;        -moz-box-shadow:   0px 3px 0px 0px #0f3e68;        box-shadow:   0px 3px 0px 0px #0f3e68}
  
  
  .tp-simpleresponsive  .button.red, .tp-simpleresponsive  .button:hover.red,
  .tp-simpleresponsive  .purchase.red, .tp-simpleresponsive  .purchase:hover.red				{ background-color:#cb1d1d; -webkit-box-shadow:  0px 3px 0px 0px #7c1212;        -moz-box-shadow:   0px 3px 0px 0px #7c1212;        box-shadow:   0px 3px 0px 0px #7c1212}
  
  .tp-simpleresponsive  .button.orange, .tp-simpleresponsive  .button:hover.orange,
  .tp-simpleresponsive  .purchase.orange, .tp-simpleresponsive  .purchase:hover.orange		{ background-color:#ff7700; -webkit-box-shadow:  0px 3px 0px 0px #a34c00;        -moz-box-shadow:   0px 3px 0px 0px #a34c00;        box-shadow:   0px 3px 0px 0px #a34c00}
  
  .tp-simpleresponsive  .button.darkgrey, .tp-simpleresponsive  .button.grey,
  .tp-simpleresponsive  .button:hover.darkgrey, .tp-simpleresponsive  .button:hover.grey,
  .tp-simpleresponsive  .purchase.darkgrey, .tp-simpleresponsive  .purchase:hover.darkgrey	{ background-color:#555; -webkit-box-shadow:  0px 3px 0px 0px #222;        -moz-box-shadow:   0px 3px 0px 0px #222;        box-shadow:   0px 3px 0px 0px #222}
  
  .tp-simpleresponsive  .button.lightgrey, .tp-simpleresponsive  .button:hover.lightgrey,
  .tp-simpleresponsive  .purchase.lightgrey, .tp-simpleresponsive  .purchase:hover.lightgrey	{ background-color:#888; -webkit-box-shadow:  0px 3px 0px 0px #555;        -moz-box-shadow:   0px 3px 0px 0px #555;        box-shadow:   0px 3px 0px 0px #555}
  
  
  
  /****************************************************************
  
  	-	SET THE ANIMATION EVEN MORE SMOOTHER ON ANDROID   -
  
  ******************************************************************/
  
  /*.tp-simpleresponsive				{	-webkit-perspective: 1500px;
  										-moz-perspective: 1500px;
  										-o-perspective: 1500px;
  										-ms-perspective: 1500px;
  										perspective: 1500px;
  									}*/
  
  
  
  
  /**********************************************
  	-	FULLSCREEN AND FULLWIDHT CONTAINERS	-
  **********************************************/
  
  .fullscreen-container {
  		width:100%;
  		position:relative;
  		padding:0;
  }
  
  
  
  .fullwidthbanner-container{
  	width:100%;
  	position:relative;
  	padding:0;
  	overflow:hidden;
  }
  
  .fullwidthbanner-container .fullwidthbanner{
  	width:100%;
  	position:relative;
  }
  
  
  
  /************************************************
  	  - SOME CAPTION MODIFICATION AT START  -
  *************************************************/
  .tp-simpleresponsive .caption,
  .tp-simpleresponsive .tp-caption {
  	/*-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";		-moz-opacity: 0;	-khtml-opacity: 0;	opacity: 0; */
  	position:absolute;visibility: hidden;
  	-webkit-font-smoothing: antialiased !important;
  }
  
  
  .tp-simpleresponsive img	{	max-width:none}
  
  
  
  /******************************
  	-	IE8 HACKS	-
  *******************************/
  .noFilterClass {
  	filter:none !important;
  }
  
  
  /******************************
  	-	SHADOWS		-
  ******************************/
  .tp-bannershadow  {
  		position:absolute;
  
  		margin-left:auto;
  		margin-right:auto;
  		-moz-user-select: none;
          -khtml-user-select: none;
          -webkit-user-select: none;
          -o-user-select: none;
  	}
  
  .tp-bannershadow.tp-shadow1 {	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/shadow1.png) no-repeat; background-size:100% 100%; width:890px; height:60px; bottom:-60px}
  .tp-bannershadow.tp-shadow2 {	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/shadow2.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px}
  .tp-bannershadow.tp-shadow3 {	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/shadow3.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px}
  
  
  /********************************
  	-	FULLSCREEN VIDEO	-
  *********************************/
  .caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%}
  .caption.fullscreenvideo iframe,
  .caption.fullscreenvideo video	{ width:100% !important; height:100% !important; display: none}
  
  .tp-caption.fullscreenvideo	{	left:0px; top:0px; position:absolute;width:100%;height:100%}
  
  
  .tp-caption.fullscreenvideo iframe,
  .tp-caption.fullscreenvideo iframe video	{ width:100% !important; height:100% !important; display: none}
  
  
  .fullcoveredvideo video,
  .fullscreenvideo video					{	background: #000}
  
  .fullcoveredvideo .tp-poster		{	background-position: center center;background-size: cover;width:100%;height:100%;top:0px;left:0px}
  
  .html5vid.videoisplaying .tp-poster	{	display: none}
  
  .tp-video-play-button		{	background:#000;
  								background:rgba(0,0,0,0.3);
  								padding:5px;
  								border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;
  								position: absolute;
  								top: 50%;
  								left: 50%;
  								font-size: 40px;
  								color: #FFF;
  								z-index: 3;
  								margin-top: -27px;
  								margin-left: -28px;
  								text-align: center;
  								cursor: pointer;
  							}
  
  .html5vid .tp-revstop		{	width:15px;height:20px; border-left:5px solid #fff; border-right:5px solid #fff; position:relative;margin:10px 20px; box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}
  .html5vid .tp-revstop	{	display:none}
  .html5vid.videoisplaying .revicon-right-dir	{	display:none}
  .html5vid.videoisplaying .tp-revstop	{	display:block}
  
  .html5vid.videoisplaying .tp-video-play-button	{	display:none}
  .html5vid:hover .tp-video-play-button { display:block}
  
  .fullcoveredvideo .tp-video-play-button	{	display:none !important}
  
  
  /********************************
  	-	FULLSCREEN VIDEO ENDS	-
  *********************************/
  
  
  /********************************
  	-	DOTTED OVERLAYS	-
  *********************************/
  .tp-dottedoverlay						{	background-repeat:repeat;width:100%;height:100%;position:absolute;top:0px;left:0px;z-index:4}
  .tp-dottedoverlay.twoxtwo				{	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/gridtile.png)}
  .tp-dottedoverlay.twoxtwowhite			{	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/gridtile_white.png)}
  .tp-dottedoverlay.threexthree			{	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/gridtile_3x3.png)}
  .tp-dottedoverlay.threexthreewhite		{	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/gridtile_3x3_white.png)}
  /********************************
  	-	DOTTED OVERLAYS ENDS	-
  *********************************/
  
  
  /************************
  	-	NAVIGATION	-
  *************************/
  
  /** BULLETS **/
  
  .tpclear		{	clear:both}
  
  
  .tp-bullets									{	z-index:1000; position:absolute;
  												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  												-moz-opacity: 1;
  												-khtml-opacity: 1;
  												opacity: 1;
  												-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;-webkit-transform: translateZ(5px);
  											}
  .tp-bullets.hidebullets					{
  												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  												-moz-opacity: 0;
  												-khtml-opacity: 0;
  												opacity: 0;
  											}
  
  
  .tp-bullets.simplebullets.navbar						{ 	border:1px solid #666; border-bottom:1px solid #444; background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/boxed_bgtile.png); height:40px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px }
  
  .tp-bullets.simplebullets.navbar-old					{ 	 background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/navigdots_bgtile.png); height:35px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px }
  
  
  .tp-bullets.simplebullets.round .bullet					{	cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/bullet.png) no-Repeat top left;	width:20px;	height:20px;  margin-right:0px; float:left; margin-top:0px; margin-left:3px}
  .tp-bullets.simplebullets.round .bullet.last			{	margin-right:3px}
  
  .tp-bullets.simplebullets.round-old .bullet				{	cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/bullets.png) no-Repeat bottom left;	width:23px;	height:23px;  margin-right:0px; float:left; margin-top:0px}
  .tp-bullets.simplebullets.round-old .bullet.last		{	margin-right:0px}
  
  
  /**	SQUARE BULLETS **/
  .tp-bullets.simplebullets.square .bullet				{	cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:0px}
  .tp-bullets.simplebullets.square .bullet.last			{	margin-right:0px}
  
  
  /**	SQUARE BULLETS **/
  .tp-bullets.simplebullets.square-old .bullet			{	cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:0px}
  .tp-bullets.simplebullets.square-old .bullet.last		{	margin-right:0px}
  
  
  /** navbar NAVIGATION VERSION **/
  .tp-bullets.simplebullets.navbar .bullet			{	cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/bullet_boxed.png) no-Repeat top left;	width:18px;	height:19px;   margin-right:5px; float:left; margin-top:0px}
  
  .tp-bullets.simplebullets.navbar .bullet.first		{	margin-left:0px !important}
  .tp-bullets.simplebullets.navbar .bullet.last		{	margin-right:0px !important}
  
  
  
  /** navbar NAVIGATION VERSION **/
  .tp-bullets.simplebullets.navbar-old .bullet			{	cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/navigdots.png) no-Repeat bottom left;	width:15px;	height:15px;  margin-left:5px !important; margin-right:5px !important;float:left; margin-top:10px}
  .tp-bullets.simplebullets.navbar-old .bullet.first		{	margin-left:0px !important}
  .tp-bullets.simplebullets.navbar-old .bullet.last		{	margin-right:0px !important}
  
  
  .tp-bullets.simplebullets .bullet:hover,
  .tp-bullets.simplebullets .bullet.selected				{	background-position:top left}
  
  .tp-bullets.simplebullets.round .bullet:hover,
  .tp-bullets.simplebullets.round .bullet.selected,
  .tp-bullets.simplebullets.navbar .bullet:hover,
  .tp-bullets.simplebullets.navbar .bullet.selected		{	background-position:bottom left}
  
  
  
  /*************************************
  	-	TP ARROWS 	-
  **************************************/
  .tparrows												{	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  															-moz-opacity: 1;
  															-khtml-opacity: 1;
  															opacity: 1;
  															-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;
  															-webkit-transform: translateZ(5000px);
  															-webkit-transform-style: flat;
  															-webkit-backface-visibility: hidden;
  															z-index:600;
  															position: relative;
  
  														}
  .tparrows.hidearrows									{
  															-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  															-moz-opacity: 0;
  															-khtml-opacity: 0;
  															opacity: 0;
  														}
  .tp-leftarrow											{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/large_left.png) no-Repeat top left;	width:40px;	height:40px;   }
  .tp-rightarrow											{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/large_right.png) no-Repeat top left;	width:40px;	height:40px;   }
  
  
  .tp-leftarrow.round										{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/small_left.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left; margin-top:0px;	}
  .tp-rightarrow.round									{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/small_right.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left;	margin-top:0px}
  
  
  .tp-leftarrow.round-old									{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/arrow_left.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left; margin-top:0px;	}
  .tp-rightarrow.round-old								{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/arrow_right.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left;	margin-top:0px}
  
  
  .tp-leftarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/small_left_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-right:6px; margin-top:12px}
  .tp-rightarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/small_right_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-left:6px; margin-top:12px}
  
  
  .tp-leftarrow.navbar-old								{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/arrowleft.png) no-Repeat top left;		width:9px;	height:16px;   float:left;	margin-right:6px; margin-top:10px}
  .tp-rightarrow.navbar-old								{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/arrowright.png) no-Repeat top left;	width:9px;	height:16px;   float:left;	margin-left:6px; margin-top:10px}
  
  .tp-leftarrow.navbar-old.thumbswitharrow				{	margin-right:10px}
  .tp-rightarrow.navbar-old.thumbswitharrow				{	margin-left:0px}
  
  .tp-leftarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:0px}
  .tp-rightarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:0px}
  
  
  .tp-leftarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:0px}
  .tp-rightarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:0px}
  
  
  .tp-leftarrow.default									{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/large_left.png) no-Repeat 0 0;	width:40px;	height:40px;
  
  														}
  .tp-rightarrow.default									{	z-index:100;cursor:pointer; position:relative;	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/large_right.png) no-Repeat 0 0;	width:40px;	height:40px;
  
  														}
  
  
  
  
  .tp-leftarrow:hover,
  .tp-rightarrow:hover 									{	background-position:bottom left}
  
  
  
  
  
  
  /****************************************************************************************************
  	-	TP THUMBS 	-
  *****************************************************************************************************
  
   - tp-thumbs & tp-mask Width is the width of the basic Thumb Container (500px basic settings)
  
   - .bullet width & height is the dimension of a simple Thumbnail (basic 100px x 50px)
  
   *****************************************************************************************************/
  
  
  .tp-bullets.tp-thumbs						{	z-index:1000; position:absolute; padding:3px;background-color:#fff;
  												width:500px;height:50px; 			/* THE DIMENSIONS OF THE THUMB CONTAINER */
  												margin-top:-50px;
  											}
  
  
  .fullwidthbanner-container .tp-thumbs		{  padding:3px}
  
  .tp-bullets.tp-thumbs .tp-mask				{	width:500px; height:50px;  			/* THE DIMENSIONS OF THE THUMB CONTAINER */
  												overflow:hidden; position:relative}
  
  
  .tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer	{	width:5000px; position:absolute}
  
  .tp-bullets.tp-thumbs .bullet				{   width:100px; height:50px; 			/* THE DIMENSION OF A SINGLE THUMB */
  												cursor:pointer; overflow:hidden;background:none;margin:0;float:left;
  												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  												/*filter: alpha(opacity=50);	*/
  												-moz-opacity: 0.5;
  												-khtml-opacity: 0.5;
  												opacity: 0.5;
  
  												-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
  											}
  
  
  .tp-bullets.tp-thumbs .bullet:hover,
  .tp-bullets.tp-thumbs .bullet.selected		{ 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  
  												-moz-opacity: 1;
  												-khtml-opacity: 1;
  												opacity: 1;
  											}
  .tp-thumbs img								{	width:100%}
  
  
  /************************************
  		-	TP BANNER TIMER		-
  *************************************/
  .tp-bannertimer								{	width:100%; height:10px; background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/timer.png);position:absolute; z-index:200;top:0px}
  .tp-bannertimer.tp-bottom					{	bottom:0px;height:5px; top:auto}
  
  
  
  
  /***************************************
  	-	RESPONSIVE SETTINGS 	-
  ****************************************/@media only screen and (min-width: 0px) and (max-width: 479px) {
 .responsive .tp-bullets	{	display:none}
  				.responsive .tparrows	{	display:none} 
}/*********************************************
  
  	-	BASIC SETTINGS FOR THE BANNER	-
  
  ***********************************************/
  
   .tp-simpleresponsive img {
  		-moz-user-select: none;
          -khtml-user-select: none;
          -webkit-user-select: none;
          -o-user-select: none;
  }
  
  
  
  .tp-simpleresponsive a{	text-decoration:none}
  
  .tp-simpleresponsive ul {
  	list-style:none;
  	padding:0;
  	margin:0;
  }
  
  .tp-simpleresponsive >ul >li{
  	list-stye:none;
  	position:absolute;
  	visibility:hidden;
  }
  /*  CAPTION SLIDELINK   **/
  .caption.slidelink a div,
  .tp-caption.slidelink a div {	width:3000px; height:1500px;  background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/coloredbg.png) repeat}
  
  .tp-caption.slidelink a span	{	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/coloredbg.png) repeat}
  
  
  
  /*****************************************
  	-	NAVIGATION FANCY EXAMPLES	-
  *****************************************/
  
  .tparrows .tp-arr-imgholder								{ display: none}
  .tparrows .tp-arr-titleholder							{ display: none}
  
  
  
  /*****************************************
  	-	NAVIGATION FANCY EXAMPLES	-
  *****************************************/
  
  /* NAVIGATION PREVIEW 1 */
  .tparrows.preview1 							{	width:100px;height:100px;-webkit-transform-style: preserve-3d; -webkit-perspective: 1000; -moz-perspective: 1000; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden;background: transparent}
  .tparrows.preview1:after					{	position:absolute; left:0px;top:0px; font-family: "revicons"; color:#fff; font-size:30px; width:100px;height:100px;text-align: center; background:#fff;background:rgba(0,0,0,0.15);z-index:2;line-height:100px; -webkit-transition: background 0.3s, color 0.3s; -moz-transition: background 0.3s, color 0.3s; transition: background 0.3s, color 0.3s}
  .tp-rightarrow.preview1:after				{	content: '\e825';  }
  .tp-leftarrow.preview1:after				{	content: '\e824';  }
  
  .tparrows.preview1:hover:after 				{	background:rgba(255,255,255,1); color:#aaa}
  
  .tparrows.preview1 .tp-arr-imgholder 		{	background-size:cover; background-position:center center; display:block;width:100%;height:100%;position:absolute;top:0px;
  												-webkit-transition: -webkit-transform 0.3s;
  												transition: transform 0.3s;
  												-webkit-backface-visibility: hidden;
  												backface-visibility: hidden;
  											}
  /*.tparrows.preview1 .tp-arr-iwrapper			{	  -webkit-transition: all 0.3s;transition: all 0.3s;
  												-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0}
  .tparrows.preview1:hover .tp-arr-iwrapper	{	  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1}*/
  
  
  .tp-rightarrow.preview1 .tp-arr-imgholder	{	right:100%;
  												-webkit-transform: rotateY(-90deg);
  												transform: rotateY(-90deg);
  												-webkit-transform-origin: 100% 50%;
  												transform-origin: 100% 50%;
  												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;
  
  
  
  											}
  .tp-leftarrow.preview1 .tp-arr-imgholder	{	left:100%;
  												-webkit-transform: rotateY(90deg);
  												transform: rotateY(90deg);
  												-webkit-transform-origin: 0% 50%;
  												transform-origin: 0% 50%;
  												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;
  
  
  
  											}
  
  
  .tparrows.preview1:hover .tp-arr-imgholder	{	-webkit-transform: rotateY(0deg);
  												transform: rotateY(0deg);
  												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;
  
  											}@media only screen and (min-width: 768px) and (max-width: 979px) {
 .tparrows.preview1,
  		.tparrows.preview1:after	{	width:80px; height:80px;line-height:80px; font-size:24px} 
}@media only screen and (min-width: 480px) and (max-width: 767px) {
 .tparrows.preview1,
  		.tparrows.preview1:after	{	width:60px; height:60px;line-height:60px;font-size:20px} 
}@media only screen and (min-width: 0px) and (max-width: 479px) {
 .tparrows.preview1,
  		.tparrows.preview1:after	{	width:40px; height:40px;line-height:40px; font-size:12px} 
}/* PREVIEW 1 BULLETS */
  
  .tp-bullets.preview1 						{ 	height: 21px}
  .tp-bullets.preview1 .bullet 				{	cursor: pointer;
  											    position: relative !important;
  											    background: rgba(0, 0, 0, 0.15) !important;
  											    /*-webkit-border-radius: 10px;
  											    border-radius: 10px;*/
  											    -webkit-box-shadow: none;
  											    -moz-box-shadow: none;
  											    box-shadow: none;
  											    width: 5px !important;
  											    height: 5px !important;
  											    border: 8px solid rgba(0, 0, 0, 0) !important;
  											    display: inline-block;
  											    margin-right: 5px !important;
  											    margin-bottom: 0px !important;
  											    -webkit-transition: background-color 0.2s, border-color 0.2s;
  											    -moz-transition: background-color 0.2s, border-color 0.2s;
  											    -o-transition: background-color 0.2s, border-color 0.2s;
  											    -ms-transition: background-color 0.2s, border-color 0.2s;
  											    transition: background-color 0.2s, border-color 0.2s;
  											    float:none !important;
  											    box-sizing:content-box;
  												-moz-box-sizing:content-box;
  												-webkit-box-sizing:content-box;
  }
  .tp-bullets.preview1 .bullet.last 			{	margin-right: 0px}
  .tp-bullets.preview1 .bullet:hover,
  .tp-bullets.preview1 .bullet.selected 		{	-webkit-box-shadow: none;
  											    -moz-box-shadow: none;
  											    box-shadow: none;
  												background: #aaa !important;
  												width: 5px !important;
  											    height: 5px !important;
  											    border: 8px solid rgba(255, 255, 255, 1) !important;
  }
  
  
  
  
  /* NAVIGATION PREVIEW 2 */
  .tparrows.preview2 							{	min-width:60px; min-height:60px; background:#fff; ;
  
  												border-radius:30px;-moz-border-radius:30px;-webkit-border-radius:30px;
  												overflow:hidden;
  												-webkit-transition: -webkit-transform 1.3s;
  												-webkit-transition: width 0.3s, background-color 0.3s, opacity 0.3s;
  												transition: width 0.3s, background-color 0.3s, opacity 0.3s;
  												backface-visibility: hidden;
  }
  .tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; color:#aaa; font-size:25px; margin-top: -12px; -webkit-transition: color 0.3s; -moz-transition: color 0.3s; transition: color 0.3s }
  .tp-rightarrow.preview2:after				{	content: '\e81e';  right:18px}
  .tp-leftarrow.preview2:after				{	content: '\e81f';  left:18px}
  
  
  .tparrows.preview2 .tp-arr-titleholder 		{	background-size:cover; background-position:center center; display:block; visibility:hidden;position:relative;top:0px;
  												-webkit-transition: -webkit-transform 0.3s;
  												transition: transform 0.3s;
  												-webkit-backface-visibility: hidden;
  												backface-visibility: hidden;
  												white-space: nowrap;
  												color: #000;
  												text-transform: uppercase;
  												font-weight: 400;
  												font-size: 14px;
  												line-height: 60px;
  												padding:0px 10px;
  											}
  
  .tp-rightarrow.preview2 .tp-arr-titleholder	{	 right:50px;
  												-webkit-transform: translateX(-100%);
  												transform: translateX(-100%);
  											}
  .tp-leftarrow.preview2 .tp-arr-titleholder	{	left:50px;
  												-webkit-transform: translateX(100%);
  												transform: translateX(100%);
  											}
  
  .tparrows.preview2.hovered					{	width:300px}
  .tparrows.preview2:hover					{	background:#fff}
  .tparrows.preview2:hover:after				{	color:#000}
  .tparrows.preview2:hover .tp-arr-titleholder{	-webkit-transform: translateX(0px);
  													transform: translateX(0px);
  													visibility: visible;
  													position: absolute;
  											}
  
  /* PREVIEW 2 BULLETS */
  
  .tp-bullets.preview2 						{ 	height: 17px}
  .tp-bullets.preview2 .bullet 				{	cursor: pointer;
  											    position: relative !important;
  											    background: rgba(0, 0, 0, 0.5) !important;
  											    -webkit-border-radius: 10px;
  											    border-radius: 10px;
  											    -webkit-box-shadow: none;
  											    -moz-box-shadow: none;
  											    box-shadow: none;
  											    width: 6px !important;
  											    height: 6px !important;
  											    border: 5px solid rgba(0, 0, 0, 0) !important;
  											    display: inline-block;
  											    margin-right: 2px !important;
  											    margin-bottom: 0px !important;
  											    -webkit-transition: background-color 0.2s, border-color 0.2s;
  											    -moz-transition: background-color 0.2s, border-color 0.2s;
  											    -o-transition: background-color 0.2s, border-color 0.2s;
  											    -ms-transition: background-color 0.2s, border-color 0.2s;
  											    transition: background-color 0.2s, border-color 0.2s;
  											    float:none !important;
  											    box-sizing:content-box;
  												-moz-box-sizing:content-box;
  												-webkit-box-sizing:content-box;
  }
  .tp-bullets.preview2 .bullet.last 			{	margin-right: 0px}
  .tp-bullets.preview2 .bullet:hover,
  .tp-bullets.preview2 .bullet.selected 		{	-webkit-box-shadow: none;
  											    -moz-box-shadow: none;
  											    box-shadow: none;
  												background: rgba(255, 255, 255, 1) !important;
  												width: 6px !important;
  											    height: 6px !important;
  											    border: 5px solid rgba(0, 0, 0, 1) !important;
  }
  
  .tp-arr-titleholder.alwayshidden			{	display:none !important}@media only screen and (min-width: 768px) and (max-width: 979px) {
 .tparrows.preview2 {	min-width:40px; min-height:40px; width:40px;height:40px;
  								border-radius:20px;-moz-border-radius:20px;-webkit-border-radius:20px;
  							}
  		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:20px; margin-top: -12px}
  		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:11px}
  		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:11px}
  		.tparrows.preview2 .tp-arr-titleholder		{	font-size:12px; line-height:40px; letter-spacing: 0px}
  		.tp-rightarrow.preview2 .tp-arr-titleholder	{	right:35px}
  		.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:35px} 
}@media only screen and (min-width: 480px) and (max-width: 767px) {
 .tparrows.preview2 						{	min-width:30px; min-height:30px; width:30px;height:30px;
  														border-radius:15px;-moz-border-radius:15px;-webkit-border-radius:15px;
  													}
  		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:14px; margin-top: -12px}
  		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:8px}
  		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:8px}
  		.tparrows.preview2 .tp-arr-titleholder		{	font-size:10px; line-height:30px; letter-spacing: 0px}
  		.tp-rightarrow.preview2 .tp-arr-titleholder	{	right:25px}
  		.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:25px}
  		.tparrows.preview2 .tp-arr-titleholder		{	display:none;visibility:none} 
}@media only screen and (min-width: 0px) and (max-width: 479px) {
 .tparrows.preview2 							{	min-width:30px; min-height:30px; width:30px;height:30px;
  														border-radius:15px;-moz-border-radius:15px;-webkit-border-radius:15px;
  													}
  		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:14px; margin-top: -12px}
  		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:8px}
  		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:8px}
  		.tparrows.preview2 .tp-arr-titleholder		{	display:none;visibility:none}
  		.tparrows.preview2:hover					{	width:30px !important; height:30px !important} 
}/* NAVIGATION PREVIEW 3 */
  .tparrows.preview3 							{	width:70px; height:70px; background:#fff; background:rgba(255,255,255,1); -webkit-transform-style: flat}
  .tparrows.preview3:after					{	position:absolute;  line-height: 70px;text-align: center; font-family: "revicons"; color:#aaa; font-size:30px; top:0px;left:0px;;background:#fff; z-index:100; width:70px;height:70px; -webkit-transition: color 0.3s; -moz-transition: color 0.3s; transition: color 0.3s}
  .tparrows.preview3:hover:after					{	color:#000}
  .tp-rightarrow.preview3:after				{	content: '\e825';  }
  .tp-leftarrow.preview3:after				{	content: '\e824';  }
  
  
  .tparrows.preview3 .tp-arr-iwrapper			{
  												  -webkit-transform: scale(0,1);
  												  transform: scale(0,1);
  												  -webkit-transform-origin: 100% 50%;
  												  transform-origin: 100% 50%;
  												  -webkit-transition: -webkit-transform 0.2s;
  												  transition: transform 0.2s;
  												  z-index:0;position: absolute; background: #000; background: rgba(0,0,0,0.75);
  												  display: table;min-height:90px;top:-10px}
  
  .tp-leftarrow.preview3 .tp-arr-iwrapper		{	 -webkit-transform: scale(0,1);
  												  transform: scale(0,1);
  												  -webkit-transform-origin: 0% 50%;
  												  transform-origin: 0% 50%;
  											}
  
  .tparrows.preview3 .tp-arr-imgholder 		{	display:block;background-size:cover; background-position:center center; display:table-cell;min-width:90px;height:90px;
  												position:relative;top:0px}
  
  .tp-rightarrow.preview3 .tp-arr-iwrapper	{	right:0px;padding-right:70px}
  .tp-leftarrow.preview3 .tp-arr-iwrapper		{	left:0px; direction: rtl;padding-left:70px}
  .tparrows.preview3 .tp-arr-titleholder		{	display:table-cell; padding:30px;font-size:16px; color:#fff;white-space: nowrap; position: relative; clear:right;vertical-align: middle}
  
  .tparrows.preview3:hover .tp-arr-iwrapper	{
  												-webkit-transform: scale(1,1);
  												  transform: scale(1,1);
  
  											}
  
  /* PREVIEW 3 BULLETS */
  .tp-bullets.preview3 						{ 	height: 17px}
  .tp-bullets.preview3 .bullet 				{	cursor: pointer;
  											    position: relative !important;
  											    background: rgba(0, 0, 0, 0.5) !important;
  											    -webkit-border-radius: 10px;
  											    border-radius: 10px;
  											    -webkit-box-shadow: none;
  											    -moz-box-shadow: none;
  											    box-shadow: none;
  											    width: 6px !important;
  											    height: 6px !important;
  											    border: 5px solid rgba(0, 0, 0, 0) !important;
  											    display: inline-block;
  											    margin-right: 2px !important;
  											    margin-bottom: 0px !important;
  											    -webkit-transition: background-color 0.2s, border-color 0.2s;
  											    -moz-transition: background-color 0.2s, border-color 0.2s;
  											    -o-transition: background-color 0.2s, border-color 0.2s;
  											    -ms-transition: background-color 0.2s, border-color 0.2s;
  											    transition: background-color 0.2s, border-color 0.2s;
  											    float:none !important;
  											    box-sizing:content-box;
  												-moz-box-sizing:content-box;
  												-webkit-box-sizing:content-box;
  }
  .tp-bullets.preview3 .bullet.last 			{	margin-right: 0px}
  .tp-bullets.preview3 .bullet:hover,
  .tp-bullets.preview3 .bullet.selected 		{	-webkit-box-shadow: none;
  											    -moz-box-shadow: none;
  											    box-shadow: none;
  												background: rgba(255, 255, 255, 1) !important;
  												width: 6px !important;
  											    height: 6px !important;
  											    border: 5px solid rgba(0, 0, 0, 1) !important;
  }@media only screen and (min-width: 768px) and (max-width: 979px) {
 .tparrows.preview3:after,
  		.tparrows.preview3 							{	width:50px; height:50px; line-height:50px;font-size:20px}
  		.tparrows.preview3 .tp-arr-iwrapper			{	min-height:70px}
  		.tparrows.preview3 .tp-arr-imgholder 		{	min-width:70px;height:70px}
  		.tp-rightarrow.preview3 .tp-arr-iwrapper	{	padding-right:50px}
  		.tp-leftarrow.preview3 .tp-arr-iwrapper		{	padding-left:50px}
  		.tparrows.preview3 .tp-arr-titleholder		{	padding:10px;font-size:16px} 
}@media only screen  and (max-width: 767px) {
 .tparrows.preview3:after,
  		.tparrows.preview3 							{	width:50px; height:50px; line-height:50px;font-size:20px}
  		.tparrows.preview3 .tp-arr-iwrapper			{	min-height:70px} 
}/* NAVIGATION PREVIEW 4 */
  .tparrows.preview4 							{	width:30px; height:110px;  background:transparent;-webkit-transform-style: preserve-3d; -webkit-perspective: 1000; -moz-perspective: 1000}
  .tparrows.preview4:after					{	position:absolute;  line-height: 110px;text-align: center; font-family: "revicons"; color:#fff; font-size:20px; top:0px;left:0px;z-index:0; width:30px;height:110px; background: #000; background: rgba(0,0,0,0.25);
  												-webkit-transition: all 0.2s ease-in-out;
  											    -moz-transition: all 0.2s ease-in-out;
  											    -o-transition: all 0.2s ease-in-out;
  											    transition: all 0.2s ease-in-out;
  												   -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;
  
  											}
  
  .tp-rightarrow.preview4:after				{	content: '\e825';  }
  .tp-leftarrow.preview4:after				{	content: '\e824';  }
  
  
  .tparrows.preview4 .tp-arr-allwrapper		{	visibility:hidden;width:180px;position: absolute;z-index: 1;min-height:120px;top:0px;left:-150px; overflow: hidden;-webkit-perspective: 1000px;-webkit-transform-style: flat}
  
  .tp-leftarrow.preview4 .tp-arr-allwrapper	{	left:0px}
  .tparrows.preview4 .tp-arr-iwrapper			{	position: relative}
  
  .tparrows.preview4 .tp-arr-imgholder 		{	display:block;background-size:cover; background-position:center center;width:180px;height:110px;
  												position:relative;top:0px;
  
  												-webkit-backface-visibility: hidden;
  												backface-visibility: hidden;
  
  
  
  											}
  
  
  .tparrows.preview4 .tp-arr-imgholder2 		{	display:block;background-size:cover; background-position:center center; width:180px;height:110px;
  												position:absolute;top:0px; left:180px;
  												-webkit-backface-visibility: hidden;
  												backface-visibility: hidden;
  
  											}
  
  .tp-leftarrow.preview4 .tp-arr-imgholder2 	{	left:-180px}
  
  
  
  
  .tparrows.preview4 .tp-arr-titleholder		{	display:block; font-size:12px; line-height:25px; padding:0px 10px;text-align:left;color:#fff; position: relative;
  												background: #000;
  												color: #FFF;
  												text-transform: uppercase;
  												white-space: nowrap;
  												letter-spacing: 1px;
  												font-weight: 700;
  												font-size: 11px;
  												line-height: 2.75;
  												-webkit-transition: all 0.3s;
  												transition: all 0.3s;
  												-webkit-transform: rotateX(-90deg);
  												transform: rotateX(-90deg);
  												-webkit-transform-origin: 50% 0;
  												transform-origin: 50% 0;
  												-webkit-backface-visibility: hidden;
  												backface-visibility: hidden;
  												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;
  
  
  }
  
  
  
  .tparrows.preview4:after				{	transform-origin: 100% 100%; -webkit-transform-origin: 100% 100%}
  .tp-leftarrow.preview4:after			{	transform-origin: 0% 0%; -webkit-transform-origin: 0% 0%}@media only screen and (min-width: 768px) {
 .tparrows.preview4:hover:after				{	-webkit-transform: rotateY(-90deg); transform:rotateY(-90deg)}
  		.tp-leftarrow.preview4:hover:after			{	-webkit-transform: rotateY(90deg); transform:rotateY(90deg)}
  
  
  		.tparrows.preview4:hover .tp-arr-titleholder	{	-webkit-transition-delay: 0.4s;
  															transition-delay: 0.4s;
  															-webkit-transform: rotateX(0deg);
  															transform: rotateX(0deg);
  															-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;
  
  														} 
}/* PREVIEW 4 BULLETS */
  
  .tp-bullets.preview4 						{ 	height: 17px}
  .tp-bullets.preview4 .bullet 				{	cursor: pointer;
  											    position: relative !important;
  											    background: rgba(0, 0, 0, 0.5) !important;
  											    -webkit-border-radius: 10px;
  											    border-radius: 10px;
  											    -webkit-box-shadow: none;
  											    -moz-box-shadow: none;
  											    box-shadow: none;
  											    width: 6px !important;
  											    height: 6px !important;
  											    border: 5px solid rgba(0, 0, 0, 0) !important;
  											    display: inline-block;
  											    margin-right: 2px !important;
  											    margin-bottom: 0px !important;
  											    -webkit-transition: background-color 0.2s, border-color 0.2s;
  											    -moz-transition: background-color 0.2s, border-color 0.2s;
  											    -o-transition: background-color 0.2s, border-color 0.2s;
  											    -ms-transition: background-color 0.2s, border-color 0.2s;
  											    transition: background-color 0.2s, border-color 0.2s;
  											    float:none !important;
  											    box-sizing:content-box;
  												-moz-box-sizing:content-box;
  												-webkit-box-sizing:content-box;
  }
  .tp-bullets.preview4 .bullet.last 			{	margin-right: 0px}
  .tp-bullets.preview4 .bullet:hover,
  .tp-bullets.preview4 .bullet.selected 		{	-webkit-box-shadow: none;
  											    -moz-box-shadow: none;
  											    box-shadow: none;
  												background: rgba(255, 255, 255, 1) !important;
  												width: 6px !important;
  											    height: 6px !important;
  											    border: 5px solid rgba(0, 0, 0, 1) !important;
  }@media only screen  and (max-width: 767px) {
 .tparrows.preview4 						{	width:20px; height:80px}
     		 .tparrows.preview4:after					{	width:20px; height:80px; line-height:80px; font-size:14px}
  
     		 .tparrows.preview1 .tp-arr-allwrapper,
     		 .tparrows.preview2 .tp-arr-allwrapper,
     		 .tparrows.preview3 .tp-arr-allwrapper,
     		 .tparrows.preview4 .tp-arr-allwrapper		{	display: none !important} 
}@font-face {
    font-family: 'revicons';
    src: url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/font/revicons.eot?5510888);
    src: url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/font/revicons.eot?5510888#iefix) format('embedded-opentype'),
         url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/font/revicons.woff?5510888) format('woff'),
         url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/font/revicons.ttf?5510888) format('truetype'),
         url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/font/revicons.svg?5510888#revicons) format('svg');
    font-weight: normal;
    font-style: normal;
  } 
 /******************************
  	-	LOADER FORMS	-
  ********************************/
  
  .tp-loader 	{
  				top:50%; left:50%;
  				z-index:10000;
  				position:absolute;
  
  
  			}
  
  .tp-loader.spinner0 {
    width: 40px;
    height: 40px;
    background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/loader.gif) no-repeat center center;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    margin-top:-20px;
    margin-left:-20px;
    -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
    animation: tp-rotateplane 1.2s infinite ease-in-out;
    border-radius: 3px;
  	-moz-border-radius: 3px;
  	-webkit-border-radius: 3px;
  }
  
  
  .tp-loader.spinner1 {
    width: 40px;
    height: 40px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    margin-top:-20px;
    margin-left:-20px;
    -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
    animation: tp-rotateplane 1.2s infinite ease-in-out;
    border-radius: 3px;
  	-moz-border-radius: 3px;
  	-webkit-border-radius: 3px;
  }
  
  
  
  .tp-loader.spinner5 	{	background:url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/loader.gif) no-repeat 10px 10px;
  							background-color:#fff;
  							margin:-22px -22px;
  							width:44px;height:44px;
  							border-radius: 3px;
  							-moz-border-radius: 3px;
  							-webkit-border-radius: 3px;
  						}
  
  
  @-webkit-keyframes tp-rotateplane {
    0% { -webkit-transform: perspective(120px) }
    50% { -webkit-transform: perspective(120px) rotateY(180deg) }
    100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
  }
  
  @keyframes tp-rotateplane {
    0% {
      transform: perspective(120px) rotateX(0deg) rotateY(0deg);
      -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    } 50% {
      transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
      -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    } 100% {
      transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
      -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
  }
  
  
  .tp-loader.spinner2 {
    width: 40px;
    height: 40px;
    margin-top:-20px;margin-left:-20px;
    background-color: #ff0000;
     box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    border-radius: 100%;
    -webkit-animation: tp-scaleout 1.0s infinite ease-in-out;
    animation: tp-scaleout 1.0s infinite ease-in-out;
  }
  
  @-webkit-keyframes tp-scaleout {
    0% { -webkit-transform: scale(0.0) }
    100% {
      -webkit-transform: scale(1.0);
      opacity: 0;
    }
  }
  
  @keyframes tp-scaleout {
    0% {
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 100% {
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
      opacity: 0;
    }
  }
  
  
  
  
  .tp-loader.spinner3 {
    margin: -9px 0px 0px -35px;
    width: 70px;
    text-align: center;
  
  }
  
  .tp-loader.spinner3 .bounce1,
  .tp-loader.spinner3 .bounce2,
  .tp-loader.spinner3 .bounce3 {
    width: 18px;
    height: 18px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: tp-bouncedelay 1.4s infinite ease-in-out;
    animation: tp-bouncedelay 1.4s infinite ease-in-out;
    /* Prevent first frame from flickering when animation starts */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  
  .tp-loader.spinner3 .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  }
  
  .tp-loader.spinner3 .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  }
  
  @-webkit-keyframes tp-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0.0) }
    40% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes tp-bouncedelay {
    0%, 80%, 100% {
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 40% {
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
  }
  
  
  
  
  .tp-loader.spinner4 {
    margin: -20px 0px 0px -20px;
    width: 40px;
    height: 40px;
    text-align: center;
    -webkit-animation: tp-rotate 2.0s infinite linear;
    animation: tp-rotate 2.0s infinite linear;
  }
  
  .tp-loader.spinner4 .dot1,
  .tp-loader.spinner4 .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: tp-bounce 2.0s infinite ease-in-out;
    animation: tp-bounce 2.0s infinite ease-in-out;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  }
  
  .tp-loader.spinner4 .dot2 {
    top: auto;
    bottom: 0px;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
  
  @-webkit-keyframes tp-rotate { 100% { -webkit-transform: rotate(360deg) }}
  @keyframes tp-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}
  
  @-webkit-keyframes tp-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes tp-bounce {
    0%, 100% {
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 50% {
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
  }
  
  
  
  .tp-transparentimg {	content:"url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/assets/transparent.png)"}
  .tp-3d				{	-webkit-transform-style: preserve-3d;
  						 -webkit-transform-origin: 50% 50%;
  					}
  
  
  
  .tp-caption img {
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
  zoom: 1;
  }/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
  /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
  /*@font-face {
      font-family: 'revicons';
      src: url(/sites/all/modules/drupalexp/modules/dexp_layerslider/plugins/rs-plugin/font/revicons.svg?5510888#revicons) format('svg');
    } 
@media screen and (-webkit-min-device-pixel-ratio:0) {
  
}*/
  
   [class^="revicon-"]:before, [class*=" revicon-"]:before {
    font-family: "revicons";
    font-style: normal;
    font-weight: normal;
    speak: none;
  
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
  
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
  
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
  
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
  
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
  
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  }
  
  .revicon-search-1:before { content: '\e802'} /* '' */
  .revicon-pencil-1:before { content: '\e831'} /* '' */
  .revicon-picture-1:before { content: '\e803'} /* '' */
  .revicon-cancel:before { content: '\e80a'} /* '' */
  .revicon-info-circled:before { content: '\e80f'} /* '' */
  .revicon-trash:before { content: '\e801'} /* '' */
  .revicon-left-dir:before { content: '\e817'} /* '' */
  .revicon-right-dir:before { content: '\e818'} /* '' */
  .revicon-down-open:before { content: '\e83b'} /* '' */
  .revicon-left-open:before { content: '\e819'} /* '' */
  .revicon-right-open:before { content: '\e81a'} /* '' */
  .revicon-angle-left:before { content: '\e820'} /* '' */
  .revicon-angle-right:before { content: '\e81d'} /* '' */
  .revicon-left-big:before { content: '\e81f'} /* '' */
  .revicon-right-big:before { content: '\e81e'} /* '' */
  .revicon-magic:before { content: '\e807'} /* '' */
  .revicon-picture:before { content: '\e800'} /* '' */
  .revicon-export:before { content: '\e80b'} /* '' */
  .revicon-cog:before { content: '\e832'} /* '' */
  .revicon-login:before { content: '\e833'} /* '' */
  .revicon-logout:before { content: '\e834'} /* '' */
  .revicon-video:before { content: '\e805'} /* '' */
  .revicon-arrow-combo:before { content: '\e827'} /* '' */
  .revicon-left-open-1:before { content: '\e82a'} /* '' */
  .revicon-right-open-1:before { content: '\e82b'} /* '' */
  .revicon-left-open-mini:before { content: '\e822'} /* '' */
  .revicon-right-open-mini:before { content: '\e823'} /* '' */
  .revicon-left-open-big:before { content: '\e824'} /* '' */
  .revicon-right-open-big:before { content: '\e825'} /* '' */
  .revicon-left:before { content: '\e836'} /* '' */
  .revicon-right:before { content: '\e826'} /* '' */
  .revicon-ccw:before { content: '\e808'} /* '' */
  .revicon-arrows-ccw:before { content: '\e806'} /* '' */
  .revicon-palette:before { content: '\e829'} /* '' */
  .revicon-list-add:before { content: '\e80c'} /* '' */
  .revicon-doc:before { content: '\e809'} /* '' */
  .revicon-left-open-outline:before { content: '\e82e'} /* '' */
  .revicon-left-open-2:before { content: '\e82c'} /* '' */
  .revicon-right-open-outline:before { content: '\e82f'} /* '' */
  .revicon-right-open-2:before { content: '\e82d'} /* '' */
  .revicon-equalizer:before { content: '\e83a'} /* '' */
  .revicon-layers-alt:before { content: '\e804'} /* '' */
  .revicon-popup:before { content: '\e828'} /* '' */
/*})'"*/
.layerslider-bannercontainer {
    width:100%;
    position:relative;
    padding:0;
  }
  
  .layerslider-banner{
    width:100%;
    position:relative;
  }
  div[id^=dexp-layerslider] .tparrows{
    opacity: 0;
  }
  div[id^=dexp-layerslider]:hover .tparrows{
    opacity: 1;
  }
/*})'"*/
.locale-untranslated {
    font-style: normal;
    text-decoration: line-through;
  }
  
  #locale-translation-filter-form .form-item-language,
  #locale-translation-filter-form .form-item-translation,
  #locale-translation-filter-form .form-item-group {
    float: left; /* LTR */
    padding-right: .8em; /* LTR */
    margin: 0.1em;
    /**
     * In Opera 9, DOM elements with the property of "overflow: auto"
     * will partially hide its contents with unnecessary scrollbars when
     * its immediate child is floated without an explicit width set.
     */
    width: 15em;
  }
  #locale-translation-filter-form .form-type-select select {
    width: 100%;
  }
  #locale-translation-filter-form .form-actions {
    float: left; /* LTR */
    padding: 3ex 0 0 1em; /* LTR */
  }
  .language-switcher-locale-session a.active {
    color: #0062A0;
  }
  .language-switcher-locale-session a.session-active {
    color: #000000;
  }
/*})'"*/
