
/**
 * @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);
}

/*})'"*/

#simplenews-admin-filter .form-item { 
  clear: both;
  line-height: 1.75em;
  margin: 0pt 1em 0pt 0pt;
}

#simplenews-admin-filter .form-item label { 
  float: left;
  width: 12em; 
}

#simplenews-admin-filter .spacer {
  margin-left: 12em;  
}

#simplenews-admin-filter .form-select, 
#simplenews-admin-filter .form-text {
  width: 14em;
}

.block-simplenews .issues-link,
.block-simplenews .issues-list {
  margin-top: 1em;
}

.block-simplenews .issues-list .newsletter-created {
  display: none;
}

/*})'"*/

#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;
}

/*})'"*/

/* 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;
}

/*})'"*/
#google-cse-results-searchbox-form div, #google-cse-results-searchbox-form input {
    margin: 0;
    display: inline;
}

#google-cse-results-searchbox-form .form-radios div {
    display: block;
}

/*})'"*/
div.messages.status.block {
  background-image: none;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  display: inline;
  font-size: x-small;
  font-style: italic;
  margin: 0 8px;
  padding: 2px 8px;
}

.menu-attach-block-wrapper.orientation-horizontal {
  position: relative;
}

.menu-attach-block-wrapper.orientation-horizontal .block {
  background-color: white;
  padding: 1em;
  position: absolute;
  top: 2.5em;
  width: 200%;
  /*
  Note that overlay module has a z-index of 600.
  */
  z-index: 400;
}

.menu-attach-block-wrapper.orientation-vertical {
  clear: both;
}

li.attached-block a {
  display: inline-block;
}

a.menu-attach-block-drop-link.external,
a.menu-attach-block-drop-link.external:hover,
a.menu-attach-block-drop-link.external:focus,
#main-menu a.menu-attach-block-drop-link.external,
#main-menu a.menu-attach-block-drop-link.external:hover,
#main-menu a.menu-attach-block-drop-link.external:focus,
#main-menu-links li.active-trail a.menu-attach-block-drop-link.external {
  background: transparent url(/sites/all/modules/menu_attach_block/arrow-asc.png) no-repeat scroll 2px;
  border: 0;
  display: inline-block;
  height: 100%;
  margin: 0;
  padding: 0 9px;
  text-indent: -9999em;
  text-shadow: none;
  width: 3px;
}

li a.menu-attach-block-drop-link.external.dropped,
#main-menu li a.menu-attach-block-drop-link.external.dropped {
  background-image: url(/sites/all/modules/menu_attach_block/arrow-desc.png);
  border: none;
  height: 100%;
  margin: 0;
  padding: 0 9px;
  text-indent: -9999em;
  width: 3px;
}

a.menu-attach-block-drop-link ~ .menu-attach-block-wrapper {
  display: none;
}

a.menu-attach-block-drop-link.dropped ~ .menu-attach-block-wrapper {
  display: initial;
}

/*})'"*/

.node-unpublished {
  background-color: #fff4f4;
}
.preview .node {
  background-color: #ffffea;
}
td.revision-current {
  background: #ffc;
}

/*})'"*/
/*
 * Definitions that apply while viewing questions
 */
.question_type_name {
  font-style: italic;
}

/*
 * Definitions that apply while taking the quiz.
 */
#quiz_progress {
  font-style: italic;
  font-size: 80%;
}

#quiz_score_possible, #quiz_score_percent {
  font-weight: bold;
}

td.quiz_summary_qcell {
  vertical-align: top;
  padding: 1em 1em 0em 0em;
}

td.quiz_summary_qcell table tr {
  background: transparent;
}

td.quiz_summary_qcell table td {
  vertical-align: top;
  padding: .5em;
}

.quiz_answer_feedback {
  font-style: italic;
}

.quiz_summary_text {

}

.feedback-icon {
  display: inline;
}

.add-questions {
  background: transparent url(/sites/all/modules/quiz/images/add.png) no-repeat scroll 0% 10%;
  padding: 0 0 1em 2em;
}

.hidden-question {
  display: none;
}

.quiz-question-browser-row.odd {
  background-color: #e7e7e7;
}

.quiz-question-browser-row.even {
  background-color: #fbfbfb;
}

#quiz-question-browser-filters {
  /*background-color: black;*/
  /* Black bg in seven theme looks horrible. */
  background: none repeat scroll 0 0 #E1E2DC;
  border-color: #BEBFB9;
  border-style: solid;
  border-width: 1px;
  font-weight: normal;
  padding: 3px 10px;
  text-transform: uppercase;
}

#quiz-question-browser-filters td.active {
  background-color: #666;
}

.quiz-question-browser-row.odd td.active {
  background-color: #e2e2f9;
}

.quiz-question-browser-row.even td.active {
  background-color: #f8f8ff;
}

tr.selected.quiz-question-browser-row td, tr.selected.quiz-question-browser-row td.active {
  background: none repeat scroll 0 0 #505050;
  color: #FFF;
}

.browser-table th {
  border-bottom: 0px solid #666666;
}

.q-staying {
  display: inline;
  float: left;
  margin-right: 8px;
}


/*
 * Definitions that apply on the quiz report pages.
 */

div.quiz-report {
  margin: 0;
  padding: 0;
}

div.quiz-report .dt {
  background: #eee;
  border-top: solid 1px gray;
  padding-left: 5px;
}

div.quiz-report .dt div.quiz-report-score-container {
  border-right: solid 1px gray;
  border-left: solid 1px gray;
  border-bottom: solid 1px gray;
  float: right;
  padding: 4px 6px;
}

div.quiz-report .dt div.quiz-report-score-container span div.form-item {
  display: inline;
}

div.quiz-report .dd {
  margin: 10px 0 50px 0;
}

div.quiz-score-submit {
  float: right;
}

.quiz-report-skipped {
  float: right;
}

.q-correct {
  background-color: #DDFFDD;
}

.q-wrong {
  background-color: #FFCCCC;
}

.q-waiting {
  background-color: #FFFFDD;
}

input#edit-op, input#edit-back {
  background: 0 none;
  border: 0 none;
  color: #666699;
}

input.q-skip-button:hover, input#edit-back:hover {
  color: #6666ff;
  cursor: pointer;
  text-decoration: underline;
}

input#edit-submit-hidden {
  height: 0;
  width: 0;
  overflow: hidden;
  padding: 0;
  border: none;
}

.quiz-passed {
  color: #00dd00;
}

.quiz-failed {
  color: #dd0000;
}

#no-questions {
  font-style: italic;
}
#quiz-view-table {
  width: auto;
  border-collapse: separate;
  border: thin solid #555555;
  padding: 0px;
  margin: 0px;
  margin-bottom: 20px;
}
#quiz-start-quiz-button-form div {
  padding: 0px;
  margin: 0px;
}

#quiz-start-quiz-button-form input {
  margin: 0px;
}

#quiz-view-table td {
  padding: 0px 3px 0px 3px;
  margin: 0px;
  line-height: 110%;
}
.quiz-view-table-title {

}
.quiz-view-table-data {

}

#browser-pager .pager-last {
  display: none;
}
#browser-pager .pager-first {
  display: none;
}

.matching-tbl {
  width: auto;
  border-collapse: separate;
  padding: 0px;
  margin: 0px;
  border: 0px;
  line-height: 100%;
}

.matching-tbl p, .matching-tbl select, .matching-tbl div {
  padding: 0px;
  margin: 0px;
  line-height: 100%;
}

.matching-tbl td {
  padding: 2px;
  margin: 2px;
  line-height: 100%;
}

.quiz-solution {
  border-left: solid 5px #00ff00;
  padding-left: 3px;
}

.quiz-answer-hidden {
  font-style: italic;
}

#quiz-jumper {
  display: none;
}

#quiz-categorized-form #autocomplete {
  overflow: auto;
  max-height: 300px;
}

.mark-doubtful .toggle {
  margin: auto;
  position: relative;
  width: 100px;
  overflow: hidden;
  height: 18px;
  line-height: 18px;
  font-size: 11px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #ccc;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.50) inset;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.50) inset;
  box-shadow: 0 0 10px rgba(0,0,0,0.50) inset;
}

.mark-doubtful .toggle.off {
  background-clip: padding-box;
  background-image: -webkit-gradient(linear, 0% 0%, 100% 0%, color-stop(50%, red), color-stop(50%, white), color-stop(100%, white));
  background-image: -moz-linear-gradient(left, red 50%, white 50%, white 100%);
  background-image: linear-gradient(left, red 50%, white 50%, white 100%);
}

.mark-doubtful .toggle {
  background-image: -webkit-gradient(linear, 0% 0%, 100% 0%, color-stop(50%, white), color-stop(50%, green), color-stop(100%, green));
  background-image: -moz-linear-gradient(left, white 50%, green 50%, green 100%);
  background-image: linear-gradient(left, white 50%, green 50%, green 100%);
}

.mark-doubtful .toggle div {
  position: relative;
  color: #777;
  width: 52px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  border-radius: 2px;
  background: white;
  text-shadow: 1px 1px 0 white;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #FEFEFE), color-stop(100%, #EAEAEA));
  background-image: -moz-linear-gradient(top, #FEFEFE 0%, #EAEAEA 100%);
  background-image: linear-gradient(top, #FEFEFE 0%, #EAEAEA 100%);
  -webkit-transition: left 0.2s;
  -mox-transition: left 0.2s;
  -o-transition: left 0.2s;
  transition: left 0.2s;
}


.mark-doubtful .toggle div:after,
.mark-doubtful .toggle div:before {
  color: white;
  text-shadow: none;
  width: 50px;
  position: absolute;
  top: 0;
  font-size: 9px;
  font-weight: bold;
}

.mark-doubtful .toggle div:before {
  content: "Doubtful";
  left: -48px;
}

.mark-doubtful .toggle div:after {
  content: "Clear";
  right: -48px;
}
.mark-doubtful .toggle.off div {
  left: 48px;
}


/*})'"*/

.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
 *   CSS for the YouTube Field module.
 */

/* Takes effect when a field's 'size' display setting is 'responsive'. */
.youtube-container--responsive {
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.youtube-container--responsive iframe {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*})'"*/
.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;
}

/*})'"*/
/**
 * @file
 * Styles to apply to all user-facing pages for alignment support.
 */
.media-wysiwyg-align-left,
.media-float-left {
  float: left;
  margin-right: 20px;
}
.media-wysiwyg-align-right,
.media-float-right {
  float: right;
  margin-left: 20px;
}
.media-wysiwyg-align-center {
  text-align: -moz-center;
  text-align: -webkit-center;
  text-align: center;
}

/*})'"*/
.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;
}

/*})'"*/
div.panel-pane div.admin-links {
  font-size: xx-small;
  margin-right: 1em;
}

div.panel-pane div.admin-links li a {
  color: #ccc;
}

div.panel-pane div.admin-links li {
  padding-bottom: 2px;
  background: white;
  z-index: 201;
}

div.panel-pane div.admin-links:hover a,
div.panel-pane div.admin-links-hover a {
  color: #000;
}

div.panel-pane div.admin-links a:before {
  content: "[";
}

div.panel-pane div.admin-links a:after {
  content: "]";
}

div.panel-pane div.panel-hide {
  display: none;
}

/** For IE we add the class via js; for other browsers we rely on :hover **/
div.panel-pane div.panel-hide-hover,
div.panel-pane:hover div.panel-hide {
  display: block;
  position: absolute;
  z-index: 200;
  margin-top: -1.5em;
}

div.panel-pane div.feed a {
  float: right;
}

/*})'"*/
/* tagclouds default example stylesheet **/

.wrapper.tagclouds {
  text-align: justify;
  margin-right: 1em;
}

.tagclouds.level1 {
  font-size: 1em;
}
.tagclouds.level2 {
  font-size: 1.2em;
}
.tagclouds.level3 {
  font-size: 1.4em;
}
.tagclouds.level4 {
  font-size: 1.6em;
}
.tagclouds.level5 {
  font-size: 1.8em;
}
.tagclouds.level6 {
  font-size: 2em;
}
.tagclouds.level7 {
  font-size: 2.2em;
}
.tagclouds.level8 {
  font-size: 2.4em;
}
.tagclouds.level9 {
  font-size: 2.6em;
}
.tagclouds.level10 {
  font-size: 2.8em;
}


/*})'"*/
/*
 * user_picture_block.css : Default CSS for this module
  float: left;
 */

/* Block with enough space for a reduced picture. 
   Margin-top '10 since no heading 
   increase height to say 90, if there are User Badges
 */
.user_picture_block {
  height: 90px;
  margin-top: 0px;
}
*+html .user_picture_block {  /* IE7 */
  margin-top: 10px;
}
* html .user_picture_block {  /* IE6 */
  margin-top: 10px;
}
.user_picture_block h3 { 
  margin-top: 0.7em;
  margin-bottom: 0.2em;
}
*+html .user_picture_block h3 { /* IE7 */
  margin-top: 0.2em;
}


.user_picture_block .picture {
  float: left;
}
.user_picture_block .picture img {
  margin-right: 8px;
  width:  60px;
  height: 60px;
  margin-bottom: 5px;
}
*+html .user_picture_block .picture img { /* IE7 */
  margin-bottom: 5px;
}
.user_picture_block .userlevel {
}
.user_picture_block .userpoints {
}
.user_picture_block .userbadges {
  /*clear: left;*/
  margin-top: 5px;
}


/*})'"*/
@media screen {
 /* Layout Helpers */
  
  /* Center layout be default */
  .container {
    margin: 0 auto;
  }
  
  
  /* Prevent the layout from collapsing if there is nothing in the content column */
  .content-inner {
    min-height: 1px;
  }
  
  
  .lt-ie7 .content-inner {
    height: 1px;
  }
  
  
  /* Ensure the content column is the full width of its container */
  #content-column,
  .content-column {
    width: 100%;
  }
  
  
  /* Compass clearfix */
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .clearfix {
    zoom: 1;
  }
  
  
  /* AT Panels */
  .one-column > .region,
  div.at-panel .region-conditional-stack {
    float: none;
    display: block;
    clear: both;
    width: 100%;
  }
  
  .lt-ie8 .at-panel {
    overflow: hidden;
  } 
}
/*})'"*/
@media screen {
 /*
   * @file
   * global.styles
   *
   * Styles you add here will load for all device sizes, they are "global", as
   * opposed to "responsive" styles, which only load for a given breakpoint (media
   * query) that you set in theme settings. See the README for more details.
   *
   *
   * How to use this file:
   * --------------------
   *
   * There are many empty selectors and some basic styles to act as a guide.
   * Nothing is set in stone and you can change anything - even delete all of it
   * and start with your own clean slate.
   *
   * See global.base also which includes normalize.css and some additional
   * helper classes and base styles.
   */
  /*
   * @file
   * global.base
   *
   * - normalize with small modifications for Drupal and AT: http://necolas.github.com/normalize.css/
   * - Gutter widths, see $gutter-width in _custom.scss
   * - Default container alignment.
   * - Flexible images and media declarations.
   * - Copies of the SCSS mixins for reference, which includes an improved
   *   element-invisible and focusable styles.
   */
  /* =============================================================================
      HTML5 display definitions
     ========================================================================== */
  /*
   * Corrects block display not defined in IE6/7/8/9 & FF3
   */
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  main,
  nav,
  section,
  summary {
    display: block;
  }
  
  /*
   * Corrects inline-block display not defined in IE6/7/8/9 & FF3
   */
  audio,
  canvas,
  video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
  }
  
  /*
   * Prevents modern browsers from displaying 'audio' without controls
   * Remove excess height in iOS5 devices
   */
  audio:not([controls]) {
    display: none;
    height: 0;
  }
  
  /*
   * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
   * Known issue: no IE6 support
   */
  [hidden] {
    display: none;
  }
  
  /* =============================================================================
      Base
     ========================================================================== */
  /*
   * If you are using the themes Responsive JS feature (media_queries.js) do not
   * set a font-family on the html element, use body.
   *
   * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
   *    http://clagnut.com/blog/348/#c790
   * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
   *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
   */
  html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
    height: 100%;
    overflow-y: scroll;
  }
  
  /*
   * 1 . Addresses margins handled incorrectly in IE6/7
   */
  body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility\9;
    /* Only IE, can mess with Android */
  }
  
  /*
   * Addresses font-family inconsistency between 'textarea' and other form elements.
   */
  button,
  input,
  select,
  textarea {
    font-family: "Open Sans",sans-serif;
  }
  
  /* =============================================================================
      Links
     ========================================================================== */
  /*
   * Addresses outline displayed oddly in Chrome
   */
  a:focus {
    outline: thin dotted;
  }
  
  /*
   * Improves readability when focused and also mouse hovered in all browsers
   * people.opera.com/patrickl/experiments/keyboard/test
   */
  a:hover,
  a:active {
    outline: 0;
  }
  
  /* =============================================================================
      Typography
     ========================================================================== */
  /*
   * Headings
   *
   * Addresses font sizes and margins set differently in IE6/7
   * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
   */
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  
  h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
  }
  
  h3 {
    font-size: 1.17em;
    margin: 1em 0;
  }
  
  h4 {
    font-size: 1em;
    margin: 1.33em 0;
  }
  
  h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
  }
  
  h6 {
    font-size: 0.75em;
    margin: 2.33em 0;
  }
  
  /*
   * Addresses styling not present in IE7/8/9, S5, Chrome
   */
  abbr[title] {
    border-bottom: 1px dotted;
  }
  
  /*
   * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
   */
  b,
  strong {
    font-weight: 700;
  }
  
  blockquote {
    margin: 1em 40px;
  }
  
  /*
   * Addresses styling not present in S5, Chrome
   */
  dfn {
    font-style: italic;
  }
  
  /*
   * Addresses styling not present in IE6/7/8/9
   */
  mark {
    background: #ff0;
    color: #000;
  }
  
  /*
   * Addresses margins set differently in IE6/7
   */
  p,
  pre {
    margin: 0 0 1.5em;
  }
  
  /*
   * Corrects font family set oddly in IE6, S4/5, Chrome
   * en.wikipedia.org/wiki/User:Davidgothberg/Test59
   */
  pre,
  code,
  kbd,
  samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em;
  }
  
  /*
   * Improves readability of pre-formatted text in all browsers
   */
  pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  
  /*
   * 1. Addresses CSS quotes not supported in IE6/7
   * 2. Addresses quote property not supported in S4
   */
  q {
    quotes: none;
  }
  
  q:before,
  q:after {
    content: '';
    content: none;
  }
  
  small {
    font-size: 75%;
  }
  
  /*
   * Prevents sub and sup affecting line-height in all browsers
   * gist.github.com/413930
   */
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sup {
    top: -0.5em;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  /* =============================================================================
      Lists
     ========================================================================== */
  /*
   * Addresses margins set differently in IE6/7
   */
  dl,
  menu,
  ol,
  ul {
    margin: 1em 0;
  }
  
  dd {
    margin: 0 0 0 40px;
  }
  
  /*
   * Addresses paddings set differently in IE6/7
   */
  menu,
  ol,
  ul {
    padding: 0 0 0 40px;
  }
  
  /*
   * Corrects list images handled incorrectly in IE7
   */
  nav ul,
  nav ol {
    list-style: none;
    list-style-image: none;
  }
  
  /* =============================================================================
      Embedded content
     ========================================================================== */
  /*
   * 1. Remove border when inside 'a' element in IE6/7/8/9, FF3
   * 2. Improves image quality when scaled in IE7
   *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
   */
  img {
    /* border: 0; */
    /* Drupal core already does this, uncomment if you need it */
    -ms-interpolation-mode: bicubic;
  }
  
  /*
   * Corrects overflow displayed oddly in IE9
   */
  svg:not(:root) {
    overflow: hidden;
  }
  
  /* =============================================================================
      Figures
     ========================================================================== */
  /*
   * Addresses margin not present in IE6/7/8/9, S5, O11
   */
  figure {
    margin: 0;
  }
  
  /* =============================================================================
      Forms
     ========================================================================== */
  /*
   * Corrects margin displayed oddly in IE6/7
   */
  form {
    margin: 0;
  }
  
  /*
   * Define consistent border, margin, and padding
   */
  fieldset {
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
  }
  
  /*
   * 1. Corrects color not being inherited in IE6/7/8/9
   * 2. Corrects text not wrapping in FF3
   * 3. Corrects alignment displayed oddly in IE6/7
   */
  legend {
    border: 0;
    padding: 0;
    white-space: normal;
    *margin-left: -7px;
  }
  
  /*
   * 1. Corrects font size not being inherited in all browsers
   * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
   * 3. Improves appearance and consistency in all browsers
   */
  button,
  input,
  select,
  textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    *vertical-align: middle;
  }
  
  /*
   * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
   */
  button,
  input {
    line-height: normal;
  }
  
  /*
   * 1. Improves usability and consistency of cursor style between image-type 'input' and others
   * 2. Corrects inability to style clickable 'input' types in iOS
   * 3. Removes inner spacing in IE7 without affecting normal text inputs
   *    Known issue: inner spacing remains in IE6
   */
  button,
  input[type="button"],
  input[type="reset"],
  input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: button;
    *overflow: visible;
  }
  
  /*
   * Re-set default cursor for disabled elements
   */
  button[disabled],
  input[disabled] {
    cursor: default;
  }
  
  /*
   * 1. Addresses box sizing set to content-box in IE8/9
   * 2. Removes excess padding in IE8/9
   * 3. Removes excess padding in IE7
   *    Known issue: excess padding remains in IE6
   */
  input[type="checkbox"],
  input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    *height: 13px;
    *width: 13px;
  }
  
  /*
   * 1. Addresses appearance set to searchfield in S5, Chrome
   * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
   */
  input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }
  
  /*
   * Removes inner padding and search cancel button in S5, Chrome on OS X
   */
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
  }
  
  /*
   * Removes inner padding and border in FF3+
   * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
   */
  button::-moz-focus-inner,
  input::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  
  /*
   * 1. Removes default vertical scrollbar in IE6/7/8/9
   * 2. Improves readability and alignment in all browsers
   */
  textarea {
    overflow: auto;
    vertical-align: top;
  }
  
  /* =============================================================================
      Tables
     ========================================================================== */
  /*
   * 1. Remove most spacing between table cells
   */
  table {
    border: 1px solid;
    border-spacing: 0;
    border-collapse: collapse;
    font-size: inherit;
    font: 100%;
  }
  
  /* =============================================================================
      Gutters
     ========================================================================== */
  /*
   * If gutters are set in theme settings they will override these values,
   * see Extensions > Modify Output > Design
   * $gutter-width is set in _base.scss
   */
   
  
  #main-content,
  .block-inner,
  .pane-inner,
  .menu-wrapper,
  .branding-elements,
  .breadcrumb-wrapper,
  .attribution,
  .at-panel .rounded-corner,
  .block-panels-mini > .block-title,
  .rendered-by-ds .panel-display .region-inner,
  div.messages {
    margin-left: 10px;
    margin-right: 10px;
  }
  
  
  
  /*
   * Panel pages need negative margin equal to the gutter width applied to #content,
   * this is taken care of in theme settings as per above for normal gutters
   */
  #content .panel-display,
  #content .panel-flexible {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  /* =============================================================================
      Flexible Media and Cross browser improvements
     ========================================================================== */
  /*
   * - This can cause issues in table cells where no width is set on the column,
   *   only in some versions of webkit and IE 7/8.
   * - declaring the width attribute on image elements and using max-width causes
   *   the "dissappering images" bug in IE8.
   * - Mapping services such as Google Maps may break also, see below for fixes.
   */
  img {
    height: auto;
    -ms-interpolation-mode: bicubic;
  }
  
  /* Ethan Marcotte - http://front.ie/l8rJaA */
  embed,
  object,
  video {
    max-width: 100%;
  }
  
  /* Disable flexiblity for IE8 and below */
  .lt-ie9 img,
  .lt-ie9 object,
  .lt-ie9 embed,
  .lt-ie9 video {
    max-width: none;
  }
  
  /* Override max-width 100% for map displays */
  #map img,
  .gmap img,
  .view-gmap img,
  .openlayers-map img,
  #getlocations_map_canvas img,
  #locationmap_map img,
  .geofieldMap img,
  .views_horizontal_slider img,
  .geolocation-map img,
  .geolocation-views-map img {
    max-width: none !important;
  }
  
  /* =============================================================================
      Misc helpers, Accessibility classes etc
     ========================================================================== */
  /* Prevent overflowing content */
  header[role=banner],
  .content-inner,
  .nav,
  .region-sidebar-first,
  .region-sidebar-second,
  .region-secondary-content,
  .region-tertiary-content,
  .region-footer {
    overflow: visible;
    word-wrap: break-word;
  }
  
  /**
   * General classes for hiding content. These are all included as SASS mixins.
   * @SEE: sass/_custom.scss
   */
  /**
   * Image replacement
   * Kellum Method: http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement
   * Additional helpers from http://html5boilerplate.com/docs/css/
   */
  .ir {
    /* Kellum Method */
    display: block !important;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    /* Remove the default border from elements like button */
    border: 0;
    /* Crush the text down to take up no space */
    font: 0/0 a;
    /* Remove any text shadows */
    text-shadow: none;
    /* Hide any residual text in Safari 4 and any mobile devices that may need it */
    color: transparent;
    /* Hide the default background color on elements like button */
    background-color: transparent;
  }
  
  /* More robust element-invisible and element-focuable classes */
  .element-invisible {
    border: 0;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .element-invisible.element-focusable:active,
  .element-invisible.element-focusable:focus {
    clip: auto;
    height: auto;
    overflow: visible;
    position: static;
    width: auto;
  }
  
  /* Shift content offscreen, can be usefull when you reall need to do this */
  .offscreen {
    position: absolute;
    top: -99999em;
    width: 1px;
    height: 1px;
    overflow: hidden;
    outline: 0;
  }
  
  /* Hide content from all users */
  .element-hidden {
    display: none;
  }
  
  .custom-contact-webform input,
  .custom-contact-webform  textarea {
    max-width: 100% !important;
  }
  
  .views-field-view-node {
  	border-radius: 4px;
  	background: -webkit-linear-gradient(90deg, #0099ba 0%, #0099ba 48%, #0daed1 50%, #0daed1 100%);
  	background: -moz-linear-gradient(90deg, #0099ba 0%, #0099ba 48%, #0daed1 50%, #0daed1 100%);
  	background: -o-linear-gradient(90deg, #0099ba 0%, #0099ba 48%, #0daed1 50%, #0daed1 100%);
  	background: -ms-linear-gradient(90deg, #0099ba 0%, #0099ba 48%, #0daed1 50%, #0daed1 100%);
  	background: linear-gradient(0deg, #0099ba 0%, #0099ba 48%, #0daed1 50%, #0daed1 100%);
  }
  
  .readmore-btn,
  .views-field-view-node {
  	height: 28px;
  	width: 90px;
  }
  
  
  /* Common styles  BEGIN */
  html, body {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    min-width: 320px;
    height: auto;
  }
  html {
    background: #fff;
  }
  
  body {
    overflow: hidden;
  }
  
  input[type=text],
  input[type=password],
  input[type=email] {
    padding: 5px;
    font-size: 0.85em;
    height: 30px;
    box-sizing: border-box;
  }
  
  textarea {
    padding: 5px;
    font-size: 0.85em;
    resize: vertical;
  }
  
  
  table {
      margin-bottom: 1.4em;
      width: 100%;
  }
  
  table, th, td {
      vertical-align: top;
  }
  
  th {
      border-bottom: 5px solid #ffd782;
      padding-right: 1em;
      text-align: left;
      background: #238db1;
      color: #fff;
      padding: 5px;
      font-weight: 600 !important;
      font-size: 15px;
  }
  
  tr.odd {
      background-color: #e1e1e136;
      border-bottom: none;
      padding: 0.1em 0.6em;
  }
  
  tr.even {
      background-color: rgba(131, 173, 187, 0.11);
      border-bottom: none;
      padding: 0.1em 0.6em;
  }
  
  table, td {
    border: none;
    border-collapse: initial;
  }
  
  th, td, caption {
      padding: 8px 10px 8px 20px;
      text-align: left;
      font-weight: normal;
      float: none !important;
      font-size: 14px;
  }
  
  ul,
  ul.primary {
    padding: 0;
  }
  ul li {
    list-style: none;
  }
  a {
    text-decoration: none;
    color: black;
  }
  
  a:active {
    text-decoration: none;
    color: #FF9000;
  }
  
  a:hover {
    text-decoration: underline;
    color: #0000FF;
  }
  
  li a.active {
      color: #FF9000;;
  }
  
  h2 {
    font-size: 20px;
  }
  .comments-amount:hover {
    color: #000;
  }
  .author-datetime a:visited {
    color: #3d666f;
  }
  .author-datetime a:hover {
    color: black;
  }
  textarea {
    box-sizing: border-box;
  }
  input, textarea {
    border-radius: 3px;
    border: 1px solid #D9D9D9;
  }
  .field-content:before,
  .columns:before,
  .clearfix:before,
  #content:before,
  .breadcrumb:before,
  .block-title:before,
  .view-header:before,
  .view-portfolio-page:before,
  .contact-columns:before,
  .node-blog:before,
  nav:before {
    content: " ";
    display: table;
  }
  .field-content:after,
  .columns:after,
  .clearfix:after,
  #content:after,
  .breadcrumb:after,
  .block-title:after,
  .view-header:after,
  .view-portfolio-page:after,
  .contact-columns:after,
  .node-blog:before,
  nav:after {
    content: " ";
    display: table;
    clear: both;
  }
  #logo a,
  #logo img {
    display: block;
    width: 240px;
    margin-top: 5px;
  }
  .form-actions .form-submit {
    margin-right: 15px;
  }
  .form-actions .form-submit:last-child {
    margin-right: 0;
  }
  .form-actions #edit-preview {
    margin-right: 15px;
  }
  #main-content {
    margin: 0 5px;
  }
  #columns {
    margin: 0 10px;
    height: auto !important;
    clear: both !important;
    position: relative;
  }
  
  .region.region-highlighted {
      margin-top: 20px;
  }
  
  .page-user .user-picture {
    float: none;
  }
  body {
    background: #eee;
  }
  
  
  #page {
    background: #fff;
    box-shadow: 0px 4px 10px 0.00px rgba(0, 0, 0, 0.3);
  }
  #page-title {
    margin: 0.83em 0;
  }
  .front #page-title,
  .custom-contact #page-title {
    display: none;
  }
  p {
    font-family: "Open Sans", sans-serif;
    color: #262626;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 1em;
    margin-top: 1em;
  }
  #columns #block-views-front-carousel-block .views-field-nothing span.field-content a,
  .columns-front-page strong + p,
  body h2,
  body #page header.node-header h1.node-title a,
  #page-title,
  .view-blog-page-view .views-field-title a,
  footer h1 {
    margin: 0 0 20px;
    font-family: "Open Sans", sans-serif;
    color:  #0f96b3;
    font-size: 24px;
    font-weight: 400;
    line-height: 22px;
    clear: both;
  }
  #columns #block-views-front-carousel-block .views-field-nothing span.field-content a,
  body #page header.node-header h1.node-title a,
  .view-blog-page-view .views-field-title a {
    height: auto;
    line-height: 1;
    margin-bottom: 10px;
    display: inline-block;
  }
  #columns #block-views-front-carousel-block .views-field-nothing span.field-content a:hover,
  body #page header.node-header h1.node-title a:hover,
  .view-blog-page-view .views-field-title a:hover {
    color: #0ac7f0;
  }
  .region-header .block-content a, #block-system-user-menu .block-inner ul.menu li a {
    font-family: "Open Sans", sans-serif;
    color:  #777777;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    height: 12px;
  }
  .region-header .block-content a:hover, #block-system-user-menu .block-inner ul.menu li a:hover {
    color: #000000;
  }
  #block-system-user-menu {
    float: right;
    margin-bottom: -20px;
  }
  
  #block-system-user-menu h2 {
    display: none;
  }
  
  #block-system-user-menu .block-inner ul.menu li {
    list-style: none;
    float: left;
  }
  
  
  .views-field-view-node a,
  .custom-contact-webform input[type=submit],
  #user-login-form input[type=submit],
  #comment-form input[type=submit],
  .node-readmore a, button, input[type="button"], input[type="reset"], input[type="submit"] {
      margin: 0px;
      background: #ff3366;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      border-radius: 4px;
      text-align: center;
      padding: 5px 30px;
  } 
      
  .views-field-view-node a:hover,
  .custom-contact-webform input[type=submit]:hover,
  #user-login-form input[type=submit]:hover,
  #comment-form input[type=submit]:hover,
  .node-readmore a:hover {
    background: #00838f;
    border-color: #065f67;
    color: #fff;
  }
  
  .views-field-view-node .field-content {
    float: right;
    display: block;
    border-radius: 3px;
    overflow: hidden;
  }
  
  .views-field-view-node a {
    display: block;
  }
  
  .custom-contact-webform input[type=submit] {
    padding: 6px 12px;
    border: none;
  }
  
  .block-superfish .menu-toggle a,
  #primary-menu-bar a,
  #block-system-main-menu .menu a,
  .views-field-view-node a,
  .custom-contact-webform input[type=submit],
  #user-login-form input[type=submit],
  #comment-form input[type=submit],
  .node-readmore a,
  #block-block-3 .content a,
  #block-views-partners-carousel-block .owl-item .views-field-field-image .field-content a,
  .region-footer .block-superfish .sf-style-default.sf-menu li a,
  #block-views-recent-blog-posts-block .view .field-content a,
  footer + .block .content .footer-line a,
  #columns #block-views-front-carousel-block .views-field-nothing span.field-content a,
  body #page header.node-header h1.node-title a,
  .view-blog-page-view .views-field-title a,
  #block-views-recent-articles-block .views-field-title .field-content a,
  #block-views-recent-blog-posts-block img,
  .owl-controls .owl-page span,
  .block-superfish ul#superfish-1 form input[type=submit],
  header #edit-actions input, header #block-search-form input[type=submit],
  .pager a,
  #menu.responsive-menu-block a,
  #menu.responsive-menu-block input,
  #menu .toggle-sub {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  
  /* Common styles END */
  
  /* Testimonials */
  #block-views-testimonials-block {
    margin: 30px 0 60px;
    position: relative;
  }
  
  #block-views-testimonials-block .view {
    padding-top: 30px;
    background-color:  #e5f2f5;
    padding-bottom: 20px;
    border: 1px solid #b8d7de;
    border-radius: 3px;
    padding-left: 45px;
  }
  
  #block-views-testimonials-block:after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 10%;
    display: block;
    width: 0;
    background: url(/sites/all/themes/clean_corporate_theme/images/testimonials_bottom_bg.png);
    width: 19px;
    height: 16px;
  }
  
  #block-views-testimonials-block .views-row {
    padding: 0 40px;
    padding-left: 65px;
    background: url(/sites/all/themes/clean_corporate_theme/images/testimonials_quotes.png) no-repeat;
  }
  
  #block-views-testimonials-block .field-content p,
  #block-views-testimonials-block .field-content {
    color:  #3d666f;
    font-style: italic;
  }
  
  #block-views-testimonials-block .views-field-body {
    font-size: 13px;
  }
  
  #block-views-testimonials-block .views-field-field-author {
    font-size: 14px;
    text-align: right;
  }
  
  /* Recent articles section */
  
  #block-views-recent-articles-block .views-field-title .field-content a {
    font-family: "Open Sans", sans-serif;
    color:  #0daed1;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    height: 21px;
  }
  
  #block-views-recent-articles-block .views-field-title .field-content a:hover {
    color: #0ac7f0;
  }
  
  #block-views-recent-articles-block .views-field-field-image {
    margin-bottom: 20px;
  }
  
  #block-views-recent-articles-block .views-field-body {
    margin-bottom: 10px;
  }
  
  #block-views-recent-articles-block .views-field-body p {
    margin: 0;
  }
  
  #block-views-recent-articles-block img {
    border-radius: 6px;
    display: block;
  }
  
  #block-views-recent-articles-block .views-row {
    position: relative;
  }
  
  #block-views-recent-articles-block .views-row .views-field-view-node {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  
  
  #block-block-1 .content,
  #block-block-2 .content,
  .region-footer .sf-main-menu {
    width: 210px;
  }
  
  
  #block-block-2 .content li a {
    padding-left: 40px;
  }
  
  .sf-menu.sf-style-default {
    margin-bottom: 0;
  }
  
  footer + .block {
    background-color:  #0f0f0f;
    box-shadow: 0px -1px 0px 0.00px #000000;
    margin-bottom: 0px;
    width: 100%;
  }
  
  footer + .block .block-inner {
    margin: 0;
  }
  
  footer + .block .content {
    padding: 10px 0;
  }
  
  footer + .block .content .footer-line a {
    color: #fbfbfb;
  }
  
  footer + .block .content #footer-dash {
    padding: 0 3px;
    border-left: 1px solid #777777;
    height: 10px;
    display: inline-block;
    margin-left: 6px;
  }
  
  footer + .block span,
  #block-views-recent-blog-posts-block {
    color: #fbfbfb;
  }
  
  #block-views-recent-blog-posts-block .view,
  #block-block-1 .content {
    padding-top: 10px;
  }
  
  #block-views-recent-blog-posts-block .views-row {
    min-height: 70px;
    margin-bottom: 15px;
  }
  
  #block-views-recent-blog-posts-block .views-field-field-image {
    float: left;
    padding-right: 12px;
  }
  
  #block-views-recent-blog-posts-block .views-field-created {
    line-height: 18px;
    font-size: 12px;
  }
  
  #block-views-recent-blog-posts-block .views-field-title {
    line-height: 18px;
    font-size: 13px;
  }
  
  #block-views-recent-blog-posts-block .view .field-content:before,
  #block-views-recent-blog-posts-block .view .field-content:after {
    content: none;
  }
  
  #block-views-recent-blog-posts-block img {
    border: 5px solid #0f0f0f;
    border-radius: 8px;
  }
  
  #block-views-recent-blog-posts-block img:hover {
    border-color: #525252;
  }
  
  #block-block-2 .content ul li a {
    line-height: 40px;
    padding: 7px 0px 7px 40px;
  }
  
  #fb a:hover {
    background: url(/sites/all/themes/clean_corporate_theme/images/fb.png) 0px -34px no-repeat;
  }
  
  #linkedin a:hover {
    background: url(/sites/all/themes/clean_corporate_theme/images/linkedin.png) 0px -34px no-repeat;
  }
  
  #google a:hover {
    background: url(/sites/all/themes/clean_corporate_theme/images/google.png) 0px -34px no-repeat;
  }
  
  #twitter a:hover {
    background: url(/sites/all/themes/clean_corporate_theme/images/twitter.png) 0px -34px no-repeat;
  }
  
  #fb a {
    background: url(/sites/all/themes/clean_corporate_theme/images/fb.png) 0px 0px no-repeat;
  }
  
  #linkedin a {
    background: url(/sites/all/themes/clean_corporate_theme/images/linkedin.png) 0px 0px no-repeat;
  }
  
  #google a {
    background: url(/sites/all/themes/clean_corporate_theme/images/google.png) 0px 0px no-repeat;
  }
  
  #twitter a {
    background: url(/sites/all/themes/clean_corporate_theme/images/twitter.png) 0px 0px no-repeat;
  }
  
  .copyright {
    font-size: 12px;
  }
  
  footer + .block .block-inner {
    margin: 0 30px;
  }
  
  /* Header */
  
  #user-login a {
    padding-left: 18px;
    background: url(/sites/all/themes/clean_corporate_theme/images/login_icon.png)0 50% no-repeat;
    margin: 0;
  }
  
  #block-block-3 ul #user-login {
    padding-right: 0;
  }
  
  .logged-in #user-login {
    display: none;
  }
  
  #block-block-3 ul li {
    float: left;
    padding-right: 20px;
  }
  
  #block-block-3 #email-icon a {
    background: url(/sites/all/themes/clean_corporate_theme/images/email_icon.png) 0 50% no-repeat;
    padding-left: 23px;
  }
  
  #block-block-3 #phone-icon a {
    background: url(/sites/all/themes/clean_corporate_theme/images/phone_icon.png) 0 50% no-repeat;
    padding-left: 18px;
  }
  
  .username-wrapper,
  .username-wrapper span,
  .post-time-node {
    color: #3d666f;
  }
  
  .username-wrapper {
    padding-left: 16px;
    padding-right: 2px;
    background: url(/sites/all/themes/clean_corporate_theme/images/user_icon.png) no-repeat;
    background-position-y: center;
    border-right: 1px solid #c6d0d1;
    margin-right: 6px;
  }
  
  .post-time-node {
    padding-right: 2px;
    padding-left: 18px;
    background: url(/sites/all/themes/clean_corporate_theme/images/time_icon.png) no-repeat;
    background-position-y: center;
    border-right: 1px solid #c6d0d1;
    margin-right: 6px;
  }
  
  .comments-amount {
    color: #3d666f;
    padding-left: 18px;
    background: url(/sites/all/themes/clean_corporate_theme/images/comment_icon.png) no-repeat;
    background-position-y: center;
  }
  
  
  .block-search .container-inline {
    position: relative;
    display: inline-block;
  }
  
  #block-search-form .form-type-textfield input {
    width: 250px;
    height: 30px;
    border: none;
    background: #ecf3f4;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    margin-left: 20px;
  }
  
  #block-search-form .form-actions {
    position: absolute;
    right: 0;
    top: 4px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    width: 42px;
  }
  
  #block-search-form #edit-actions input,
  #block-search-form input[type=submit] {
    font-size: 0px;
    height: 30px;
    width: 40px;
    background: url(/sites/all/themes/clean_corporate_theme/images/search.png) no-repeat;
    border: none;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0.7;
    display: block;
  }
  
  #block-search-form #edit-actions input:hover,
  #block-search-form input[type=submit]:hover {
    opacity: 1;
  }
  
  #block-block-3 ul {
    margin: 0;
  }
  
  #block-block-3 .content ul {
    margin: 0;
  }
  
  
  /* Blog Left Sidebar */
  #main-content{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  #block-views-archive-block a,
  #block-views-categories-block a,
  #block-views-comments-recent-block a {
    color: #262626;
    font-size: 13px;
    font-weight: 400;
  }
  
  #block-views-archive-block a,
  #block-views-categories-block a {
    line-height: 24px;
  }
  
  #block-views-comments-recent-block a {
    line-height: 18px;
  }
  /* Page Contacts */
  
  body.contact #block-system-main {
    float: right;
    width: 460px;
  }
  
  body.contact #page-title {
    display: none;
  }
  
  body.contact #page-wrapper #content-column .content-inner {
    margin-bottom: 0;
    min-height: 0;
  }
  
  label,
  #block-user-login ul li a {
    color:#262626;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
  }
  
  .region-footer .block-superfish .sf-menu a {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  #block-user-login ul li a {
    text-decoration: underline;
  }
  
  #block-user-login ul li {
    margin-left: 0;
  }
  
  #edit-submitted-message {
    font-size: 0.85em;
    padding:0 5px;
  }
  
  #edit-submitted-message {
    padding-top: 3px;
  }
  
  .custom-contact-webform input[type=text] {
    height: 25px;
    box-sizing: border-box;
    padding: 0 5px;
  }
  
  .custom-contact .node.clearfix .contact-column {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    line-height: 18px;
    margin: 20px 0;
  }
  
  .custom-contact .node.clearfix h2 {
    clear: both;
  }
  
  .custom-contact .node.clearfix .contact-column {
    color:  #262626;
    font-weight: 400;
    width: 230px;
  }
  
  .custom-contact .node.clearfix .contact-column ul li a {
    color: inherit;
  }
  
  .custom-contact .node.clearfix .contact-column strong {
    color:  #3d666f;
    font-style: italic;
  }
  
  #main-content-header {
    margin: 0;
  }
  
  .contact .iframe-wrapper {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
  }
  
  .contact .iframe-wrapper iframe {
    display: block;
  }
  
  .contact #block-system-main .contact-column strong {
    color: #3d666f;
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
  }
  
  .contact #block-system-main .contact-columns {
    margin-bottom: 50px;
  }
  
  .contact #block-system-main .contact-column ul {
    margin-top: 0;
  }
  
  .contact #content {
    padding-bottom: 50px;
  }
  
  /* Owl Carousel Partners */
  
  .owl-theme .owl-controls {
    margin-top: 20px;
  }
  
  #block-views-partners-carousel-block {
    margin: 20px 0;
  }
  
  #block-views-partners-carousel-block .owl-item img {
    width: 100%;
    height: auto;
  }
  
  #block-views-partners-carousel-block .owl-item .views-field-field-image {
    padding: 0 20px;
  }
  
  #block-views-partners-carousel-block .owl-wrapper-outer {
    margin: 0 -10px;
  }
  
  #block-views-partners-carousel-block .owl-theme .owl-controls .owl-buttons div {
   padding: 7px 6px;
  }
  
  #block-views-partners-carousel-block .owl-theme .owl-controls .owl-buttons {
    position: absolute;
    top: -50px;
    left: 47.5%;
    width: 5%;
  }
  
  
  #block-views-partners-carousel-block .owl-theme .owl-controls .owl-buttons div.owl-prev {
    background: url(/sites/all/themes/clean_corporate_theme/images/carousel_arrs.png);
  }
  
  #block-views-partners-carousel-block .owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
    background: url(/sites/all/themes/clean_corporate_theme/images/carousel_arrs.png) 0px 15px;
  }
  
  #block-views-partners-carousel-block .owl-theme .owl-controls .owl-buttons div.owl-next {
    background: url(/sites/all/themes/clean_corporate_theme/images/carousel_arrs.png) -8px 0px;
  }
  
  #block-views-partners-carousel-block .owl-theme .owl-controls .owl-buttons div.owl-next:hover {
    background: url(/sites/all/themes/clean_corporate_theme/images/carousel_arrs.png) -8px 15px;
  }
  
  #block-views-partners-carousel-block h2 {
    padding: 20px 0px 20px 50px;
    background: url(/sites/all/themes/clean_corporate_theme/images/icon_star.png) no-repeat;
    background-position-y: center;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  #owl-carousel-block17 img {
    border: 8px solid #ecf3f4;
    border-radius: 8px;
    width: 184px;
    height: 94px;
  }
  
  #owl-carousel-block17 img:hover {
    border-color: #0daed1;
  }
  
  .owl-theme .owl-controls .owl-buttons div {
    opacity: 1;
  }
  
  #block-views-partners-carousel-block .owl-item .views-field-field-image .field-content a {
    border: 6px solid #ecf3f4;
    border-radius: 6px;
  }
  
  #block-views-partners-carousel-block .owl-item .views-field-field-image .field-content a:hover {
    border-color: #d7d7d7;
  }
  
  #block-views-partners-carousel-block .owl-item .views-field-field-image a,
  #block-views-partners-carousel-block .owl-item .views-field-field-image img {
    display: block;
  }
  
  .owl-carousel-block {
    z-index: 0;
  }
  
  #block-views-front-carousel-block .owl-controls .owl-page {
    margin-right: 2.5px;
    margin-left: 2.5px;
  }
  
  #block-views-front-carousel-block .owl-controls .owl-page span {
    position: relative;
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    background: transparent;
    border: 1px solid #ffffff;
    opacity: 1;
  }
  #block-views-front-carousel-block .owl-controls .owl-page span:before {
    content: " ";
    box-sizing: border-box;
    position: absolute;
    top: -6px;
    left: -6px;
    width: 26px;
    height: 26px;
    border: 5px solid #d0d9db;
    border: 5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
  }
  /* 3 column under slideshow on front page */
  
  .columns-front-page {
    padding-top: 50px;
  }
  
  .columns-front-page .column p {
    margin-bottom: 10px;
  }
  
  .columns-front-page div.column {
    display: inline-block;
    vertical-align: top;
    padding-right: 5px;
    box-sizing: border-box;
  }
  
  .columns-front-page div.column ul {
    padding-left: 50px;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
  }
  
  .columns-front-page div.column ul li,
  #block-views-archive-block .content ul li,
  #block-views-categories-block .views-row {
    height: 19px;
    margin: 5px 0;
    list-style: none;
    line-height: 1.3;
    font-size: 13px;
    font-weight: 400;
  }
  
  .columns-front-page div.column ul li {
    height: auto;
  }
  
  .columns-front-page div.column ul li a,
  #block-views-archive-block .content ul li a,
  #block-views-categories-block .views-row span.field-content a {
    background: url(/sites/all/themes/clean_corporate_theme/images/list-style.png) 0 4px no-repeat;
    padding-left: 14px;
    display: inline-block;
  }
  
  .columns-front-page div.column ul li a:hover,
  #block-views-archive-block .content ul li a:hover,
  #block-views-categories-block .views-row span.field-content a:hover {
    text-decoration: underline;
  }
  
  .columns-front-page div.column ul li a {
    color: #262626;
  }
  
  .columns-front-page strong {
    background-position-y: center;
    display: block;
  }
  
  #ben-col-1 {
   background: url(/sites/all/themes/clean_corporate_theme/images/icon_paper.png) no-repeat;
  }
  
  #ben-col-2 {
   background: url(/sites/all/themes/clean_corporate_theme/images/icon_star.png) no-repeat;
  }
  
  #ben-col-3 {
   background: url(/sites/all/themes/clean_corporate_theme/images/icon_mobile.png) no-repeat;
  }
  
  
  /* RECENT COMMENTS BLOCK */
  
  #block-comment-recent .block-inner {
    padding: 0;
  }
  
  #block-views-comments-recent-block .views-row,
  #block-comment-recent .content li,
  #block-node-recent tr {
    padding-left: 22px;
    position: relative;
    margin: 8px 0;
  }
  
  #block-views-comments-recent-block .views-field-subject,
  #block-views-comments-recent-block .views-field-timestamp,
  #block-comment-recent .content a,
  #block-comment-recent span,
  #block-node-recent .node-title,
  #block-node-recent .node-author {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    line-height: 18px;
    display: inline;
  }
  
  #block-views-comments-recent-block .views-field-subject,
  #block-comment-recent .content a,
  #block-node-recent .node-title {
    color: #262626;
    font-weight: 400;
  }
  
  #block-views-comments-recent-block .views-field-subject:before,
  #block-comment-recent .content li a:before,
  #block-node-recent .node-title:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    left: 0px;
    top: 7px;
    background: url(/sites/all/themes/clean_corporate_theme/images/comment_icon.png) no-repeat;
    display: block;
  }
  
  #block-views-comments-recent-block .views-field-timestamp,
  #block-comment-recent span,
  #block-node-recent .node-author {
    color: #3d666f;
    display: inline;
  }
  
  /* RECENT CONTENT */
  #block-node-recent .block-inner {
    padding: 0;
  }
  #block-node-recent table {
    width: 100%;
  }
  #block-node-recent tr {
    display: block;
    border: none;
    background: none;
    margin: 0 0 15px;
  }
  
  #block-node-recent .title-author,
  #block-node-recent .node-title,
  #block-node-recent .node-author {
    display: block;
  }
  
  #block-node-recent .title-author {
    margin-bottom: 5px;
  }
  
  #block-node-recent .edit,
  #block-node-recent .delete {
    display: inline-block;
    margin-right: 5px;
  }
  
  .not-logged-in #block-node-recent .edit,
  .not-logged-in #block-node-recent .delete {
    display: none;
  }
  
  /* BLOG ENTRY STYLING */
  #block-system-main .node,
  #page-title {
    margin-top: 20px;
  }
  
  #main-content-header + #content #block-system-main .node,
  .region-breadcrumb + #columns #page-title {
    margin-top: 0;
  }
  
  #block-system-main .views-field-field-image {
    border-radius: 8px;
  }
  
  .region-sidebar-first section + section,
  .region-sidebar-second section + section,
  .region-sidebar-first .block + .block,
  .region-sidebar-second .block + .block {
    /* border-top: 1px solid #c6d0d1;*/
  }
  
  .region-sidebar-first section .block-inner,
  .region-sidebar-second section .block-inner {
    margin: 0;
    padding-bottom: 20px;
  }
  
  #block-views-recent-portfolio-items-block .views-field-field-image img {
    border-radius: 5px;
  }
  
  #block-views-recent-portfolio-items-block .views-row + .views-row {
    padding-top: 15px;
  }
  
  
  #block-user-login input[type=text],
  #block-user-login input[type=password] {
    height: 25px;
    padding: 0 5px;
    box-sizing: border-box;
  }
  
  /* Slideshow Styling */
  
  #columns #block-views-front-carousel-block .views-field-nothing span.field-content p {
    color: #fff;
    margin: 0;
    line-height: 1.5;
  }
  
  #columns #block-views-front-carousel-block {
    margin: 0px;
  }
  
  #block-views-front-carousel-block .owl-controls .owl-buttons {
    display: none;
  }
  
  #block-views-front-carousel-block .views-field-nothing {
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 25px 40px;
    background-color: rgba(0, 0, 0, 0.55);
    width: 40%;
  }
  
  #block-views-front-carousel-block .owl-controls {
    text-align: left;
    position: absolute;
    bottom: 30px;
    left: 30px;
  }
  
  #block-views-front-carousel-block .owl-wrapper .views-field-field-image img {
    display: block;
  }
  
  #page-wrapper #content-column .content-inner {
    margin-bottom: 40px;
  }
  
  .page-node-140 #page-title {
    display: block;
  }
  
  input {outline: none;}
  input:-webkit-autofill {
      -webkit-box-shadow: inset 0 0 0 50px #fff !important; /* Цвет фона */
      -webkit-text-fill-color: #999 !important; /* цвет текста */
      color: #999 !important; /* цвет текста */
  }
  
  
  #user-login-form #edit-submit {
    float: right;
  }
  
  .view-blog-page-view {
    margin-bottom: 20px;
  }
  
  .view-blog-page-view .views-row {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #c6d0d1;
  }
  
  .view-blog-page-view .views-row-last {
    border-bottom: none;
  }
  
  .view-blog-page-view .field-type-image img {
    border-radius: 10px;
  }
  
  /*BLOG PAGER STYLING */
  
  .pager a {
    display: inline-block;
  }
  
  #block-user-login ul li a:hover {
    color: gray;
  }
  
  .item-list-pager ul.pager li {
    padding: 0;
    margin: 0 0 0 2px;
    font-size: 13px;
    display: inline-block;
    width: auto !important;
  }
  
  .item-list-pager ul.pager li.pager-next,
  .item-list-pager ul.pager li.pager-last
  {
    margin: 0 0 0 10px;
  }
  
  .item-list-pager ul.pager li.pager-first,
  .item-list-pager ul.pager li.pager-previous
  {
    margin: 0 10px 0 0;
  }
  
  .item-list-pager ul.pager li a,
  .item-list-pager ul.pager li.pager-current {
    vertical-align: top;
    padding: 3px 9px;
  }
  
  .item-list-pager ul.pager li.pager-current {
    padding-top: 5px;
  }
  
  .item-list-pager ul.pager li a {
      color: #fff;
      line-height: 20px;
      background: #ff3366;
  }
  
  .item-list-pager ul.pager li a:hover {
      color: #fff;
      background: #3383bb;
  }
  
  .item-list-pager ul.pager li a:before {
      color: #fff;
  }
  
  #tasks ul.action-links a {
    color: black;
  }
  
  .author-datetime,
  .author-datetime span,
  .author-datetime a {
    font-family: "Open Sans", sans-serif;
    color:  #3d666f;
    font-size: 13px; /* Приближение из-за подстановки шрифтов */
    font-style: italic;
    margin-bottom: 10px;
  }
  
  
  header.node-header {
    margin-left: 0;
    margin-bottom: 0;
  }
  
  header.node-header h1 {
    font-size: initial;
    margin: 7px 0;
  }
  
  .node-title {
    margin: 0;
  }
  
  article.node > footer .user-picture {
    display: none;
  
  }
  
  .comment, #comments .comment-title {
    padding-top: 20px;
    border-top: 1px solid #daebed;
    margin-top: 19px;
  }
  
  .comment .user-picture {
    float: left;
    padding-right: 20px;
  }
  
  .comment .author-datetime {
    margin-bottom: 8px;
  }
  
  #comments .indented {
    margin-left: 20px;
  }
  
  #comments > article:nth-of-type(1) {
    border: none;
    margin-top: 0;
    padding-top: 0;
  }
  
  #comments .comment .field-name-comment-body p {
    margin-left: 100px;
  }
  
  #comments nav {
    clear: left;
    float: right;
  }
  
  #comments nav a {
    color: black;
    font-weight: 600;
    font-size: 12px;
  }
  
  #comments nav a:hover {
    color: rgb(155, 155, 155);
  }
  
  #comments span[datatype="xsd:dateTime"] {
    padding-left: 6px;
    border-left: 1px solid #c6d0d1;
    margin-left: 8px;
    color: #3d666f;
  }
  
  .comment ul.links li:first-child {
    padding-left: 0;
  }
  
  ul.inline .node-readmore {
    padding: 0;
  }
  
  .node > nav {
    float: right;
  }
  
  .page-portfolio .item-list ul.pager {
    margin: 20px 0 60px 0;
    padding: 0;
  }
  
  .page-portfolio #block-system-main .view-header > p,
  .view-portfolio-categories {
    display: inline-block;
  }
  
  #comment-body-add-more-wrapper fieldset.filter-wrapper.form-wrapper,
  #comment-body-add-more-wrapper .grippie,
  #comment-form .description {
    display: none;
  }
  
  #comment-body-add-more-wrapper textarea {
    resize: none;
  }
  
  
  /* tabs styling */
  
  #tasks ul.tabs li a {
    color: #3d666f;
  }
  
  #comment-form input[type=text] {
    width: 100%;
  }
  
  body #page header.node-header h1.node-title a:hover {
    color: #0B768D;
  }
  
  #block-views-archive-block .content ul li a:hover ,
  #block-views-categories-block .views-row span.field-content a:hover {
    color: #A2A2A2;
  }
  
  /* Portfolio Page Styling */
  
  .page-portfolio #page-title {
    display: none;
  }
  
  .page-portfolio .view.view-id-portfolio_page .views-row img {
    border-radius: 6px;
    width: 100%;
    height: 100%;
  }
  
  .page-portfolio .view.view-id-portfolio_page .view-content {
    margin-right: -3%;
  }
  
  .page-portfolio .view.view-id-portfolio_page .view-header + .view-content .views-row {
    float: left;
    margin: 0 2% 2% 0;
    display: inline-block;
  }
  
  
  #main-content .field-name-field-image {
    margin: 0.8em 0 1.4em;
  }
  
  #main-content .node-promoted .field-name-field-image img {
    border-radius: 6px;
  }
  
  #main-content .node-promoted .field-name-field-image {
    line-height: 0;
  }
  
  /* Portfolio Categories Links Styling */
  
  #portfolio-categories {
    text-align: right;
  }
  
  #portfolio-categories li {
    display: inline;
  }
  
  .view-portfolio-page .view-header {
    text-align: right;
  }
  
  .view-portfolio-categories .views-row .field-content a.active {
    color:  #3d666f;
    font-size: 13px;
    font-style: italic;
  }
  
  .page-portfolio #block-system-main .view-header > p a:hover {
    color:  #3d666f;
  }
  
  .view-portfolio-categories .views-row .field-content a:hover {
    color:  #3d666f;
  }
  
  .view.view-id-portfolio_page .view-header .view-portfolio-categories,
  .page-portfolio #block-system-main .view-header > p {
    height: 22px;
    margin: 0;
    margin-right: 1%;
    padding-bottom: 20px;
    vertical-align: middle;
  }
  .view.view-id-portfolio_page .view-header .view-portfolio-categories .view-content {
    margin-right: 0;
    display: inline-block;
  }
  
  .view-portfolio-categories .views-row .field-content a {
    color:  #262626;
    font-size: 13px;
  }
  
  .view-portfolio-categories .views-row {
    display: inline;
    float: left;
  }
  
  .view.view-id-portfolio_page .view-content {
    clear: left;
  }
  
  .view-portfolio-categories .views-row {
    padding: 0 9px;
    border-left: 1px solid #c6d0d1;
  }
  
  .view-portfolio-categories .views-row.views-row-last {
    padding-right: 0;
  }
  
  #owl-carousel-block19 .owl-item {
    position: relative;
    width: 100%;
  }
  
  /* Breadcrumbs styling */
  .breadcrumb {
    padding: 0;
  }
  
  #block-delta-blocks-breadcrumb{
    margin: 0px 2%;
  }
  
  #block-delta-blocks-breadcrumb .content ul.breadcrumb {
    margin: 30px 0 10px;
  }
  
  #block-delta-blocks-breadcrumb .content ul.breadcrumb li {
    float: left;
  }
  
  #block-delta-blocks-breadcrumb .content ul.breadcrumb li a {
    font-family: "Open Sans", sans-serif;
    color:  #262626;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-decoration: underline;
    padding-right: 5px;
  }
  
  #block-delta-blocks-breadcrumb .content ul.breadcrumb li a:hover {
    color: gray;
  }
  
  #block-delta-blocks-breadcrumb .content ul.breadcrumb li:after {
    content: ">";
    padding-right: 5px;
    text-decoration: none;
    color: #262626;
    font-size: 13px;
  }
  
  #block-delta-blocks-breadcrumb .content ul.breadcrumb li.last:after {
    content: none;
  }
  
  #block-delta-blocks-breadcrumb .content ul.breadcrumb li.first a:before {
    content: none;
  }
  
  #block-delta-blocks-breadcrumb .content ul.breadcrumb li.last a {
    text-decoration: none;
  }
  
  .node-portfolio-project img {
    border-radius: 15px;
  }
  
  /*---- LAVEG ----*/
  
  footer a,
  footer p,
  footer span {
  	color: #dcdcdc;
  }
  
  #search-block-form {
    z-index: 1;
  }
  
  .columns-front-page strong + p {
    padding-left: 50px;
  }
  
  .columns-front-page strong {
    position: absolute;
    top: -7px;
    left: 0%;
    height: 36px;
    width: 36px;
  }
  
  .columns-front-page .column {
    position: relative;
  }
  
  #superfish-1-select {
    display: none;
  }
  
  .page-taxonomy #block-system-main .node {
    margin-bottom: 50px;
  }
  
  #block-system-navigation {
    clear: both;
  }
  
  
  /************* Quiz CSS ********/
  .node-quiz {
      border-radius: 4px;
      background: rgba(226, 226, 226, 0.23);
      border: 1px solid #ccc;
      padding: 20px 20px 0;
      margin: 10px 0 20px !important;
  }
  
  .node-quiz ul{
     margin: 0;
  }
  
  
  .node-quiz p{
     font-size: 13px !important; 
     line-height: 20px;
  }
  
  .node-quiz a  {
      color: #054b81;
  }
  
  .node-quiz .field.field-name-body.field-type-text-with-summary, table#quiz-view-table, .node-quiz .field-name-field-category{
      padding: 0 !important;
  }
  
  
  .node-quiz .field-name-field-category a{
      font-size: 30px;
  }
  
  #quiz-view-table{
      width: 100%;
  }
  
  #quiz-view-table td {
      padding: 0px 3px 0px 3px;
      margin: 0px;
      line-height: 110%;
      font-size: 14px;
      height: 35px;
      /*width: 100%;*/
      border: 1px dotted #ccc;
      vertical-align: middle;
  }
  
  #quiz-start-quiz-button-form{
      text-align: center;
      display: none;
   }
  
  
  #quiz-start-quiz-button-form input, .form-submit {
      margin: 0px;
      background: #054b81;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      border-radius: 4px;
      text-align: center;
      padding: 10px 30px;
  }
  
  
  .answering-form{
      border-radius: 4px;
      background: rgba(226, 226, 226, 0.23);
      border: 1px solid #ccc;
      padding: 0 20px 20px;
      margin: 0 13px 30px;
      clear: both;
  }
  
  .answering-form .form-type-radio{
      text-align: center;
  }
  
  .answering-form td {
      padding: 0px 3px 0px 3px;
      margin: 0px;
      font-size: 13px;
      border: 1px dotted #ccc;
      vertical-align: middle;
      line-height: 30px;
  }
  
  #quiz_progress, #quiz_score_possible, #quiz_score_percent {
      background: #054b81;
      font-size: 20px;
      font-weight: 600;
      border-radius: 4px;
      padding: 0px 15px;
      color: #ffffff;
      margin: 0 10px;
      border: 1px solid #ccc;
  }
  
  
  .online-test-quiz .field-name-body p{
      font-size: 18px;
      padding: 10px 15px 10px;
      margin: 10px 0px 5px;
      color: #e72617;
  }
  
  
  #quiz_summary p{
      font-size: 18px;
      padding: 10px 15px 10px;
      margin: 10px 0px 5px;
      color: #3eab06;
  }
  
  .answering-form table td p{
      margin: 5px 0 0 5px;
      font-size: 14px;
      padding: 0px;
      margin: 10px 0px 5px;
      color: #054b81;
  }
  
   
  .quiz-report table td p, .quiz-report p{
      margin: 3px 0 !important;
      font-size: 14px;
      padding: 0px;
      margin: 10px 0px 5px;
      color: #054b81;
  }
  
  div.quiz-report .dd {
      margin: 10px 5px 40px !important;
  }
  
  
  .answering-form label{
      clear: both;
      font-size: 14px;
  }
  
  
  span.certificate-link{
      float: left;
      border: 1px dotted #666;
      border-radius: 4px;
      background: #5bd040;
      clear: both;
      text-align: center;
      width: 100%;
  }
  
  span.certificate-link a{
      background: url(/sites/all/themes/clean_corporate_theme/css/img/download-pdf.png) no-repeat;
      padding: 12px 10px 10px 50px;
      font-size: 20px;
      color: #ffffff;
      line-height: 37px;
  }
  
  #quiz-report-form, #user-register-form, #user-login, #user-pass{
      border-radius: 4px;
      background: rgba(226, 226, 226, 0.23);
      border: 1px solid #ccc;
      padding: 10px 20px 60px;
      clear: both;
  }
  
  select#edit-user-roles, input#edit-captcha-response{
      height: 30px;
      width: 20%;
  }
  
  
  div.quiz-report .dt div.quiz-report-score-container {
      float: right;
      padding: 0px 10px;
      border-radius: 5px;
      font-size: 15px;
      border: none;
      margin: 10px;
      color: #d20f0f;
      width: 100px;
      height: 20px;
      line-height: 20px;
  }
  
   .quiz-report{
      border: 1px dotted #666;
      border-radius: 4px;
  }
  
  div.quiz-report thead th{
      background: none;
  }
  
  #quiz-report-form .question_type_name {
      font-style: italic;
      display: none;
  }
  
  div#start-quiz-container {
      width: 100%;
      display: table;
      margin: 0 0 20px;
  }
  
  
  .start-quiz-left, .start-quiz-right {
      width: 320px;
      float: left;
      margin-bottom: 20px;
  }  
  
  .start-quiz-left ul{
      margin-top: 20px;
      text-align: left;
      line-height: 20px;
      font-size: 13px;
      font-style: italic;
      color: #981612;
      margin-left: 85px !important;
      clear: both;
  }   
  
  .start-quiz-right ul{
      margin-top: 20px;
      text-align: left;
      line-height: 20px;
      font-size: 13px;
      font-style: italic;
      color: #981612;
      margin-left: 55px !important;
      clear: both;
  }   
  
  
  
  /******* Tab CSS **********/
  .ui-tabs .ui-tabs-nav li {
      list-style: none;
      float: left;
      position: relative;
      top: 1px;
      margin: 0 .2em 1px 0;
      border-bottom: 0 !important;
      padding: 0;
      white-space: nowrap;
      background: #238db1;
      font-size: 14px;
  }
  
  
  .ui-tabs .ui-tabs-nav li a {
      color: #fff;
  }
  
  .ui-tabs .ui-tabs-nav li.ui-state-active {
      background: #FEA22C;
  }
  
  .ui-tabs .ui-tabs-panel {
      display: block;
      border-width: 0;
      padding: 1em 0;
      background: none;
  }
  
  h2.scrollMidsection {
      float: right;
      margin: 0 20px;
      background: rgba(204,204,204,0.21);
      padding: 6px 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 18px;
      color: #00f;
      cursor: pointer;
  }
  
  h2.scrollMidsection a.toBottom, .node .field-type-taxonomy-term-reference a {
      cursor: pointer;
  }
  
  .node .field-type-taxonomy-term-reference{
      font-size: 18px;
  }
  
  
  
  /************* Custom CSS ***********************/
  ul li.leaf, .view-cbse-class-menu ul li {
      list-style:none;
  }
  
  
  #block-blog-recent ul, .view-cbse-class-menu ul{
      margin-left: 20px;
  }
  
  #block-menu-menu-utility-menu-top{
      margin-top: 4px;
  }
  
  
  #block-menu-menu-utility-menu-top ul li{
      float: left;
      margin: 0;
      margin-left: 20px;
      list-style: none;
      color: #fff;
      background: #42a5f5;
      padding: 5px 10px 5px 18px;
      border-radius: 2px;
  }
  
  #block-menu-menu-utility-menu-top li a {
      padding-right: 8px;
      color: #fff;
  }
  
  
  .view-vg-child-online-test td, .view-new-home-page-child-terms td, .cbse-downloads td{
      font-size: 14px;
      width: 155px;
      cursor: pointer;
      border-radius: 4px 4px 0 0;
  }
  
  
  .cbse-downloads ul li{
      float: left;
      padding: 5px 0 10px 20px;
      background: url(/sites/all/themes/clean_corporate_theme/css/images/icons/arrow-list1.gif) 0px 10px no-repeat;
      width: 220px;
      margin-left: -8px;
  }
  
  
  .global-list-icon, .global-list-icon1{
      border-radius: 4px;
      margin: 10px 0;
      width: 100%;
  }
  
  .global-list-icon ul, .global-list-icon1 ul{
      margin: 0;
  }
  
  
  .global-list-icon1 ul li{
      float: left;
      width: 47%;
      margin-bottom: 10px;
      padding-left: 20px;
  }
  
  .global-list-icon1 ul li:before{
      content: "\f0a9";
      font-family: 'FontAwesome';
      color: #f36;
      float: left;
      margin-right: 10px;
  }
  
  .view-vg-child-online-test td a:before, 
  .view-new-home-page-child-terms td a:before, 
  .cbse-downloads td a:before{
      content: "\f0a9";
      font-family: 'FontAwesome';
      padding: 5px;
      color: #f36;
  }
  
  
  .responsive-table{
      width: 100%;
      overflow: auto;
  }
  
  .views-table a{
      color: #0000ff;
  }
  
  .view-recent-blog-posts{
      margin-bottom: 20px !important; 
      min-height: 450px !important;
      clear: both !important;
      margin-top: 20px !important;
  }
  
  .view-recent-blog-posts li, .view-id-vg_recent_content li {
      border-radius: 4px;
      background: url(/sites/all/themes/clean_corporate_theme/css/images/icons/double-arrow1.gif) 0 10px no-repeat;
      border-bottom: dotted 1px #ccc;
      line-height: 30px;
      content: no-open-quote;
      padding-left: 20px !important;
      margin-left: 0 !important;
  }
  
  .fb-social-like {
      margin-bottom: 20px;
  }
  
  /*
  .block-simplenews {
      padding: 15px;
      border: 1px solid #fff;
      border-radius: 4px;
      background: #5a6d7d;
      color: #fff;
  }
  
  .block-simplenews h2, .block-simplenews label {
      color: #ffffff;
      font-size: 17px;
  }
  */
  
  #header{
      right: 0;
      left: 0;
      z-index: 1030;
      background-color: #fff;
      border-color: #eee;
      margin: 0 auto;
  }
  
  
  .container {
      position: relative;
      overflow: hidden;
  }
  
  dl, menu, ol, ul {
      margin: 1em 0 0 1.5em;
  }
  
  select#edit-field-year-value {
      margin-top: 10px;
      height: 30px;
  }
  
  
  .view.view-iframelogin {
      padding: 10px 20px 30px;
      font-size: 20px;
      line-height: 20px;
      text-align: center;
  }
  
  .view.view-iframelogin a {
      background: #ff3366;
      padding: 10px 20px;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      border-radius: 4px;
  }
  
  .view.view-iframelogin a:hover {
      color: #f8f8f8;
  }
  
  .node-blog{
      margin-bottom: 40px;
  }
  
  #admin-menu, #admin-menu .dropdown{
      z-index: 9999 !important;
  }
  
  #fancy_login_login_box{
     z-index: 99999 !important;
  }
  
  
  #branding{
      margin: 0 0 5px !important;
      float: left;
  }
  
  .node-content ul {
      margin-left: 0;
  }
  
  ul.social-share {
      width: 100%;
      margin: 5px 0;
      background: rgba(236, 234, 236, 0.23);
      height: 36px;
      border: 1px solid rgba(204, 204, 204, 0.43);
      clear: both;
  }
  
  ul.social-share li{
      float: right;
      list-style: none;
      list-style-image: none;
      padding-top: 2px;
  }
  
  ul.social-share img{
      border-radius: 3px;
  }
  
  ul.social-share li.last{
      vertical-align: middle;
      margin-top: 4px;
  }
  
  .study-facebook-like{
      margin-top: 20px;
      height: 75px;
      display: block;
      clear: both;
  }
  
  h2.related-heading{
      font-size: 28px;
      color: #355f94;
      font-weight: 600;
  }
  
  section.field-name-field-year, section.field-name-field-vote{
   margin-top: 5px;
  }
  
  section.field-name-field-year h2, section.field-name-field-vote h2{
      font-size: 14px;
      color: #666;
  }
  
  p.scroll-down {
      float: right;
      margin: 10px;
      /*padding: 6px 10px;*/
      font-size: 15px;
      font-style: italic;
      font-weight: 600;
  }
  
  
  /*---------- orp wrapper tabs-------- */
  #orp_wrapper #tasks .tabs{
  	height:30px;
  	    margin: 0;
  		border-bottom: 1px solid #ECF3F4;
  }
  
  #orp_wrapper #tasks .secondary{
  	padding: 0;
      margin: 10px 0 !important;
  }
  
  #orp_wrapper #tasks .secondary li{
  	border-right:none !important;
  }
  
  
  #orp_wrapper #tasks .secondary li a{
  	font-size: 13px !important;
      font-weight: 600;
  }
  
  
  #orp_wrapper #content h3{
      color: #0daed1;
      padding: 10px 0;
  }
  
  
  #orp_wrapper .student-profile h2{
      font-size:14px;
  	min-width: 140px;
  }
  
  #orp_wrapper #tasks .tabs li{
  	height:30px;
  }
  
  
  #orp_wrapper #tasks .tabs li a{
     background: #ECF3F4;
      padding: 0px 30px 0px 25px;
      height: 30px;
      line-height: 30px;
  	font-size: 15px;
      float: left;
      border: none;
      margin: 0 5px 0 0;
      border-radius: 4px 4px 0 0;
  }
  
  #orp_wrapper #tasks .tabs li a:hover{
  background:#d0e0e2;
  }
  #orp_wrapper #tasks .tabs li.active a{
      background: #42A5F5;
      color: #fff;
  }
  
  #orp_wrapper #content .form-item input{
  	height:30px;
  	border: 1px solid #ccc;
  	font-size: 14px;
      font-weight: 300;
      color: #000000;
  }
  
  #orp_wrapper #content .form-item .form-submit{
      float: right;
      height: 33px;
      line-height: 15px;
      font-weight: normal;
      font-size: 14px;
  }
  
  #orp_wrapper #content .form-item select{
      height: 30px;
      width: 55%;
      background: #fff;
  }
  
  
  #orp_wrapper #content .field-name-field-name
  {
  	padding-top:10px;
  }
  
  #user-profile-form #edit-fboauth
  {
  	display:none;
  }
  
  #fancy_login_user_login_block_wrapper form div .social_login{
  	position: absolute;
      margin-top: 0 !important;
      height: 80px;
      overflow: hidden;
      width: 210px;
      left: 35PX;
  }
  
  
  #fancy_login_user_login_block_wrapper form div .form-item-name{
  	margin-top: 90px;
  	float: left;
      width: 100%;
  	border-top: 1px solid #ccc;
      padding-top: 10px;
  }
   #fancy_login_user_login_block_wrapper form input{
  	 box-sizing: content-box !important;
  	 width: 94% !important;
      padding: 5px 3% !important;
   }
   #fancy_login_dim_screen{
  	 z-index:9999 !important;
   }
   #fancy_login_user_login_block_wrapper form .form-submit{
      height: 30px !important;
  }
   #fancy_login_login_box{
  	     border-width: 1px !important;
  		 border-radius:0px !important;
   }
   
  #fancy_login_close_button {
      background: transparent !important;
      border: none !important;
  }
  
  #fancy_login_login_box {
     
      width: 250px !important;
  	    
  }
  
  .social_login > iframe
  {
  	display:none;
  }
  
  .captcha .description
  {
      display:none;
  }
  
  .page-not-found {
      width: 100%;
      margin: 0 auto;
  }
  
  .page-not-found img{
      width: 100%;
      height: 500px;
  }
  
  
  span.hierarchical-select-item-separator {
      font-size: 30px;
  }
  
  span.lineage-item {
      font-size: 20px;
  }
  
  span.lineage-item a {
      margin-right: 5px;
      color: #0daed1;
  }
  
  span.lineage-item.lineage-item-level-1, span.lineage-item.lineage-item-level-2{
      margin-left: 5px;
  }
  
  .item-list.item-list-pager {
      border: 1px dotted #95c8f1;
      display: block;
      height: 30px;
      /*padding: 5px 0 2px;*/
      clear: both;
      margin-bottom: 30px;
  }
  
  
  .views-field-field-footer-info p{
      display: block;
      width: 100%;
      clear: both;
  }
  
  #breadcrumb-wrapper {
      background: linear-gradient(45deg, #ecf6ff 0%, #f1f1f1 100%);
      padding: 4px;
      border-left: 4px solid #e82119;
      min-height: 30px;
  }
  
  #breadcrumb-wrapper ol {
      padding:0;
      margin:0;
  }
  
  #breadcrumb-wrapper li {
      float: left;
      padding: 0 5px 0px 0px;;
  }
  
  #breadcrumb-wrapper li a{
      font-weight: 500;
      color: #1c5cab;
      font-size: 13px !important;
  }
  
  #breadcrumb-wrapper li a:hover{
      color: #e62117;
  }
  
  nav.breadcrumb-wrapper{
      margin-left: 0;
      margin-right: 0;
  }
  
  
  #breadcrumb-wrapper .bread-left{
      float: left;
      padding: 0;
      line-height: 20px;
  }
  
  /*
  #breadcrumb-wrapper li.crumb-first{
      padding: 0 5px 3px 0px;;
  }*/
  
  
  #breadcrumb-wrapper .bread-right{
      /*float: left;*/
      padding: 0;
      line-height: 18px;
  }
  
  
  #breadcrumb-wrapper .row{
      padding: 0 !important;
  }
  
  #breadcrumb-wrapper .view-breadcrumb-for-categories-views a{
      font-weight: 600;
      color: #1c5cab;
      font-size: 13px;
  }
  
  
  #breadcrumb-wrapper .hierarchical-select-item-separator {
      font-size: 16px;
  }
  
  #breadcrumb-wrapper .lineage-item {
      font-size: 13px;
  }
  
  #breadcrumb-wrapper span.custom-breadcrumbs-none {
      font-size: 13px;
  }
  
  #breadcrumb-wrapper li.crumb.crumb-last {
      font-size: 13px;
      /*margin-top: 2px;*/
  }
  
  span.study-goback{
     float: right;
  }
  
  span.study-goback input[type="button"]{
      margin: 10px 0px;
      background: #17a2b8;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      border-radius: 4px;
      text-align: center;
      padding: 5px 15px;
  }
  
  .node-webform  {
      padding: 10px 20px;
      margin: 20px 0;
      background: rgba(236, 234, 236, 0.23);
      border: 1px solid rgba(204, 204, 204, 0.43);
  }
  
  .webform-client-form input[type=text], input[type=email]{
      height: 28px;
  }
  
  
  .webform-client-form input[type=submit] {
      font-size: 12px;
      text-align: center;
      padding: 5px 15px;
  }
  
  .webform-client-form .form-actions{
      text-align: center;
  }
  
  .webform-client-form .form-file {
      width: 89%;
  }
  
  
   .field-name-field-tags{
    display: none;  
  }
  
  #node-tag {
      margin: 15px 0;
  }
  
  #node-tag .field-name-field-tags{
    display: inline; 
  }
  
  
  #node-tag .field-name-field-tags h2.field-label{
      font-size: 12px;
      font-weight: 600;
      margin: 4px 5px 0 5px;
      padding: 0px 5px 0px;
      float: left;
      background: #000;
      color: #eee;
      text-transform: uppercase;
  }
  
  #node-tag .field-name-field-tags ul{
      margin: 0;
  }
  
  
  #node-tag .field-name-field-tags ul li {
      display: block;
      margin: 3px 5px 5px 0;
      border: 1px solid #eaeaea;
      padding: 1px 5px;
      font-size: 11px;
      float: left;
      line-height: 20px;
  }
      
  
  
  #node-tag .field-name-field-tags ul li:hover {
      background: #42a5f5;
      color: #fff;
  }
  
  #node-tag .field-name-field-tags ul li a:hover {
      color: #fff;
  }
  
  
  .view-tags-study ul li{
      margin: 0 20px 0 0;
      border-bottom: 1px dotted #ccc;
  }
  
  .view-tags-study p{
      margin: 10px 0 0;
  }
  
  .global-read-more{
      margin: 0 0 10px;
      background: #054b81;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      border-radius: 4px;
      text-align: center;
      padding: 5px 10px;
      float: right;
  }
  
  .global-read-more:hover{
      color: #fff;
  }
  
  #responsive-managed-custom-ads{
      display: block;
      clear: both;
      margin: 0 auto;
  }
  
  .box-container{
      display: block;
      clear: both;
      /*margin: 0 auto;*/
      width: 100%;
  }
  
  .view-category-footer-information{
      display: block;
      clear: both;
      padding: 10px 0;    
  }
  
  /*********** Admin Menu CSS ***********/
  
  #admin-menu, #admin-menu .dropdown{
      z-index: 9999 !important;
      background: #3f79ab;
      font-size: 14px;
  }
  
  #admin-menu .dropdown a, #admin-menu .dropdown li > span {
      border-right: 1px solid #323232;
      display: block;
      padding: 4px 15px;
  }
  
  #admin-menu a, #admin-menu li > span {
      background: #2a6598;
      border: none;
      color: #ffffff;
      font-weight: normal;
      text-align: left;
      text-decoration: none;
  }
  
  #admin-menu .dropdown a, #admin-menu .dropdown li > span {
      border-right: 1px solid #e1e8a8;
      display: block;
      padding: 4px 15px;
  }
  
  
  .field-name-field-youtube-video.field-type-youtube.field-label-hidden.view-mode-full {
      text-align: center;
      background: #e2e2e2;
      border: 1px solid #ccc;
      padding: 10px;
  }
  
  
  
  
  /* CSS for Login/Register and profile module */
  
  fieldset#edit-mimemail,
  .password-strength,
  .tabledrag-toggle-weight-wrapper,
  .password-suggestions.description,
  .resizable-textarea .grippie,
  .field-name-field-teaching-experience,
  .form-item-profile-tutor-profile-field-teaching-experience-und-0-value label{
      display: none !important;
  }
  
  .page-user-edit-tutor-profile label {
      font-weight: 600;
      color: #000;
      text-align: left;
      height: 22px;
  }
  
  .page-user-edit-tutor-profile input {
      height: 37px !important;
      color: #000;
      line-height: 37px;
      padding: 0 10px !important;
      border: 1px solid #a9a9a9 !important;
      -moz-border-radius: 4px;
      -webkit-border-radius: 4px;
      border-radius: 4px;
      box-sizing: border-box;
  
  }
  
  .page-user-edit-tutor-profile select {
      height: 37px !important;
      background: 0 0;
      padding: 0 10px;
      border-radius: 4px;
      color: #878787;
      vertical-align: top;
      box-sizing: border-box;
      border: 1px solid #a9a9a9;
      font-weight: 300;
      color: #000000;
  }
  
  .page-user-edit-tutor-profile textarea {
      padding: 8px 10px !important;
      border: 1px solid #a9a9a9;
      -moz-border-radius: 4px;
      -webkit-border-radius: 4px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 300;
      color: #000000;
  }
  
  
  .page-user-edit-tutor-profile .field-widget-text-textfield,
  .page-user-edit-tutor-profile .field-widget-options-select{
      width: 315px;
      float: left;
  }
  
  
  .page-user-edit-tutor-profile .field-widget-cshs .select-wrapper{
      margin-right: 0;
      margin-bottom: 10px;
      clear: both;
      width: 315px;
  }
   
  .page-user-edit-tutor-profile .field-widget-cshs select{
      width: 94% !important;
  }
  
  
  .page-user-edit-tutor-profile .field-widget-text-textfield input,
  .page-user-edit-tutor-profile .field-widget-options-select select,
  .page-user-edit-tutor-profile .field-widget-taxonomy-hs select{
      width: 100% !important;
      float: left;
  }
  
  .page-user-edit-tutor-profile .field-widget-text-textarea{
      clear: both !important;
      display: block !important;
      padding-top: 5px !important;
  }
  
  
  .page-user-edit-tutor-profile .field-widget-options-select,
  .page-user-edit-tutor-profile .field-widget-text-textfield,
  .page-user-edit-tutor-profile .field-widget-text-textarea{
      margin-bottom: 10px;
  }
  
  
  .page-user-edit-tutor-profile .field-widget-cshs{
      clear: both;
  }
  
  
  .page-user-edit-tutor-profile .field-name-field-name{
      padding-top: 0 !important;
  }
  
  .page-user-edit-tutor-profile .image-widget-data {
      float: none;
  }
  
  .page-user-edit-tutor-profile .field-name-field-user-image input{
      width: 70%;
      background: #fdf7e2;
      line-height: 23px;
      padding: 5px 0px 0px 10px !important;
      margin-bottom: 10px;
      margin-right: 10px;
  }
  
  .simplecrop-widget .original-image {
      width: 100%px;
      float: left;
  }
  
  .simplecrop-widget .cropped-image {
      width: 100%;
      margin-bottom: 20px;
      margin-right: 20px;
      float: left;
  }
  
  .simplecrop-widget .cropped-image img{
      border: 1px solid #000 !important;
  }
  
  
  .page-user-edit-tutor-profile .error{
      background-image: none !important;
      margin: 0 !important;
      padding: 0 !important;
      color: #ff0000 !important;
      border: none;
      background: none !important;
  }
  
  .form-item input.error, .form-item textarea.error, .form-item select.error {
      border: 1px solid red !important;
  }
  
  .page-user-edit-tutor-profile .form-actions{
       margin-bottom: 0 !important;
  }
  
  input#edit-profile-tutor-profile-field-user-image-und-0-upload-button,
  .page-user-edit-tutor-profile .form-item .form-submit{
      width: 90px !important;
      background: #fe563f;
      margin: 0;
      color: #fff !important;
      font-weight: 600 !important;
      padding: 0 !important;
      float: none !important;
  }
  
  
  .multipage-button {
      float: none;
  }
  
  .multipage-controls-list{
      margin: 2em 1em;
      height: 36px;
  }
  
  .multipage-controls-list #edit-actions,
  .multipage-controls-list input[type=button].multipage-link-next{
      float: right;
      margin-top: 0;
  }
  
  .multipage-controls-list input#edit-submit,
  .multipage-controls-list input[type=button]{
      width: 125px;
      background: #0099ba;  
      text-shadow: none;
      border-radius: 4px;
      text-transform: uppercase;
      color: #ffffff;
  }
  
  .multipage-controls-list input#edit-submit:hover,
  .multipage-controls-list input[type=button]:hover{
      background-image: none;
      background: #fe563f;
      color: #ffffff;
  }
  
  .page-user-edit-tutor-profile .hierarchical-select .selects{
      width: 100% !important;
  }
  
  .page-user-edit-tutor-profile .hierarchical-select select{
      width: 49% !important;
      margin-top: 22px;
  }
  
  
  .page-user-edit-tutor-profile .form-type-checkbox{
      width: 211px;
      float: left;
  }
  
  .page-user-edit-tutor-profile .form-type-checkbox label{
      font-weight: 500;
  }
  
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9330,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9331,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9332,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9333,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9334,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9335,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9336,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9337,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9338,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9339,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9340,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9341{
      display: block;
      width: 100%;
      border-bottom: 5px solid #3383bb;
  }
  
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9330 input,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9331 input,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9332 input,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9333 input,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9334 input,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9335 input,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9336 input,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9337 input,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9338 input,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9339 input,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9340 input,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9341 input,
  .grippie{
      display: none;
  }
  
  
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9330 label,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9331 label,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9332 label,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9333 label,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9334 label,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9335 label,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9336 label,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9337 label,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9338 label,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9339 label,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9340 label,
  .page-user-edit-tutor-profile .form-item-profile-tutor-profile-field-classes-and-subjects-und-9341 label{
      font-size: 24px;
  }
  
  
  .page-user-edit-tutor-profile .form-type-checkbox input[type=checkbox]{
      width: 30px;
      font-size: 14px;
      font-weight: 300;
      color: #000000;
  }
  
  .page-user-edit-tutor-profile .horizontal-tabs{
      border: none;
  }
  
  
  .page-user-edit-tutor-profile .horizontal-tabs-panes{
      background: rgba(226, 226, 226, 0.23);
      border: 1px solid #ccc;
      padding: 10px 0 60px;
      clear: both;
      margin-top: -5px;
  }
  
  
  .page-user-edit-tutor-profile .content-inner,
  .page-tutor-profile .content-inner{
      margin: 0 auto 28px !important;
  }
  
  .page-tutor-profile .region-sidebar-first{
      box-shadow: none !important;
      display: none !important;
  }
  
  
  .horizontal-tabs-list {
      background-color: rgba(200, 200, 200, 0.2);
  }
  
  
  .horizontal-tabs ul.horizontal-tabs-list li{
      box-shadow: 0 16px 26px -10px rgba(255, 152, 0, 0.09), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px 0 rgba(255, 152, 0, 0.2);
      text-align: center;
      border: none;
      width: 100%;
  }
  
  
  .li.horizontal-tab-button{
      text-align: center;
      padding: 12px;
      font-size: 12px;
      text-transform: uppercase;
      -webkit-font-smoothing: subpixel-antialiased;
      top: -4px;
      left: 0px;
      border-radius: 4px;
      color: #FFFFFF;
      cursor: pointer;
      font-weight: 500;
  }
  
  .horizontal-tabs ul.horizontal-tabs-list li.selected{
      background: #0099ba !important;
      color: #ffffff;
      height: 35px;
  }
  
  .horizontal-tabs ul.horizontal-tabs-list .selected strong {
      color: #ffffff;
  }
  
  .horizontal-tabs ul.horizontal-tabs-list li a:hover {
      outline: none;
      background-color: #fe563f;
  }
      
  .horizontal-tabs ul.horizontal-tabs-list li a, .horizontal-tabs ul.horizontal-tabs-list li.selected a {
      padding: 0.5em;
  }
  
  .field-type-markup p{
      font-size: 16px;
      margin-bottom: 0;
      line-height: 0;
      color: #f7250b;
  }
  
  #user-register-form fieldset {
      margin: 0 2px;
      padding: 0;
      border: none;
  }
  
  
  .horizontal-tabs .form-item, .horizontal-tabs .form-actions{
      margin: 5px;
      padding: 5px; 
  }
  
  
  /***** User Info Block Start *****/
  .header-userinfo .dropdown{
      position: relative;
      display: inline-block;
      float: right;
      z-index: 9999999;
      margin: 5px 0;
      cursor: pointer;
      line-height: 50px;
  }
  
  
  .header-userinfo .dropdown-content{
      display: none;
      position: absolute;
      right: 0;
      top: 52px;
      border-top: 2px solid #0f96b3;
      background-color: #f9f9f9;
      min-width: 200px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
  }
  
  .header-userinfo .dropdown-content a {
      color: #183962;
      padding: 5px 16px 18px;
      text-decoration: none;
      display: block;
      margin: 0 10px 0;
      border-bottom: #ccc 1px dotted;
      font-size: 13px !important;
      line-height: 18px;
      height: 30px;
  }
  
  .header-userinfo .dropdown-content a:hover{
      color: #e62117 !important;
  }
  
  .header-userinfo .dropdown:hover .dropdown-content {
      display: block;
  }
  
  
  .header-userinfo .dropdown .profileimage {
      height: 55px;
      width: 55px;
      border-radius: 50%;
      border: 5px solid #e2e2e2;
      float: left;
  }
  
  .header-userinfo .dropdown .profileimage img{
      width: 40px;
      height: 40px;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      overflow: hidden;
      margin-left: 2px;
  }
  
  .header-userinfo .dropdown .profilename {
      float: left;
      margin-right: 4px;
      background: url(/sites/all/themes/clean_corporate_theme/images/drop-down-arrow.png) 40px 30px no-repeat;
  }
  
  
  /***** User Info Block End *****/
  
  
  /***** Tutor Profile Start *****/
  .profile-card {
      width: 100%;
      margin: -15px auto 0;
      text-align: center;
      font-family: "Open Sans", sans-serif;
  }
  
  .profile-card p{
      padding: 0 20px;
  }
  
  .profile-card .profile-bg{
      background: #42a1c5;
      height: 200px;
      margin-bottom: 85px;
  }
  
  .profile-card .profile-exp {
      font-size: 15px;
      font-weight: 700;
      color: #666;
  }
  
  .profile-card1{
      text-align: center;
      padding: 20px;
      margin-top: 30px;
  }
  
  .profile-card2{
      padding: 20px;
      margin-top: 30px;
  }
  
  .profile-card3{
      text-align: center;
      padding: 20px;
      margin-top: 30px;
  }
  
  .profile-card, 
  .profile-card1, 
  .profile-card2, 
  .profile-card3{
      width: 100%;
      box-shadow: rgba(137, 173, 255, 0.35) -10px 10px 35px 5px;
      transition: all 0.2s linear;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
  }
  
  .profile-card:hover,
  .profile-card1:hover,
  .profile-card2:hover,
  .profile-card3:hover{
      box-shadow: 0 10px 55px 5px rgba(255, 193, 7, 0.7);
      transform: translateY(-0.8rem);
      cursor: pointer;
  }
  
  
  .profile-card2 li{
      width: 48%;
      padding: 6px 20px !important;
      float: left;
      background: #f5f5f5;
      border: 1px solid #d4cdcd;
      margin: 4px 7px !important;
      font-size: 14px !important;
      font-weight: 600;
  }
  
  .profile-card1 h2, .profile-card2 h2, .profile-card3 h2{
      text-align: center;
      border-bottom: 1px #42a1c5 dotted;
      padding: 5px 10px 15px;
      margin: 0 20px !important;
      font-size: 25px !important;
  }    
      
  .profile-card img {
      box-shadow: 0 4px 8px 0 rgba(245, 235, 235, 0.2);
      width: 200px !important;
      height: 200px;
      border-radius: 50%;
      margin-top: 63px;
      border: 3px solid #fff;
  }
  
  .profile-card img:hover{
      background: none;
  }
  
  
  .profile-sec {
      width: 31%;
      padding: 10px;
      float: left;
      font-weight: 600;
      color: #000;
      font-size: 13px;
  }
  
  .profile-card3 .profile-sec{
      width: 47%;
  }
  
  span.data-value {
      font-size: 15px;
      color: #547e8e;
  }
  
  .user-profile .my-profile h3{
      display: none !important;
  }
  
  a.green-text{
      color: #069b06 !important;
  }
  
  
  /*** Tutor Registration Landing Page ***/
  
  .signup_holder {
      padding: 0 0 30px 0;
      margin: 0;
      display: block;
  }
  
  
  .signup_title_holder {
      margin: 0 0 20px 0;
      padding: 0 0 10px;
      display: block;
      border-bottom: 1px dotted #0099ba;
      overflow: hidden;
      font-size: 35px;
      font-weight: 300;
      text-align: center;
  }
  
  .signup_holder_inner_small {
      margin: 0 auto;
      display: block;
      text-align: center;
  }
  
  .signup_holder_inner_small h2 {
       font-size: 30px;
      margin: 20px;
  }
  
  .signup_holder_inner_small ul {
      margin: 0;
      padding: 0;
      display: block;
      overflow: hidden;
  }
  
  .signup_holder_inner_small ul li:first-child {
      padding-left: 0px;
  }
  .signup_holder_inner_small ul li {
      margin: 0;
      list-style: none;
  }
  
  .signup_holder_inner_small ul li a {
      text-decoration: none;
  }
  
  .signup_holder_inner_small ul li a.green_btn {
      background: #3383bb;
      display: block;
      width: 252px;
      height: 50px;
      margin: 9px auto 0px;
      line-height: 45px;
      color: #ffffff;
      text-align: center;
      font-size: 26px;
      text-decoration: none;
      border-radius: 4px;
  }
  
  .signup_holder_inner_small ul li a.green_btn:hover {
      background: rgb(251, 13, 13);
  }
  
  .signup_holder_inner_small ul li a.learn_more {
      background: #ffffff;
      margin: 0 auto;
      text-align: center;
      font-size: 14px;
      color: #c4371b;
      font-weight: 400;
      text-decoration: none;
      display: block;
  }
  
  .signup_holder_inner_small ul li a.learn_more:hover {
        color: #3383bb;
  }
  
  .member_account, .member_assistance {
      text-align: center;
      padding: 20px 0 0 0;
      font-size: 25px;
      font-weight: 300;
  }
  
  .member_account a, .member_assistance a {
      font-weight: 500;
      padding: 0 0 0 10px;
      color: #EF6548;
      text-decoration: none;
  }
  
  .member_account a:hover, .member_assistance a:hover {
      font-weight: 500;
      padding: 0 0 0 10px;
      color: #3383bb;
      text-decoration: none;
  }
  
  .border {
      background: #dadada;
      height: 1px;
      width: 100%;
      margin: 30px 0 0 0;
  }
  
  .page-node-238750 #breadcrumb-wrapper, .page-tutor-profile #breadcrumb-wrapper{
      display: none;
  }
  
  
  .page-tutor-profile #page-title {
      margin-top: 0px !important;
      margin-bottom: 32px !important;
      text-align: center !important;
  }
  
  .profile-search{ width:31%; padding:15px 15px; border: 1px #dddddd solid; margin: 20px 5px 20px 15px; float: left;}
  .profile-circle{ width:90px; height:90px; float:left;}
  .profile-circle img{ border: solid 5px #dedede; height:100%; width:100%; border-radius:100%; object-fit:cover;}
  .profile-text{ width:60%; float:right;}
  .profile-text .fullnameheading{padding: 0 !important; padding: 0 !important; font-size: 16px; font-weight: 600;}
  .profile-text p{min-height: 60px; margin-bottom: 0; }
  
  .profile-viewmore {
      font: 400 13px/30px 'Lato', sans-serif;
      padding: 0 18px;
      background: #3383bb;
      display: inline-block;
      color: #fff;
      margin: 10px 0 0;
  }
  
  .profile-viewmore:hover{
      text-decoration: underline;
      color: #ffffff !important;
  }
  
  .view-tutor-search-results .view-filters{
      padding: 10px 0;
      border-bottom: 1px dotted #ef211e;
      border-top: 3px dotted #ef211e;
  }
  
  .view-tutor-search-results .view-filters select,
  .view-tutor-search-results .view-filters input{
      padding: 6px;
      margin-top: 2px;
      width: 270px;
      height: 35px !important;
      margin: 0 auto;
  }
  
  .view-tutor-search-results .view-filters label{
      color: #183962;
  }
  
  .page-tutor-search-results .region.region-highlighted{
      margin-top: 0;
  }
  
  #views-exposed-form-tutor-search-results-page-1 .views-widget-filter-field_classes_and_subjects_tid,
  #views-exposed-form-tutor-search-results-page-1 .views-widget-filter-field_select_your_city_tid,
  #views-exposed-form-tutor-search-results-page-1 .views-widget-filter-field_pin_code_value{
      background: #ecf3f4;
      padding: 10px 10px 15px !important;
      border: 1px solid #fff;
      border-radius: 4px;
  }
  
  
  .view-tutor-search-results .select-wrapper{
      margin: 0 10px;
  }
  
  .view-tutor-search-results .views-exposed-form .views-exposed-widget {
      float: none;
      text-align: center;
  }
  
  .view-tutor-search-results .views-exposed-form .form-submit{
      margin: 0;
      width: 180px;
  }
  
  .view-tutor-search-results .view-empty {
      background: #ecf3f4;
      padding: 15px;
      margin-top: 10px;
      border: 2px solid #ed211e;
  }
  
  .tutor-search-container .imp-links{
      margin-bottom: 20px;
  }
  
  .tutor-search-container .imp-links a{
      font-size: 15px;
      font-weight: 600;
  }
  
  .tutor-search-container .imp-links img{
      border: 1px solid rgba(204, 204, 204, 0.43);
      border-radius: 10px;
      margin-right: 2px;
      padding: 3px;
      background: rgba(236, 234, 236, 0.23);
      display: inline !important;
  }
  
  
  .study-related-content {
      margin-top: 20px;
  }
  
  .view-similarterms .item-list.item-list-pager,
  fieldset#edit-profile-tutor-profile-field-profile-headlines-und-0-format,
  .not-front .about-info{
      display: none !important;
  }
  
  
  /*Bootstrap CSS*/
  
  /**** Footer Style ***/
  
  #footer {
    background-color: #00838f;
    box-shadow: 0px -8px 0px 0.00px #c6d0d1;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
  }
  
  #footer .region-inner {
    padding: 25px 0 50px;
    margin: 0 20px;
  }
  
  #footer .region-footer {
    margin: 0 10px;
  }
  
  #footer .block {
      margin: 0;
      width: 300px;
      float: left;
  }
  
  #footer a{
      color: #fff;
      font-size: 16px;
  }
  
  #footer h2{
      border-bottom: 2px solid #E6EFEF;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 30px;
      padding: 0 0 10px;
      position: relative;
      color: #fff;
      text-transform: uppercase;
      word-spacing: 5px;
  }
  
  #footer h2::after,
  #footer h2::before{
      background-color: #ffc107;
  }
  
  #footer h2::before{
      bottom: -5px;
      content: "";
      display: inline-block;
      height: 9px;
      left: 0;
      position: absolute;
      width: 9px;
      border-radius: 50%;
  }
  
  #footer h2::after{
      bottom: -2px;
      content: "";
      display: inline-block;
      height: 2px;
      left: 0;
      position: absolute;
      width: 80px;
  }
  
  
  #footer ul > li > a:before{
      content: "\f046";
      font-family: 'FontAwesome';
      padding-right: 10px;
      color: #bee3ff;
      font-size: 14px;
  }
  
  /** Latest CBSE News **/
  .newsbox {
      width: 100%;
      float: left;
      position: relative;
      padding-left: 70px;
      margin-top: 15px;
  }
  
  .newsbox > h3 {
      display: inline-block;
      font-size: 16px;
      font-weight: 600;
      position: relative;
      margin-top: 0;
  }
  
  .newsbox p{
      color: #7d7575;
  }
  
  .newsbox a {
      color: #23a3bf;
  }
  
  .newsbox a:hover{
      color: #dc3545;
  }
  
  .newsbox i {
      position: absolute;
      left: 0;
      top: 0;
      font-size: 2em;
      line-height: 1.6em;
      height: 1.9em;
      width: 1.9em;
      text-align: center;
      background: #0099ba;
      color: #fff;
      border: 5px solid #e7eaec;
      border-radius: 50%;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      -o-border-radius: 50%;
      -ms-border-radius: 50%;
  }
  
  .newsbox:hover i {
      color: #e2e2e2;
      border-color: #ccc;
  }
  
  .newsbox, .newsbox i, .newsbox p, .newsbox h3 {
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
      transition: all 0.2s linear;
  }
  
  .news-more a{
      font-size: 20px;
  }
  
  a.read, .read a, .read-more{
      -webkit-transition: color 200ms ease-in-out;
      -moz-transition: color 200ms ease-in-out;
      -o-transition: color 200ms ease-in-out;
      transition: color 200ms ease-in-out;
      color: #819296;
      font-size: 12px;
      font-weight: 600;
      text-align: right !important;
  }
  
  a.read:after, .read a:after{
      -webkit-transition: left 0.3ms ease;
      -moz-transition: left 0.3ms ease;
      -o-transition: left 0.3ms ease;
      transition: left 0.3ms ease;
      position: relative;
      display: inline-block;
      font-family: "FontAwesome";
      content: "\f105";
      margin-left: 0.5em;
  }
  
  
  /** Home Classes Box **/
  /*
  .info_service {
      padding: 20px 0;
  }
  */
  .serviceBox_1 .icon_service i{
      display: block;
      font-size: 45px;
      line-height: 80px;
      height: 90px;
      width: 90px;
      color: #fff;
      border-radius: 50%;
      margin-bottom: 5px;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      -o-border-radius: 50%;
      -ms-border-radius: 50%;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
      transition: all 0.2s linear;
      border: 5px solid #b8caba;
      box-shadow: rgba(137, 173, 255, 0.35) -10px 10px 35px 5px;
  }
  
  i.red {
      background: #e62117 !important;
  }
  
  i.green {
      background: #16e426 !important;
  }
  
  i.blue {
      background: #054b81 !important;
  }
  
  i.purple {
      background: #f00fff !important;
  }
  
  
  .serviceBox_1 .icon_service {
      margin-bottom: 20px;
  }
  
  
  .serviceBox_1 .icon_service i:hover, 
  .class-subject-box .serviceBox_1 .icon_service:hover {
      box-shadow: 0 10px 55px 5px rgba(255, 193, 7, 0.7);
      transform: translateY(-0.8rem);
      cursor: pointer;
  }
  
  .serviceBox_1 .icon_service > h3 {
      display: inline-block;
      font-size: 20px;
      font-weight: 600;
      position: relative;
  }
  
  .serviceBox_1 .service_content > p {
      font-size: 14px;
      line-height: 1.4;
  }
  
  
  .serviceBox_1 .icon_service a {
      color: #2e3031;
  }
  
  .serviceBox_1 .icon_service a:hover {
      color: #0056b3;
      text-decoration: none;
  }
  
  .about-info {
      font-size: 16px;
      font-weight: 400;
      line-height: 30px;
      margin-bottom: 20px;
  }
  
  
  /** Subjects Boxes inside **/
  .class-subject-box .serviceBox_1 .icon_service {
      display: block;
      padding: 10px;
      height: 106px;
      width: 164px;
      margin-bottom: 30px;
      box-shadow: rgba(137, 173, 255, 0.35) 0px 0px 3px 0px;
      transition: all 0.2s linear;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
  }
  
  .class-subject-box .serviceBox_1 .icon_service > h3 {
      font-size: 15px;
      font-weight: 400;
  }
  
  
  /** Right Sidebar CSS **/
  
  .region-sidebar-second {
      width: 100% !important;
      margin-left: 0 !important;
  }
  
  .region-sidebar-second .block {
      margin-bottom: 20px;
  }
  
  .region-sidebar-second h2{
      padding: 0 0 10px 20px;
      border-bottom: 2px dotted #ccc;
  }
  
  .region-sidebar-second ul li{
      border-bottom: 1px dotted #ccc;
      padding: 5px 0;
      margin: 0;
  }
  
  
  .region-sidebar-second .menu-block-1 ul > li > a:before,
  .region-sidebar-second .menu-block-2 ul > li > a:before,
  .region-sidebar-second .menu-block-3 ul > li > a:before,
  .region-sidebar-second .menu-block-4 ul > li > a:before,
  .region-sidebar-second .view-cbse-class-menu ul li a:before,
  .region-sidebar-second .block-custom-study-subjects ul li a:before{
      content: "\f046";
      font-family: 'FontAwesome';
      padding-right: 10px;
      color: #dc3545;
      font-size: 14px;
  }
  
  
  .region-sidebar-second h2:before{
      content: "\f0a4";
      font-family: 'FontAwesome';
      padding-right: 10px;
      color: #00838f;
      font-size: 1.1em;
      float: left;
  }
  
  .region-sidebar-second .item-list ul li{
     margin: 0 0 0.25em 0.5em;
  }
  
  
  ul.lefttoplinks{list-style-type:none;padding:0;margin:0}
  ul.lefttoplinks li{
      display:block; 
      box-shadow: 0 5px 15px 0px #f1f2f3;
      margin:0 0 6px; 
      padding:0;
  }
  
  ul.lefttoplinks li:hover{
      display: block;
      box-shadow: 0 5px 10px 5px #0099ba;
      transform: translateY(0.4rem);
      cursor: pointer;
      transition: all 0.2s linear;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
  }
  
  ul.lefttoplinks li a{text-decoration:none; color:rgb(251, 13, 13); padding: 0 0 0 15px; vertical-align: middle; font-weight: 600; font-size: 15px;}
  ul.lefttoplinks li a:hover{text-decoration:none; padding: 0 0 0 15px; vertical-align: middle; color:rgb(81, 81, 81);}
  
  ul.lefttoplinks li img.menuicon {
      width: 40px;
      height: 40px;
      background: #ffffff;
      padding: 4px;
      border: 3px solid #dee2e6;
      margin: 4px 15px 4px 0;
      vertical-align: middle;
      border-radius: 50%;
  }
  
  
  ul.lefttoplinks li img:hover{
  	transform: rotate(360deg);
  	transition:1s;
  }
  
  #block-block-24 .block-inner{
      margin: 0;
  }
  
  
  /** More content boxes **/
  
  .study-outer-pane{
      display: block;
      float: left;
      padding: 10px;
      width: 305px;
      min-height: 140px;
      height: 170px;
      margin: 10px;
      background: #f8f9fa;
      border: 1px solid #ccc;
      border-radius: 4px;
      transition: all 0.2s linear;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
      -webkit-transition: line-height 1s, height 3s ease-in, opacity 1s, border-radius 1s;
  }
  
  .study-outer-responsive-ads{
      width: 100%;
      min-height: 60px;
      margin: 10px 20px 10px 4px;
      display: block;
      clear: both;
  }
  
  .study-outer-pane  p{
      display: none;
  }
  
  
  .study-outer-pane:hover{
     border-radius: 20px;
     background: rgba(237, 246, 255, 0.25);
     cursor: pointer;
  }
  
  .study-outer-pane a{
      color: #000; 
  }
  
  .study-outer-pane a:hover{
      color: #0099ba;
  }
  
  .study-outer-pane h2{
      font-size: 22px;
      margin-bottom: 10px;
      color: #0099ba;
  }
  
  .study-outer-pane h2:hover{
      color: #000;
  }
  
  .study-outer-pane a.read-more{
      float: right
  }
  
  .study-outer-pane .row{
      display: block !important;
  }
  
  /** Home Pages Boxes **/
  
  /*
  .downloadbox-cont,
  .imp-links-box,
  .resources-box{
      margin-right: -28px !important;
  }*/
  
  /** Home Download Box **/
  .downloadbox-cont {	
      background: #e4ecff;
      padding: 30px;
  }
  
  .downloadbox h3{
    color: white;
    font-size: 16px;
    margin-top: 10px;
  }
  
  .downloadbox-cont h4 a{
    font-size: 16px;
  }
  
  .downloadbox {
      height: 150px;
      text-align: center;
      background: #fff;
      margin-top: 20px;
  }
  
  .downloadbox .study-icons{
    display: block;
    width: 100%;
    height: auto;
    line-height: 150px;
  }
  
  .downloadbox .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #008CBA;
  }
  
  .downloadbox:hover .overlay {
    opacity: 1;
  }
  
  .downloadbox .text {
      color: white;
      text-align: center;
      margin: 10px;
  }
  
  .downloadbox .clickhere{
      color: #fff;
  }
  
  .downloadbox .btn-clickhere {
      color: #fff;
      background-color: #ff4500;
      border-color: #ff4500;
  }
  
  .downloadbox .btn-clickhere a{
      color: #fff;
      background-color: #ff4500;
      border-color: #ff4500;
  }
  
  /** Home Headings H2 CSS**/
  h2.intro{
      margin-bottom: 10px;
  }
  
  .btn-brand i {
      display: inline-block;
      width: 2.0625rem;
      margin: -.375rem -.75rem;
      line-height: 2.0625rem;
      text-align: center;
      background-color: rgba(0,0,0,.2);
  }
  
  .btn-brand i+span {
      margin-left: 1.0rem;
  }
  
  
  span.bordered-icon:before {
      left: 100%;
  }
  
  span.bordered-icon:after {
      right: 100%;
  }
  
  span.bordered-icon {
      color: #ff4e12;
      padding: 0 10px;
      font-size: 15px;
      line-height: 17px;
      position: relative;
      display: inline-block;
  }
  
  span.bordered-icon:before, span.bordered-icon:after {
      content: "";
      background: #8abeea;
      width: 120px;
      height: 1px;
      top: 8px;
      position: absolute;
  }
  
  
  /** Home Important Box **/
  .imp-links-box {
      background: linear-gradient(45deg, #ffc107 0%, #00838f 40%);
  }
  
  .imp-links-box .imp-links{
      width:100%;
      margin-bottom: 20px;
  }
  
  .imp-links-box a {
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      text-transform: none;
  }
  
  .imp-links-box a:hover {
      color: #ffc107;
  }
  
  
  .imp-links-box .about-info,
  .imp-links-box .intro{
     color: #fff;
  }
  
  
  /** Home Borads **/
  
  .boards-box .imp-links i {
      font-size: 1em;
      margin-right: 5px;
      color: #d81344;
  }
  
  .boards-box .imp-links{
       width:100%;
      margin-bottom: 20px;
  }
  
  .boards-box a {
      font-size: 16px;
      font-weight: 600;
      text-transform: none;
  }
  
  
  .boards-box .imp-links a:hover,
  .resources-box .imp-links a:hover{
      color: #dc3545;
  } 
  
  /** Home Borads & Useful Resources **/
  .resources-box {
      background: linear-gradient(45deg, #020202 0%, #00838f 100%);
  }
  
  .resources-box .imp-links{
      width:100%;
      margin-bottom: 20px;
  }
  
  .resources-box .imp-links i {
      font-size: 1.2em;
      margin-right: 5px;
      color: #f0f9a6;
  }
  
  .resources-box .imp-links a{
      color: #ecf3f4;
      font-size: 18px;
      font-weight: 500;
      text-transform: none;
  }
  
  .resources-box .about-info, .resources-box .intro{
     color: #fff;
  }
  
  
  /** Add to Home Screen Popup CSS **/
  #addhomepopup{
      position: fixed;
      bottom: 5px;
      left: 10px;
  }
  
  #addhomepopup .addbodypopup {
      background: #008CBA;
      color: #fff;
      border-radius: 5px;
      padding: 7px 8px;
      border: 2px solid #e2e2e2;
      width: 260px;
      height: 70px;
      vertical-align: middle;
      display: block;
      line-height: 50px !important;
  }
  
  #addhomepopup .addbodypopup img {
      width: 55px;
      height: 50px;
      margin-right: 10px;
      float: left;
  }
  
  #addhomepopup .addbodypopup .btn-primary {
      color: #fff;
      border-color: #fff;
      font-weight: 600;
  }
  
  #addhomepopup .closebtn {
      margin: 0;
      color: white;
      font-weight: bold;
      float: right;
      font-size: 22px;
      line-height: 10px;
      cursor: pointer;
      transition: 0.3s;
      padding: 5px !important;
  }
  
  /** Common CSS **/
  .btn-secondary {
      background-color: #149dcc !important;
      border-color: #149dcc;
      color: #ffffff;
  }
  
  .btn-primary {
      background-color: #ff3366 !important;
      border-color: #ff3366;
      color: #ffffff;
  }
  
  .responsive-ads{
      background: #f7f7f7;
      border: 1px solid #e4e4e4;
      min-height: 91px !important;
      text-align: center !important;
  }
  
  .page-new-home .pane-new-home-page-child-terms{
      display: none !important;
  }
  
  .panels-flexible-region-5-body{
      width: 100% !important;
  }
  
  #block-search-form .for-text{
      margin-top: 0 !important;
  }
  
  .view-user-image-info-block .row,
  .view-iframelogin .row,
  .global-list-icon .row,
  .global-list-icon1 .row{
      display: block;
  }
  
  .views-field-field-header-info p
  .views-field-field-footer-info p,
  .view-category-header-information p,
  .view-category-footer-information p{
     text-align: justify; 
  }
  
  .page-user-login #page-title,
  .page-user-register #page-title{
      margin-top: 0 !important;
  }
  
  caption{
      caption-side: unset !important;
      padding-left: 0;
  }
  
  ul.pager li:before{
       content: "";
  }
  
  #block--click-here {
      margin-bottom: 20px;
      background-color: #3ADF00;
      width: 100%;
      padding: 1px 0;
      margin-top: 20px;
  }
  
  th.views-field.views-field-title {
      display: none;
  }
  
  /***Responsive image and common CSS***/
  .view-category-footer-information img,
  .view-category-header-information img,
  .field-name-field-category-header img,
  .field-name-field-category-footer img,
  .field-name-field-information img,
  .taxonomy-term-description img,
  .node-content img{
      max-width: 100% !important;
      height: auto !important;
      display: block !important;
      text-align: center !important;
      margin: 0 auto;
  }
  
  .node-type-multichoice img{
      text-align: left !important;
      margin: 5px 0 !important;
  }
  
  #menu-bar nav ul li a:not(:only-child):after, 
  #menu-bar nav ul li a:visited:not(:only-child):after {
      padding-left: 4px;
      content: "\f0d7";
      float: right;
      font-size: 25px;
  }
  
  .pdff-container {
      border-radius: 20px;
      border: 2px solid #3f79ab;
      margin-bottom: 30px !important;
  }
  
  #views-exposed-form-tutor-search-results-page-2 {
      padding: 15px;
      border: 1px solid #fff;
      border-radius: 4px;
      background: #5a6d7d;
      color: #fff;
  }
  
  #views-exposed-form-tutor-search-results-page-2 label{
      color: #fff;
      font-size: 16px;
  }
  
  #views-exposed-form-tutor-search-results-page-2 .description{
      font-size: 12px;
  }
  
  #views-exposed-form-tutor-search-results-page-2 input[type=text]{
      width: 248px;
  }
  
  span.boldtext{
      font-weight: 600;
  }
  
  .page-taxonomy-term #block-system-main .nodes .taxonomy-tags-nodes,
  .page-taxonomy-term #block-system-main .item-list-pager,
  .field-name-field-profile-views,
  .field-name-field-tutor-profile-views{
      display: none !important;
  }
  
  .block-tutor-search-results-block-1{
      margin-top: 50px;
  }
  
  /*** Load More CSS for all List views ***/
  .views-slideshow-controls-text-previous a,
  .views-slideshow-controls-text-pause a,
  .views-slideshow-controls-text-next a{
      display: none;
  }
  
  .views-slideshow-controls-bottom .views-slideshow-controls-text-next:before{
      content: "\f077";
      font-family: 'FontAwesome';
      background: #f36;
      border: 3px solid #fff;
      padding: 7px;
      color: #fff;
      font-size: 1.5em;
  }
  
  .views-slideshow-controls-bottom .views-slideshow-controls-text-previous:before{
      content: "\f078";
      font-family: 'FontAwesome';
      background: #f36;
      border: 3px solid #fff;
      padding: 7px;
      color: #fff;
      font-size: 1.5em;
  }
  
  .views-slideshow-cycle-main-frame-row-item .field-content a:before{
      content: "\f0a9";
      font-family: 'FontAwesome';
      color: #f36;
      float: left;
      margin-right: 10px;
  }
  
  .views-slideshow-cycle-processed{
      background: rgba(236, 234, 236, 0.23);
      border: 1px solid rgba(204, 204, 204, 0.43);
      padding: 10px;
      width: 100%;
      display: block;
      clear: both;
  }
  
  .views-slideshow-cycle-main-frame{
      width: 100% !important;
     /*  height: 100% !important;*/
  }
  
  .page-node .views-slideshow-cycle-main-frame{
      height: 100% !important;
  }
  
  
  .page-node .views-slideshow-cycle-main-frame-row-item,
  .page-node .views-slideshow-cycle-main-frame-row{
      position: inherit !important;
      width: 100% !important;
      height: 100% !important;
      margin-bottom: 10px;
      word-wrap: break-word;
  }
  
  
  .views-slideshow-cycle-main-frame-row-item,
  .views-slideshow-cycle-main-frame-row{
     /* position: inherit !important;*/
      width: 100% !important;
     /*  height: 100% !important; */
      margin-bottom: 10px;
      word-wrap: break-word;
  }
  
  .views-slideshow-controls-bottom{
      display: block !important;
      text-align: center;
      margin-top: 30px;
      position: relative;
      z-index: 9999;
  }
  
  .views-slideshow-controls-text-previous{
      margin-right: 20px;    
  }
  
  .views_slideshow_controls_text span:hover {
      text-decoration: none;
      cursor: pointer;
  }
  
  
  /*** Read More and Read Less CSS ***/
  .readmorecontainer{
      margin-bottom: 30px;
  }
  
  .readmorecontainer .text-status.collapsed {
      max-height: 121px;
  }
  
  .readmorecontainer .text-status {
      margin: 5px 0 6px;
      overflow: hidden;
      max-height: none;
  }
  
  .readmorecontainer .show-more {
      background: #fff;
      text-align: right;
      position: relative;
      margin-bottom: 5px;
  }
  
  .readmorecontainer .text-status.collapsed+.show-more:before {
      content: '';
      position: absolute;
      display: block;
      height: 24px;
      top: -24px;
      left: 0px;
      right: 0;
      background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 82%, rgba(255, 255, 255, 1) 100%);
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(82%, rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 1)));
      background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 82%, rgba(255, 255, 255, 1) 100%);
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 82%, rgba(255, 255, 255, 1) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  }
  
  .readmorecontainer .show-more .btn {
      color: #007bff;
      font-weight: 500;
      padding: 0;
      cursor: pointer;
  }
  
  
  /*** share correct Answer Form ***/
  .node-share_correct_answer-form{
      background: rgb(0, 140, 186);
      padding: 1.2em 1.2em 3em;
      width: 100%;
      display: block;
      clear: both;
  }
  
  .node-share_correct_answer-form label{
      color: #fff;
      font-size: 1em;
      font-weight: 500;
  }
  
  .node-share_correct_answer-form .double-field-elements{
      color: #fff;
      font-size: 1em;
      font-weight: 500;
      margin-bottom: 20px;
  }
  
  .node-share_correct_answer-form input[type=text]{
     width: 100%; 
  }
  
  .node-share_correct_answer-form select{
      height: 30px;
      width: 90px; 
      background: #ffffbd;
      font-size: 1em;
      margin: 0 16px 0 0;
  }
  
  .node-share_correct_answer-form th,
  .node-share_correct_answer-form td,
  .node-share_correct_answer-form caption,
  .node-share_correct_answer-form tr.odd,
  .node-share_correct_answer-form tr.even{
      border-bottom: none;
      background: none;
      padding: 0;
  }
  
  .node-share_correct_answer-form td.field-multiple-drag{
      width:0  !important;
  }
  
  .node-share_correct_answer-form .tabledrag-handle{
      display: none !important;
  }
  
  input[type=submit].field-add-more-submit{
      border-radius: 4px;
      text-align: center;
      padding: 3px 10px;
      margin-top: -10px;
      float: right;
  }
  
  .study-outer-pane .row{
      display: block !important;
  }
  
  /*** Quiz Results Summary CSS *****/
  #quiz_summary h2.pass-message{
      background: #ebf0f2;
      padding: 10px;
      color: #4CAF50;
      line-height: 35px;
  }   
      
  #quiz_summary .card-body{
      background: #054b81;
  }
  
  #quiz_summary .card p{
      margin: 0 important;
      padding: 0 important;
      font-size: 17px;
      color: #fff;
      letter-spacing: 0px;
      line-height: 30px;
      text-align: left;
  }
  
  #quiz_summary .btn-primary {
      color: #fff;
      background-color: #007bff;
      border-color: #ffffff;
      font-size: 18px;
      padding: 5px 15px;
  }
  
  
  /*** Certificate Notice CSS *****/
  .cert-notice h3 i{
     font-size: 1.0em; 
     color: #ff5722
  }
  
  .cert-notice h3{
      font-size: 1.4em;
      color: #008cba;
  }
  
  .cert-notice .alert-info {
      color: #0c5460;
      background-color: #FFEB3B;
      border-color: #0c5460
  }
  
  .cert-notice .alert-info hr {
      border-top: 1px dotted #a97474;
  }
  
  .cert-notice .col-md-12{
      padding-left: 0;
      padding-right: 0;
  }
  
  
  /*** Buy PDF CSS *****/
  #custom-gateway-form{
      background: rgba(236, 234, 236, 0.23);
      border: 1px solid rgba(204, 204, 204, 0.43);
      padding: 5px 30px 30px;
  }
  
  .view-download-details th, 
  .view-download-details td, 
  .view-download-details caption{
      font-size: 11px; 
      font-weight: 600; 
      padding: 5px;
      border: 1px solid #e2e2e2;
  }
  
  
  .view-download-details th.views-field.views-field-title {
      display: block !important;
  }
  
  .pdfbuynow{
      width: 100%;
      margin: 0 auto 20px;
  }
  
  .pdfbuynow .btn-primary{
      color: #fff;
      background-color: #007bff;
      border-color: #ffffff;
      font-size: 15px;
      padding: 5px 15px;
  }
  
  /*** Top TutorsF CSS *****/
  #block-views-tutor-search-results-top-tutors .top-tutors{width: 90%; padding: 15px 15px; margin: 20px; float: left;background: #fff;border-radius: 10px;}
  #block-views-tutor-search-results-top-tutors .profile-circle{ width:100px; height:100px; float: none; margin: 0 auto;}
  #block-views-tutor-search-results-top-tutors .profile-circle img{ border: solid 5px #dedede; height:100%; width:100%; border-radius:100%; object-fit:cover;}
  #block-views-tutor-search-results-top-tutors .profile-text{width: 100%; text-align: center; float: none;}
  #block-views-tutor-search-results-top-tutors .profile-text .fullnameheading{padding: 0 !important; padding: 0 !important; font-size: 16px; font-weight: 600;}
  #block-views-tutor-search-results-top-tutors .profile-text p{min-height: 60px; margin-bottom: 0; }
  
  #block-views-tutor-search-results-top-tutors .carousel {
      background: #e4ecff;
      padding: 0 45px;
  }
  
  
  #block-views-tutor-search-results-top-tutors .news-more a {
      margin-top: 10px;
  }
  
  #block-views-tutor-search-results-top-tutors .carousel-control-prev, 
  #block-views-tutor-search-results-top-tutors .carousel-control-next {
      background: #ffffff;
      width: 35px;
      color: #3383bb;
      height: 40px;
      vertical-align: middle;
      position: absolute;
      top: 128px;
      border-radius: 5px;
      border: 1px solid #e4e4e4;
      font-size: 24px;
      margin: 0 10px;
      opacity: 1;
  }  
  
  
  #block-views-tutor-search-results-top-tutors .carousel-control-next:focus, 
  #block-views-tutor-search-results-top-tutors .carousel-control-prev:focus,
  #block-views-tutor-search-results-top-tutors .carousel-control-next:hover,
  #block-views-tutor-search-results-top-tutors .carousel-control-prev:hover {
      color: #ff3366;
      text-decoration: none;
      outline: 0;
      opacity: .9;
  }
  
  #block-views-tutor-search-results-top-tutors .carousel-indicators {
      bottom: -36px;
  }
  
  #block-views-tutor-search-results-top-tutors .carousel-indicators li {
  	border-radius:0;
  	width:12px;
  	height:12px;
  	background:#ccc;
  	border:1px solid #ccc;
  }
  
  #block-views-tutor-search-results-top-tutors .carousel-indicators .active {
  	width:12px;
  	height:12px;
  	background:#3276b1;
  	border-color:#3276b1;
  } 
}
/*})'"*/
@font-face {
    font-family: 'GothamRounded-Medium';
    src: url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/GothamRounded-Medium.eot);
    src: url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/GothamRounded-Medium.eot?#iefix) format('embedded-opentype'),
         url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/GothamRounded-Medium.woff) format('woff'),
         url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/GothamRounded-Medium.ttf) format('truetype'),
         url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/GothamRounded-Medium.svg#GothamRounded-Medium) format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothamRounded-Bold';
    src: url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/GothamRounded-Bold.eot);
    src: url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/GothamRounded-Bold.eot?#iefix) format('embedded-opentype'),
         url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/GothamRounded-Bold.woff) format('woff'),
         url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/GothamRounded-Bold.ttf) format('truetype'),
         url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/GothamRounded-Bold.svg#GothamRounded-Bold) format('svg');
    font-weight: normal;
    font-style: normal;
}

	html {
	height: 100%;
	/* overflow:hidden; */
	font-family: 'GothamRounded-Bold',Helvetica,Arial,sans-serif;
}

.pdff-abs-center {
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.pdff-abs-h-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}

.pdff-container {
  min-height: 320px;
  background: no-repeat 50%;
  background-size: cover;
  width: 100%;
  position: relative;
  /* background-color: #A6322D; */
  /*Smoothing of images in Firefox*/
  image-rendering: auto;
  direction: ltr;
}

.pdff-container.pdff-transparent:not(.pdff-fullscreen) {
  background: transparent !important;
}

.pdff-container.pdff-custom-fullscreen.pdff-fullscreen {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  z-index: 999999;
}

.pdff-container .loading-info {
  position: absolute;
  top: 100%;
  margin-top: 20px;
  margin-left: 5px;
  padding: 6px 20px;
  background-color: rgba(0, 0, 0, 0.09);
  text-transform:uppercase;
  border-radius: 5px;
  font-size: 10px;
  max-height: 30px;
  color: #fff;
  max-width: 200px;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  left: 50%;
  opacity: 0.7;
  transition: 0.3s top ease;
  -webkit-transition: 0.3s top ease;
}

.loading-info.pdff-old-browser {
  color: gray;
  background-color: white;
  opacity: 0.9;
  text-align: center;
  max-height: none;
}

.loading-info.pdff-old-browser a {
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
  color: #2196F3;
  display: block;
  text-decoration: underline;
  margin: 10px 0 0;
}

.pdff-container.pdff-init .loading-info {
  top: 50%;
}

.pdff-3dcanvas {
  position: absolute;
  z-index: 1;
  right: 0;
}

.pdff-rtl .pdff-3dcanvas {
  right: auto;
  right: initial;
  left: 0;
}

.pdff-container > canvas {
}

.pdff-container a {
  outline: none;
  text-decoration: none;
  box-shadow: none;
}

.pdff-container.pdff-zoom-enabled canvas.pdff-3dcanvas,
.pdff-container.pdff-zoom-enabled .ppdff-flipbook-stage {
  cursor: move;
  /*noinspection Annotator*/ cursor: -webkit-grab;
}

.pdff-container:before, .pdff-container:after {
  content: " ";
  transition: 0.3s 0.1s opacity;
  -webkit-transition: 0.3s 0.1s opacity;
  opacity: 0;
  height: 50px;
  width: 50px;
  left: 50%;
  top: 50%;
  font-size: 12px;
  margin: -45px -25px -25px;
  box-sizing: border-box;
  position: absolute;
  pointer-events: none;
}

.pdff-container.pdff-loading:before, .pdff-container.pdff-loading:after {
  content: " ";
  z-index: 100;
  opacity: 1;
  /*display:none;*/
}

.pdff-container.pdff-loading .pdff-loading-icon {
}

.pdff-container.pdff-loading:after {
  content: " ";
  background-image: url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/images/loading.gif);
	background-repeat: no-repeat;
	background-size: 35px;
	background-position: 50%;
}

.pdff-container.pdff-loading:before {
	background-color: #ffffff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 3px solid rgba(62, 71, 79, 0.1);
}

.ppdff-flipbook-stage {
  position: absolute;
  overflow: hidden;
  right: 0;
  bottom: 0;
  z-index: 1;
  top: 0;
  left: 0;

  /*Blurry image fixation*/
  filter: blur(0);
  -webkit-filter: blur(0);
  padding: 30px 50px 70px;
}

.pdff-floating .ppdff-flipbook-stage {
}

.pdff-container.pdff-xs .ppdff-flipbook-stage {
  padding-left: 20px;
  padding-right: 20px;
}

.pdff-container.pdff-sidemenu-open .ppdff-flipbook-stage {
  padding-left: 230px;
  padding-right: 10px;
}

.pdff-container.pdff-sidemenu-open > .pdff-ui-btn.pdff-ui-prev {
  left: 220px;
}

.pdff-rtl.pdff-container.pdff-sidemenu-open > .pdff-ui-btn.pdff-ui-prev {
  left: 0;
}

.pdff-rtl.pdff-container.pdff-sidemenu-open > .pdff-ui-btn.pdff-ui-next {
  right: 220px;
}

.ppdff-flipbook-stage.pdff-zoom-enabled {
  cursor: move;
}

.pdff-page-front:before, .pdff-page-back:before {
  content: " ";
}

.ppdff-flipbook-page .pdff-page-front:before {
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0.15) 25%, rgba(0, 0, 0, 0) 70%);
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0.15) 25%, rgba(0, 0, 0, 0) 70%);
  background-image: -ms-linear-gradient(right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0.15) 25%, rgba(0, 0, 0, 0) 70%);
}

.ppdff-flipbook-page .pdff-page-back:before {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15) 15%, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.0));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15) 15%, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.0));
  background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15) 15%, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.0));
}

.ppdff-flipbook-wrapper, .pdff-page-wrapper, .ppdff-flipbook-page, .pdff-page-content,
.pdff-page-front:before, .pdff-page-wrapper:after, .pdff-page-back:before,
.pdff-page-content:after, .pdff-page-effects, .pdff-page-effects:before, .pdff-page-effects {
  position: absolute;
  height: 100%;
  display: block;
  top: 0;
}

.pdff-page-content, .ppdff-flipbook-page {
  width: 100%;
}

.ppdff-flipbook-wrapper {
  position: relative;
  margin: 0 auto;
  transition: 0.3s left;
  -webkit-transition: 0.3s left;
  left: 0;
  /* box-shadow: 0 2px 8px #aaa; */
}

.pdff-zoom-enabled .ppdff-flipbook-wrapper {
  transition: none;
  -webkit-transition: none;
}

.pdff-loading.pdff-container .ppdff-flipbook-wrapper {
  left: 100%;
}

.ppdff-flipbook-wrapper.close-right {
  left: 25%;
}

.ppdff-flipbook-wrapper.close-left {
  left: -25%;
}

.ppdff-flipbook-shadow {
  position: absolute;
  z-index: -1;
  height: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.ppdff-flipbook-wrapper .ppdff-flipbook-side-buttons {
  position: absolute;
  left: 100%;
  width: 40px;
  opacity: 0.3;
  height: 100%;
  cursor: pointer;
  z-index: 30;
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
  border-radius: 0 20px 20px 0;
}

.ppdff-flipbook-prev-button.ppdff-flipbook-side-buttons {
  -webkit-border-radius: 20px 0 0 20px;
  -moz-border-radius: 20px 0 0 20px;
  border-radius: 20px 0 0 20px;
}

.ppdff-flipbook-wrapper .ppdff-flipbook-side-buttons:hover {
  opacity: 0.5;
  background-color: rgba(0, 0, 0, 0.18);
}

.ppdff-flipbook-wrapper .ppdff-flipbook-prev-button {
  right: 100%;
  left: auto;
  left: initial;
}

.ppdff-flipbook-wrapper .ppdff-flipbook-side-buttons:before {
  position: absolute;
  font-size: 30px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.ppdff-flipbook-wrapper .ppdff-flipbook-prev-button:before {
}

.pdff-page-wrapper {
  overflow: hidden;
}

.pdff-hard-page .pdff-page-wrapper {
  width: 100% !important;
  height: 100% !important;
  overflow: visible;
  transform-style: preserve-3d;
  -webkit-transform-origin: 0 50% 0;
  -moz-transform-origin: 0 50% 0;
  -ms-transform-origin: 0 50% 0;
  transform-origin: 0 50% 0;
}

.ppdff-flipbook-page.pdff-flipping, .ppdff-flipbook-page.pdff-folding {
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.0);
}

.ppdff-flipbook-page.pdff-left-side {
  left: 0;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
}

.ppdff-flipbook-page.pdff-right-side {
  left: 50%;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

.ppdff-flipbook-page.pdff-hard-page {
}

.ppdff-flipbook-page.pdff-right-side + .pdff-page-wrapper.pdff-right-side {
  z-index: -1;
}

.ppdff-flipbook-page .pdff-page-front, .ppdff-flipbook-page .pdff-page-back {
  width: 100%;
  background-size: 100.5% 100%;
  background-size: 100% 100%;
  height: 100%;
  background-color: white;
  position: absolute;
  box-sizing: border-box;
}

.pdff-page-back > canvas, .pdff-page-front > canvas {
  width: 100%;
  position: relative;
  z-index: -1;
}

/*right left shadow during flip*/
.pdff-page-wrapper:before {
}

.pdff-quick-turn:before {
  opacity: 0;
}

.ppdff-flipbook-page.pdff-flipping.pdff-left-side:before {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
  width: 10px;
  left: -10px;
}

.ppdff-flipbook-page.pdff-right-side:before {
}

.ppdff-flipbook-page {
  width: 50%;
}

.ppdff-flipbook-page.pdff-flipping, .ppdff-flipbook-page.pdff-folding {
  z-index: 200 !important;
}

.pdff-page-content {
  background-size: 100.25% !important;
  background-repeat: no-repeat !important;
  transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  width: 100%;
  overflow: hidden;
  /*this causes page cuts in IE*/
}

.ppdff-flipbook-page.pdff-left-side .pdff-page-front {
  /*overflow: hidden;*/
  z-index: 2;
}

.ppdff-flipbook-page.pdff-left-side .pdff-page-back {
  z-index: 1;
}

.ppdff-flipbook-page.pdff-left-side.pdff-folding:not(.pdff-hard-page) .pdff-page-back {
  z-index: 3;
}

.ppdff-flipbook-page.pdff-right-side .pdff-page-front {
  top: 0;
  left: 0;
  z-index: 0;
}

.ppdff-flipbook-page, .pdff-page-front, .pdff-page-back,
.pdff-page-fold-inner-shadow, .pdff-page-fold-outer-shadow, .pdff-page-wrapper {
  position: absolute;
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
}

.pdff-page-front, .pdff-page-back {
  overflow: hidden;
}

.pdff-page-fold-outer-shadow {
  z-index: -1;
  width: 100%;
  height: 100%;
}

.pdff-page-fold-inner-shadow {
  position: absolute;
  z-index: 5;
  display: none;
}

.ppdff-flipbook-page.pdff-folding .pdff-page-fold-inner-shadow {
  display: block;
}

.ppdff-flipbook-page.pdff-right-side .pdff-page-back {
  left: 0;
  z-index: 1;
}

.ppdff-flipbook-page.pdff-right-side.pdff-folding .pdff-page-front {
  z-index: 2;
}

.pdff-page-wrapper.pdff-right-side .pdff-page-back {
  left: 100%;
  z-index: 1;
  overflow: hidden;
}

.pdff-hard-page .pdff-page-front,
.pdff-hard-page .pdff-page-back {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pdff-hard-page.pdff-right-side .pdff-page-front {
  -webkit-transform-origin: right 50%;
  -moz-transform-origin: right 50%;
  -ms-transform-origin: right 50%;
  transform-origin: right 50%;
  z-index: 3 !important;
  /*transform-style: preserve-3d;*/ /*this causes issues in FF*/
}

.pdff-hard-page.pdff-left-side .pdff-page-front {
  -webkit-transform-origin: right 50%;
  -moz-transform-origin: right 50%;
  -ms-transform-origin: right 50%;
  transform-origin: right 50%;
}

.pdff-hard-page.pdff-right-side .pdff-page-back {
  -webkit-transform-origin: left 50%;
  -moz-transform-origin: left 50%;
  -ms-transform-origin: left 50%;
  transform-origin: left 50%;
  z-index: 3;
  /*transform-style: preserve-3d;*/ /*this causes issues in FF*/
}

.pdff-hard-page.pdff-left-side .pdff-page-back {
  -webkit-transform-origin: left 50%;
  -moz-transform-origin: left 50%;
  -ms-transform-origin: left 50%;
  transform-origin: left 50%;
}

/*Mid shadows*/
.pdff-page-front:before, .pdff-page-back:before {
  width: 20%;
  z-index: 5;
  pointer-events: none;
}

.pdff-page-front:before {
  right: 0;
}

.pdff-page-wrapper.pdff-right-side.pdff-flipping {
  z-index: 4;
}

/*Book UI*/

.pdff-ui {
  height: 60px;
  padding: 20px 16px 0;
}

.pdff-ui-wrapper, .pdff-ui-btn {
	color: #b2bbbd;
	vertical-align: top;
	background-color: #3e474f;
	box-sizing: border-box;
	text-align: center;
}

.pdff-ui-wrapper {
	background-color: #3e474f;
	position: absolute;
}

.pdff-share-wrapper {
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.35);
  display: none;
}

.pdff-share-wrapper.pdff-hidden { }

.pdff-share-box {
  position: absolute;
  top: 50%;
  width: 280px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  background-color: #3f474e;;
  border-radius: 10px;
  padding: 10px 15px 5px;
  text-align: center;
  border:3px solid #ccc;
}

span.pdff-share-title {
  color: #ccc;
  margin-bottom: 10px;
  display: block;
}

.pdff-share-url {
  /* border: 0; */
  background-color: #fff;
  height: 60px;
  color: #666;
  padding: 2px 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  font-size: 12px;
  box-sizing: border-box;
  margin-bottom: 0px;
  display:none;
}

.pdff-share-button {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: 10px;
  margin: 3px;
  color: #ccc;
}

.pdff-share-button:hover {
  color: #fff;
}

.pdff-ui-btn {
  position: relative;
  width: 35px;
  right: 0;
  height: 40px;
  font-size: 17px;
  cursor: pointer;
  z-index: 2;
  display: inline-block;
  padding: 12px 5px;
  /* -webkit-border-radius: 3px; */
  line-height: 1;
}

.pdff-floating .pdff-ui-controls > .pdff-ui-btn:first-child {
  border-radius: 5px 0 0 5px;
}

.pdff-floating .pdff-ui-controls > .pdff-ui-btn:last-child {
  border-radius: 0 5px 5px 0;
}

.pdff-ui-btn:before {
  box-sizing: border-box;
}

.pdff-ui-fit, .pdff-ui-thumbnail {
}

.pdff-ui-thumbnail, .pdff-ui-share, .pdff-ui-outline, .pdff-ui-help, .pdff-ui-sound {
  float: left;
}

.pdff-ui-zoomin, .pdff-ui-zoomout {
}

.pdff-ui-btn:hover {
  color: #00ACCE;
}

.pdff-ui-btn.disabled, .pdff-ui-btn.disabled:hover {
  color: #ccc;
}

.pdff-ui-share:before {
}

.pdff-ui-page {
  padding: 8px 5px 2px;
  font-size: 12px;
  width: auto;
  width: 50px;
  margin: 0 0;
  /* border-right: 1px solid #ddd; */
  border-radius: 0;
  /* float: left !important; */
  background-color: rgba(0, 0, 0, 0.03);
}

.pdff-ui-page input {
  width: 100%;
  background-color: transparent;
  height: 25px;
  margin: 0;
  padding: 0 !important;
  border: 1px solid rgb(143, 143, 143);
  text-align: center;
  vertical-align: top;
  color: transparent;
  font-size: 14px;
  top: 0;
  box-sizing: border-box;
  z-index: -1;
  display: inline-block;
  opacity: 0;
}

.pdff-ui-page input:focus {
  z-index: 2;
  opacity: 1;
  color: inherit;
}

.pdff-ui-page input:focus + label {
  opacity: 0;
  display: none;
}

.pdff-ui-page label {
  position: absolute;
  height: 30px;
  width: 100%;
  display: block;
  top: 0;
  padding-top: 14px;
  /* letter-spacing: 0.5px; */
  line-height: 1.1em; /*it was getting overwritten in some theme*/
  color: #999;
  font-size: 13px;
  /* vertical-align: top; */
  font-weight: normal;
  left: 0;
  cursor: pointer;
  background-color: transparent;
  z-index: 1;
  box-sizing: border-box;
  /* border: 1px solid rgba(0, 0, 0, 0.11); */
}

.pdff-ui-share {
  float: left;
}

.pdff-ui-share:before {
}

.pdff-ui-fullscreen {
  bottom: 0;
}

.pdff-ui-fullscreen:before {
}

.pdff-ui-zoom {
  top: 24px;
  height: 60px;
  right: 24px;
  width: 30px;
  display: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.pdff-ui-sidemenu-close {
  position: absolute;
  top: 10px;
  right: -32px;
  font-size: 14px;
  width: 32px;
  height: 35px;
  cursor: pointer;
  padding: 10px 0px;
  background: inherit;
  border-radius: 0 5px 5px 0;
  z-index: -1;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
}

.pdff-ui-controls {
  bottom: 0;
  width: 100%;
  /* border-radius: 5px; */
  height: 40px;
  padding: 0;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Chrome/Safari/Opera */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
  user-select: none;
  /* non-prefixed version, currently
               not supported by any browser */
  z-index: 4;
  /* bottom: 15px; */
  display: block;
}

.pdff-floating .pdff-ui-controls {
  bottom:10px;
  width: auto;
  /*noinspection CssInvalidPropertyValue*/
  width: intial; /*IE fallback*/
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  margin: 0 auto;
  display: table; /*IE fallback*/
  display: flex;
  text-align:center;
  padding:0 20px;
  border-radius:20px;
  opacity:.9;
  box-shadow:2px 2px 2px 2px rgba(0,0,0,0.20)
}

.pdff-floating.pdff-controls-top .pdff-ui-controls {
  bottom: auto;
  /*noinspection CssInvalidPropertyValue*/
  bottom: intial; /*IE fallback*/
  top: 10px;
}

.pdff-floating.pdff-controls-hide .pdff-ui-controls {
  display: none;
}

.pdff-ui-wrapper.pdff-ui-controls .pdff-ui-btn {
  /* display: table-cell; */
  float: none;
}

.pdff-ui-size {
  bottom: 24px;
  height: 60px;
  right: 24px;
}

.pdff-ui-zoom:before, .pdff-ui-size:before {
  height: 0;
  border-bottom: 1px solid;
  content: " ";
  right: 5px;
  opacity: 0.3;
  display: block;
  position: absolute;
  top: 30px;
  left: 5px;
  z-index: 2;
}

.pdff-ui-zoomin {
  top: 0;
}

.pdff-ui-zoomin:before {
}

.pdff-ui-zoomout {
  bottom: 0;
}

.pdff-ui-btn.pdff-ui-zoomout {
  /* display: none; */
}

.pdff-zoom-enabled .pdff-ui-btn.pdff-ui-zoomout {
  /* display: block; */
}

.pdff-zoom-enabled .pdff-ui-btn.pdff-ui-zoomin {
  /* display: none; */
}

.pdff-ui-zoomout:before {
}

.pdff-ui-next {
  right: 24px;
  right: 0;

}

.pdff-container.pdff-floating > .pdff-ui-next {
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	padding-left: 10px;
	background:rgba(0,0,0,1.00)
}

.pdff-container.pdff-floating > .pdff-ui-prev {
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	padding-right: 10px;
	background:rgba(0,0,0,1.00)
}

.pdff-container > .pdff-ui-next, .pdff-container > .pdff-ui-prev {
  margin-top: -5px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.35); */
  opacity: 0.3;
  background-color: transparent;
  height: auto;
  height: initial;
  font-size: 36px;
  color: #000;
  width: auto;
  text-align: center;
  width: initial;
	width: 40px;
	color: #b2bbbd;
	background-color: #3e474f;
	padding: 10px 0;
	margin: 0;
	font-size: 30px !important;
}

.pdff-container > .pdff-ui-next:hover, .pdff-container > .pdff-ui-prev:hover {
  opacity: 0.7;
}

.pdff-container.pdff-floating > .pdff-ui-next, .pdff-container.pdff-floating > .pdff-ui-prev {
  width: 40px;
}

.pdff-ui-next:before {
}

.pdff-ui-prev {
  left: 0;
  right: auto;
  border-radius: 0;
}

.pdff-ui-prev:before {
}

.pdff-ui-alt {
  position: relative !important;
  right: auto;
  right: initial;
  left: auto;
  left: initial;
  box-shadow: none !important;
}

.pdff-ui-alt.pdff-ui-next,
.pdff-ui-alt.pdff-ui-prev {
  /* display: none !important; */
}

.pdff-ui-alt.pdff-ui-next {
}

.pdff-ui-start {
}

.pdff-ui-start:before {
}

.pdff-ui-end {
}

.pdff-ui-end:before {
}

.pdff-ui-thumbnail:before {
}

.pdff-ui-outline:before {
}

.pdff-ui-btn.pdff-active {
  color: #5fcf80;
}

.pdff-ui-fit {
  display: none;
}

.pdff-ui-zoomin, .pdff-ui-zoomout, .pdff-ui-fullscreen, .pdff-ui-more {
  float: right;
}

.pdff-ui-fit {
  top: 0;
}

.pdff-ui-fit:before {
}

.pdff-ui-fit.button-fit-active:before {
}

.pdff-page-content div {
}

.pdff-ui-more .more-container {
  display: none;
  position: absolute;
  bottom: 100%;
  margin-bottom: 8px !important;
  right: 10px;
  background-color: #f7f7f7;
  z-index: 20;
  border-radius: 5px;
  /* overflow: hidden; */
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.2);
}

.pdff-controls-top .pdff-ui-more .more-container {
  bottom: auto;
  bottom: initial;
  margin-top: 8px !important;
  top: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.more-container:before { content: " "; position: absolute; border: solid transparent; border-width: 7px; border-top-color: #eee; height: 0; width: 0; bottom: -14px; /* background-color: white; */ right: 13px; margin-right: -8px; pointer-events: none; }

.pdff-controls-top .more-container:before {
  border: solid transparent;
  border-bottom-color: #eee;
  border-width: 7px;
  top: -14px;
}

.more-container .pdff-ui-btn {
  width: auto;
  width: initial;
  width: 170px;
  text-align: left;
  padding: 8px 10px;
  height: 36px;
  border-top: 1px solid #e4e4e4;
  border-radius: 0;
}

.more-container .pdff-ui-btn:hover {
  background-color: #eee;
}

.more-container > .pdff-ui-btn:first-child {
  border-radius: 5px;
  border-top: none;
}

.more-container > .pdff-ui-btn:last-child {
  border-radius: 0 0 5px 5px;
}

.more-container .pdff-ui-btn:before {
  position: absolute;
  top: 11px;
  font-size: 14px;
}

.pdff-ui-btn span {
  display: none;
}

.more-container .pdff-ui-btn span {
  font-size: 12px;
  padding-left: 20px;
  vertical-align: middle;
  display: inline-block;
}

.pdff-ui-more.pdff-active .more-container {
  display: block;
}

.annotationLayer section,
.annotationDiv section,
.customLinkAnnotation,
.customHtmlAnnotation,
.customVideoAnnotation,
.linkAnnotation,
.highlightAnnotation,
.popupAnnotation {
  position: absolute;
  z-index: 5;
  cursor: pointer;
  pointer-events: all;
  /* border: none !important; */
}

.annotationDiv .popupWrapper {
  position: absolute;
  width: 20em;
}

.annotationDiv .popup {
  position: absolute;
  z-index: 200;
  max-width: 20em;
  background-color: #FFFF99;
  box-shadow: 0px 2px 5px #333;
  border-radius: 2px;
  padding: 0.6em;
  margin-left: 5px;
  cursor: pointer;
  word-wrap: break-word;
}

.annotationDiv .popup h1 {
  font-size: 1em;
  border-bottom: 1px solid #000000;
  padding-bottom: 0.2em;
}

.annotationDiv .popup p {
  padding-top: 0.2em;
}

.annotationDiv .highlightAnnotation,
.annotationDiv .underlineAnnotation,
.annotationDiv .squigglyAnnotation,
.annotationDiv .strikeoutAnnotation,
.annotationDiv .fileAttachmentAnnotation {
  cursor: pointer;
}

.annotationDiv .textAnnotation img {
  position: absolute;
  cursor: pointer;
}

section.linkAnnotation a,
.annotationDiv .buttonWidgetAnnotation.pushButton > a {
  display: block;
  height: 100%;
}

section.linkAnnotation a,
a.linkAnnotation,
a.customLinkAnnotation,
.customHtmlAnnotation,
.customVideoAnnotation {
  background-color: transparent;
  background-color: rgb(255, 255, 0);
  /* border-bottom: 1px solid #2196F3; */
  opacity: 0.1;
}

a.customLinkAnnotation {
  /* opacity: 0.15; */
}

section.linkAnnotation a:hover,
a.linkAnnotation:hover,
.highlightAnnotation:hover,
a.customLinkAnnotation:hover {
  opacity: 0.4;
  border-color: transparent;
  background-color: #2196F3;
}

.annotationDiv {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

section.linkAnnotation a .annotationLayer >
a {
  display: block;
  position: absolute;
  height: 100%;
  cursor: pointer;
  box-sizing: border-box;
}

section.linkAnnotation a.internalLink:hover {
}

.pdff-page-loading:after, .pdff-page-loading:before {
  content: " ";
  height: 44px;
  width: 44px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -22px -22px;
}

.pdff-page-loading:before {
  background-color: white;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  /* box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4); */
  box-sizing: border-box;
}

.pdff-page-loading:after {
  background-image: url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/images/loading.gif);
	background-repeat: no-repeat;
	background-size: 22px;
	content: "";
	height: 22px;
	width: 22px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -11px -11px;
}

.pdff-thumb-container .pdff-vrow {
  height: 124px;
  left: 0;
  width: 90%;
  margin: 10px auto;
  background-position: 50%;
  cursor: pointer;
  background-repeat: no-repeat;
  right: 0;
  border-radius: 5px;
  /* opacity: 0.7; */
}

.pdff-thumb-container .pdff-vrow:before {
  content: "";
  background-image: url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/images/loading.gif);
	background-color: rgba(255,255,255,1.00);
	background-position:center center;
	background-repeat: no-repeat;
	background-size: 22px;
	height: 32px;
	width: 32px;
	display: block;
	top: 60px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	border-radius:5px;
}

.pdff-thumb-container .pdff-vrow:hover {
  background-color: #3f474e;
}

.pdff-floating .pdff-thumb-container .pdff-vrow:hover, .pdff-vrow.pdff-selected {
  background-color: #3f474e;
  opacity: 1;
}

.pdff-thumb-container .pdff-vrow.pdff-thumb-loaded {
  background-size: contain;
  /* opacity: 1; */
}

.pdff-thumb-container .pdff-vrow.pdff-thumb-loaded:before {
  display: none;
}

.pdff-vrow > div {
  /* padding: 25%; */
  height: 20px;
  background-color: rgba(170, 170, 170, 0.54);
  width: 40px;
  margin: 0 auto;
}

.pdff-sidemenu {
  float: left;
  width: 220px;
  height: auto !important;
  position: absolute !important;
  top: 0;
  z-index: 3;
  transition: 0.5s transform ease;
  -webkit-transition: 0.5s -webkit-transform ease;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  left: -50px;
  background-color: rgba(69, 76, 83, 0.8);
}

.pdff-rtl .pdff-sidemenu {
  left: auto;
  left: initial;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  right: -50px;
  direction: rtl;
}

.pdff-thumb-container {
  text-align: center;
}

.pdff-outline-container {
  color: #666;
  font-size: 12px;
}

.pdff-outline-wrapper, .pdff-thumb-wrapper {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto !important;
  box-shadow: 1px 0 4px rgba(102, 102, 102, 0.38);
}

.pdff-outline-wrapper {
  overflow: auto;
  padding: 10px 10px 5px 10px;
}

.pdff-floating .pdff-outline-container, .pdff-floating .pdff-thumb-container {
  bottom: 0;
}

.pdff-sidemenu.pdff-sidemenu-visible {
  display: block;
  transform: translateX(0);
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  left: 0;
}

.pdff-outline-toggle {
  cursor: pointer;
  float: left;
  width: 18px;
  padding: 5px 0;
  margin-left: -18px;
  text-align: center;
}

.pdff-outline-toggle.pdff-outlines-hidden ~ .pdff-outline-items {
  display: none;
}

.pdff-outline-items > .pdff-outline-item {
  margin-left: 18px;
  /* padding: 5px 0; */
}

.pdff-outline-item a:hover, .pdff-outline-toggle:hover {
  background-color: #3f474e;
}

.pdff-outline-item a {
  color:#ccc;
  text-decoration: none !important;
  display: block;
  padding: 5px 0 5px 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
  border: none !important;
  box-shadow: none !important;
}

.pdff-outline-toggle:before {
  content: "\e64b";
  font-size: 10px;
  font-family: 'themify';
}

.pdff-outline-toggle.pdff-outlines-hidden:before {
  content: "\e649";
}

.pdff-lightbox-wrapper {
  position: fixed !important;
  top: 20px;
  bottom: 20px;
  right: 20px;
  left: 20px;
  height: auto !important;
  background-color: transparent;
  z-index: 99999;
}

.pdff-lightbox-controls {
  /* height: 40px; */
  float: right;
  padding: 5px;
  z-index: 1000;
  position: relative;
}

.pdff-lightbox-close {
  float: right;
  height: 40px;
  text-align: center;
  font-size: 50px;
  cursor: pointer;
  /* line-height: 30px; */
  color: #444;
  /* padding: 5px; */
  border-radius: 50%;
  /* border: 1px solid; */
  border-color: transparent;
  width: 40px;
  background-color: transparent;
  transition: 0.2s;
  -webkit-transition: 0.2s;
}

.pdff-lightbox-close:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0.21);
  /* border-color: black; */
  border-color: black;
}

.pdff-lightbox-close:before {
  top: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  font-size: 24px;
}

.pdff-lightbox-wrapper .pdff-container {
  position: absolute !important;
  width: 100%;
  top: 0;
  bottom: 0;
  height: auto !important;
  border-radius:25px;
  box-shadow:3px 3px 3px rgba(86,86,86,0.65);
}

.pdff-container.pdff-xs .pdff-ui-controls .pdff-ui-btn.pdff-ui-next,
.pdff-container.pdff-xs .pdff-ui-controls .pdff-ui-btn.pdff-ui-prev {
  /* display: none; */
}

.pdff-container.pdff-xs .pdff-ui-controls .pdff-ui-btn.pdff-ui-page {
  display: none !important;
}

._PDFF_btt, ._pdff_thumb {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

._PDFF_btt {
  padding: 5px 15px;
  background-color: #444;
  background: #0085ba;
  color: white;
  font-size: 14px;
  border-color: #0073aa #006799 #006799;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  -webkit-appearance: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  white-space: nowrap;
}

._pdff_thumb { border: none; width: 140px; height: 200px; text-align: center; }

._pdff_thumb {
  cursor: pointer;
  /* background-color: #eee; */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  display: inline-block;
  -webkit-transform-style: flat;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  box-sizing: border-box;
  -webkit-transition: 0.2s;
  margin: 30px 10px 10px;
  /*-webkit-perspective: 1200px;*/
  -moz-perspective: 1200px;
  perspective: 1200px;
}

.PDFFlips ._pdff_thumb, .PDFFlips .pdff-dummy {
  width: 140px;
  height: 200px;
  text-align: center;
  display: inline-block;
  position: relative;
  margin: 20px 10px;
  /* clear: left; */
  vertical-align: top;
}

.PDFFlips .pdff-dummy {
}

._pdff_thumb[thumbtype="img"] {
  height: auto;
}

._pdff_thumb[thumbtype="img"] img {
  max-width: 100%;
  max-height: 200px;
}

.PDFFlip-cover {
  background-size: 100% 100%;
  height: 100%;
  width: 100%;
  -webkit-transform-origin: left;
  transform-origin: left;
  top: 0;
  background-color: #eee;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

._pdff_thumb .PDFFlip-title {
  bottom: -100%;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 5px;
  font-size: 12px;
  background: rgba(1, 163, 163, 0.87);
  background: rgba(60, 60, 60, 0.8);
  box-sizing: border-box;
  display: block;
  color: white;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  opacity: 0;
}

._pdff_thumb .PDFFlip-tag {
  float: left;
  padding: 0 4px 2px;
  background-color: rgba(0, 0, 0, 0.26);
  text-transform: uppercase;
  font-size: 10px;
  margin: -15px 0 0 2px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

._pdff_thumb:hover .PDFFlip-title,
._pdff_thumb-not-found .PDFFlip-title {
  opacity: 1;
  bottom: 0;
}

._pdff_thumb:hover .PDFFlip-title i {
  /* font-size: 1em; */
}

._pdff_thumb:hover {
  /* box-shadow: 0 1px 10px rgba(0, 0, 0, 0.40); */
}

._pdff_thumb:hover .PDFFlip-cover {
  -webkit-transform: rotateY(-20deg) rotateZ(0deg);
  -moz-transform: rotateY(-20deg) rotateZ(0deg);
  -ms-transform: rotateY(-20deg) rotateZ(0deg);
  transform: rotateY(-20deg) rotateZ(0deg);
  box-shadow: 3px 0 12px rgba(0, 0, 0, 0.60);
}

.pdff-webkit ._pdff_thumb:hover .PDFFlip-cover {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none;
  box-shadow: 1px 0 12px rgba(0, 0, 0, 0.60);
}

.PDFFlips {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px 5px 150px;
}

.PDFFlips-break {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 25px;
  text-transform: uppercase;
  /* text-shadow: 0 -1px 0 rgba(85, 85, 85, 0.31); */
}

.PDFFlips-break:after {
  content: " ";
  bottom: 0;
  width: 50px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.24);
  display: block;
  margin: 10px auto;
}

.pdff-page-wrapper {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.pdff-container ::-webkit-scrollbar {
  width: 8px;
}

.pdff-container ::-webkit-scrollbar-button {
  height: 8px;
}

.pdff-container ::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border: 0 none #ffffff;
  border-radius: 100px;
  /* margin-right: 5px; */
}

.pdff-container ::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.pdff-container ::-webkit-scrollbar-thumb:active {
  background: rgba(0, 0, 0, 0.5);
}

.pdff-container ::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.20);
  border: 0 none #ffffff;
  border-radius: 100px;
}

.pdff-container ::-webkit-scrollbar-track:hover {
  background: rgba(0, 0, 0, 0.2);
}

.pdff-container ::-webkit-scrollbar-track:active {
  background: rgba(0, 0, 0, 0.15);
}

.pdff-container ::-webkit-scrollbar-corner {
  background: transparent;
}

.pdff-skipTransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

.pdff-container.pdff-fullscreen {
  height: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}

.pdff-container.pdff-double-internal .pdff-page-front {
  background-position: left;
  background-size: cover;
}

.pdff-container.pdff-double-internal .pdff-page-back {
  background-position: right;
  background-size: cover;
}

.customHtmlAnnotation iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.pdff-rtl .more-container .pdff-ui-btn {
  text-align: right;
  direction: rtl;
}

.pdff-rtl .more-container .pdff-ui-btn:before { right: 10px; }

.pdff-rtl .more-container .pdff-ui-btn span {
  padding: 0;
  padding-right: 20px
}

.pdff-rtl .pdff-outline-items > .pdff-outline-item {
  margin: 0 18px 0 0;
  text-align: right;
  direction: rtl;
}

.pdff-rtl .pdff-outline-toggle {
  float: right;
  margin: 0 -18px 0 0;
}

.pdff-rtl .pdff-outline-toggle.pdff-outlines-hidden:before {
  content: "\e64a";
}

.pdff-rtl .pdff-sidemenu.pdff-sidemenu-visible {
  left: auto;
  left: initial;
  right: 0;
}

.pdff-rtl .pdff-ui-sidemenu-close {
  right: auto;
  right: initial;
  left: -32px;
  border-radius: 5px 0 0 5px;
}

._pdff_thumb[thumbtype="img"] ._pdff_thumb-not-found {
  height: 200px;
  position: relative;
}


/*    body, html {
      height: 100%;
      margin: 0;
    }
*/




@font-face {
	font-family: 'themify';
	src:url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/themify.eot);
	src:url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/themify.eot?#iefix) format('embedded-opentype'),
		url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/themify.woff) format('woff'),
		url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/themify.ttf) format('truetype'),
		url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/themify.svg) format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="ti-"]:before, [class*=" ti-"]:before {
	font-family: 'themify';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ti-wand:before {
	content: "\e600";
}
.ti-volume:before {
	content: "\e601";
}
.ti-user:before {
	content: "\e602";
}
.ti-unlock:before {
	content: "\e603";
}
.ti-unlink:before {
	content: "\e604";
}
.ti-trash:before {
	content: "\e605";
}
.ti-thought:before {
	content: "\e606";
}
.ti-target:before {
	content: "\e607";
}
.ti-tag:before {
	content: "\e608";
}
.ti-tablet:before {
	content: "\e609";
}
.ti-star:before {
	content: "\e60a";
}
.ti-spray:before {
	content: "\e60b";
}
.ti-signal:before {
	content: "\e60c";
}
.ti-shopping-cart:before {
	content: "\e60d";
}
.ti-shopping-cart-full:before {
	content: "\e60e";
}
.ti-settings:before {
	content: "\e60f";
}
.ti-search:before {
	content: "\e610";
}
.ti-zoom-in:before {
	content: "\e611";
}
.ti-zoom-out:before {
	content: "\e612";
}
.ti-cut:before {
	content: "\e613";
}
.ti-ruler:before {
	content: "\e614";
}
.ti-ruler-pencil:before {
	content: "\e615";
}
.ti-ruler-alt:before {
	content: "\e616";
}
.ti-bookmark:before {
	content: "\e617";
}
.ti-bookmark-alt:before {
	content: "\e618";
}
.ti-reload:before {
	content: "\e619";
}
.ti-plus:before {
	content: "\e61a";
}
.ti-pin:before {
	content: "\e61b";
}
.ti-pencil:before {
	content: "\e61c";
}
.ti-pencil-alt:before {
	content: "\e61d";
}
.ti-paint-roller:before {
	content: "\e61e";
}
.ti-paint-bucket:before {
	content: "\e61f";
}
.ti-na:before {
	content: "\e620";
}
.ti-mobile:before {
	content: "\e621";
}
.ti-minus:before {
	content: "\e622";
}
.ti-medall:before {
	content: "\e623";
}
.ti-medall-alt:before {
	content: "\e624";
}
.ti-marker:before {
	content: "\e625";
}
.ti-marker-alt:before {
	content: "\e626";
}
.ti-arrow-up:before {
	content: "\e627";
}
.ti-arrow-right:before {
	content: "\e628";
}
.ti-arrow-left:before {
	content: "\e629";
}
.ti-arrow-down:before {
	content: "\e62a";
}
.ti-lock:before {
	content: "\e62b";
}
.ti-location-arrow:before {
	content: "\e62c";
}
.ti-link:before {
	content: "\e62d";
}
.ti-layout:before {
	content: "\e62e";
}
.ti-layers:before {
	content: "\e62f";
}
.ti-layers-alt:before {
	content: "\e630";
}
.ti-key:before {
	content: "\e631";
}
.ti-import:before {
	content: "\e632";
}
.ti-image:before {
	content: "\e633";
}
.ti-heart:before {
	content: "\e634";
}
.ti-heart-broken:before {
	content: "\e635";
}
.ti-hand-stop:before {
	content: "\e636";
}
.ti-hand-open:before {
	content: "\e637";
}
.ti-hand-drag:before {
	content: "\e638";
}
.ti-folder:before {
	content: "\e639";
}
.ti-flag:before {
	content: "\e63a";
}
.ti-flag-alt:before {
	content: "\e63b";
}
.ti-flag-alt-2:before {
	content: "\e63c";
}
.ti-eye:before {
	content: "\e63d";
}
.ti-export:before {
	content: "\e63e";
}
.ti-exchange-vertical:before {
	content: "\e63f";
}
.ti-desktop:before {
	content: "\e640";
}
.ti-cup:before {
	content: "\e641";
}
.ti-crown:before {
	content: "\e642";
}
.ti-comments:before {
	content: "\e643";
}
.ti-comment:before {
	content: "\e644";
}
.ti-comment-alt:before {
	content: "\e645";
}
.ti-close:before {
	content: "\e646";
}
.ti-clip:before {
	content: "\e647";
}
.ti-angle-up:before {
	content: "\e648";
}
.ti-angle-right:before {
	content: "\e649";
}
.ti-angle-left:before {
	content: "\e64a";
}
.ti-angle-down:before {
	content: "\e64b";
}
.ti-check:before {
	content: "\e64c";
}
.ti-check-box:before {
	content: "\e64d";
}
.ti-camera:before {
	content: "\e64e";
}
.ti-announcement:before {
	content: "\e64f";
}
.ti-brush:before {
	content: "\e650";
}
.ti-briefcase:before {
	content: "\e651";
}
.ti-bolt:before {
	content: "\e652";
}
.ti-bolt-alt:before {
	content: "\e653";
}
.ti-blackboard:before {
	content: "\e654";
}
.ti-bag:before {
	content: "\e655";
}
.ti-move:before {
	content: "\e656";
}
.ti-arrows-vertical:before {
	content: "\e657";
}
.ti-arrows-horizontal:before {
	content: "\e658";
}
.ti-fullscreen:before {
	content: "\e659";
}
.ti-arrow-top-right:before {
	content: "\e65a";
}
.ti-arrow-top-left:before {
	content: "\e65b";
}
.ti-arrow-circle-up:before {
	content: "\e65c";
}
.ti-arrow-circle-right:before {
	content: "\e65d";
}
.ti-arrow-circle-left:before {
	content: "\e65e";
}
.ti-arrow-circle-down:before {
	content: "\e65f";
}
.ti-angle-double-up:before {
	content: "\e660";
}
.ti-angle-double-right:before {
	content: "\e661";
}
.ti-angle-double-left:before {
	content: "\e662";
}
.ti-angle-double-down:before {
	content: "\e663";
}
.ti-zip:before {
	content: "\e664";
}
.ti-world:before {
	content: "\e665";
}
.ti-wheelchair:before {
	content: "\e666";
}
.ti-view-list:before {
	content: "\e667";
}
.ti-view-list-alt:before {
	content: "\e668";
}
.ti-view-grid:before {
	content: "\e669";
}
.ti-uppercase:before {
	content: "\e66a";
}
.ti-upload:before {
	content: "\e66b";
}
.ti-underline:before {
	content: "\e66c";
}
.ti-truck:before {
	content: "\e66d";
}
.ti-timer:before {
	content: "\e66e";
}
.ti-ticket:before {
	content: "\e66f";
}
.ti-thumb-up:before {
	content: "\e670";
}
.ti-thumb-down:before {
	content: "\e671";
}
.ti-text:before {
	content: "\e672";
}
.ti-stats-up:before {
	content: "\e673";
}
.ti-stats-down:before {
	content: "\e674";
}
.ti-split-v:before {
	content: "\e675";
}
.ti-split-h:before {
	content: "\e676";
}
.ti-smallcap:before {
	content: "\e677";
}
.ti-shine:before {
	content: "\e678";
}
.ti-shift-right:before {
	content: "\e679";
}
.ti-shift-left:before {
	content: "\e67a";
}
.ti-shield:before {
	content: "\e67b";
}
.ti-notepad:before {
	content: "\e67c";
}
.ti-server:before {
	content: "\e67d";
}
.ti-quote-right:before {
	content: "\e67e";
}
.ti-quote-left:before {
	content: "\e67f";
}
.ti-pulse:before {
	content: "\e680";
}
.ti-printer:before {
	content: "\e681";
}
.ti-power-off:before {
	content: "\e682";
}
.ti-plug:before {
	content: "\e683";
}
.ti-pie-chart:before {
	content: "\e684";
}
.ti-paragraph:before {
	content: "\e685";
}
.ti-panel:before {
	content: "\e686";
}
.ti-package:before {
	content: "\e687";
}
.ti-music:before {
	content: "\e688";
}
.ti-music-alt:before {
	content: "\e689";
}
.ti-mouse:before {
	content: "\e68a";
}
.ti-mouse-alt:before {
	content: "\e68b";
}
.ti-money:before {
	content: "\e68c";
}
.ti-microphone:before {
	content: "\e68d";
}
.ti-menu:before {
	content: "\e68e";
}
.ti-menu-alt:before {
	content: "\e68f";
}
.ti-map:before {
	content: "\e690";
}
.ti-map-alt:before {
	content: "\e691";
}
.ti-loop:before {
	content: "\e692";
}
.ti-location-pin:before {
	content: "\e693";
}
.ti-list:before {
	content: "\e694";
}
.ti-light-bulb:before {
	content: "\e695";
}
.ti-Italic:before {
	content: "\e696";
}
.ti-info:before {
	content: "\e697";
}
.ti-infinite:before {
	content: "\e698";
}
.ti-id-badge:before {
	content: "\e699";
}
.ti-hummer:before {
	content: "\e69a";
}
.ti-home:before {
	content: "\e69b";
}
.ti-help:before {
	content: "\e69c";
}
.ti-headphone:before {
	content: "\e69d";
}
.ti-harddrives:before {
	content: "\e69e";
}
.ti-harddrive:before {
	content: "\e69f";
}
.ti-gift:before {
	content: "\e6a0";
}
.ti-game:before {
	content: "\e6a1";
}
.ti-filter:before {
	content: "\e6a2";
}
.ti-files:before {
	content: "\e6a3";
}
.ti-file:before {
	content: "\e6a4";
}
.ti-eraser:before {
	content: "\e6a5";
}
.ti-envelope:before {
	content: "\e6a6";
}
.ti-download:before {
	content: "\e6a7";
}
.ti-direction:before {
	content: "\e6a8";
}
.ti-direction-alt:before {
	content: "\e6a9";
}
.ti-dashboard:before {
	content: "\e6aa";
}
.ti-control-stop:before {
	content: "\e6ab";
}
.ti-control-shuffle:before {
	content: "\e6ac";
}
.ti-control-play:before {
	content: "\e6ad";
}
.ti-control-pause:before {
	content: "\e6ae";
}
.ti-control-forward:before {
	content: "\e6af";
}
.ti-control-backward:before {
	content: "\e6b0";
}
.ti-cloud:before {
	content: "\e6b1";
}
.ti-cloud-up:before {
	content: "\e6b2";
}
.ti-cloud-down:before {
	content: "\e6b3";
}
.ti-clipboard:before {
	content: "\e6b4";
}
.ti-car:before {
	content: "\e6b5";
}
.ti-calendar:before {
	content: "\e6b6";
}
.ti-book:before {
	content: "\e6b7";
}
.ti-bell:before {
	content: "\e6b8";
}
.ti-basketball:before {
	content: "\e6b9";
}
.ti-bar-chart:before {
	content: "\e6ba";
}
.ti-bar-chart-alt:before {
	content: "\e6bb";
}
.ti-back-right:before {
	content: "\e6bc";
}
.ti-back-left:before {
	content: "\e6bd";
}
.ti-arrows-corner:before {
	content: "\e6be";
}
.ti-archive:before {
	content: "\e6bf";
}
.ti-anchor:before {
	content: "\e6c0";
}
.ti-align-right:before {
	content: "\e6c1";
}
.ti-align-left:before {
	content: "\e6c2";
}
.ti-align-justify:before {
	content: "\e6c3";
}
.ti-align-center:before {
	content: "\e6c4";
}
.ti-alert:before {
	content: "\e6c5";
}
.ti-alarm-clock:before {
	content: "\e6c6";
}
.ti-agenda:before {
	content: "\e6c7";
}
.ti-write:before {
	content: "\e6c8";
}
.ti-window:before {
	content: "\e6c9";
}
.ti-widgetized:before {
	content: "\e6ca";
}
.ti-widget:before {
	content: "\e6cb";
}
.ti-widget-alt:before {
	content: "\e6cc";
}
.ti-wallet:before {
	content: "\e6cd";
}
.ti-video-clapper:before {
	content: "\e6ce";
}
.ti-video-camera:before {
	content: "\e6cf";
}
.ti-vector:before {
	content: "\e6d0";
}
.ti-themify-logo:before {
	content: "\e6d1";
}
.ti-themify-favicon:before {
	content: "\e6d2";
}
.ti-themify-favicon-alt:before {
	content: "\e6d3";
}
.ti-support:before {
	content: "\e6d4";
}
.ti-stamp:before {
	content: "\e6d5";
}
.ti-split-v-alt:before {
	content: "\e6d6";
}
.ti-slice:before {
	content: "\e6d7";
}
.ti-shortcode:before {
	content: "\e6d8";
}
.ti-shift-right-alt:before {
	content: "\e6d9";
}
.ti-shift-left-alt:before {
	content: "\e6da";
}
.ti-ruler-alt-2:before {
	content: "\e6db";
}
.ti-receipt:before {
	content: "\e6dc";
}
.ti-pin2:before {
	content: "\e6dd";
}
.ti-pin-alt:before {
	content: "\e6de";
}
.ti-pencil-alt2:before {
	content: "\e6df";
}
.ti-palette:before {
	content: "\e6e0";
}
.ti-more:before {
	content: "\e6e1";
}
.ti-more-alt:before {
	content: "\e6e2";
}
.ti-microphone-alt:before {
	content: "\e6e3";
}
.ti-magnet:before {
	content: "\e6e4";
}
.ti-line-double:before {
	content: "\e6e5";
}
.ti-line-dotted:before {
	content: "\e6e6";
}
.ti-line-dashed:before {
	content: "\e6e7";
}
.ti-layout-width-full:before {
	content: "\e6e8";
}
.ti-layout-width-default:before {
	content: "\e6e9";
}
.ti-layout-width-default-alt:before {
	content: "\e6ea";
}
.ti-layout-tab:before {
	content: "\e6eb";
}
.ti-layout-tab-window:before {
	content: "\e6ec";
}
.ti-layout-tab-v:before {
	content: "\e6ed";
}
.ti-layout-tab-min:before {
	content: "\e6ee";
}
.ti-layout-slider:before {
	content: "\e6ef";
}
.ti-layout-slider-alt:before {
	content: "\e6f0";
}
.ti-layout-sidebar-right:before {
	content: "\e6f1";
}
.ti-layout-sidebar-none:before {
	content: "\e6f2";
}
.ti-layout-sidebar-left:before {
	content: "\e6f3";
}
.ti-layout-placeholder:before {
	content: "\e6f4";
}
.ti-layout-menu:before {
	content: "\e6f5";
}
.ti-layout-menu-v:before {
	content: "\e6f6";
}
.ti-layout-menu-separated:before {
	content: "\e6f7";
}
.ti-layout-menu-full:before {
	content: "\e6f8";
}
.ti-layout-media-right-alt:before {
	content: "\e6f9";
}
.ti-layout-media-right:before {
	content: "\e6fa";
}
.ti-layout-media-overlay:before {
	content: "\e6fb";
}
.ti-layout-media-overlay-alt:before {
	content: "\e6fc";
}
.ti-layout-media-overlay-alt-2:before {
	content: "\e6fd";
}
.ti-layout-media-left-alt:before {
	content: "\e6fe";
}
.ti-layout-media-left:before {
	content: "\e6ff";
}
.ti-layout-media-center-alt:before {
	content: "\e700";
}
.ti-layout-media-center:before {
	content: "\e701";
}
.ti-layout-list-thumb:before {
	content: "\e702";
}
.ti-layout-list-thumb-alt:before {
	content: "\e703";
}
.ti-layout-list-post:before {
	content: "\e704";
}
.ti-layout-list-large-image:before {
	content: "\e705";
}
.ti-layout-line-solid:before {
	content: "\e706";
}
.ti-layout-grid4:before {
	content: "\e707";
}
.ti-layout-grid3:before {
	content: "\e708";
}
.ti-layout-grid2:before {
	content: "\e709";
}
.ti-layout-grid2-thumb:before {
	content: "\e70a";
}
.ti-layout-cta-right:before {
	content: "\e70b";
}
.ti-layout-cta-left:before {
	content: "\e70c";
}
.ti-layout-cta-center:before {
	content: "\e70d";
}
.ti-layout-cta-btn-right:before {
	content: "\e70e";
}
.ti-layout-cta-btn-left:before {
	content: "\e70f";
}
.ti-layout-column4:before {
	content: "\e710";
}
.ti-layout-column3:before {
	content: "\e711";
}
.ti-layout-column2:before {
	content: "\e712";
}
.ti-layout-accordion-separated:before {
	content: "\e713";
}
.ti-layout-accordion-merged:before {
	content: "\e714";
}
.ti-layout-accordion-list:before {
	content: "\e715";
}
.ti-ink-pen:before {
	content: "\e716";
}
.ti-info-alt:before {
	content: "\e717";
}
.ti-help-alt:before {
	content: "\e718";
}
.ti-headphone-alt:before {
	content: "\e719";
}
.ti-hand-point-up:before {
	content: "\e71a";
}
.ti-hand-point-right:before {
	content: "\e71b";
}
.ti-hand-point-left:before {
	content: "\e71c";
}
.ti-hand-point-down:before {
	content: "\e71d";
}
.ti-gallery:before {
	content: "\e71e";
}
.ti-face-smile:before {
	content: "\e71f";
}
.ti-face-sad:before {
	content: "\e720";
}
.ti-credit-card:before {
	content: "\e721";
}
.ti-control-skip-forward:before {
	content: "\e722";
}
.ti-control-skip-backward:before {
	content: "\e723";
}
.ti-control-record:before {
	content: "\e724";
}
.ti-control-eject:before {
	content: "\e725";
}
.ti-comments-smiley:before {
	content: "\e726";
}
.ti-brush-alt:before {
	content: "\e727";
}
.ti-youtube:before {
	content: "\e728";
}
.ti-vimeo:before {
	content: "\e729";
}
.ti-twitter:before {
	content: "\e72a";
}
.ti-time:before {
	content: "\e72b";
}
.ti-tumblr:before {
	content: "\e72c";
}
.ti-skype:before {
	content: "\e72d";
}
.ti-share:before {
	content: "\e72e";
}
.ti-share-alt:before {
	content: "\e72f";
}
.ti-rocket:before {
	content: "\e730";
}
.ti-pinterest:before {
	content: "\e731";
}
.ti-new-window:before {
	content: "\e732";
}
.ti-microsoft:before {
	content: "\e733";
}
.ti-list-ol:before {
	content: "\e734";
}
.ti-linkedin:before {
	content: "\e735";
}
.ti-layout-sidebar-2:before {
	content: "\e736";
}
.ti-layout-grid4-alt:before {
	content: "\e737";
}
.ti-layout-grid3-alt:before {
	content: "\e738";
}
.ti-layout-grid2-alt:before {
	content: "\e739";
}
.ti-layout-column4-alt:before {
	content: "\e73a";
}
.ti-layout-column3-alt:before {
	content: "\e73b";
}
.ti-layout-column2-alt:before {
	content: "\e73c";
}
.ti-instagram:before {
	content: "\e73d";
}
.ti-google:before {
	content: "\e73e";
}
.ti-github:before {
	content: "\e73f";
}
.ti-flickr:before {
	content: "\e740";
}
.ti-facebook:before {
	content: "\e741";
}
.ti-dropbox:before {
	content: "\e742";
}
.ti-dribbble:before {
	content: "\e743";
}
.ti-apple:before {
	content: "\e744";
}
.ti-android:before {
	content: "\e745";
}
.ti-save:before {
	content: "\e746";
}
.ti-save-alt:before {
	content: "\e747";

}
.ti-yahoo:before {
	content: "\e748";
}
.ti-wordpress:before {
	content: "\e749";
}
.ti-vimeo-alt:before {
	content: "\e74a";
}
.ti-twitter-alt:before {
	content: "\e74b";
}
.ti-tumblr-alt:before {
	content: "\e74c";
}
.ti-trello:before {
	content: "\e74d";
}
.ti-stack-overflow:before {
	content: "\e74e";
}
.ti-soundcloud:before {
	content: "\e74f";
}
.ti-sharethis:before {
	content: "\e750";
}
.ti-sharethis-alt:before {
	content: "\e751";
}
.ti-reddit:before {
	content: "\e752";
}
.ti-pinterest-alt:before {
	content: "\e753";
}
.ti-microsoft-alt:before {
	content: "\e754";
}
.ti-linux:before {
	content: "\e755";
}
.ti-jsfiddle:before {
	content: "\e756";
}
.ti-joomla:before {
	content: "\e757";
}
.ti-html5:before {
	content: "\e758";
}
.ti-flickr-alt:before {
	content: "\e759";
}
.ti-email:before {
	content: "\e75a";
}
.ti-drupal:before {
	content: "\e75b";
}
.ti-dropbox-alt:before {
	content: "\e75c";
}
.ti-css3:before {
	content: "\e75d";
}
.ti-rss:before {
	content: "\e75e";
}
.ti-rss-alt:before {
	content: "\e75f";
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/fontawesome-webfont.eot?v=4.7.0);
  src: url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'), url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'), url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'), url(/sites/all/themes/clean_corporate_theme/flipbook/pflip/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {

  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-ppdff-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*})'"*/
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url(/sites/all/themes/clean_corporate_theme/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0);src:url(/sites/all/themes/clean_corporate_theme/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(/sites/all/themes/clean_corporate_theme/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(/sites/all/themes/clean_corporate_theme/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(/sites/all/themes/clean_corporate_theme/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(/sites/all/themes/clean_corporate_theme/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

/*})'"*/
/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:calc(1rem + .4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s .6s opacity}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}
/*# sourceMappingURL=bootstrap.min.css.map */
/*})'"*/



/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

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

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

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

@-webkit-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;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

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

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

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

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

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

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

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

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-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);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/*})'"*/


#menu-bar{
    height: 55px;
    background: -moz-linear-gradient(45deg, rgba(255,0,255,1) 0%, rgba(0,131,143,1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(255,0,255,1)), color-stop(100%, rgba(0,131,143,1)));
    background: -webkit-linear-gradient(45deg, rgb(9, 126, 147) 0%, rgb(222, 34, 23) 100%);
    background: -o-linear-gradient(45deg, rgb(9, 126, 147) 0%, rgb(222, 34, 23) 100%);
    background: -ms-linear-gradient(45deg, rgb(9, 126, 147) 0%, rgb(222, 34, 23) 100%);
    background: linear-gradient(45deg, rgb(9, 126, 147) 0%, rgb(222, 34, 23) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00838f', endColorstr='#ff00ff',GradientType=1 );
}

#menu-bar .block-region-menu-bar{
  margin: 0;
  padding: 0;
}

.brand {
  position: absolute;
  float: left;
  line-height: 40px;
  text-transform: uppercase;
  font-size: 1.4em;
}

.brand a,
.brand a:visited {
  color: #ffffff;
  text-decoration: none;
}

#menu-bar .nav-container {
  max-width: 100%;
  margin: 0 auto;
}

#menu-bar nav {
  float: left;
}
#menu-bar nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#menu-bar nav ul li {
  float: left;
  position: relative;
}
#menu-bar nav ul li a,
#menu-bar nav ul li a:visited {
  display: block;
  padding: 0 14px;
  line-height: 55px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
}
#menu-bar nav ul li a:hover,
#menu-bar nav ul li a:visited:hover {
  color: #ffffff;
}


/*Sub-Menu Classes */
#menu-bar nav ul li ul li a,
#menu-bar nav ul li ul li a:visited {
    display: block;
    padding: 0 14px;
    line-height: 55px;
    color: #1f7486;
    text-decoration: none;
    font-size: 18px;
    background-color: rgb(255, 255, 255);
    padding: 8px 15px;
    line-height: 20px;
    border-bottom: 1px dotted #bbb;
}

#menu-bar nav ul li ul li a:hover,
#menu-bar nav ul li ul li a:visited:hover {
    color: #ff0000;
}



#menu-bar nav ul li a:not(:only-child):after,
#menu-bar nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
  float: right;
  font-size: 25px;
}

#menu-bar nav ul li ul li {
  min-width: 250px;
}


#menu-bar .nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    box-shadow: 0 10px 24px rgb(31, 117, 135);
}

/* Mobile navigation */

.nav-mobile {
  display: none;
  position: absolute;
  top: -5px;
  left: 5px;
  height: 25px;
  width: 25px;
}

@media only screen and (max-width: 798px) {

 #header{
     border-bottom: 3px solid #e62117;
 }

 .nav-mobile {
    display: block;
  }
  
  .brand {
    margin-left: 25px;
}

  #menu-bar{
    height: 0;
    background: none;
  }
  
  #menu-bar nav {
    width: 75%;
    position: absolute;
    z-index: 999999;
   /* padding: 40px 0 15px;*/
  }
  #menu-bar nav ul {
    display: none;
  }

  #menu-bar nav ul li {
    padding: 5px 10px 5px;
    background: -moz-linear-gradient(45deg, rgba(255,0,255,1) 0%, rgba(0,131,143,1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgb(26, 118, 137)), color-stop(100%, rgba(0,131,143,1)));
    background: -webkit-linear-gradient(45deg, rgb(9, 126, 147) 0%, rgb(234, 219, 218) 100%);
    background: -o-linear-gradient(45deg, rgb(9, 126, 147) 0%, rgb(222, 34, 23) 100%);
    background: -ms-linear-gradient(45deg, rgb(9, 126, 147) 0%, rgb(222, 34, 23) 100%);
    background: linear-gradient(45deg, rgb(9, 126, 147) 0%, rgba(120, 65, 60, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00838f', endColorstr='#ff00ff',GradientType=1 );
    float: none;
  }
  
  #menu-bar nav ul li a {
    padding: 8px 15px;
    line-height: 20px;
    /*border-bottom: 1px dotted #bbb;*/
  }
  #menu-bar nav ul li ul li a {
    padding-left: 20px;
    border-bottom: none;
  }

  #menu-bar .nav-dropdown {
    position: static;
  }

  
}
@media screen and (min-width: 799px) {
  #menu-bar .nav-list {
    display: block !important;
  }
}


#nav-toggle {
    position: absolute;
    left: -36px;
    top: 10px;
    right: 10px;
    cursor: pointer;
    padding: 15px 30px 20px 5px;
    width: 30px !important;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 22px;
  background: #156898;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

/*})'"*/
@media only screen {
 /* Gutters are not currently overridden in theme settings, but may be in theme CSS */
  
  /* smalltouch_landscape one_col_vert */ 
}@media only screen and (min-width:480px) and (max-width:723px) {
 .container {width:100%}
  .two-sidebars .content-inner,.one-sidebar .content-inner,.region-sidebar-first,.region-sidebar-second {margin-left: 0; margin-right: 0}
  .region-sidebar-first {width: 50%}
  .region-sidebar-second {width: 50%}
  .one-sidebar .sidebar {width: 100%}
  .region-sidebar-first,.region-sidebar-second {overflow: hidden; margin-top: 20px; float: left; clear: none}
  .region-sidebar-first.block,.region-sidebar-second .block {width: 100%}
  .at-panel .region {display:inline;float:left}.three-inset-right > .inset-wrapper,.three-inset-right > .inset-wrapper > .region,.three-inset-right > .region-three-inset-right-sidebar,.three-inset-left > .inset-wrapper,.three-inset-left > .inset-wrapper > .region,.three-inset-left > .region-three-inset-left-sidebar,.three-50-25-25 > .region,.three-3x33 > .region,.three-25-50-25 > .region,.three-25-25-50 > .region,.two-brick > .panel-row > .region,.two-50 > .region,.two-33-66 > .region,.two-66-33 > .region,.five-5x20 > .panel-row > .region,.five-5x20 > .panel-row,.six-6x16 > .panel-row > .region,.six-6x16 > .panel-row ,.four-4x25 > .panel-row > .region,.four-4x25 > .panel-row {float:none;display:block;width:100%;clear:both} 
}@media only screen {
 /* tablet_portrait one_col_vert */ 
}@media only screen and (min-width:724px) and (max-width:999px) {
 .container {width:100%}
  .two-sidebars .content-inner,.one-sidebar .content-inner,.region-sidebar-first,.region-sidebar-second {margin-left: 0; margin-right: 0}
  .region-sidebar-first {width: 50%}
  .region-sidebar-second {width: 50%}
  .one-sidebar .sidebar {width: 100%}
  .region-sidebar-first,.region-sidebar-second {overflow: hidden; margin-top: 20px; float: left; clear: none}
  .region-sidebar-first.block,.region-sidebar-second .block {width: 100%}
  .at-panel .region {display:inline;float:left}.three-inset-right > .region-three-inset-right-sidebar,.three-25-50-25 > div.region-three-25-50-25-third,.three-25-25-50 > div.region-three-25-25-50-second {width:25%}.three-inset-right > .inset-wrapper {width:75%;float:left}.three-inset-right > .inset-wrapper > .region,.three-inset-left > .inset-wrapper > .region,.three-50-25-25 > .region-three-50-25-25-first,.three-3x33 > div.region-three-33-first,.three-25-50-25 > .region-three-25-50-25-first,.three-25-25-50 > .region-three-25-25-50-first,.five-5x20 > div.panel-row,.five-5x20 > div.panel-row > div.region-five-fifth,.six-6x16 > .panel-row,.four-4x25 > .panel-row {float:none;display:block;width:100%;clear:both}.three-inset-left > .region-three-inset-left-sidebar {width:25%;float:right}.three-inset-left > .inset-wrapper {width:75%;float:right}.three-50-25-25 > .region-three-50-25-25-second,.three-50-25-25 .region-three-50-25-25-third,.three-3x33 > .region,.two-brick > .panel-row > .region,.two-50 > .region,.five-5x20 > .panel-row > div.region,.four-4x25 > .panel-row > .region {width:50%}.three-25-50-25 > div.region-three-25-50-25-second,.three-25-25-50 > div.region-three-25-25-50-third {width:75%}.two-brick > .panel-row {float:none}.two-33-66 > .region-two-33-66-first,.two-66-33 > .region-two-66-33-second {width:33.333333%}.two-33-66 > .region-two-33-66-second,.two-66-33 > .region-two-66-33-first {width:66.666666%}.six-6x16 > .panel-row > .region {width:50%;float:left} 
}@media only screen {
 /* tablet_landscape three_col_grail */ 
}@media only screen and (min-width:999px) and (max-width:999px) {
 .container {width:100%}
  #content-column,.content-column,div.sidebar {float: left; clear: none}
  .two-sidebars .content-inner {margin-left: 20%; margin-right: 20%}
  .sidebar-first .content-inner {margin-left: 20%; margin-right: 0}
  .sidebar-second .content-inner {margin-right: 20%; margin-left: 0}
  .region-sidebar-first {width: 20%; margin-left: -100%}
  .region-sidebar-second {width: 20%; margin-left: -20%}
  .at-panel .region {display:inline;float:left}.three-inset-right > .region-three-inset-right-sidebar,.three-inset-left > .region-three-inset-left-sidebar,.three-50-25-25 > .region,.three-25-50-25 > .region,.three-25-25-50 > .region {width:25%}.three-inset-right > .inset-wrapper {width:75%;float:left}.three-inset-right > .inset-wrapper > div.region-three-inset-right-inset,.three-inset-left > .inset-wrapper > div.region-three-inset-left-inset,.three-3x33 > .region,.two-33-66 > .region-two-33-66-first,.two-66-33 > .region-two-66-33-second,.five-5x20 > .row-2 > .region {width:33.333333%}.three-inset-right > .inset-wrapper > div.region-three-inset-right-middle,.three-inset-left > .inset-wrapper > div.region-three-inset-left-middle,.two-33-66 > .region-two-33-66-second,.two-66-33 > .region-two-66-33-first {width:66.666666%}.three-inset-right > .inset-wrapper > .region,.three-inset-left > .inset-wrapper > .region {width:100%}.three-inset-left > .region-three-inset-left-sidebar,.three-inset-left > .inset-wrapper,.three-inset-left > .inset-wrapper > .region-three-inset-left-middle {float:right}.three-inset-left > .inset-wrapper {width:75%}.three-50-25-25 > div.region-three-50-25-25-first,.three-25-50-25 > div.region-three-25-50-25-second,.three-25-25-50 > div.region-three-25-25-50-third,.two-brick > .panel-row > .region,.two-50 > .region,.five-5x20 > .row-1 > .region {width:50%}.two-brick > .panel-row {float:none}.five-5x20 > .row-1 {width:40%}.five-5x20 > .row-2 {width:60%}.five-5x20 > .panel-row {float:left}.six-6x16 > .panel-row {width:33.333333%;float:left}.six-6x16 > .panel-row > .region {float:none;display:block;width:100%;clear:both}.four-4x25 > .panel-row > .region,.four-4x25 > .panel-row {width:50%;float:left} 
}@media only screen {
 /* bigscreen three_col_grail */ 
}@media only screen and (min-width:1000px) {
 .container {width:100%}
  #content-column,.content-column,div.sidebar {float: left; clear: none}
  .two-sidebars .content-inner {margin-left: 30%; margin-right: 30%}
  .sidebar-first .content-inner {margin-left: 30%; margin-right: 0}
  .sidebar-second .content-inner {margin-right: 30%; margin-left: 0}
  .region-sidebar-first {width: 30%; margin-left: -100%}
  .region-sidebar-second {width: 30%; margin-left: -30%}
  .at-panel .region {display:inline;float:left}.three-inset-right > .region-three-inset-right-sidebar,.three-inset-left > .region-three-inset-left-sidebar,.three-50-25-25 > .region,.three-25-50-25 > .region,.three-25-25-50 > .region {width:25%}.three-inset-right > .inset-wrapper {width:75%;float:left}.three-inset-right > .inset-wrapper > div.region-three-inset-right-inset,.three-inset-left > .inset-wrapper > div.region-three-inset-left-inset,.three-3x33 > .region,.two-33-66 > .region-two-33-66-first,.two-66-33 > .region-two-66-33-second,.five-5x20 > .panel-row > .region {width:33.333333%}.three-inset-right > .inset-wrapper > div.region-three-inset-right-middle,.three-inset-left > .inset-wrapper > div.region-three-inset-left-middle,.two-33-66 > .region-two-33-66-second,.two-66-33 > .region-two-66-33-first {width:66.666666%}.three-inset-right > .inset-wrapper > .region,.three-inset-left > .inset-wrapper > .region {width:100%}.three-inset-left > .region-three-inset-left-sidebar,.three-inset-left > .inset-wrapper,.three-inset-left > .inset-wrapper > .region-three-inset-left-middle {float:right}.three-inset-left > .inset-wrapper {width:75%}.three-50-25-25 > div.region-three-50-25-25-first,.three-25-50-25 > div.region-three-25-50-25-second,.three-25-25-50 > div.region-three-25-25-50-third,.two-brick > .panel-row > .region,.two-50 > .region,.five-5x20 > .row-1 div.region-five-first,.five-5x20 .row-1 div.region-five-second {width:50%}.two-brick > .panel-row {float:none}.five-5x20 > .panel-row,.six-6x16 > .panel-row > .region {float:none;display:block;width:100%;clear:both}.six-6x16 > .panel-row {width:33.333333%;float:left}.four-4x25 > .panel-row > .region,.four-4x25 > .panel-row {width:50%;float:left} 
}
/*})'"*/
@media only screen and  (max-width: 999px) {
 #page-wrapper {
      padding-bottom: 0;
    }
    body.contact #block-system-main {
      float: none;
      width: auto;
    }
    body.contact #block-system-main iframe {
      width: 100%;
    }
  
  /**
    .responsive-menu-wrapper {
      display: block;
    }
    #menu-bar .block-superfish {
      display: none;
    }
  
    #page .block-superfish h2.block-title {
      margin: 0;
    }
  
    #main-nav-check:checked + #menu,
    #menu .sub-nav-check:checked + .sub-nav,
    #main-nav-check:checked ~ .l-responsive-page-container,
    #main-nav-check:checked + #menu:only-of-type + .l-responsive-page-container,
    #main-nav-check:checked + #menu:nth-child(n) + .l-responsive-page-container {
      -webkit-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
      transform: translate(100%, 0);
    }
    #menu {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
    }
    #menu .sub-heading:before {
      width: auto;
    }
    #menu.responsive-menu-block,
    #menu.responsive-menu-block .sub-nav {
      width: 100%;
      left: -100%;
    }
    #menu.responsive-menu-block li {
      border-bottom: none;
    }
    #menu ul {
      border-top-color: #5c5c5c;
    }
    .responsive-menu-block a {
      display: block;
      border-bottom: 1px solid #5c5c5c;
    }
    #menu.responsive-menu-block a {
      color: #fff;
      font-size: 16px;
      line-height: 24px;
      padding: 6px 0px;
      background: #2e2e2e;
      width: 100%;
      box-sizing: border-box;
      border-left: none;
      height: inherit;
      text-indent: 30px;
      box-shadow: none;
    }
  
    #page #menu-bar .block-superfish .at-menu-toggle-button {
      height: 40px;
    }
  
    .block-superfish ul#superfish-1 form {
      position: relative;
    }
  
    .block-superfish .sf-accordion {
      display: none;
    }
    .block-superfish .sf-menu > a {
      border-left: 0;
    }
    .block-superfish ul#superfish-1 li > a:hover,
    .block-superfish a.sf-depth-1.active,
    #menu.responsive-menu-block a:hover,
    #menu.responsive-menu-block > ul > li > a.active {
      background: #3b3b3b;
      box-shadow: none;
      color: #0daed1;
    }
    #menu .toggle-sub {
      font-size: 13px !important;
      line-height: 35px !important;
      width: 2.5em;
      background: #fff;
    }
    #menu label {
      color: #fff;
    }
    #menu label:hover {
      color: #0daed1;
    }
    #menu .toggle-sub {
      background: #2e2e2e;
    }
    #menu .toggle-sub:hover {
      background: #3b3b3b;
    }
  
  
    .responsive-menu-block form input[type=search] {
      width: 100%;
      height: 39px;
      border: none;
      background: #2e2e2e;
      border-radius: 0px;
      padding-left: 30px;
      color: white;
      box-sizing: border-box;
      display: block;
      border-bottom: 1px solid #5c5c5c;
    }
    .responsive-menu-block form input[type=search]:hover,
    .responsive-menu-block form input[type=search]:focus,
    .responsive-menu-block form input[type=search]:active {
      background: #3b3b3b;
    }
    .responsive-menu-block .form-item {
      display: block;
      margin: 0;
    }
    .responsive-menu-block form {
      position: relative;
    }
    .responsive-menu-block form input[type=submit] {
      position: absolute;
      right: 0;
      top: 0;
      background: url(/sites/all/themes/clean_corporate_theme/images/search-icon.png) 50% 50% no-repeat;
      font-size: 0;
      height: 39px;
      width: 50px;
      border-radius: 0;
      border: none;
    }
    .responsive-menu-block form input[type=submit]:hover {
      background: url(/sites/all/themes/clean_corporate_theme/images/search-icon-hover.png) 50% 50% no-repeat;
    }
    .responsive-menu-block li#user-login a {
      padding-left: 25px;
      background-image: url(/sites/all/themes/clean_corporate_theme/images/icon-login.png);
      background-position: 30px 50%;
      background-repeat: no-repeat;
    }
    .responsive-menu-block li#user-login a:hover,
    .responsive-menu-block li#user-login a.active {
      background: url(/sites/all/themes/clean_corporate_theme/images/icon-login-hover.png) no-repeat 30px 50%;
    }
  
  
    #page .nav,
    #page .nav .menu-wrapper {
      height: auto;
    }
    #page .nav li {
      float: none;
    }
    #page #menu-bar .block-superfish h2.block-title a,
    #block-system-main-menu h2.block-title a,
    label#toggle-icon {
      color: #fff;
      float: right;
      display: block;
      background: url(/sites/all/themes/clean_corporate_theme/images/hamburger-mobile.png) 50% 50% no-repeat, url(/sites/all/themes/clean_corporate_theme/images/menu_line.png) 0 50% no-repeat;
      font-size: 0;
      border: none;
      padding: 9px 50px;
      height: 40px;
      box-sizing: border-box;
    }
    #block-system-main-menu .menu .menu {
      border-left: 1px solid #5c5c5c;
      margin-left: 20px;
      position: static;
      width: auto;
    }
    #menu-bar .block-superfish .sf-menu.sf-style-default li a,
    #block-system-main-menu .menu a,
    #primary-menu-bar a {
      padding-left: 24px;
      padding-right: 24px;
    }
    #block-system-main-menu .menu a:hover,
    #primary-menu-bar a:hover,
    #block-system-main-menu .menu a.active,
    #primary-menu-bar a.active {
      color: #0daed1;
    }
  
  **/
  
    #footer .region-inner {
      padding-top: 0;
      padding-bottom: 0;
    }
    .region-footer .sf-main-menu.sf-horizontal {
      display: block !important;
      margin-top: 10px;
      float: none;
    }
  
    /* Page Blog */
  
    .page-taxonomy .node-blog {
      margin-bottom: 50px;
    }
  
    #main-content {
      padding-top: 0;
    }
  
    .view-portfolio-page .view-header {
      padding-top: 20px;
    }
  
    .columns-front-page div.column {
      margin-bottom: 30px;
    } 
}@media only screen and (max-width:723px) {
 /*
   *   Important Information about this CSS File
   *
   * - Do not delete or rename this file, if you do not use it leave it blank (delete
   *   everything) and the file will be skipped when you enable Production Mode in
   *   the Global theme settings.
   *
   * - Read the _README file in this directory, it contains useful help and other information.
   */
  
  /* Increase the default font size on small touch devices */
  body {
    font-size: 100%;
    min-width: 320px;
  }
  
  
  h2 {
    font-size: 22px;
  }
  
  
  /* =============================================================================
   *   Mobile Menu Toggle
   *   See your theme settings extensions for how to enable the menu toggle.
   *   These are example styles for the menu toggle menu, you can use these in the
   *   relevant responsive stylesheets as required. Modify to suit your design.
   * ========================================================================== */
  /* The toggle link */
  
  /**
  .at-mt .at-menu-toggle h2 {
    margin-bottom: 5px;
  }
  
  .at-mt .at-menu-toggle h2 a {
    background: #eee;
    border: 2px solid #ccc;
    padding: 9px 30px;
  }
  
  
  .at-mt .at-menu-toggle ul.menu li a {
    background: #eee;
    border-bottom: 1px solid #fff;
  }
  
  #menu-bar {
    margin-bottom: 0;
  }
  
  **/
  
  
  /*
  #header {
    /*  position: fixed; 
      right: 0;
      left: 0;
      z-index: 1030;
      background-color: #fff;
      border-color: #eee;
      padding: 0 10px;
      margin: 0;
      border-bottom: 3px solid #e2dada;
      width: 100%;
      text-align: center;
  }
  */
  
  /*
  #branding {
    margin: 0 0 5px;
    float: left;
  }
  */
  
  
  #logo a, #logo img {
      display: block;
      width: 180px;
      margin-top: 10px;
  }
  
  
  #page {
    position: relative;
  }
  
  /*
  #page #block-system-main-menu,
  #primary-menu-bar {
    padding-top: 50px;
    background: #262626;
    background: -webkit-linear-gradient(90deg, #262626 0%, #303030 100%);
    background: -moz-linear-gradient(90deg, #262626 0%, #303030 100%);
    background: -o-linear-gradient(90deg, #262626 0%, #303030 100%);
    background: -ms-linear-gradient(90deg, #262626 0%, #303030 100%);
    background: linear-gradient(0deg, #262626 0%, #303030 100%);
  }*/
  
  /* MAIN CAROUSEL BLOCK STYLING */
  
  
  #columns #block-views-front-carousel-block,
  .iframe-wrapper, #block-views-testimonials-block  {
    margin: 0px -20px;
  }
  
  #block-views-front-carousel-block .views-field-nothing {
    width: 100%;
    height: 50%;
    padding: 0;
    bottom: 0;
    right: 0;
  }
  
  #block-views-front-carousel-block .views-field-nothing span {
    position: absolute;
    top: 13px;
    left: 24px;
    width: 90%;
  }
  
  #block-views-front-carousel-block .owl-controls {
    position: static;
    margin-left: 15%;
    margin-right: 15%;
    width: 70%;
    text-align: center;
  }
  
  #block-views-front-carousel-block .owl-controls .owl-page span {
    width: 22px;
    height: 22px;
    margin: 6px 6px;
    background: #fff;
    opacity: 1;
  }
  
  #block-views-front-carousel-block .owl-controls .owl-page span:before {
    border-width: 7px;
    border-color: #c6d0d1;
    border-color: rgba(198, 208, 209, 0.4);
    width: 34px;
    height: 34px;
    top: -7px;
    left: -7px;
  }
  
  #block-views-front-carousel-block .owl-controls .owl-page:hover span,
  #block-views-front-carousel-block .owl-controls .owl-page.active span {
    background-color: #c6d0d1;
  }
  
  #block-views-front-carousel-block .owl-controls .owl-page + .owl-page {
    margin-left: 25px;
  }
  
  .columns-front-page div.column {
    display: inline-block;
    vertical-align: top;
  }
  
  .columns-front-page {
    margin: 0 0 40px;
  }
  
  /* TESTIMONIALS BLOCK STYLING */
  
  #block-views-testimonials-block .view {
    padding: 45px 22px 70px 37px;
    background-color: #e5f2f5;
    padding-bottom: 20px;
    border: 1px solid #b8d7de;
    border-radius: 3px;
    border-left: none;
    border-right: none;
  }
  
  #block-views-testimonials-block .views-row {
    padding: 15px 10px 15px 20px;
    background: url(/sites/all/themes/clean_corporate_theme/images/testimonials_quotes.png) no-repeat;
  }
  
  /* Header */
  label#toggle-icon {
    padding-top: 14px;
    padding-bottom: 14px;
    height: 50px;
  }
  
  /* FOOTER STYLING */
  
  footer#footer .region-inner {
    margin: 0 20px;
  }
  
  footer .block {
    padding: 17px 0 15px;
  }
  
  footer .block .content {
    padding-top: 10px;
  }
  
  footer .block a, p {
    font-size: 14px;
  }
  
  footer#footer .block h2 {
    font-size: 22px;
    margin: 0.3em 0;
  }
  
  /*
  footer .block + .block {
    border-top: 8px solid #727272;
  }*/
  
  .footer-adci {
    height: none;
    box-shadow: none;
  }
  
  .footer-adci .block-inner {
    margin: 0 30px;
  }
  
  .footer-adci #footer-dash {
    display: none;
  }
  
  
  footer .block-inner {
    margin: 0;
  }
  
  .region-footer .sf-main-menu,
  #block-views-recent-blog-posts-block .content,
  #block-block-1 .content, #block-block-2 .content {
    width: 100%;
  }
  
  #block-views-recent-blog-posts-block .field-content {
    font-size: 14px;
  }
  
  #block-views-recent-blog-posts-block .content img:hover {
    border-color: #525252;
  }
  
  footer #block-block-2 .content {
    padding-top: 0;
  }
  
  footer #block-block-2 {
    padding-bottom: 0;
  }
  
  .footer-adci .footer-line , .footer-adci .footer-line a {
    font-size: 14px;
    margin: 0;
    display: block;
  }
  
  .footer-adci .content {
    padding: 0;
  }
  
  /* PARTNERS BLOCK CAROUSEL STYLING */
  
  #block-views-partners-carousel-block .owl-item .views-field-field-image {
    padding: 0;
  }
  
  #block-views-partners-carousel-block .owl-wrapper-outer {
    margin: 0;
  }
  
  #block-views-partners-carousel-block .owl-item .field-content {
    margin-right: 12px;
  }
  
  #columns #block-views-partners-carousel-block {
    margin: 32px 0px;
    margin-top: -10px;
  }
  
  #columns #block-views-partners-carousel-block .owl-buttons {
    display: none;
  }
  
  #block-views-partners-carousel-block h2 {
    margin-bottom: 10px;
  }
  
  #block-views-partners-carousel-block .owl-controls .owl-page,
  #block-views-recent-articles-block .owl-controls .owl-page {
    background: rgba(198, 208, 209, 0.4);
    border-radius: 50%;
    width: 19px;
    height: 19px;
  }
  
  #block-views-partners-carousel-block .owl-controls .owl-page span,
  #block-views-recent-articles-block .owl-controls .owl-page span {
    width: 13px;
    height: 13px;
    margin: 3px 3px;
    background: #fff;
    opacity: 1;
  }
  
  #block-views-partners-carousel-block .owl-controls .owl-page span:hover,
  #block-views-recent-articles-block .owl-controls .owl-page span:hover {
    background: #fff;
    opacity: 0.5;
  }
  
  #block-views-partners-carousel-block .owl-controls .owl-page.active span,
  #block-views-recent-articles-block .owl-controls .owl-page.active span {
    background: #c6d0d1;
  }
  
  #block-views-partners-carousel-block .owl-controls .owl-page,
  #block-views-recent-articles-block .owl-controls .owl-page {
    margin: 0 4.5% 4.5%;
  }
  
  /* RECENT ARTICLES BLOCK STYLING */
  
  #columns #block-views-recent-articles-block .views-field-view-node {
    display: none;
  }
  
  #block-views-recent-articles-block img {
    border-radius: 6px;
    width: 100%;
  }
  
  #columns #block-views-recent-articles-block {
    margin: 0 0px;
    margin-top: 50px;
  }
  
  
  .columns-front-page div.column {
    display: block;
    vertical-align: top;
  }
  
  .columns-front-page div.column ul {
    clear: left;
  }
  
  .columns-front-page div.column ul li {
    height: auto;
    line-height: 22px;
  }
  
  .columns-front-page strong {
    float: left;
  }
  
  .columns-front-page div.column p {
    line-height: 54px;
  }
  
  iframe {
    width: 100%;
    /*height: 436px;*/
    clear: both;
  }
  
  .custom-contact .node.clearfix .contact-column {
    width: 100%;
  }
  
  .contact-column ul li, .contact-column strong, form label, #block-webform-client-block-131 input[type=submit] {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }
  
  #content h2 {
    margin-top: 5px !important;
  }
  
  #content .block-title {
    margin-top: 30px;
  }
  #content .block:first-child .block-title {
    margin-top: 0;
  }
  
  #content .form-actions {
    margin-bottom: 0;
  }
  
  #content .form-actions input[type=submit] {
    float: right;
    padding: 6px 20px;
  }
  
  #block-webform-client-block-131 {
    padding-bottom: 70px;
    border-bottom: 1px solid #c6d0d1;
  }
  
  .custom-contact .node.clearfix h2 {
    margin: 25px 0 10px 0;
    clear: both;
  }
  
  .custom-contact .node.clearfix h2.block-title {
    margin-bottom: 20px;
  }
  
  .region-sidebar-first,
  .region-sidebar-second {
    box-shadow: none;
  }
  
  #columns .region-sidebar-first section,
  #columns .region-sidebar-second section {
    margin: 0;
    width: initial;
    border-top: 1px solid #c6d0d1;
  }
  
  #columns{
      margin: 0 20px;
  }
  
  #block-system-main #node-140.node-page {
    margin: 0;
  }
  
  #block-views-recent-portfolio-items-block .views-field-field-image img,
  input[type=text], input[type=password] {
    width: 100%;
  }
  
  .view-blog-page-view .field-type-image img {
    width: 100%;
  }
  
  
  .username-wrapper,
  .post-time-node,
  .comments-amount {
    display: block;
    font-family: "Open Sans";
    color:  #3d666f;
    font-size: 16px;
    font-style: italic;
    line-height: 22px;
    border: none;
    padding-left: 24px;
    padding-bottom: 2px;
    }
  
  .node nav {
    display: none;
  }
  
  .view-blog-page-view .views-row {
    padding-bottom: 0px;
    margin-bottom: 30px;
  }
  
  .view-blog-page-view .views-row.views-row-last {
    margin-bottom: 0;
  }
  
  body #page #block-system-main-menu a,
  body #page a,
  body #page .content ul li  {
    font-size: 14px;
  }
  
  body #page p {
    line-height: 24px;
  }
  
  #columns #block-views-front-carousel-block{
    margin-top: -1px;
  }
  
  .page-portfolio .view.view-id-portfolio_page .views-row {
    width: 100%;
    margin: 0 0 20px 0;
  }
  
  .page-portfolio .view.view-id-portfolio_page .view-content {
    margin-right: 0;
  }
  
  #page #columns #main-content, #footer .region, #footer .region-inner, .sidebar .region-inner {
    margin: 0 10px;
  }
  
  footer + .block .content #footer-dash {
    display: none;
  }
  
  /* Menu Styling */
  
  input[type=search]::-webkit-input-placeholder {
    content: "search";
    color: #7a7a7a;
  
  }
  
  #tasks ul.primary {
    white-space: initial;
  }
  
  #block-delta-blocks-breadcrumb {
    margin-bottom: 15px;
    margin-left:  10px;
  }
  
  .page-portfolio #page .view.view-portfolio-categories .views-row {
    width: initial;
    margin: 0;
    border-left: none;
    margin-bottom: 10px;
    padding-left: 0;
  }
  
  .page-portfolio .item-list ul.pager {
    margin: 15px 0 28px 0;
    padding: 0;
    padding-top: 13px;
  }
  
  .front #page-wrapper #content-column .content-inner {
    margin-bottom: 0px;
  }
  
  .view-portfolio-page .view-header {
    text-align: left;
    display: inline-block;
  }
  
  
  .view.view-id-portfolio_page .view-header .view-portfolio-categories .view-content {
    margin-right: 0;
    float: none;
    display: block;
  }
  
  .view.view-id-portfolio_page .view-header .view-portfolio-categories,
  .page-portfolio #block-system-main .view-header > p {
    height: auto;
    vertical-align: top;
    display: inline-block;
  }
  
  .view.view-id-portfolio_page .view-header .view-portfolio-categories a,
  .page-portfolio #block-system-main .view-header > p a {
    font-size: 14px;
  }
  
  .page-portfolio #page .view.view-portfolio-categories .views-row {
    float: none;
    display: inline-block;
    width: auto;
  }
  
  .view.view-id-portfolio_page .view-header .view-portfolio-categories {
    width: 100%;
    display: block;
  }
  
  .page-portfolio #block-system-main .view-header > p {
    margin-top: -3px;
    display: block;
  }
  
  .page-portfolio #content {
    margin-right: -2%;
  }
  
  .item-list-pager ul.pager {
    float: none;
    text-align: center;
  }
  
  body #page .view-portfolio-categories .views-row a {
    font-size: 14px;
  }
  
  .contact .iframe-wrapper {
    border-radius: 0;
  }
  
  .contact .iframe-wrapper iframe {
    height: 300px;
  }
  
  
  /*
  #block--managed-1,
  #block--managed-2,
  #block--managed-5,
  .pane-adsense-managed-5,
  #block--managed-custom-desktop{
    display: none !important;
  }
  
  .panel-pane.pane-block.pane-adsense-managed-10.no-title.block {
      display: block !important;
      clear: both !important;
  }
  
  */
  
  #backtotop{
     display: none !important;
  }
  
  
  
  #node-tag .field-name-field-tags ul li a{
      font-size: 11px;
  }
  
  
  ul.lefttoplinks{padding: 5px 0 !important;}
  
  .page-user-edit-tutor-profile .field-widget-text-textfield,
  .page-user-edit-tutor-profile .field-widget-options-select,
  .page-user-edit-tutor-profile .field-widget-text-textarea,
  .page-user-edit-tutor-profile .field-widget-cshs select,
  .page-user-edit-tutor-profile .field-widget-taxonomy-hs select{
      width: 100%;
      float: left;
  }
  
  
  .page-user-edit-tutor-profile .field-widget-text-textfield input,
  .page-user-edit-tutor-profile .field-widget-options-select select,
  .page-user-edit-tutor-profile .field-widget-text-textarea,
  .page-user-edit-tutor-profile .field-widget-taxonomy-hs select,
  .page-user-edit-tutor-profile .field-widget-cshs select{
      width: 100% !important;
      float: left;
  }
  
  .page-user-edit-tutor-profile .field-name-field-user-image input{
      width: 100%;
  }
  
  .page-user-edit-tutor-profile .field-widget-cshs .select-wrapper{
      width: 100% !important;
  }
  
  /***** Tutor Profile Start *****/
  
  .profile-card2, .profile-card3{
      text-align: center;
  }
  
  .profile-card2 li{
      width: 100%;
  }
  
  .profile-card1 h2,
  .profile-card2 h2,
  .profile-card3 h2{
      text-align: center;
      border-bottom: 1px #42a1c5 dotted;
      padding: 5px 10px 15px;
      margin: 0 20px !important;
      font-size: 25px !important;
  }    
  
  .profile-sec, .profile-card3 .profile-sec {
      width: 100%;
      padding: 10px;
      float: left;
      font-weight: 600;
      color: #000;
      font-size: 13px;
  }
  
  .profile-search{ width:94%;}
  .profile-text{ width:55%;}
  
  
  .global-list-icon1 ul li{
      width: 100%;
  }
  
  .class-subject-box .serviceBox_1 .icon_service{
      height: 110px;
      width: 132px;
  }
  
  .newsbox{
      padding-left: 0;
  }
  
  .newsbox i{
      display: none;
  }
  
  .view-recent-blog-posts h2.intro{
      font-size: 18px;
  }
  
  .study-outer-pane{
      width: 94% !important;
      margin-right: 15px;
  }
  
  span.hierarchical-select-item-separator {
      font-size: 20px;
  }
  
  span.lineage-item {
      font-size: 16px;
      font-weight: 500;
  } 
}@media only screen and (min-width:480px) and (max-width:723px) {
 .responsive-menus.responsified .responsive-menus-simple li a/*
   *   Important Information about this CSS File
   *
   * - Do not delete or rename this file, if you do not use it leave it blank (delete
   *   everything) and the file will be skipped when you enable Production Mode in
   *   the Global theme settings.ay2/public_html/sites/all/themes/clean_corporate_theme/css/responsive.smalltouch.landscape.css
   *
   * - Read the _README file in this directory, it contains useful help and other information.
   */
  
  /* Increase the body font size on small touch devices */
  body {
    font-size: 100%;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .iframe-wrapper {
    margin: 0 -20px;
  }
  
  .footer-adci .block-inner {
    margin: 0 30px;
  }
  
  
  /* =============================================================================
   *   Mobile Menu Toggle
   *   See your theme settings extensions for how to enable the menu toggle.
   *   These are example styles for the menu toggle menu, you can use these in the
   *   relevant responsive stylesheets as required. Modify to suit your design.
   * ========================================================================== */
  /* The toggle link */
  
  
  /**
  .at-mt .at-menu-toggle h2 {
    margin-bottom: 5px;
  }
  
  .at-mt .at-menu-toggle h2 a {
    background: #eee;
    border: 2px solid #ccc;
    padding: 2px 10px;
  }
  
  .at-mt .at-menu-toggle ul.menu li a {
    background: #eee;
    border-bottom: 1px solid #fff;
  }
  
  **/
  
  
  /*
  header {
    display: none;
  }
  */
  
  /**
  #menu-bar {
    margin-bottom: 0;
  }
  **/
  
  /* Footer Styling */
  
  
  footer .block {
    padding: 17px 0 15px;
  }
  
  footer .block .content {
    padding-top: 10px;
  }
  
  footer .block a, p {
    font-size: 14px;
  }
  
  footer#footer .block h2 {
    font-size: 22px;
    margin: 0.3em 0;
  }
  
  /*
  footer .block + .block {
    border-top: 8px solid #727272;
  }*/
  
  footer .footer-adci {
    border-top: none;
  }
  
  footer .block-inner {
    margin: 0;
  }
  
  #block-views-recent-blog-posts-block .field-content {
    font-size: 14px;
  }
  
  #block-views-recent-blog-posts-block .content img:hover {
    border-color: #525252;
  }
  
  footer #block-block-2 .content {
    padding-top: 0;
  }
  
  #columns #block-views-partners-carousel-block .owl-buttons {
    display: none;
  }
  
  #columns #block-views-partners-carousel-block {
    margin: 20px 0;
  }
  
  
  #columns #block-views-recent-articles-block .views-field-view-node {
    display: none;
  }
  
  .columns-front-page div.column {
    display: block;
    vertical-align: top;
  }
  
  .footer-adci span {
    margin: 0;
  }
  
  .footer-adci .footer-line {
    font-size: 14px;
    margin: 0;
    display: inline;
  }
  
  .footer-adci #footer-dash {
    display: inline;
  }
  
  .page-node-142 #columns .content-inner {
    width: initial;
  }
  
  
  iframe {
    width: 100%;
   /* height: 436px;*/
    clear: both;
  }
  
  .custom-contact .node.clearfix .contact-column {
    width: 100%;
  }
  
  .contact-column strong {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  
  .contact-column ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  
  .region-sidebar-first,
  .region-sidebar-second {
    box-shadow: none;
  }
  
  #columns .region-sidebar-first section,
  #columns .region-sidebar-second section {
    margin: 0;
    width: initial;
    border-top: 1px solid #c6d0d1;
  }
  
  #block-system-main #node-140.node-page {
    margin: 0;
  }
  
  
  #logo a, #logo img {
      display: block;
      width: 230px;
  }
  
  
  #block-views-recent-portfolio-items-block .views-field-field-image img,
  input[type=text], input[type=password]  {
    width: 100%;
  }
  
  #block-views-front-carousel-block, #block-views-testimonials-block {
    width: auto;
  }
  
  #columns #block-views-front-carousel-block{
    margin-top: -1px;
  }
  
  /* Page Portfolio Styling */
  
  .page-portfolio .view.view-id-portfolio_page .views-row {
    float: left;
    margin: 1%;
    width: 48%;
  }
  
  /*
  div#block--managed-1, div#block--managed-2, div#block--managed-5, .pane-adsense-managed-5, #block--managed-custom-desktop{
    display: none !important;
  }
  
  .panel-pane.pane-block.pane-adsense-managed-10.no-title.block {
      display: block !important;
      clear: both !important;
  }
  
  */
  
  #backtotop{
     display: none !important;
  }
  
  
  
  .study-outer-pane{
      width: 97% !important;
      margin-right: 10px;
  }
  
  ul.lefttoplinks{padding: 5px 0;}
  
  .class-subject-box .serviceBox_1 .icon_service{
      height: 110px;
      width: 120px;
  }
  
  span.hierarchical-select-item-separator {
      font-size: 20px;
  }
  
  span.lineage-item {
      font-size: 16px;
      font-weight: 500;
  } 
}@media only screen and (min-width:724px) and (max-width:999px) {
 /*
   *   Important Information about this CSS File
   *
   * - Do not delete or rename this file, if you do not use it leave it blank (delete
   *   everything) and the file will be skipped when you enable Production Mode in
   *   the Global theme settings.
   *
   * - Read the _README file in this directory, it contains useful help and other information.
   */
  
  /* Increase the default font size on small touch devices */
  body {
    font-size: 100%;
  }
  
  #footer .region-inner {
    margin: 0 20px;
  }
  
  .footer-adci .block-inner {
    margin: 0 30px;
  }
  
  /* =============================================================================
   *   Mobile Menu Toggle
   *   See your theme settings extensions for how to enable the menu toggle.
   *   These are example styles for the menu toggle menu, you can use these in the
   *   relevant responsive stylesheets as required. Modify to suit your design.
   * ========================================================================== */
  /* The toggle link */
  
  /**
  
  .at-mt .at-menu-toggle h2 {
    margin-bottom: 5px;
  }
  
  .at-mt .at-menu-toggle h2 a {
    background: #eee;
    border: 2px solid #ccc;
    padding: 2px 10px;
  }
  
  
  .at-mt .at-menu-toggle ul.menu li a {
    background: #eee;
    border-bottom: 1px solid #fff;
  }
  
  **/
  
  #block-block-1,
  #block-block-2,
  #block-views-recent-blog-posts-block,
  .region-footer .block-superfish {
    margin: 0;
  }
  
  #columns #block-views-front-carousel-block {
    margin: 0px -30px;
  }
  
  #block-views-front-carousel-block .owl-controls .owl-page span:before {
    top: -6px;
    left: -6px;
    border-width: 5px;
    width: 26px;
    height: 26px;
  }
  
  #block-views-front-carousel-block .owl-controls {
    bottom: 20px;
    left: 40px;
  }
  
  #columns #block-views-front-carousel-block .owl-theme .owl-controls {
    width: 25%;
  }
  
  #columns #block-views-front-carousel-block .owl-theme .owl-controls .owl-page + .owl-page {
    margin-left: 4%;
  }
  
  #columns #block-views-front-carousel-block .owl-theme .owl-controls .owl-page span {
    width: 16px;
    height: 16px;
    background: transparent;
  }
  
  #columns #block-views-front-carousel-block .owl-theme .owl-controls .owl-page:hover span,
  #columns #block-views-front-carousel-block .owl-theme .owl-controls .owl-page.active span {
    background: #fff;
  }
  
  
  #columns #block-views-partners-carousel-block .owl-buttons {
    display: none;
  }
  
  #columns #block-views-partners-carousel-block {
    margin: 20px 0px;
  }
  
  #columns #block-views-partners-carousel-block img {
    width: 100%;
  }
  
  #block-views-partners-carousel-block .owl-wrapper {
    margin-left: -10px;
  }
  
  #block-views-partners-carousel-block .owl-wrapper-outer {
    margin: 0;
  }
  
  #columns #block-views-recent-articles-block .views-field-view-node {
    display: none;
  }
  
  #block-views-partners-carousel-block .owl-controls .owl-page,
  #block-views-recent-articles-block .owl-controls .owl-page {
    background: rgba(198, 208, 209, 0.4);
    border-radius: 50%;
    width: 19px;
    height: 19px;
  }
  
  #block-views-partners-carousel-block .owl-controls .owl-page span,
  #block-views-recent-articles-block .owl-controls .owl-page span {
    width: 13px;
    height: 13px;
    margin: 3px 3px;
    background: #fff;
    opacity: 1;
  }
  
  #block-views-partners-carousel-block .owl-controls .owl-page span:hover,
  #block-views-recent-articles-block .owl-controls .owl-page span:hover {
    background: #fff;
    opacity: 0.5;
  }
  
  #block-views-partners-carousel-block .owl-controls .owl-page.active span,
  #block-views-recent-articles-block .owl-controls .owl-page.active span {
    background: #c6d0d1;
  }
  
  #block-views-partners-carousel-block .owl-controls .owl-page + .owl-page,
  #block-views-recent-articles-block .owl-controls .owl-page + .owl-page {
    margin-left: 10px;
  }
  
  .columns-front-page strong + p,
  .columns-front-page div.column ul {
    padding-left: 0;
  }
  
  footer .block {
    padding: 17px 0 15px;
  }
  
  footer .block a, p {
    font-size: 13px;
  }
  
  footer#footer .block h2 {
    margin: 0.3em 0;
  }
  
  footer .block + .block {
    border-top: 8px solid #727272;
  }
  
  footer .block-inner {
    margin: 0;
  }
  
  #block-block-2 .content li {
    margin: 0;
    float: left;
    border: none;
    width: 25%;
  }
  
  .region-footer .sf-main-menu,
  #block-views-recent-blog-posts-block .content,
  #block-block-1 .content,
  #block-block-2 .content {
    width: 100%;
  }
  
  #block-views-recent-blog-posts-block .field-content {
    font-size: 14px;
  }
  
  #block-views-recent-blog-posts-block .content img:hover {
    border-color: #525252;
  }
  
  footer #block-block-2 .content {
    padding-top: 0;
  }
  
  .columns-front-page {
    margin: 30px 0px;
    padding-top: 35px;
  }
  
  #block-block-1 {
    font-size: 0;
  }
  
  .columns-front-page div.column {
    width: 33.3333%;
    padding-top: 55px;
  }
  
  .columns-front-page strong {
    position: absolute;
    top: 9px;
    left: 0;
    height: 36px;
    width: 36px;
  }
  
  .footer-adci span {
    font-size: 13px;
  }
  
  #block-block-2 .content ul li {
    text-align: center;
  }
  
  #block-block-2 .content ul li:first-child {
    text-align: left;
  }
  
  #block-block-2 .content ul li:last-child {
    text-align: right
  }
  
  
  /* HEADER STYLING */
  
  /* header#header {
    margin: 15px 30px;
    margin-top: 0;
    padding-top: 16px;
  }*/
  
  #header {
   /*   position: fixed; */
      right: 0;
      left: 0;
      top:0;
      z-index: 1030;
      background-color: #fff;
      border-color: #eee;
      padding: 0 20px;
      margin: 0;
      border-bottom: 3px solid #e2dada;
  }
  
  #branding {
    margin: 0 0 5px;
    float: left;
  }
  
  
  
  #header #block-search-form,
  #header #block-logintoboggan-logintoboggan-logged-in {
    display: none;
  }
  
  /*
  .region-header {
    float: left;
  }
  */
  
  #block-block-3 .block-inner {
    margin: 0;
  }
  
  #block-block-3 {
    margin-top: 10px;
  }
  
  .logged-in #block-block-3 ul #phone-icon {
    padding-right: 0;
  }
  
  .not-logged-in .region-sidebar-second #user-login {
    display: none;
  }
  
  .page-node-142 header .region-inner {
    margin: 0;
  }
  
  .custom-contact .custom-contact-webform {
    padding: 20px 0;
  }
  
  .page-node-142 .region-footer {
    margin: 0;
  }
  
  .page-node-142 iframe {
    width: 100%;
  }
  
  .custom-contact .node.clearfix {
    border-top: 1px solid #c6d0d1;
  }
  
  .custom-contact .node.clearfix {
    padding: 50px 0;
    padding-top: 0;
  }
  
  .custom-contact .node.clearfix iframe {
    height: 426px;
  }
  
  .view-blog-page-view .field-type-image img {
    width: 100%;
  }
  
  .region-sidebar-first, .region-sidebar-second {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  
  #main-content .field-name-field-image img {
    border-radius: 6px;
    width: 100%;
  }
  
  .page-blog #main-content, .page-node-140 #main-content, .node-type-blog #main-content {
    -webkit-box-shadow: 30px 0px 86px -60px rgba(0,0,0,0.4);
    -moz-box-shadow: 30px 0px 86px -60px rgba(0,0,0,0.4);
    box-shadow: 30px 0px 86px -60px rgba(0,0,0,0.4);
  }
  
  .page-blog #content, .page-node-140 #content, .node-type-blog #content {
    margin-right: 20px;
  }
  
  #columns .region-sidebar-second section,
  #columns .region-sidebar-first section,
  #columns .region-sidebar-second .views-field-field-image img,
  #columns .region-sidebar-first .views-field-field-image img {
    width: 100%;
    margin: 0;
  }
  
  .region-sidebar-first section + section,
  .region-sidebar-second section + section,
  .region-sidebar-first .block + .block,
  .region-sidebar-second .block + .block {
    border-top: 1px solid #c6d0d1;
  }
  
  #columns .region-sidebar-first section:last-of-type .block-inner {
    border: none;
  }
  
  #columns .sidebar .region-inner section input[type=text],
  #columns .sidebar .region-inner section input[type=password] {
    width: 100%;
  }
  
  .logged-in #columns .region-sidebar-second section#block-views-comments-recent-block {
    float: none;
    width: 100%;
  }
  
  section#block-views-comments-recent-block .views-field-timestamp .field-content {
    font-size: 13px;
  }
  
  #block-views-recent-articles-block {
    margin-top: 55px;
  }
  
  body #columns #block-views-partners-carousel-block {
    margin: 0;
  }
  
  #comment-form input[type=text], #comment-form input[type=textarea] {
    width: 100%;
  }
  
  /* Page Portfolio Styling */
  
  .page-portfolio .view.view-id-portfolio_page .view-header + .view-content .views-row {
    float: left;
    width: 31%;
  }
  
  #columns .region-sidebar-first,
  #columns .region-sidebar-second {
    padding: 0;
  }
  
  /* MENU STYLING */
  
  input[type=search]::-webkit-input-placeholder {
    content: "search";
    color: #7a7a7a;
  }
  
  #tasks ul.primary {
    white-space: initial;
  }
  
  #block-delta-blocks-breadcrumb {
    margin: 0px 20px;
  }
  
  .region-sidebar-first .region-inner {
    margin-right: 20px;
  }
  
  .region-sidebar-second .region-inner {
    margin: 0 20px;
  }
  
  
  /*
  #block--managed-4,
  #block--managed-6, 
  #block--managed-7,
  #block--managed-10,
  #block--managed-custom-mobile, 
  .pane-adsense-managed-4,
  .pane-adsense-managed-6, 
  .pane-adsense-managed-7,
  .pane-adsense-managed-10 {
    display: none !important;
  }
  
  .contextual-links-region.panel-pane.pane-block.pane-adsense-managed-7.no-title.block {
      display: none !important;
  }
  */
  
  #backtotop{
     display: none !important;
  }
  
  .study-outer-pane{
      width: 98% !important;
      margin-right: 10px;
  }
  
  .class-subject-box .serviceBox_1 .icon_service{
      height: 110px;
      width: 120px;
  } 
}@media only screen and (min-width:999px) and (max-width:999px) {
 /*
   *   Important Information about this CSS File
   *
   * - Do not delete or rename this file, if you do not use it leave it blank (delete
   *   everything) and the file will be skipped when you enable Production Mode in
   *   the Global theme settings.
   *
   * - Read the _README file in this directory, it contains useful help and other information.
   */
  
  /* Increase the body font size on tablet devices */
  body {
    font-size: 93.8%;
  }
  
  #columns #block-views-front-carousel-block {
    margin: 0px;
  }
  
  /*
  .pane-adsense-managed-10,
  #block--managed-4,
  #block--managed-6, 
  #block--managed-7,
  #block--managed-10,
  #block--managed-custom-mobile, 
  .pane-adsense-managed-4,
  .pane-adsense-managed-6, 
  .pane-adsense-managed-7{
    display: none !important;
  }
  
  .contextual-links-region.panel-pane.pane-block.pane-adsense-managed-7.no-title.block {
      display: none !important;
  }
  
  .contextual-links-region.panel-pane.pane-block.pane-adsense-managed-10.no-title.block {
      display: none !important;
  }
  */
  
  .study-outer-pane{
      width: 320px;
  } 
}@media only screen and (min-width:1000px) {
 /*
   *   Important Information about this CSS File
   *
   * - Do not delete or rename this file, if you do not use it leave it blank (delete
   *   everything) and the file will be skipped when you enable Production Mode in
   *   the Global theme settings.
   *
   * - Read the _README file in this directory, it contains useful help and other information.
   */
  
  #block-block-2 .content li {
    margin: 0;
    background: url(/sites/all/themes/clean_corporate_theme/images/line.png) bottom no-repeat;
    background-position-x: 40px;
    border: none;
  }
  
  .custom-contact-webform {
    width: 300px;
  }
  
  #columns {
    padding: 10px 0;
  }
  
  /* Home Page Articles Block */
  
  
  .columns-front-page .column {
    width: 33.07%;
  }
  
  /* Footer */
  
  /*
  #footer .block {
    margin: 0;
    width: 25%;
    float: left;
  }
  
  footer + .block {
    background-color:  #0f0f0f;
    box-shadow: 0px -1px 0px 0.00px #000000;
    margin-bottom: 0px;
  }
  */
  
  #columns #block-views-front-carousel-block {
    margin: -20px -30px 0;
  }
  
  #block-views-front-carousel-block .owl-controls {
    font-size: 0;
    margin-top: 0;
  }
  
  #block-views-front-carousel-block .owl-controls .owl-page:hover span,
  #block-views-front-carousel-block .owl-controls .owl-page.active span {
    background: #fff;
  }
  
  #block-views-front-carousel-block .owl-controls .owl-page + .owl-page {
  
  }
  
  #block-views-partners-carousel-block .owl-wrapper-outer {
    padding-left: -15%;
  }
  
  #block-views-partners-carousel-block .owl-pagination {
    display: none;
  }
  
  footer + .block .content {
    padding: 15px 0;
  }
  
  /* HEADER STYLING */
  
  header {
    margin-top: 0;
  }
  
  header .region-header {
    float: right;
  }
  
  #branding {
    margin: 0px 0 5px;
    float: left;
  }
  
  #block-block-3,
  #block-logintoboggan-logintoboggan-logged-in {
    float: left;
    margin: 0;
    margin-top: 20px;
  }
  
  /*
  #block-search-form {
    clear: both;
    margin: 0;
    margin-top: 20px;
  }*/
  
  .logged-in #phone-icon {
    padding-right: 0;
  }
  
  #block-views-recent-articles-block .views-field {
    width: 220px;
    height: auto;
  }
  
  #block-views-recent-articles-block .owl-item {
    padding: 0 2px;
  }
  
  #block-views-recent-articles-block .owl-wrapper-outer {
    margin: 0 -2px;
  }
  
  #block-views-recent-articles-block .views-field-title {
    height: 45px;
  }
  
  #block-views-recent-articles-block .views-field-body {
    width: 220px;
    height: 60px;
  }
  
  
  
  /* CONTACTS PAGE */
  
  .custom-contact-webform {
    width: 460px;
    float: left;
  }
  
  .custom-contact-webform .webform-component--name{
    float: left;
  }
  
  .custom-contact-webform .webform-component--e-mail {
    float: right;
  }
  
  .custom-contact-webform .form-actions {
    float: right;
  }
  
  .custom-contact .node.clearfix {
    width: 460px;
    float: right;
    margin-bottom: 150px;
  }
  
  #left-contact {
    float: left;
  }
  
  #right-contact {
    float: right;
  }
  
  .custom-contact .columns .block {
    margin: 0;
  }
  
  .custom-contact-webform .webform-component--name input,
  .custom-contact-webform .webform-component--e-mail input {
    width: 220px;
  }
  
  .custom-contact-webform .webform-component--subject {
    clear: both;
  }
  
  #block-user-login input[type=text], #block-user-login input[type=password] {
    width: 200px;
  }
  
  /* Page Portfolio */
  
  /*
  #columns .region-sidebar-first, #columns .region-sidebar-second {
    width: 210px;
    padding: 0 10px;
  }
  */
  
  
  /*
  #block--managed-4,
  #block--managed-6, 
  #block--managed-7,
  #block--managed-10,
  #block-block-27,
  #block--managed-custom-mobile, 
  .pane-adsense-managed-4,
  .pane-adsense-managed-6, 
  .pane-adsense-managed-7,
  .pane-adsense-managed-10{
    display: none !important;
  }
  .contextual-links-region.panel-pane.pane-block.pane-adsense-managed-7.no-title.block {
      display: none !important;
  }
  
  .contextual-links-region.panel-pane.pane-block.pane-adsense-managed-10.no-title.block {
      display: none !important;
  }
  
  */ 
}
/*})'"*/
