@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, basic classes, and variables that we'll be using across
the whole project.
*********************/

/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  box-sizing: border-box;
  padding-right: 0 !important; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media only screen and (max-width: 768px) {
  .m-all {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .m-1of2, .m-2of4, .m-3of6, .m-4of8, .m-5of10, .m-6of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 50%; }
  .m-1of3, .m-2of6, .m-3of9, .m-4of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 33.33%; }
  .m-2of3, .m-4of6, .m-6of9, .m-8of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 66.66%; }
  .m-1of4, .m-2of8, .m-3of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 25%; }
  .m-3of4, .m-6of8, .m-9of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 75%; }
  .m-1of5, .m-2of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 20%; }
  .m-2of5, .m-4of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 40%; }
  .m-3of5, .m-6of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 60%; }
  .m-4of5, .m-8of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 80%; }
  .m-1of6, .m-2of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .m-1of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .m-2of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .m-3of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .m-4of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .m-5of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .m-6of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .m-1of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 12.5%; }
  .m-3of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 37.5%; }
  .m-5of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 62.5%; }
  .m-7of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 87.5%; }
  .m-1of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .m-2of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .m-4of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .m-5of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .m-7of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .m-8of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .m-1of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 10%; }
  .m-3of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 20%; }
  .m-7of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 70%; }
  .m-9of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 90%; }
  .m-1of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .m-2of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .m-3of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .m-4of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .m-5of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .m-6of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .m-7of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .m-8of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .m-9of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .m-10of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .m-1of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 8.33%; }
  .m-5of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 41.65%; }
  .m-7of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 58.1%; }
  .m-10of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 83.3%; }
  .m-11of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 91.63%; } }

@media only screen and (min-width: 481px) and (max-width: 768px) {
  .h-all {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .h-1of2, .h-2of4, .h-3of6, .h-4of8, .h-5of10, .h-6of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 50%; }
  .h-1of3, .h-2of6, .h-3of9, .h-4of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 33.33%; }
  .h-2of3, .h-4of6, .h-6of9, .h-8of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 66.66%; }
  .h-1of4, .h-2of8, .h-3of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 25%; }
  .h-3of4, .h-6of8, .h-9of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 75%; }
  .h-1of5, .h-2of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 20%; }
  .h-2of5, .h-4of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 40%; }
  .h-3of5, .h-6of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 60%; }
  .h-4of5, .h-8of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 80%; }
  .h-1of6, .h-2of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .h-1of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .h-2of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .h-3of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .h-4of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .h-5of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .h-6of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .h-1of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 12.5%; }
  .h-3of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 37.5%; }
  .h-5of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 62.5%; }
  .h-7of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 87.5%; }
  .h-1of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .h-2of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .h-4of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .h-5of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .h-7of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .h-8of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .h-1of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 10%; }
  .h-3of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 20%; }
  .h-7of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 70%; }
  .h-9of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 90%; }
  .h-1of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .h-2of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .h-3of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .h-4of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .h-5of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .h-6of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .h-7of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .h-8of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .h-9of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .h-10of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .h-1of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 8.33%; }
  .h-5of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 41.65%; }
  .h-7of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 58.1%; }
  .h-10of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 83.3%; }
  .h-11of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 91.63%; } }

/* Portrait tablet to landscape */
@media only screen and (min-width: 769px) and (max-width: 1029px) {
  .t-all {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .t-1of2, .t-2of4, .t-3of6, .t-4of8, .t-5of10, .t-6of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 50%; }
  .t-1of3, .t-2of6, .t-3of9, .t-4of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 33.33%; }
  .t-2of3, .t-4of6, .t-6of9, .t-8of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 66.66%; }
  .t-1of4, .t-2of8, .t-3of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 25%; }
  .t-3of4, .t-6of8, .t-9of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 75%; }
  .t-1of5, .t-2of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 20%; }
  .t-2of5, .t-4of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 40%; }
  .t-3of5, .t-6of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 60%; }
  .t-4of5, .t-8of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 80%; }
  .t-1of6, .t-2of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .t-1of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .t-2of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .t-3of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .t-4of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .t-5of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .t-6of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .t-1of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 12.5%; }
  .t-3of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 37.5%; }
  .t-5of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 62.5%; }
  .t-7of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 87.5%; }
  .t-1of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .t-2of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .t-4of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .t-5of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .t-7of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .t-8of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .t-1of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 10%; }
  .t-3of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 20%; }
  .t-7of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 70%; }
  .t-9of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 90%; }
  .t-1of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .t-2of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .t-3of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .t-4of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .t-5of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .t-6of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .t-7of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .t-8of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .t-9of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .t-10of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .t-1of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 8.33%; }
  .t-5of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 41.65%; }
  .t-7of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 58.1%; }
  .t-10of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 83.3%; }
  .t-11of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 91.63%; } }

/* Landscape to small desktop */
@media only screen and (min-width: 1030px) {
  .d-all {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .d-1of2, .d-2of4, .d-3of6, .d-4of8, .d-5of10, .d-6of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 50%; }
  .d-1of3, .d-2of6, .d-3of9, .d-4of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 33.33%; }
  .d-2of3, .d-4of6, .d-6of9, .d-8of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 66.66%; }
  .d-1of4, .d-2of8, .d-3of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 25%; }
  .d-3of4, .d-6of8, .d-9of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 75%; }
  .d-1of5, .d-2of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 20%; }
  .d-2of5, .d-4of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 40%; }
  .d-3of5, .d-6of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 60%; }
  .d-4of5, .d-8of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 80%; }
  .d-1of6, .d-2of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .d-1of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .d-2of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .d-3of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .d-4of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .d-5of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .d-6of7 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .d-1of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 12.5%; }
  .d-3of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 37.5%; }
  .d-5of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 62.5%; }
  .d-7of8 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 87.5%; }
  .d-1of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .d-2of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 22.2222222222%; }
  .d-4of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 44.4444444444%; }
  .d-5of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 55.5555555555%; }
  .d-7of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 77.7777777777%; }
  .d-8of9 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 88.8888888888%; }
  .d-1of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 10%; }
  .d-3of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 20%; }
  .d-7of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 70%; }
  .d-9of10 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 90%; }
  .d-1of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .d-2of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 18.18181818182%; }
  .d-3of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 27.27272727273%; }
  .d-4of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 36.36363636364%; }
  .d-5of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 45.45454545455%; }
  .d-6of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 54.54545454546%; }
  .d-7of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 63.63636363637%; }
  .d-8of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 72.72727272728%; }
  .d-9of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 81.81818181819%; }
  .d-10of11 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 90.9090909091%; }
  .d-1of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 8.33%; }
  .d-5of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 41.65%; }
  .d-7of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 58.1%; }
  .d-10of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 83.3%; }
  .d-11of12 {
    float: left;
    box-sizing: border-box;
    padding-right: 0.75em;
    width: 91.63%; } }

/*********************
TEXT ALIGNS
*********************/
.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-justify {
  text-align: justify; }

/*********************
NO MARGINS
*********************/
.no-margin, .no-margins {
  margin: 0 !important; }

.no-margin-top, .no-top-margin {
  margin-top: 0 !important; }

.no-margin-right, .no-right-margin {
  margin-right: 0 !important; }

.no-margin-bottom, .no-bottom-margin {
  margin-bottom: 0 !important; }

.no-margin-left, .no-left-margin {
  margin-left: 0 !important; }

/*********************
FLOATS
*********************/
.float-right {
  float: right; }

.float-left {
  float: left; }

.float-none {
  float: none; }

.clear-both {
  clear: both; }

hr.clear-both {
  height: 0px;
  overflow: hidden;
  background: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  margin: 0; }

/*********************
POSITION STICKY
*********************/
.sticky {
  position: fixed; }
  .sticky.sticky-fixed {
    position: fixed; }

.mobile .sticky, .tablet .sticky, .firefox .sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky; }
  .mobile .sticky.sticky-fixed, .tablet .sticky.sticky-fixed, .firefox .sticky.sticky-fixed {
    position: fixed; }

/*********************
DISPLAYS
*********************/
.display-none {
  display: none; }

.display-block {
  display: block; }

.display-inline-block {
  display: inline-block; }

.display-inline {
  display: inline; }

.mobile-show, .m-show {
  display: block; }

@media only screen and (min-width: 769px) {
  .mobile-show, .m-show {
    display: none; } }

@media only screen and (max-width: 768px) {
  .mobile-hide {
    display: none !important; }
  .m-hide {
    display: none; } }

/******************************************************************
Site Name:
Author:

Stylesheet: Owl Carousel

******************************************************************/
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../library/images/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/******************************************************************
Site Name:
Author:

Stylesheet: fancyBox

******************************************************************/
body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji',
 'Segoe UI Emoji', 'Segoe UI Symbol';
  height: 100%;
  left: 0;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
  -o-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: .87;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .25s, visibility 0s linear .25s;
  -o-transition: opacity .25s, visibility 0s linear .25s;
  transition: opacity .25s, visibility 0s linear .25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity .25s, visibility 0s;
  -o-transition: opacity .25s, visibility 0s;
  transition: opacity .25s, visibility 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  text-align: center;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  height: 100%;
  margin-right: -.25em;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--next {
  z-index: 99995; }

.fancybox-slide--image {
  overflow: visible;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px 6px 0 6px; }

.fancybox-slide--iframe {
  padding: 44px 44px 0; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0 0 6px 0;
  max-width: 100%;
  overflow: auto;
  padding: 0;
  padding: 24px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  margin: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.fancybox-can-drag .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-dragging .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-container [data-selectable='true'] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--html .fancybox-content {
  margin-bottom: 6px; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
  height: calc(100% - 44px);
  margin-bottom: 44px; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

.fancybox-iframe {
  vertical-align: top; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  outline: none;
  padding: 10px;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
  vertical-align: top;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff; }

.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default; }

.fancybox-button svg {
  display: block;
  overflow: visible;
  position: relative;
  shape-rendering: geometricPrecision; }

.fancybox-button svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3; }

.fancybox-button--play svg path:nth-child(2) {
  display: none; }

.fancybox-button--pause svg path:nth-child(1) {
  display: none; }

.fancybox-button--play svg path,
.fancybox-button--share svg path,
.fancybox-button--thumbs svg path {
  fill: currentColor; }

.fancybox-button--share svg path {
  stroke-width: 1; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  height: 38px;
  opacity: 0;
  padding: 6px;
  position: absolute;
  top: 50%;
  width: 38px; }

.fancybox-show-nav .fancybox-navigation .fancybox-button {
  -webkit-transition: opacity .25s, visibility 0s, color .25s;
  -o-transition: opacity .25s, visibility 0s, color .25s;
  transition: opacity .25s, visibility 0s, color .25s; }

.fancybox-navigation .fancybox-button::after {
  content: '';
  left: -25px;
  padding: 50px;
  position: absolute;
  top: -25px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  right: 6px; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #555;
  cursor: pointer;
  height: 44px;
  margin: 0;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  z-index: 10; }

.fancybox-close-small svg {
  fill: transparent;
  opacity: .8;
  stroke: currentColor;
  stroke-width: 1.5;
  -webkit-transition: stroke .1s;
  -o-transition: stroke .1s;
  transition: stroke .1s; }

.fancybox-close-small:focus {
  outline: none; }

.fancybox-close-small:hover svg {
  opacity: 1; }

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--video .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  color: #ccc;
  padding: 5px;
  right: -12px;
  top: -44px; }

.fancybox-slide--image .fancybox-close-small:hover svg,
.fancybox-slide--video .fancybox-close-small:hover svg,
.fancybox-slide--iframe .fancybox-close-small:hover svg {
  background: transparent;
  color: #fff; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none; }

/* Caption */
.fancybox-caption {
  bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px 25px 44px;
  right: 0; }

.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1; }

.fancybox-caption::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  content: '';
  display: block;
  left: 44px;
  position: absolute;
  right: 44px;
  top: 0; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate .8s infinite linear;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  border: 6px solid rgba(100, 100, 100, 0.5);
  border-radius: 100%;
  border-top-color: #fff;
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  opacity: .6;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 60px;
  z-index: 99999; }

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1); }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #fff;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs > ul {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x > ul {
  overflow: hidden; }

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs > ul > li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1); }

.fancybox-thumbs > ul > li {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }

.fancybox-thumbs > ul > li:before {
  border: 4px solid #4ea7f9;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs .fancybox-thumbs-active:before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px); } }

/******************************************************************
Site Name:
Author:

Stylesheet: Slideshow Styles

******************************************************************/
.sj-slideshow {
  overflow: hidden; }
  .sj-slideshow .each-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    min-height: 300px;
    background-position: center center;
    background-repeat: norepeat;
    background-size: cover; }
  .sj-slideshow ul.none, .sj-slideshow .each-slide {
    list-style: none;
  }
  .sj-slideshow .each-slide .slide-content {
    padding: 1em;
    background: rgba(255, 255, 255, 0.9); }

.table-section-wrapper table td, .table-section-wrapper table th {
  padding: 0.25em;
  border: 1px solid #ccc; }
.table-section-wrapper table tr:nth-child(odd), .table-section-wrapper table thead tr:nth-child(even) {
  background-color: #fff; }
.table-section-wrapper table tr:nth-child(even), .table-section-wrapper table thead tr:nth-child(odd) {
  background-color: #eee; }
