From 0d0526d331fa24247430665e4b445c923a86d004 Mon Sep 17 00:00:00 2001 From: xavortm Date: Sat, 4 Feb 2017 16:22:54 +0200 Subject: [PATCH] Add nicer mobile menu like in reaction gifs --- assets/css/master.css | 221 +++++++++++++++++-- assets/css/master.min.css | 4 +- assets/sass/base/_settings.scss | 4 + assets/sass/components/_input.scss | 11 + assets/sass/prebuilds/_header-clean.scss | 268 +++++++++++++++++++++-- assets/scripts/bundle.js | 24 ++ assets/scripts/bundle.min.js | 4 +- assets/scripts/scripts.js | 24 ++ header.php | 35 +++ scripts.js | 2 +- 10 files changed, 562 insertions(+), 35 deletions(-) diff --git a/assets/css/master.css b/assets/css/master.css index 450152c..239f6ae 100644 --- a/assets/css/master.css +++ b/assets/css/master.css @@ -4814,6 +4814,16 @@ hr { .select::-ms-expand { display: none; } +input, +input[type="checkbox"], +input[type="radio"], +input[type="number"], +input[type="number"], +input[type="search"], +input[type="search"], +input[type="search"] { + box-sizing: border-box; } + /** * DX MOBILE MENU * ============================================================================ @@ -5006,9 +5016,22 @@ hr { * Clean basic header styling with logo on the left and menu on the right * with white background and subtle shadow. */ +@media screen and (max-width: 600px) { + #wpadminbar { + position: fixed !important; } } + .site-header { - padding: 30px 0; - box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.1); } + padding: 10px 0; + background-color: #4072db; + color: white; + font-size: 16px; + position: fixed; + top: 0; + left: 0; + width: 100%; + z-index: 90; } + .site-header a, .site-header a:hover { + color: white; } .site-header-inner { display: -webkit-box; display: -ms-flexbox; @@ -5019,6 +5042,9 @@ hr { -ms-flex-align: center; align-items: center; } +.site-header-placeholder { + height: 60px; } + .site-description { display: none; } @@ -5026,26 +5052,50 @@ hr { .site-branding { margin: 0; } +.site-branding { + margin-right: 24px; + color: white; } + @media (max-width: 640px) { + .site-branding { + margin-right: 10px; } } + .site-branding a { + font-weight: bold; + font-size: 24px; + margin-top: -8 / 2px; + display: inherit; } + .main-navigation { -webkit-box-flex: 1; -ms-flex: 1 1 auto; - flex: 1 1 auto; } + flex: 1 1 auto; + margin-right: 24px; } + @media (max-width: 640px) { + .main-navigation { + display: none; } } .main-navigation .menu-item a { - padding: 0.75rem 0.625rem; - color: #1a1a1a; - background-color: #fff; - border-radius: 0.1875rem; } - .main-navigation .menu-item a:hover { - color: #1a1a1a; - background-color: #f0f0f0; } + padding: 1rem 0.5rem; + color: #fff; + background-color: transparent; + border-radius: 0; + font-weight: normal; + cursor: pointer; } + .main-navigation .sub-menu .menu-item a { + color: black; + border-bottom: 1px solid #f0f0f0; + font-weight: 500; } + .main-navigation .sub-menu .menu-item a:hover { + color: #4072db; + font-weight: 500; } + .main-navigation .sub-menu .menu-item a:last-of-type { + border: none; } @media (min-width: 640px) { .menu-item:nth-last-child(-n+3) .sub-menu .sub-menu { right: calc(100%); - top: 0; } + top: -0.75rem; } .sub-menu { box-shadow: 0 7px 13px -9px rgba(0, 0, 0, 0.1); - padding: 0 0; + padding: 1.5rem 0; font-size: 14px; min-width: 250px; } .sub-menu .menu-item { @@ -5055,10 +5105,153 @@ hr { .sub-menu .menu-item:last-of-type { margin-bottom: 0; } .sub-menu .menu-item a { - padding: 0.9375rem 1.25rem; + padding: 0.3125rem 1.5rem; display: block; } .sub-menu .menu-item a:hover { - background: #fafafa; } } + background: none; } } + +.site-button-navigation { + margin-left: auto; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .site-button-navigation .mobile-menu-button { + border: none; + font-size: 14px; + padding: 0.5rem 1rem; + border-radius: 3px; + font-weight: 700; + color: white; + margin-left: 4px; + background-color: #2b62d7; + cursor: pointer; } + .site-button-navigation .mobile-menu-button:hover { + color: white; + opacity: 0.8; } + @media (max-width: 640px) { + .site-button-navigation .mobile-menu-button { + display: none; } } + .site-button-navigation .mobile-menu-button { + cursor: pointer; + background: none; + display: none; + padding: 0; + font-size: 24px; + padding: 0 0.5rem; } + .site-button-navigation .mobile-menu-button:hover { + background-color: #2b62d7; } + @media (max-width: 640px) { + .site-button-navigation .mobile { + display: block; } } + +.mobile-menu { + display: none; + width: 100vw; + height: 100vh; + background: #1a1a1a; + color: white; + position: fixed; + top: 60px; } + .mobile-menu.is-visible { + display: block; + z-index: 100; } + .admin-bar .mobile-menu { + top: 92px; } + @media screen and (max-width: 782px) { + .admin-bar .mobile-menu { + top: 106px; } } + +.mobile-menu-top-nav { + text-align: center; + background: #2b62d7; } + .mobile-menu-top-nav li { + display: inline-block; } + .mobile-menu-top-nav a { + display: inline-block; + font-size: 14px; + padding: 0.5rem 0.5rem; + font-weight: 700; + color: white; } + .mobile-menu-top-nav .children { + display: none; } + +.mobile-menu-search { + padding: 1rem; + border-bottom: 1px solid #343434; + width: 100%; } + .mobile-menu-search .search-field { + border: none; + width: 100%; + border: none; + padding: 0.5rem 1rem; + border-radius: 3px; } + .mobile-menu-search .search-submit { + display: none; } + .mobile-menu-search label { + position: relative; } + .mobile-menu-search label:after { + content: '\f002'; + display: inline-block; + font-family: FontAwesome; + position: absolute; + right: 16px; + top: -0.125rem; + color: black; } + +.mobile-menu-categories { + list-style: none; + max-height: calc(100vh - 228px); + overflow-y: scroll; + -webkit-overflow-scrolling: touch; } + .admin-bar .mobile-menu-categories { + max-height: calc(100vh - 274px); } + .mobile-menu-categories li a { + color: white; + display: block; + padding: 0.5rem 1rem; } + +.mobile-menu-social { + position: absolute; + left: 0; + width: 100vw; + height: 60px; + bottom: 60px; + background: white; + padding: 0.5rem 0.5rem; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; } + .admin-bar .mobile-menu-social { + bottom: 106px; } + .mobile-menu-social .button { + -webkit-box-flex: 1; + -ms-flex: 1 1 100%; + flex: 1 1 100%; + margin: 0 0.25rem; + line-height: 1.7; + color: white; + font-weight: 700; + text-align: center; + display: inline-block; + padding: 0.5rem 1rem; } + .mobile-menu-social .fa { + display: inline-block; + margin-right: 4px; } + .mobile-menu-social .facebook { + background-color: #3b5998; } + .mobile-menu-social .twitter { + background-color: #1da1f2; } + .mobile-menu-social .google-plus { + background-color: #dd4b39; } + .mobile-menu-social .rss { + background-color: #f26522; } + @media (max-width: 640px) { + .mobile-menu-social .google-plus, + .mobile-menu-social .rss { + display: none; } } /** * Various flex grid stylings that can be used across the theme. diff --git a/assets/css/master.min.css b/assets/css/master.min.css index 00bbe36..53a1a00 100644 --- a/assets/css/master.min.css +++ b/assets/css/master.min.css @@ -1,4 +1,4 @@ -@charset "UTF-8";hr,table{width:100%}legend,td,th{padding:0}address,table{margin:0 0 1.5em}pre,textarea{overflow:auto}a,ins,mark{text-decoration:none}.wp-caption,embed,iframe,img,object,pre{max-width:100%}.center-ul,.gallery-item,.wp-caption-text{text-align:center}.browser-ie .row::after,.cb,h1,h2,h3,h4,h5,h6,hr.clear{clear:both}.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent}#content[tabindex="-1"]:focus,.input,.select,a:active,a:hover{outline:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em}mark{color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:1px;border:none;background:#f0f0f0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.text-italic,blockquote,cite,dfn,em,i{font-style:italic}.has-tip,dt{font-weight:700}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0}table{border-collapse:collapse;border-spacing:0}meta.foundation-data-attribute-namespace{font-family:false}body,button,input,select,textarea{color:#404040;font-family:sans-serif;font-size:16px;font-size:1rem;line-height:1.5}p{margin-bottom:1.5em}blockquote{margin:0 1.5em}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;font-size:15px;font-size:.9375rem;line-height:1.6;margin-bottom:1.6em;padding:1.6em}code,kbd,tt,var{font-family:Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;font-size:15px;font-size:.9375rem}body,h1,h2,h3,h4,h5{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:0}abbr,acronym{border-bottom:1px dotted #666;cursor:help}ins,mark{background:#fff9c0}big{font-size:125%}dd{margin:0 1.5em 1.5em}html{box-sizing:border-box;-webkit-font-smoothing:antialiased}*,:after,:before{box-sizing:inherit}body.admin-bar{padding-top:32px}@media (max-width:782px){body.admin-bar{padding-top:46px}}body{font-size:16px;line-height:1.7;background:#fff}p:first-child{margin-top:0}p:last-child{margin-bottom:0}h1,h2,h3,h4,h5{line-height:1.2}img.alignright{margin:20px 0 20px 20px}img.alignleft{margin:20px 20px 20px 0}img.aligncenter{margin:20px auto}img{border:0;height:auto;margin-bottom:-8px}.bypostauthor,.sticky{display:block}.alignleft{display:inline;float:left;margin-right:1.5em}.alignright,.float-right{float:right}.alignright{display:inline;margin-left:1.5em}.aligncenter{clear:both;display:block;margin-left:auto;margin-right:auto}ol,ul{margin:0;padding:0;list-style-type:none}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}.wp-caption{margin-bottom:1.5em}.wp-caption img[class*=wp-image-]{display:block;margin-left:auto;margin-right:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.gallery{margin-bottom:1.5em}.gallery-item{display:inline-block;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}.center-ul>ul{display:inline-block}.float-left{float:left}.flost-none,.no-float{float:none}.is-hidden{display:none}hr.clear{border:none;background:0 0}.text-right{text-align:right}.text-left{text-align:left}.text-center{text-align:center}.text-uppercase{text-transform:uppercase}.text-white,.text-white a,.text-white a:hover,.text-white h1,.text-white h2,.text-white h3,.text-white h4,.text-white h5,.text-white h6{color:#fff}.truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mt-0{margin-top:0!important}.mt-10{margin-top:10px}.mt-20{margin-top:20px}.mt-30{margin-top:30px}.mt-40{margin-top:40px}.mt-50{margin-top:50px}.mt-60{margin-top:60px}.mt-70{margin-top:70px}.mt-80{margin-top:80px}.mt-90{margin-top:90px}.mt-100{margin-top:100px}.mb-0{margin-bottom:0!important}.mb-10{margin-bottom:10px}.mb-20{margin-bottom:20px}.mb-30{margin-bottom:30px}.mb-40{margin-bottom:40px}.mb-50{margin-bottom:50px}.mb-60{margin-bottom:60px}.mb-70{margin-bottom:70px}.mb-80{margin-bottom:80px}.mb-90{margin-bottom:90px}.mb-100{margin-bottom:100px}.position-initial{position:initial}.dxstarter-styleguide hr{margin:40px 0}.dxstarter-styleguide .theme-colors{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -10px}.dxstarter-styleguide .section-title{border-bottom:1px solid #f0f0f0;margin-bottom:40px;padding-bottom:20px;margin-top:100px}.dxstarter-styleguide .page-header{margin-top:50px;font-size:48px;color:#000}.dxstarter-styleguide .colorbox{display:inline-block;margin:10px;max-width:calc(10% - 20px);width:100%}@media (max-width:640px){.dxstarter-styleguide .colorbox{max-width:calc(50% - 20px)}}.dxstarter-styleguide .colorbox>*{opacity:.2}.dxstarter-styleguide .color-accent>*,.dxstarter-styleguide .color-primary-dark>*,.dxstarter-styleguide .color-primary>*,.dxstarter-styleguide .color-secondary>*{opacity:1}.dxstarter-styleguide .colorbox .color{padding-bottom:100%}.dxstarter-styleguide .colorbox .name{font-size:13px}.dxstarter-styleguide .label{text-transform:uppercase;margin:20px 0;display:block}.dxstarter-styleguide .color-primary .color{background-color:#4072db}.dxstarter-styleguide .color-primary-dark .color{background-color:#3f3f75}.dxstarter-styleguide .color-secondary .color{background-color:#5ea54d}.dxstarter-styleguide .color-accent .color{background-color:#ff4902}.responsive-image{overflow:hidden;padding-bottom:75%;width:100%;height:0;display:inline-block;position:relative;margin-bottom:-8px;background:#f8f8f8}.responsive-image img{display:block;width:100%;height:100%;position:absolute}.column.row.row,.row,.row.row.columns{display:-webkit-box;display:-ms-flexbox}.responsive-image.ratio-16-9{padding-bottom:56.25%}.responsive-image.ratio-16-10{padding-bottom:62.5%}.responsive-image.ratio-11-8{padding-bottom:72.72727%}.responsive-image.ratio-3-2{padding-bottom:66.66667%}.responsive-image.ratio-1-1{padding-bottom:100%}.responsive-image.ratio-golden{padding-bottom:61.8047%}.responsive-image.ratio-silver{padding-bottom:41.42502%}.responsive-image.radius-3{border-radius:3px}.responsive-image.radius-5{border-radius:5px}.responsive-image.radius-10{border-radius:10px}.responsive-image.radius-20{border-radius:20x}.responsive-image.radius-circle{border-radius:50%}.row{max-width:1200px;margin-right:auto;margin-left:auto;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.row .row{margin-right:-.625rem;margin-left:-.625rem}@media print,screen and (min-width:40em){.row .row{margin-right:-.9375rem;margin-left:-.9375rem}}@media print,screen and (min-width:64em){.row .row{margin-right:-.9375rem;margin-left:-.9375rem}}.browser-ie .row.collapse>.columns>.row,.row .row.collapse,.row.collapse>.column>.row,.row.collapse>.columns>.row,.row.is-collapse-child{margin-right:0;margin-left:0}.row.expanded,.row:not(.expanded) .row{max-width:none}.browser-ie .row.collapse>.columns,.row.collapse>.column,.row.collapse>.columns{padding-right:0;padding-left:0}.browser-ie .columns,.column,.columns{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px;padding-right:.625rem;padding-left:.625rem;min-width:initial}@media print,screen and (min-width:40em){.browser-ie .columns,.column,.columns{padding-right:.9375rem;padding-left:.9375rem}}.column.row.row,.row.row.columns{display:flex}.row .column.row.row,.row .row.row.columns{margin-right:0;margin-left:0;padding-right:0;padding-left:0}.flex-container{display:-webkit-box;display:-ms-flexbox;display:flex}.flex-child-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.flex-child-grow{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.flex-child-shrink{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.flex-dir-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.flex-dir-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.flex-dir-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.flex-dir-column-reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.small-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.small-2,.small-3{-webkit-box-flex:0}.small-offset-0{margin-left:0}.small-2{-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.small-offset-1{margin-left:8.33333%}.small-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.small-4,.small-5{-webkit-box-flex:0}.small-offset-2{margin-left:16.66667%}.small-4{-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.small-offset-3{margin-left:25%}.small-5{-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.small-6,.small-7{-webkit-box-flex:0}.small-offset-4{margin-left:33.33333%}.small-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.small-offset-5{margin-left:41.66667%}.small-7{-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.small-8,.small-9{-webkit-box-flex:0}.small-offset-6{margin-left:50%}.small-8{-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.small-offset-7{margin-left:58.33333%}.small-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.small-offset-8{margin-left:66.66667%}.small-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.small-offset-9{margin-left:75%}.small-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.small-offset-10{margin-left:83.33333%}.small-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.small-offset-11{margin-left:91.66667%}.small-up-1{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-1>.columns,.small-up-1>.column,.small-up-1>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.small-up-2{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-2>.columns,.small-up-2>.column,.small-up-2>.columns{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.small-up-3{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-3>.columns,.small-up-3>.column,.small-up-3>.columns{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.small-up-4{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-4>.columns,.small-up-4>.column,.small-up-4>.columns{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.small-up-5{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-5>.columns,.small-up-5>.column,.small-up-5>.columns{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.small-up-6{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-6>.columns,.small-up-6>.column,.small-up-6>.columns{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.small-up-7{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-7>.columns,.small-up-7>.column,.small-up-7>.columns{-webkit-box-flex:0;-ms-flex:0 0 14.28571%;flex:0 0 14.28571%;max-width:14.28571%}.small-up-8{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-8>.columns,.small-up-8>.column,.small-up-8>.columns{-webkit-box-flex:0;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}.browser-ie .small-collapse>.columns,.small-collapse>.column,.small-collapse>.columns{padding-right:0;padding-left:0}.browser-ie .small-uncollapse>.columns,.small-uncollapse>.column,.small-uncollapse>.columns{padding-right:.625rem;padding-left:.625rem}@media print,screen and (min-width:40em){.medium-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.medium-offset-0{margin-left:0}.medium-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.medium-offset-1{margin-left:8.33333%}.medium-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.medium-offset-2{margin-left:16.66667%}.medium-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.medium-offset-3{margin-left:25%}.medium-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.medium-offset-4{margin-left:33.33333%}.medium-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.medium-offset-5{margin-left:41.66667%}.medium-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.medium-offset-6{margin-left:50%}.medium-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.medium-offset-7{margin-left:58.33333%}.medium-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.medium-offset-8{margin-left:66.66667%}.medium-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.medium-offset-9{margin-left:75%}.medium-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.medium-offset-10{margin-left:83.33333%}.medium-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.medium-offset-11{margin-left:91.66667%}.medium-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.medium-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.medium-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.medium-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.medium-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.medium-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.medium-up-1{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-1>.columns,.medium-up-1>.column,.medium-up-1>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.medium-up-2{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-2>.columns,.medium-up-2>.column,.medium-up-2>.columns{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.medium-up-3{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-3>.columns,.medium-up-3>.column,.medium-up-3>.columns{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.medium-up-4{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-4>.columns,.medium-up-4>.column,.medium-up-4>.columns{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.medium-up-5{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-5>.columns,.medium-up-5>.column,.medium-up-5>.columns{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.medium-up-6{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-6>.columns,.medium-up-6>.column,.medium-up-6>.columns{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.medium-up-7{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-7>.columns,.medium-up-7>.column,.medium-up-7>.columns{-webkit-box-flex:0;-ms-flex:0 0 14.28571%;flex:0 0 14.28571%;max-width:14.28571%}.medium-up-8{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-8>.columns,.medium-up-8>.column,.medium-up-8>.columns{-webkit-box-flex:0;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}}@media print,screen and (min-width:40em) and (min-width:40em){.medium-expand{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}}@media print,screen and (min-width:40em){.medium-flex-dir-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.medium-flex-dir-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.medium-flex-dir-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.medium-flex-dir-column-reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.medium-flex-child-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.medium-flex-child-grow{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.medium-flex-child-shrink{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}}.browser-ie .row.medium-unstack>.columns,.row.medium-unstack>.column,.row.medium-unstack>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}@media print,screen and (min-width:40em){.browser-ie .row.medium-unstack>.columns,.row.medium-unstack>.column,.row.medium-unstack>.columns{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}.browser-ie .medium-collapse>.columns,.medium-collapse>.column,.medium-collapse>.columns{padding-right:0;padding-left:0}.browser-ie .medium-uncollapse>.columns,.medium-uncollapse>.column,.medium-uncollapse>.columns{padding-right:.9375rem;padding-left:.9375rem}}@media print,screen and (min-width:64em){.large-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.large-2,.large-3{-webkit-box-flex:0}.large-offset-0{margin-left:0}.large-2{-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.large-offset-1{margin-left:8.33333%}.large-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.large-4,.large-5{-webkit-box-flex:0}.large-offset-2{margin-left:16.66667%}.large-4{-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.large-offset-3{margin-left:25%}.large-5{-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.large-6,.large-7{-webkit-box-flex:0}.large-offset-4{margin-left:33.33333%}.large-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.large-offset-5{margin-left:41.66667%}.large-7{-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.large-8,.large-9{-webkit-box-flex:0}.large-offset-6{margin-left:50%}.large-8{-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.large-offset-7{margin-left:58.33333%}.large-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.large-offset-8{margin-left:66.66667%}.large-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.large-offset-9{margin-left:75%}.large-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.large-offset-10{margin-left:83.33333%}.large-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.large-offset-11{margin-left:91.66667%}.large-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.large-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.large-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.large-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.large-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.large-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.large-up-1{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-1>.columns,.large-up-1>.column,.large-up-1>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.large-up-2{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-2>.columns,.large-up-2>.column,.large-up-2>.columns{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.large-up-3{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-3>.columns,.large-up-3>.column,.large-up-3>.columns{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.large-up-4{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-4>.columns,.large-up-4>.column,.large-up-4>.columns{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.large-up-5{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-5>.columns,.large-up-5>.column,.large-up-5>.columns{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.large-up-6{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-6>.columns,.large-up-6>.column,.large-up-6>.columns{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.large-up-7{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-7>.columns,.large-up-7>.column,.large-up-7>.columns{-webkit-box-flex:0;-ms-flex:0 0 14.28571%;flex:0 0 14.28571%;max-width:14.28571%}.large-up-8{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-8>.columns,.large-up-8>.column,.large-up-8>.columns{-webkit-box-flex:0;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}}@media print,screen and (min-width:64em) and (min-width:64em){.large-expand{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}}@media print,screen and (min-width:64em){.large-flex-dir-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.large-flex-dir-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.large-flex-dir-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.large-flex-dir-column-reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.large-flex-child-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.large-flex-child-grow{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.large-flex-child-shrink{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}}.browser-ie .row.large-unstack>.columns,.row.large-unstack>.column,.row.large-unstack>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}@media print,screen and (min-width:64em){.browser-ie .row.large-unstack>.columns,.row.large-unstack>.column,.row.large-unstack>.columns{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}.browser-ie .large-collapse>.columns,.large-collapse>.column,.large-collapse>.columns{padding-right:0;padding-left:0}.browser-ie .large-uncollapse>.columns,.large-uncollapse>.column,.large-uncollapse>.columns{padding-right:.9375rem;padding-left:.9375rem}}.shrink{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%}.column-block{margin-bottom:1.25rem}.column-block>:last-child{margin-bottom:0}.align-right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.align-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.align-justify{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.align-spaced{-ms-flex-pack:distribute;justify-content:space-around}.align-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.align-self-top{-ms-flex-item-align:start;align-self:flex-start}.align-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.align-self-bottom{-ms-flex-item-align:end;align-self:flex-end}.align-middle{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.align-self-middle{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.align-stretch{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.align-self-stretch{-ms-flex-item-align:stretch;-ms-grid-row-align:stretch;align-self:stretch}.small-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.small-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.small-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.small-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.small-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.small-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}@media print,screen and (min-width:40em){.column-block{margin-bottom:1.875rem}.column-block>:last-child{margin-bottom:0}.medium-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.medium-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.medium-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.medium-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.medium-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.medium-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}}.has-tip{position:relative;display:inline-block;border-bottom:dotted 1px #8a8a8a;cursor:help}.tooltip{top:calc(100% + .6495rem);z-index:1200;max-width:10rem;padding:.75rem;border-radius:0;background-color:#0a0a0a;font-size:80%;color:#fefefe}.section-fullwidth.text-white,.section-fullwidth.text-white a{color:#fff}.tooltip::before{display:block;width:0;height:0;border:.75rem inset;content:'';border-top-width:0;border-bottom-style:solid;border-color:transparent transparent #0a0a0a;position:absolute;bottom:100%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltip.left::before,.tooltip.right::before,.tooltip.top::before{display:block;width:0;height:0;content:'';bottom:auto}.tooltip.top::before{border:.75rem inset;border-bottom-width:0;border-top-style:solid;border-color:#0a0a0a transparent transparent;top:100%}.tooltip.left::before{border:.75rem inset;border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #0a0a0a;top:50%;left:100%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.tooltip.right::before{border:.75rem inset;border-left-width:0;border-right-style:solid;border-color:transparent #0a0a0a transparent transparent;top:50%;right:100%;left:auto;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.browser-ie .row{max-width:1200px;margin-right:auto;margin-left:auto}.browser-ie .row.expanded,.browser-ie .row:not(.expanded) .row{max-width:none}.browser-ie .row::after,.browser-ie .row::before{display:table;content:' '}.browser-ie .row.collapse>.column,.browser-ie .row.collapse>.columns{padding-right:0;padding-left:0}.browser-ie .row .row{margin-right:-.625rem;margin-left:-.625rem}@media print,screen and (min-width:40em){.browser-ie .row .row{margin-right:-.9375rem;margin-left:-.9375rem}}@media print,screen and (min-width:64em){.large-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.large-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.large-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.large-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.large-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.large-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.browser-ie .row .row{margin-right:-.9375rem;margin-left:-.9375rem}}.browser-ie .row .row.collapse{margin-right:0;margin-left:0}.browser-ie .row.expanded .row{margin-right:auto;margin-left:auto}.browser-ie .row.gutter-small>.column,.browser-ie .row.gutter-small>.columns{padding-right:.625rem;padding-left:.625rem}.browser-ie .row.gutter-medium>.column,.browser-ie .row.gutter-medium>.columns{padding-right:.9375rem;padding-left:.9375rem}.browser-ie .column,.browser-ie .columns{width:100%;float:left;padding-right:.625rem;padding-left:.625rem}@media print,screen and (min-width:40em){.browser-ie .column,.browser-ie .columns{padding-right:.9375rem;padding-left:.9375rem}}.browser-ie .column:last-child:not(:first-child),.browser-ie .columns:last-child:not(:first-child){float:right}.browser-ie .column.end:last-child:last-child,.browser-ie .end.columns:last-child:last-child{float:left}.browser-ie .column.row.row,.browser-ie .row.row.columns{float:none}.browser-ie .row .column.row.row,.browser-ie .row .row.row.columns{margin-right:0;margin-left:0;padding-right:0;padding-left:0}.browser-ie .small-1{width:8.33333%}.browser-ie .small-push-1{position:relative;left:8.33333%}.browser-ie .small-pull-1{position:relative;left:-8.33333%}.browser-ie .small-offset-0{margin-left:0}.browser-ie .small-2{width:16.66667%}.browser-ie .small-push-2{position:relative;left:16.66667%}.browser-ie .small-pull-2{position:relative;left:-16.66667%}.browser-ie .small-offset-1{margin-left:8.33333%}.browser-ie .small-3{width:25%}.browser-ie .small-push-3{position:relative;left:25%}.browser-ie .small-pull-3{position:relative;left:-25%}.browser-ie .small-offset-2{margin-left:16.66667%}.browser-ie .small-4{width:33.33333%}.browser-ie .small-push-4{position:relative;left:33.33333%}.browser-ie .small-pull-4{position:relative;left:-33.33333%}.browser-ie .small-offset-3{margin-left:25%}.browser-ie .small-5{width:41.66667%}.browser-ie .small-push-5{position:relative;left:41.66667%}.browser-ie .small-pull-5{position:relative;left:-41.66667%}.browser-ie .small-offset-4{margin-left:33.33333%}.browser-ie .small-6{width:50%}.browser-ie .small-push-6{position:relative;left:50%}.browser-ie .small-pull-6{position:relative;left:-50%}.browser-ie .small-offset-5{margin-left:41.66667%}.browser-ie .small-7{width:58.33333%}.browser-ie .small-push-7{position:relative;left:58.33333%}.browser-ie .small-pull-7{position:relative;left:-58.33333%}.browser-ie .small-offset-6{margin-left:50%}.browser-ie .small-8{width:66.66667%}.browser-ie .small-push-8{position:relative;left:66.66667%}.browser-ie .small-pull-8{position:relative;left:-66.66667%}.browser-ie .small-offset-7{margin-left:58.33333%}.browser-ie .small-9{width:75%}.browser-ie .small-push-9{position:relative;left:75%}.browser-ie .small-pull-9{position:relative;left:-75%}.browser-ie .small-offset-8{margin-left:66.66667%}.browser-ie .small-10{width:83.33333%}.browser-ie .small-push-10{position:relative;left:83.33333%}.browser-ie .small-pull-10{position:relative;left:-83.33333%}.browser-ie .small-offset-9{margin-left:75%}.browser-ie .small-11{width:91.66667%}.browser-ie .small-push-11{position:relative;left:91.66667%}.browser-ie .small-pull-11{position:relative;left:-91.66667%}.browser-ie .small-offset-10{margin-left:83.33333%}.browser-ie .small-12{width:100%}.browser-ie .small-offset-11{margin-left:91.66667%}.browser-ie .small-up-1>.column,.browser-ie .small-up-1>.columns{float:left;width:100%}.browser-ie .small-up-1>.column:nth-of-type(1n),.browser-ie .small-up-1>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-1>.column:nth-of-type(1n+1),.browser-ie .small-up-1>.columns:nth-of-type(1n+1){clear:both}.browser-ie .small-up-1>.column:last-child,.browser-ie .small-up-1>.columns:last-child{float:left}.browser-ie .small-up-2>.column,.browser-ie .small-up-2>.columns{float:left;width:50%}.browser-ie .small-up-2>.column:nth-of-type(1n),.browser-ie .small-up-2>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-2>.column:nth-of-type(2n+1),.browser-ie .small-up-2>.columns:nth-of-type(2n+1){clear:both}.browser-ie .small-up-2>.column:last-child,.browser-ie .small-up-2>.columns:last-child{float:left}.browser-ie .small-up-3>.column,.browser-ie .small-up-3>.columns{float:left;width:33.33333%}.browser-ie .small-up-3>.column:nth-of-type(1n),.browser-ie .small-up-3>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-3>.column:nth-of-type(3n+1),.browser-ie .small-up-3>.columns:nth-of-type(3n+1){clear:both}.browser-ie .small-up-3>.column:last-child,.browser-ie .small-up-3>.columns:last-child{float:left}.browser-ie .small-up-4>.column,.browser-ie .small-up-4>.columns{float:left;width:25%}.browser-ie .small-up-4>.column:nth-of-type(1n),.browser-ie .small-up-4>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-4>.column:nth-of-type(4n+1),.browser-ie .small-up-4>.columns:nth-of-type(4n+1){clear:both}.browser-ie .small-up-4>.column:last-child,.browser-ie .small-up-4>.columns:last-child{float:left}.browser-ie .small-up-5>.column,.browser-ie .small-up-5>.columns{float:left;width:20%}.browser-ie .small-up-5>.column:nth-of-type(1n),.browser-ie .small-up-5>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-5>.column:nth-of-type(5n+1),.browser-ie .small-up-5>.columns:nth-of-type(5n+1){clear:both}.browser-ie .small-up-5>.column:last-child,.browser-ie .small-up-5>.columns:last-child{float:left}.browser-ie .small-up-6>.column,.browser-ie .small-up-6>.columns{float:left;width:16.66667%}.browser-ie .small-up-6>.column:nth-of-type(1n),.browser-ie .small-up-6>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-6>.column:nth-of-type(6n+1),.browser-ie .small-up-6>.columns:nth-of-type(6n+1){clear:both}.browser-ie .small-up-6>.column:last-child,.browser-ie .small-up-6>.columns:last-child{float:left}.browser-ie .small-up-7>.column,.browser-ie .small-up-7>.columns{float:left;width:14.28571%}.browser-ie .small-up-7>.column:nth-of-type(1n),.browser-ie .small-up-7>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-7>.column:nth-of-type(7n+1),.browser-ie .small-up-7>.columns:nth-of-type(7n+1){clear:both}.browser-ie .small-up-7>.column:last-child,.browser-ie .small-up-7>.columns:last-child{float:left}.browser-ie .small-up-8>.column,.browser-ie .small-up-8>.columns{float:left;width:12.5%}.browser-ie .small-up-8>.column:nth-of-type(1n),.browser-ie .small-up-8>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-8>.column:nth-of-type(8n+1),.browser-ie .small-up-8>.columns:nth-of-type(8n+1){clear:both}.browser-ie .small-up-8>.column:last-child,.browser-ie .small-up-8>.columns:last-child{float:left}.browser-ie .small-collapse>.column,.browser-ie .small-collapse>.columns{padding-right:0;padding-left:0}.browser-ie .expanded.row .small-collapse.row,.browser-ie .small-collapse .row{margin-right:0;margin-left:0}.browser-ie .small-uncollapse>.column,.browser-ie .small-uncollapse>.columns{padding-right:.625rem;padding-left:.625rem}.browser-ie .small-centered{margin-right:auto;margin-left:auto}.browser-ie .small-centered,.browser-ie .small-centered:last-child:not(:first-child){float:none;clear:both}.browser-ie .small-pull-0,.browser-ie .small-push-0,.browser-ie .small-uncentered{position:static;float:left;margin-right:0;margin-left:0}@media print,screen and (min-width:40em){.browser-ie .medium-1{width:8.33333%}.browser-ie .medium-push-1{position:relative;left:8.33333%}.browser-ie .medium-pull-1{position:relative;left:-8.33333%}.browser-ie .medium-offset-0{margin-left:0}.browser-ie .medium-2{width:16.66667%}.browser-ie .medium-push-2{position:relative;left:16.66667%}.browser-ie .medium-pull-2{position:relative;left:-16.66667%}.browser-ie .medium-offset-1{margin-left:8.33333%}.browser-ie .medium-3{width:25%}.browser-ie .medium-push-3{position:relative;left:25%}.browser-ie .medium-pull-3{position:relative;left:-25%}.browser-ie .medium-offset-2{margin-left:16.66667%}.browser-ie .medium-4{width:33.33333%}.browser-ie .medium-push-4{position:relative;left:33.33333%}.browser-ie .medium-pull-4{position:relative;left:-33.33333%}.browser-ie .medium-offset-3{margin-left:25%}.browser-ie .medium-5{width:41.66667%}.browser-ie .medium-push-5{position:relative;left:41.66667%}.browser-ie .medium-pull-5{position:relative;left:-41.66667%}.browser-ie .medium-offset-4{margin-left:33.33333%}.browser-ie .medium-6{width:50%}.browser-ie .medium-push-6{position:relative;left:50%}.browser-ie .medium-pull-6{position:relative;left:-50%}.browser-ie .medium-offset-5{margin-left:41.66667%}.browser-ie .medium-7{width:58.33333%}.browser-ie .medium-push-7{position:relative;left:58.33333%}.browser-ie .medium-pull-7{position:relative;left:-58.33333%}.browser-ie .medium-offset-6{margin-left:50%}.browser-ie .medium-8{width:66.66667%}.browser-ie .medium-push-8{position:relative;left:66.66667%}.browser-ie .medium-pull-8{position:relative;left:-66.66667%}.browser-ie .medium-offset-7{margin-left:58.33333%}.browser-ie .medium-9{width:75%}.browser-ie .medium-push-9{position:relative;left:75%}.browser-ie .medium-pull-9{position:relative;left:-75%}.browser-ie .medium-offset-8{margin-left:66.66667%}.browser-ie .medium-10{width:83.33333%}.browser-ie .medium-push-10{position:relative;left:83.33333%}.browser-ie .medium-pull-10{position:relative;left:-83.33333%}.browser-ie .medium-offset-9{margin-left:75%}.browser-ie .medium-11{width:91.66667%}.browser-ie .medium-push-11{position:relative;left:91.66667%}.browser-ie .medium-pull-11{position:relative;left:-91.66667%}.browser-ie .medium-offset-10{margin-left:83.33333%}.browser-ie .medium-12{width:100%}.browser-ie .medium-offset-11{margin-left:91.66667%}.browser-ie .medium-up-1>.column,.browser-ie .medium-up-1>.columns{float:left;width:100%}.browser-ie .medium-up-1>.column:nth-of-type(1n),.browser-ie .medium-up-1>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-1>.column:nth-of-type(1n+1),.browser-ie .medium-up-1>.columns:nth-of-type(1n+1){clear:both}.browser-ie .medium-up-1>.column:last-child,.browser-ie .medium-up-1>.columns:last-child{float:left}.browser-ie .medium-up-2>.column,.browser-ie .medium-up-2>.columns{float:left;width:50%}.browser-ie .medium-up-2>.column:nth-of-type(1n),.browser-ie .medium-up-2>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-2>.column:nth-of-type(2n+1),.browser-ie .medium-up-2>.columns:nth-of-type(2n+1){clear:both}.browser-ie .medium-up-2>.column:last-child,.browser-ie .medium-up-2>.columns:last-child{float:left}.browser-ie .medium-up-3>.column,.browser-ie .medium-up-3>.columns{float:left;width:33.33333%}.browser-ie .medium-up-3>.column:nth-of-type(1n),.browser-ie .medium-up-3>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-3>.column:nth-of-type(3n+1),.browser-ie .medium-up-3>.columns:nth-of-type(3n+1){clear:both}.browser-ie .medium-up-3>.column:last-child,.browser-ie .medium-up-3>.columns:last-child{float:left}.browser-ie .medium-up-4>.column,.browser-ie .medium-up-4>.columns{float:left;width:25%}.browser-ie .medium-up-4>.column:nth-of-type(1n),.browser-ie .medium-up-4>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-4>.column:nth-of-type(4n+1),.browser-ie .medium-up-4>.columns:nth-of-type(4n+1){clear:both}.browser-ie .medium-up-4>.column:last-child,.browser-ie .medium-up-4>.columns:last-child{float:left}.browser-ie .medium-up-5>.column,.browser-ie .medium-up-5>.columns{float:left;width:20%}.browser-ie .medium-up-5>.column:nth-of-type(1n),.browser-ie .medium-up-5>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-5>.column:nth-of-type(5n+1),.browser-ie .medium-up-5>.columns:nth-of-type(5n+1){clear:both}.browser-ie .medium-up-5>.column:last-child,.browser-ie .medium-up-5>.columns:last-child{float:left}.browser-ie .medium-up-6>.column,.browser-ie .medium-up-6>.columns{float:left;width:16.66667%}.browser-ie .medium-up-6>.column:nth-of-type(1n),.browser-ie .medium-up-6>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-6>.column:nth-of-type(6n+1),.browser-ie .medium-up-6>.columns:nth-of-type(6n+1){clear:both}.browser-ie .medium-up-6>.column:last-child,.browser-ie .medium-up-6>.columns:last-child{float:left}.browser-ie .medium-up-7>.column,.browser-ie .medium-up-7>.columns{float:left;width:14.28571%}.browser-ie .medium-up-7>.column:nth-of-type(1n),.browser-ie .medium-up-7>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-7>.column:nth-of-type(7n+1),.browser-ie .medium-up-7>.columns:nth-of-type(7n+1){clear:both}.browser-ie .medium-up-7>.column:last-child,.browser-ie .medium-up-7>.columns:last-child{float:left}.browser-ie .medium-up-8>.column,.browser-ie .medium-up-8>.columns{float:left;width:12.5%}.browser-ie .medium-up-8>.column:nth-of-type(1n),.browser-ie .medium-up-8>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-8>.column:nth-of-type(8n+1),.browser-ie .medium-up-8>.columns:nth-of-type(8n+1){clear:both}.browser-ie .medium-up-8>.column:last-child,.browser-ie .medium-up-8>.columns:last-child{float:left}.browser-ie .medium-collapse>.column,.browser-ie .medium-collapse>.columns{padding-right:0;padding-left:0}.browser-ie .expanded.row .medium-collapse.row,.browser-ie .medium-collapse .row{margin-right:0;margin-left:0}.browser-ie .medium-uncollapse>.column,.browser-ie .medium-uncollapse>.columns{padding-right:.9375rem;padding-left:.9375rem}.browser-ie .medium-centered{margin-right:auto;margin-left:auto}.browser-ie .medium-centered,.browser-ie .medium-centered:last-child:not(:first-child){float:none;clear:both}.browser-ie .medium-pull-0,.browser-ie .medium-push-0,.browser-ie .medium-uncentered{position:static;float:left;margin-right:0;margin-left:0}}@media print,screen and (min-width:64em){.browser-ie .large-1{width:8.33333%}.browser-ie .large-push-1{position:relative;left:8.33333%}.browser-ie .large-pull-1{position:relative;left:-8.33333%}.browser-ie .large-offset-0{margin-left:0}.browser-ie .large-2{width:16.66667%}.browser-ie .large-push-2{position:relative;left:16.66667%}.browser-ie .large-pull-2{position:relative;left:-16.66667%}.browser-ie .large-offset-1{margin-left:8.33333%}.browser-ie .large-3{width:25%}.browser-ie .large-push-3{position:relative;left:25%}.browser-ie .large-pull-3{position:relative;left:-25%}.browser-ie .large-offset-2{margin-left:16.66667%}.browser-ie .large-4{width:33.33333%}.browser-ie .large-push-4{position:relative;left:33.33333%}.browser-ie .large-pull-4{position:relative;left:-33.33333%}.browser-ie .large-offset-3{margin-left:25%}.browser-ie .large-5{width:41.66667%}.browser-ie .large-push-5{position:relative;left:41.66667%}.browser-ie .large-pull-5{position:relative;left:-41.66667%}.browser-ie .large-offset-4{margin-left:33.33333%}.browser-ie .large-6{width:50%}.browser-ie .large-push-6{position:relative;left:50%}.browser-ie .large-pull-6{position:relative;left:-50%}.browser-ie .large-offset-5{margin-left:41.66667%}.browser-ie .large-7{width:58.33333%}.browser-ie .large-push-7{position:relative;left:58.33333%}.browser-ie .large-pull-7{position:relative;left:-58.33333%}.browser-ie .large-offset-6{margin-left:50%}.browser-ie .large-8{width:66.66667%}.browser-ie .large-push-8{position:relative;left:66.66667%}.browser-ie .large-pull-8{position:relative;left:-66.66667%}.browser-ie .large-offset-7{margin-left:58.33333%}.browser-ie .large-9{width:75%}.browser-ie .large-push-9{position:relative;left:75%}.browser-ie .large-pull-9{position:relative;left:-75%}.browser-ie .large-offset-8{margin-left:66.66667%}.browser-ie .large-10{width:83.33333%}.browser-ie .large-push-10{position:relative;left:83.33333%}.browser-ie .large-pull-10{position:relative;left:-83.33333%}.browser-ie .large-offset-9{margin-left:75%}.browser-ie .large-11{width:91.66667%}.browser-ie .large-push-11{position:relative;left:91.66667%}.browser-ie .large-pull-11{position:relative;left:-91.66667%}.browser-ie .large-offset-10{margin-left:83.33333%}.browser-ie .large-12{width:100%}.browser-ie .large-offset-11{margin-left:91.66667%}.browser-ie .large-up-1>.column,.browser-ie .large-up-1>.columns{float:left;width:100%}.browser-ie .large-up-1>.column:nth-of-type(1n),.browser-ie .large-up-1>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-1>.column:nth-of-type(1n+1),.browser-ie .large-up-1>.columns:nth-of-type(1n+1){clear:both}.browser-ie .large-up-1>.column:last-child,.browser-ie .large-up-1>.columns:last-child{float:left}.browser-ie .large-up-2>.column,.browser-ie .large-up-2>.columns{float:left;width:50%}.browser-ie .large-up-2>.column:nth-of-type(1n),.browser-ie .large-up-2>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-2>.column:nth-of-type(2n+1),.browser-ie .large-up-2>.columns:nth-of-type(2n+1){clear:both}.browser-ie .large-up-2>.column:last-child,.browser-ie .large-up-2>.columns:last-child{float:left}.browser-ie .large-up-3>.column,.browser-ie .large-up-3>.columns{float:left;width:33.33333%}.browser-ie .large-up-3>.column:nth-of-type(1n),.browser-ie .large-up-3>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-3>.column:nth-of-type(3n+1),.browser-ie .large-up-3>.columns:nth-of-type(3n+1){clear:both}.browser-ie .large-up-3>.column:last-child,.browser-ie .large-up-3>.columns:last-child{float:left}.browser-ie .large-up-4>.column,.browser-ie .large-up-4>.columns{float:left;width:25%}.browser-ie .large-up-4>.column:nth-of-type(1n),.browser-ie .large-up-4>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-4>.column:nth-of-type(4n+1),.browser-ie .large-up-4>.columns:nth-of-type(4n+1){clear:both}.browser-ie .large-up-4>.column:last-child,.browser-ie .large-up-4>.columns:last-child{float:left}.browser-ie .large-up-5>.column,.browser-ie .large-up-5>.columns{float:left;width:20%}.browser-ie .large-up-5>.column:nth-of-type(1n),.browser-ie .large-up-5>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-5>.column:nth-of-type(5n+1),.browser-ie .large-up-5>.columns:nth-of-type(5n+1){clear:both}.browser-ie .large-up-5>.column:last-child,.browser-ie .large-up-5>.columns:last-child{float:left}.browser-ie .large-up-6>.column,.browser-ie .large-up-6>.columns{float:left;width:16.66667%}.browser-ie .large-up-6>.column:nth-of-type(1n),.browser-ie .large-up-6>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-6>.column:nth-of-type(6n+1),.browser-ie .large-up-6>.columns:nth-of-type(6n+1){clear:both}.browser-ie .large-up-6>.column:last-child,.browser-ie .large-up-6>.columns:last-child{float:left}.browser-ie .large-up-7>.column,.browser-ie .large-up-7>.columns{float:left;width:14.28571%}.browser-ie .large-up-7>.column:nth-of-type(1n),.browser-ie .large-up-7>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-7>.column:nth-of-type(7n+1),.browser-ie .large-up-7>.columns:nth-of-type(7n+1){clear:both}.browser-ie .large-up-7>.column:last-child,.browser-ie .large-up-7>.columns:last-child{float:left}.browser-ie .large-up-8>.column,.browser-ie .large-up-8>.columns{float:left;width:12.5%}.browser-ie .large-up-8>.column:nth-of-type(1n),.browser-ie .large-up-8>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-8>.column:nth-of-type(8n+1),.browser-ie .large-up-8>.columns:nth-of-type(8n+1){clear:both}.browser-ie .large-up-8>.column:last-child,.browser-ie .large-up-8>.columns:last-child{float:left}.browser-ie .large-collapse>.column,.browser-ie .large-collapse>.columns{padding-right:0;padding-left:0}.browser-ie .expanded.row .large-collapse.row,.browser-ie .large-collapse .row{margin-right:0;margin-left:0}.browser-ie .large-uncollapse>.column,.browser-ie .large-uncollapse>.columns{padding-right:.9375rem;padding-left:.9375rem}.browser-ie .large-centered{margin-right:auto;margin-left:auto}.browser-ie .large-centered,.browser-ie .large-centered:last-child:not(:first-child){float:none;clear:both}.browser-ie .large-pull-0,.browser-ie .large-push-0,.browser-ie .large-uncentered{position:static;float:left;margin-right:0;margin-left:0}}.browser-ie .column-block{margin-bottom:1.25rem}.browser-ie .column-block>:last-child{margin-bottom:0}@media print,screen and (min-width:40em){.browser-ie .column-block{margin-bottom:1.875rem}.browser-ie .column-block>:last-child{margin-bottom:0}}/*! +@charset "UTF-8";input[type=checkbox],input[type=radio],legend,td,th{padding:0}hr,table{width:100%}address,table{margin:0 0 1.5em}pre,textarea{overflow:auto}a,ins,mark{text-decoration:none}.wp-caption,embed,iframe,img,object,pre{max-width:100%}.center-ul,.gallery-item,.wp-caption-text{text-align:center}.browser-ie .row::after,.cb,h1,h2,h3,h4,h5,h6,hr.clear{clear:both}.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent}#content[tabindex="-1"]:focus,.input,.select,a:active,a:hover{outline:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em}mark{color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:1px;border:none;background:#f0f0f0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.text-italic,blockquote,cite,dfn,em,i{font-style:italic}.has-tip,dt{font-weight:700}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0}table{border-collapse:collapse;border-spacing:0}meta.foundation-data-attribute-namespace{font-family:false}body,button,input,select,textarea{color:#404040;font-family:sans-serif;font-size:16px;font-size:1rem;line-height:1.5}p{margin-bottom:1.5em}blockquote{margin:0 1.5em}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;font-size:15px;font-size:.9375rem;line-height:1.6;margin-bottom:1.6em;padding:1.6em}code,kbd,tt,var{font-family:Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;font-size:15px;font-size:.9375rem}body,h1,h2,h3,h4,h5{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:0}abbr,acronym{border-bottom:1px dotted #666;cursor:help}ins,mark{background:#fff9c0}big{font-size:125%}dd{margin:0 1.5em 1.5em}html{box-sizing:border-box;-webkit-font-smoothing:antialiased}*,:after,:before{box-sizing:inherit}body.admin-bar{padding-top:32px}@media (max-width:782px){body.admin-bar{padding-top:46px}}body{font-size:16px;line-height:1.7;background:#fff}p:first-child{margin-top:0}p:last-child{margin-bottom:0}h1,h2,h3,h4,h5{line-height:1.2}img.alignright{margin:20px 0 20px 20px}img.alignleft{margin:20px 20px 20px 0}img.aligncenter{margin:20px auto}img{border:0;height:auto;margin-bottom:-8px}.bypostauthor,.sticky{display:block}.alignleft{display:inline;float:left;margin-right:1.5em}.alignright,.float-right{float:right}.alignright{display:inline;margin-left:1.5em}.aligncenter{clear:both;display:block;margin-left:auto;margin-right:auto}ol,ul{margin:0;padding:0;list-style-type:none}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}.wp-caption{margin-bottom:1.5em}.wp-caption img[class*=wp-image-]{display:block;margin-left:auto;margin-right:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.gallery{margin-bottom:1.5em}.gallery-item{display:inline-block;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}.center-ul>ul{display:inline-block}.float-left{float:left}.flost-none,.no-float{float:none}.is-hidden{display:none}hr.clear{border:none;background:0 0}.text-right{text-align:right}.text-left{text-align:left}.text-center{text-align:center}.text-uppercase{text-transform:uppercase}.text-white,.text-white a,.text-white a:hover,.text-white h1,.text-white h2,.text-white h3,.text-white h4,.text-white h5,.text-white h6{color:#fff}.truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mt-0{margin-top:0!important}.mt-10{margin-top:10px}.mt-20{margin-top:20px}.mt-30{margin-top:30px}.mt-40{margin-top:40px}.mt-50{margin-top:50px}.mt-60{margin-top:60px}.mt-70{margin-top:70px}.mt-80{margin-top:80px}.mt-90{margin-top:90px}.mt-100{margin-top:100px}.mb-0{margin-bottom:0!important}.mb-10{margin-bottom:10px}.mb-20{margin-bottom:20px}.mb-30{margin-bottom:30px}.mb-40{margin-bottom:40px}.mb-50{margin-bottom:50px}.mb-60{margin-bottom:60px}.mb-70{margin-bottom:70px}.mb-80{margin-bottom:80px}.mb-90{margin-bottom:90px}.mb-100{margin-bottom:100px}.position-initial{position:initial}.dxstarter-styleguide hr{margin:40px 0}.dxstarter-styleguide .theme-colors{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -10px}.dxstarter-styleguide .section-title{border-bottom:1px solid #f0f0f0;margin-bottom:40px;padding-bottom:20px;margin-top:100px}.dxstarter-styleguide .page-header{margin-top:50px;font-size:48px;color:#000}.dxstarter-styleguide .colorbox{display:inline-block;margin:10px;max-width:calc(10% - 20px);width:100%}@media (max-width:640px){.dxstarter-styleguide .colorbox{max-width:calc(50% - 20px)}}.dxstarter-styleguide .colorbox>*{opacity:.2}.dxstarter-styleguide .color-accent>*,.dxstarter-styleguide .color-primary-dark>*,.dxstarter-styleguide .color-primary>*,.dxstarter-styleguide .color-secondary>*{opacity:1}.dxstarter-styleguide .colorbox .color{padding-bottom:100%}.dxstarter-styleguide .colorbox .name{font-size:13px}.dxstarter-styleguide .label{text-transform:uppercase;margin:20px 0;display:block}.dxstarter-styleguide .color-primary .color{background-color:#4072db}.dxstarter-styleguide .color-primary-dark .color{background-color:#3f3f75}.dxstarter-styleguide .color-secondary .color{background-color:#5ea54d}.dxstarter-styleguide .color-accent .color{background-color:#ff4902}.responsive-image{overflow:hidden;padding-bottom:75%;width:100%;height:0;display:inline-block;position:relative;margin-bottom:-8px;background:#f8f8f8}.responsive-image img{display:block;width:100%;height:100%;position:absolute}.column.row.row,.row,.row.row.columns{display:-webkit-box;display:-ms-flexbox}.responsive-image.ratio-16-9{padding-bottom:56.25%}.responsive-image.ratio-16-10{padding-bottom:62.5%}.responsive-image.ratio-11-8{padding-bottom:72.72727%}.responsive-image.ratio-3-2{padding-bottom:66.66667%}.responsive-image.ratio-1-1{padding-bottom:100%}.responsive-image.ratio-golden{padding-bottom:61.8047%}.responsive-image.ratio-silver{padding-bottom:41.42502%}.responsive-image.radius-3{border-radius:3px}.responsive-image.radius-5{border-radius:5px}.responsive-image.radius-10{border-radius:10px}.responsive-image.radius-20{border-radius:20x}.responsive-image.radius-circle{border-radius:50%}.row{max-width:1200px;margin-right:auto;margin-left:auto;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.row .row{margin-right:-.625rem;margin-left:-.625rem}@media print,screen and (min-width:40em){.row .row{margin-right:-.9375rem;margin-left:-.9375rem}}@media print,screen and (min-width:64em){.row .row{margin-right:-.9375rem;margin-left:-.9375rem}}.browser-ie .row.collapse>.columns>.row,.row .row.collapse,.row.collapse>.column>.row,.row.collapse>.columns>.row,.row.is-collapse-child{margin-right:0;margin-left:0}.row.expanded,.row:not(.expanded) .row{max-width:none}.browser-ie .row.collapse>.columns,.row.collapse>.column,.row.collapse>.columns{padding-right:0;padding-left:0}.browser-ie .columns,.column,.columns{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px;padding-right:.625rem;padding-left:.625rem;min-width:initial}@media print,screen and (min-width:40em){.browser-ie .columns,.column,.columns{padding-right:.9375rem;padding-left:.9375rem}}.column.row.row,.row.row.columns{display:flex}.row .column.row.row,.row .row.row.columns{margin-right:0;margin-left:0;padding-right:0;padding-left:0}.flex-container{display:-webkit-box;display:-ms-flexbox;display:flex}.flex-child-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.flex-child-grow{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.flex-child-shrink{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.flex-dir-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.flex-dir-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.flex-dir-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.flex-dir-column-reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.small-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.small-2,.small-3{-webkit-box-flex:0}.small-offset-0{margin-left:0}.small-2{-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.small-offset-1{margin-left:8.33333%}.small-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.small-4,.small-5{-webkit-box-flex:0}.small-offset-2{margin-left:16.66667%}.small-4{-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.small-offset-3{margin-left:25%}.small-5{-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.small-6,.small-7{-webkit-box-flex:0}.small-offset-4{margin-left:33.33333%}.small-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.small-offset-5{margin-left:41.66667%}.small-7{-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.small-8,.small-9{-webkit-box-flex:0}.small-offset-6{margin-left:50%}.small-8{-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.small-offset-7{margin-left:58.33333%}.small-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.small-offset-8{margin-left:66.66667%}.small-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.small-offset-9{margin-left:75%}.small-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.small-offset-10{margin-left:83.33333%}.small-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.small-offset-11{margin-left:91.66667%}.small-up-1{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-1>.columns,.small-up-1>.column,.small-up-1>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.small-up-2{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-2>.columns,.small-up-2>.column,.small-up-2>.columns{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.small-up-3{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-3>.columns,.small-up-3>.column,.small-up-3>.columns{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.small-up-4{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-4>.columns,.small-up-4>.column,.small-up-4>.columns{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.small-up-5{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-5>.columns,.small-up-5>.column,.small-up-5>.columns{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.small-up-6{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-6>.columns,.small-up-6>.column,.small-up-6>.columns{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.small-up-7{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-7>.columns,.small-up-7>.column,.small-up-7>.columns{-webkit-box-flex:0;-ms-flex:0 0 14.28571%;flex:0 0 14.28571%;max-width:14.28571%}.small-up-8{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .small-up-8>.columns,.small-up-8>.column,.small-up-8>.columns{-webkit-box-flex:0;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}.browser-ie .small-collapse>.columns,.small-collapse>.column,.small-collapse>.columns{padding-right:0;padding-left:0}.browser-ie .small-uncollapse>.columns,.small-uncollapse>.column,.small-uncollapse>.columns{padding-right:.625rem;padding-left:.625rem}@media print,screen and (min-width:40em){.medium-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.medium-offset-0{margin-left:0}.medium-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.medium-offset-1{margin-left:8.33333%}.medium-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.medium-offset-2{margin-left:16.66667%}.medium-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.medium-offset-3{margin-left:25%}.medium-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.medium-offset-4{margin-left:33.33333%}.medium-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.medium-offset-5{margin-left:41.66667%}.medium-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.medium-offset-6{margin-left:50%}.medium-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.medium-offset-7{margin-left:58.33333%}.medium-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.medium-offset-8{margin-left:66.66667%}.medium-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.medium-offset-9{margin-left:75%}.medium-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.medium-offset-10{margin-left:83.33333%}.medium-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.medium-offset-11{margin-left:91.66667%}.medium-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.medium-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.medium-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.medium-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.medium-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.medium-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.medium-up-1{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-1>.columns,.medium-up-1>.column,.medium-up-1>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.medium-up-2{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-2>.columns,.medium-up-2>.column,.medium-up-2>.columns{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.medium-up-3{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-3>.columns,.medium-up-3>.column,.medium-up-3>.columns{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.medium-up-4{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-4>.columns,.medium-up-4>.column,.medium-up-4>.columns{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.medium-up-5{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-5>.columns,.medium-up-5>.column,.medium-up-5>.columns{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.medium-up-6{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-6>.columns,.medium-up-6>.column,.medium-up-6>.columns{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.medium-up-7{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-7>.columns,.medium-up-7>.column,.medium-up-7>.columns{-webkit-box-flex:0;-ms-flex:0 0 14.28571%;flex:0 0 14.28571%;max-width:14.28571%}.medium-up-8{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .medium-up-8>.columns,.medium-up-8>.column,.medium-up-8>.columns{-webkit-box-flex:0;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}}@media print,screen and (min-width:40em) and (min-width:40em){.medium-expand{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}}@media print,screen and (min-width:40em){.medium-flex-dir-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.medium-flex-dir-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.medium-flex-dir-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.medium-flex-dir-column-reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.medium-flex-child-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.medium-flex-child-grow{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.medium-flex-child-shrink{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}}.browser-ie .row.medium-unstack>.columns,.row.medium-unstack>.column,.row.medium-unstack>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}@media print,screen and (min-width:40em){.browser-ie .row.medium-unstack>.columns,.row.medium-unstack>.column,.row.medium-unstack>.columns{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}.browser-ie .medium-collapse>.columns,.medium-collapse>.column,.medium-collapse>.columns{padding-right:0;padding-left:0}.browser-ie .medium-uncollapse>.columns,.medium-uncollapse>.column,.medium-uncollapse>.columns{padding-right:.9375rem;padding-left:.9375rem}}@media print,screen and (min-width:64em){.large-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.large-2,.large-3{-webkit-box-flex:0}.large-offset-0{margin-left:0}.large-2{-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.large-offset-1{margin-left:8.33333%}.large-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.large-4,.large-5{-webkit-box-flex:0}.large-offset-2{margin-left:16.66667%}.large-4{-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.large-offset-3{margin-left:25%}.large-5{-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.large-6,.large-7{-webkit-box-flex:0}.large-offset-4{margin-left:33.33333%}.large-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.large-offset-5{margin-left:41.66667%}.large-7{-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.large-8,.large-9{-webkit-box-flex:0}.large-offset-6{margin-left:50%}.large-8{-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.large-offset-7{margin-left:58.33333%}.large-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.large-offset-8{margin-left:66.66667%}.large-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.large-offset-9{margin-left:75%}.large-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.large-offset-10{margin-left:83.33333%}.large-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.large-offset-11{margin-left:91.66667%}.large-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.large-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.large-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.large-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.large-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.large-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.large-up-1{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-1>.columns,.large-up-1>.column,.large-up-1>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.large-up-2{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-2>.columns,.large-up-2>.column,.large-up-2>.columns{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.large-up-3{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-3>.columns,.large-up-3>.column,.large-up-3>.columns{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.large-up-4{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-4>.columns,.large-up-4>.column,.large-up-4>.columns{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.large-up-5{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-5>.columns,.large-up-5>.column,.large-up-5>.columns{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.large-up-6{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-6>.columns,.large-up-6>.column,.large-up-6>.columns{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.large-up-7{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-7>.columns,.large-up-7>.column,.large-up-7>.columns{-webkit-box-flex:0;-ms-flex:0 0 14.28571%;flex:0 0 14.28571%;max-width:14.28571%}.large-up-8{-ms-flex-wrap:wrap;flex-wrap:wrap}.browser-ie .large-up-8>.columns,.large-up-8>.column,.large-up-8>.columns{-webkit-box-flex:0;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}}@media print,screen and (min-width:64em) and (min-width:64em){.large-expand{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}}@media print,screen and (min-width:64em){.large-flex-dir-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.large-flex-dir-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.large-flex-dir-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.large-flex-dir-column-reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.large-flex-child-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.large-flex-child-grow{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.large-flex-child-shrink{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}}.browser-ie .row.large-unstack>.columns,.row.large-unstack>.column,.row.large-unstack>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}@media print,screen and (min-width:64em){.browser-ie .row.large-unstack>.columns,.row.large-unstack>.column,.row.large-unstack>.columns{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}.browser-ie .large-collapse>.columns,.large-collapse>.column,.large-collapse>.columns{padding-right:0;padding-left:0}.browser-ie .large-uncollapse>.columns,.large-uncollapse>.column,.large-uncollapse>.columns{padding-right:.9375rem;padding-left:.9375rem}}.shrink{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%}.column-block{margin-bottom:1.25rem}.column-block>:last-child{margin-bottom:0}.align-right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.align-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.align-justify{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.align-spaced{-ms-flex-pack:distribute;justify-content:space-around}.align-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.align-self-top{-ms-flex-item-align:start;align-self:flex-start}.align-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.align-self-bottom{-ms-flex-item-align:end;align-self:flex-end}.align-middle{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.align-self-middle{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.align-stretch{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.align-self-stretch{-ms-flex-item-align:stretch;-ms-grid-row-align:stretch;align-self:stretch}.small-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.small-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.small-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.small-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.small-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.small-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}@media print,screen and (min-width:40em){.column-block{margin-bottom:1.875rem}.column-block>:last-child{margin-bottom:0}.medium-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.medium-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.medium-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.medium-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.medium-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.medium-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}}.has-tip{position:relative;display:inline-block;border-bottom:dotted 1px #8a8a8a;cursor:help}.tooltip{top:calc(100% + .6495rem);z-index:1200;max-width:10rem;padding:.75rem;border-radius:0;background-color:#0a0a0a;font-size:80%;color:#fefefe}.section-fullwidth.text-white,.section-fullwidth.text-white a{color:#fff}.tooltip::before{display:block;width:0;height:0;border:.75rem inset;content:'';border-top-width:0;border-bottom-style:solid;border-color:transparent transparent #0a0a0a;position:absolute;bottom:100%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltip.left::before,.tooltip.right::before,.tooltip.top::before{display:block;width:0;height:0;content:'';bottom:auto}.tooltip.top::before{border:.75rem inset;border-bottom-width:0;border-top-style:solid;border-color:#0a0a0a transparent transparent;top:100%}.tooltip.left::before{border:.75rem inset;border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #0a0a0a;top:50%;left:100%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.tooltip.right::before{border:.75rem inset;border-left-width:0;border-right-style:solid;border-color:transparent #0a0a0a transparent transparent;top:50%;right:100%;left:auto;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.browser-ie .row{max-width:1200px;margin-right:auto;margin-left:auto}.browser-ie .row.expanded,.browser-ie .row:not(.expanded) .row{max-width:none}.browser-ie .row::after,.browser-ie .row::before{display:table;content:' '}.browser-ie .row.collapse>.column,.browser-ie .row.collapse>.columns{padding-right:0;padding-left:0}.browser-ie .row .row{margin-right:-.625rem;margin-left:-.625rem}@media print,screen and (min-width:40em){.browser-ie .row .row{margin-right:-.9375rem;margin-left:-.9375rem}}@media print,screen and (min-width:64em){.large-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.large-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.large-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.large-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.large-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.large-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.browser-ie .row .row{margin-right:-.9375rem;margin-left:-.9375rem}}.browser-ie .row .row.collapse{margin-right:0;margin-left:0}.browser-ie .row.expanded .row{margin-right:auto;margin-left:auto}.browser-ie .row.gutter-small>.column,.browser-ie .row.gutter-small>.columns{padding-right:.625rem;padding-left:.625rem}.browser-ie .row.gutter-medium>.column,.browser-ie .row.gutter-medium>.columns{padding-right:.9375rem;padding-left:.9375rem}.browser-ie .column,.browser-ie .columns{width:100%;float:left;padding-right:.625rem;padding-left:.625rem}@media print,screen and (min-width:40em){.browser-ie .column,.browser-ie .columns{padding-right:.9375rem;padding-left:.9375rem}}.browser-ie .column:last-child:not(:first-child),.browser-ie .columns:last-child:not(:first-child){float:right}.browser-ie .column.end:last-child:last-child,.browser-ie .end.columns:last-child:last-child{float:left}.browser-ie .column.row.row,.browser-ie .row.row.columns{float:none}.browser-ie .row .column.row.row,.browser-ie .row .row.row.columns{margin-right:0;margin-left:0;padding-right:0;padding-left:0}.browser-ie .small-1{width:8.33333%}.browser-ie .small-push-1{position:relative;left:8.33333%}.browser-ie .small-pull-1{position:relative;left:-8.33333%}.browser-ie .small-offset-0{margin-left:0}.browser-ie .small-2{width:16.66667%}.browser-ie .small-push-2{position:relative;left:16.66667%}.browser-ie .small-pull-2{position:relative;left:-16.66667%}.browser-ie .small-offset-1{margin-left:8.33333%}.browser-ie .small-3{width:25%}.browser-ie .small-push-3{position:relative;left:25%}.browser-ie .small-pull-3{position:relative;left:-25%}.browser-ie .small-offset-2{margin-left:16.66667%}.browser-ie .small-4{width:33.33333%}.browser-ie .small-push-4{position:relative;left:33.33333%}.browser-ie .small-pull-4{position:relative;left:-33.33333%}.browser-ie .small-offset-3{margin-left:25%}.browser-ie .small-5{width:41.66667%}.browser-ie .small-push-5{position:relative;left:41.66667%}.browser-ie .small-pull-5{position:relative;left:-41.66667%}.browser-ie .small-offset-4{margin-left:33.33333%}.browser-ie .small-6{width:50%}.browser-ie .small-push-6{position:relative;left:50%}.browser-ie .small-pull-6{position:relative;left:-50%}.browser-ie .small-offset-5{margin-left:41.66667%}.browser-ie .small-7{width:58.33333%}.browser-ie .small-push-7{position:relative;left:58.33333%}.browser-ie .small-pull-7{position:relative;left:-58.33333%}.browser-ie .small-offset-6{margin-left:50%}.browser-ie .small-8{width:66.66667%}.browser-ie .small-push-8{position:relative;left:66.66667%}.browser-ie .small-pull-8{position:relative;left:-66.66667%}.browser-ie .small-offset-7{margin-left:58.33333%}.browser-ie .small-9{width:75%}.browser-ie .small-push-9{position:relative;left:75%}.browser-ie .small-pull-9{position:relative;left:-75%}.browser-ie .small-offset-8{margin-left:66.66667%}.browser-ie .small-10{width:83.33333%}.browser-ie .small-push-10{position:relative;left:83.33333%}.browser-ie .small-pull-10{position:relative;left:-83.33333%}.browser-ie .small-offset-9{margin-left:75%}.browser-ie .small-11{width:91.66667%}.browser-ie .small-push-11{position:relative;left:91.66667%}.browser-ie .small-pull-11{position:relative;left:-91.66667%}.browser-ie .small-offset-10{margin-left:83.33333%}.browser-ie .small-12{width:100%}.browser-ie .small-offset-11{margin-left:91.66667%}.browser-ie .small-up-1>.column,.browser-ie .small-up-1>.columns{float:left;width:100%}.browser-ie .small-up-1>.column:nth-of-type(1n),.browser-ie .small-up-1>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-1>.column:nth-of-type(1n+1),.browser-ie .small-up-1>.columns:nth-of-type(1n+1){clear:both}.browser-ie .small-up-1>.column:last-child,.browser-ie .small-up-1>.columns:last-child{float:left}.browser-ie .small-up-2>.column,.browser-ie .small-up-2>.columns{float:left;width:50%}.browser-ie .small-up-2>.column:nth-of-type(1n),.browser-ie .small-up-2>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-2>.column:nth-of-type(2n+1),.browser-ie .small-up-2>.columns:nth-of-type(2n+1){clear:both}.browser-ie .small-up-2>.column:last-child,.browser-ie .small-up-2>.columns:last-child{float:left}.browser-ie .small-up-3>.column,.browser-ie .small-up-3>.columns{float:left;width:33.33333%}.browser-ie .small-up-3>.column:nth-of-type(1n),.browser-ie .small-up-3>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-3>.column:nth-of-type(3n+1),.browser-ie .small-up-3>.columns:nth-of-type(3n+1){clear:both}.browser-ie .small-up-3>.column:last-child,.browser-ie .small-up-3>.columns:last-child{float:left}.browser-ie .small-up-4>.column,.browser-ie .small-up-4>.columns{float:left;width:25%}.browser-ie .small-up-4>.column:nth-of-type(1n),.browser-ie .small-up-4>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-4>.column:nth-of-type(4n+1),.browser-ie .small-up-4>.columns:nth-of-type(4n+1){clear:both}.browser-ie .small-up-4>.column:last-child,.browser-ie .small-up-4>.columns:last-child{float:left}.browser-ie .small-up-5>.column,.browser-ie .small-up-5>.columns{float:left;width:20%}.browser-ie .small-up-5>.column:nth-of-type(1n),.browser-ie .small-up-5>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-5>.column:nth-of-type(5n+1),.browser-ie .small-up-5>.columns:nth-of-type(5n+1){clear:both}.browser-ie .small-up-5>.column:last-child,.browser-ie .small-up-5>.columns:last-child{float:left}.browser-ie .small-up-6>.column,.browser-ie .small-up-6>.columns{float:left;width:16.66667%}.browser-ie .small-up-6>.column:nth-of-type(1n),.browser-ie .small-up-6>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-6>.column:nth-of-type(6n+1),.browser-ie .small-up-6>.columns:nth-of-type(6n+1){clear:both}.browser-ie .small-up-6>.column:last-child,.browser-ie .small-up-6>.columns:last-child{float:left}.browser-ie .small-up-7>.column,.browser-ie .small-up-7>.columns{float:left;width:14.28571%}.browser-ie .small-up-7>.column:nth-of-type(1n),.browser-ie .small-up-7>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-7>.column:nth-of-type(7n+1),.browser-ie .small-up-7>.columns:nth-of-type(7n+1){clear:both}.browser-ie .small-up-7>.column:last-child,.browser-ie .small-up-7>.columns:last-child{float:left}.browser-ie .small-up-8>.column,.browser-ie .small-up-8>.columns{float:left;width:12.5%}.browser-ie .small-up-8>.column:nth-of-type(1n),.browser-ie .small-up-8>.columns:nth-of-type(1n){clear:none}.browser-ie .small-up-8>.column:nth-of-type(8n+1),.browser-ie .small-up-8>.columns:nth-of-type(8n+1){clear:both}.browser-ie .small-up-8>.column:last-child,.browser-ie .small-up-8>.columns:last-child{float:left}.browser-ie .small-collapse>.column,.browser-ie .small-collapse>.columns{padding-right:0;padding-left:0}.browser-ie .expanded.row .small-collapse.row,.browser-ie .small-collapse .row{margin-right:0;margin-left:0}.browser-ie .small-uncollapse>.column,.browser-ie .small-uncollapse>.columns{padding-right:.625rem;padding-left:.625rem}.browser-ie .small-centered{margin-right:auto;margin-left:auto}.browser-ie .small-centered,.browser-ie .small-centered:last-child:not(:first-child){float:none;clear:both}.browser-ie .small-pull-0,.browser-ie .small-push-0,.browser-ie .small-uncentered{position:static;float:left;margin-right:0;margin-left:0}@media print,screen and (min-width:40em){.browser-ie .medium-1{width:8.33333%}.browser-ie .medium-push-1{position:relative;left:8.33333%}.browser-ie .medium-pull-1{position:relative;left:-8.33333%}.browser-ie .medium-offset-0{margin-left:0}.browser-ie .medium-2{width:16.66667%}.browser-ie .medium-push-2{position:relative;left:16.66667%}.browser-ie .medium-pull-2{position:relative;left:-16.66667%}.browser-ie .medium-offset-1{margin-left:8.33333%}.browser-ie .medium-3{width:25%}.browser-ie .medium-push-3{position:relative;left:25%}.browser-ie .medium-pull-3{position:relative;left:-25%}.browser-ie .medium-offset-2{margin-left:16.66667%}.browser-ie .medium-4{width:33.33333%}.browser-ie .medium-push-4{position:relative;left:33.33333%}.browser-ie .medium-pull-4{position:relative;left:-33.33333%}.browser-ie .medium-offset-3{margin-left:25%}.browser-ie .medium-5{width:41.66667%}.browser-ie .medium-push-5{position:relative;left:41.66667%}.browser-ie .medium-pull-5{position:relative;left:-41.66667%}.browser-ie .medium-offset-4{margin-left:33.33333%}.browser-ie .medium-6{width:50%}.browser-ie .medium-push-6{position:relative;left:50%}.browser-ie .medium-pull-6{position:relative;left:-50%}.browser-ie .medium-offset-5{margin-left:41.66667%}.browser-ie .medium-7{width:58.33333%}.browser-ie .medium-push-7{position:relative;left:58.33333%}.browser-ie .medium-pull-7{position:relative;left:-58.33333%}.browser-ie .medium-offset-6{margin-left:50%}.browser-ie .medium-8{width:66.66667%}.browser-ie .medium-push-8{position:relative;left:66.66667%}.browser-ie .medium-pull-8{position:relative;left:-66.66667%}.browser-ie .medium-offset-7{margin-left:58.33333%}.browser-ie .medium-9{width:75%}.browser-ie .medium-push-9{position:relative;left:75%}.browser-ie .medium-pull-9{position:relative;left:-75%}.browser-ie .medium-offset-8{margin-left:66.66667%}.browser-ie .medium-10{width:83.33333%}.browser-ie .medium-push-10{position:relative;left:83.33333%}.browser-ie .medium-pull-10{position:relative;left:-83.33333%}.browser-ie .medium-offset-9{margin-left:75%}.browser-ie .medium-11{width:91.66667%}.browser-ie .medium-push-11{position:relative;left:91.66667%}.browser-ie .medium-pull-11{position:relative;left:-91.66667%}.browser-ie .medium-offset-10{margin-left:83.33333%}.browser-ie .medium-12{width:100%}.browser-ie .medium-offset-11{margin-left:91.66667%}.browser-ie .medium-up-1>.column,.browser-ie .medium-up-1>.columns{float:left;width:100%}.browser-ie .medium-up-1>.column:nth-of-type(1n),.browser-ie .medium-up-1>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-1>.column:nth-of-type(1n+1),.browser-ie .medium-up-1>.columns:nth-of-type(1n+1){clear:both}.browser-ie .medium-up-1>.column:last-child,.browser-ie .medium-up-1>.columns:last-child{float:left}.browser-ie .medium-up-2>.column,.browser-ie .medium-up-2>.columns{float:left;width:50%}.browser-ie .medium-up-2>.column:nth-of-type(1n),.browser-ie .medium-up-2>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-2>.column:nth-of-type(2n+1),.browser-ie .medium-up-2>.columns:nth-of-type(2n+1){clear:both}.browser-ie .medium-up-2>.column:last-child,.browser-ie .medium-up-2>.columns:last-child{float:left}.browser-ie .medium-up-3>.column,.browser-ie .medium-up-3>.columns{float:left;width:33.33333%}.browser-ie .medium-up-3>.column:nth-of-type(1n),.browser-ie .medium-up-3>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-3>.column:nth-of-type(3n+1),.browser-ie .medium-up-3>.columns:nth-of-type(3n+1){clear:both}.browser-ie .medium-up-3>.column:last-child,.browser-ie .medium-up-3>.columns:last-child{float:left}.browser-ie .medium-up-4>.column,.browser-ie .medium-up-4>.columns{float:left;width:25%}.browser-ie .medium-up-4>.column:nth-of-type(1n),.browser-ie .medium-up-4>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-4>.column:nth-of-type(4n+1),.browser-ie .medium-up-4>.columns:nth-of-type(4n+1){clear:both}.browser-ie .medium-up-4>.column:last-child,.browser-ie .medium-up-4>.columns:last-child{float:left}.browser-ie .medium-up-5>.column,.browser-ie .medium-up-5>.columns{float:left;width:20%}.browser-ie .medium-up-5>.column:nth-of-type(1n),.browser-ie .medium-up-5>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-5>.column:nth-of-type(5n+1),.browser-ie .medium-up-5>.columns:nth-of-type(5n+1){clear:both}.browser-ie .medium-up-5>.column:last-child,.browser-ie .medium-up-5>.columns:last-child{float:left}.browser-ie .medium-up-6>.column,.browser-ie .medium-up-6>.columns{float:left;width:16.66667%}.browser-ie .medium-up-6>.column:nth-of-type(1n),.browser-ie .medium-up-6>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-6>.column:nth-of-type(6n+1),.browser-ie .medium-up-6>.columns:nth-of-type(6n+1){clear:both}.browser-ie .medium-up-6>.column:last-child,.browser-ie .medium-up-6>.columns:last-child{float:left}.browser-ie .medium-up-7>.column,.browser-ie .medium-up-7>.columns{float:left;width:14.28571%}.browser-ie .medium-up-7>.column:nth-of-type(1n),.browser-ie .medium-up-7>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-7>.column:nth-of-type(7n+1),.browser-ie .medium-up-7>.columns:nth-of-type(7n+1){clear:both}.browser-ie .medium-up-7>.column:last-child,.browser-ie .medium-up-7>.columns:last-child{float:left}.browser-ie .medium-up-8>.column,.browser-ie .medium-up-8>.columns{float:left;width:12.5%}.browser-ie .medium-up-8>.column:nth-of-type(1n),.browser-ie .medium-up-8>.columns:nth-of-type(1n){clear:none}.browser-ie .medium-up-8>.column:nth-of-type(8n+1),.browser-ie .medium-up-8>.columns:nth-of-type(8n+1){clear:both}.browser-ie .medium-up-8>.column:last-child,.browser-ie .medium-up-8>.columns:last-child{float:left}.browser-ie .medium-collapse>.column,.browser-ie .medium-collapse>.columns{padding-right:0;padding-left:0}.browser-ie .expanded.row .medium-collapse.row,.browser-ie .medium-collapse .row{margin-right:0;margin-left:0}.browser-ie .medium-uncollapse>.column,.browser-ie .medium-uncollapse>.columns{padding-right:.9375rem;padding-left:.9375rem}.browser-ie .medium-centered{margin-right:auto;margin-left:auto}.browser-ie .medium-centered,.browser-ie .medium-centered:last-child:not(:first-child){float:none;clear:both}.browser-ie .medium-pull-0,.browser-ie .medium-push-0,.browser-ie .medium-uncentered{position:static;float:left;margin-right:0;margin-left:0}}@media print,screen and (min-width:64em){.browser-ie .large-1{width:8.33333%}.browser-ie .large-push-1{position:relative;left:8.33333%}.browser-ie .large-pull-1{position:relative;left:-8.33333%}.browser-ie .large-offset-0{margin-left:0}.browser-ie .large-2{width:16.66667%}.browser-ie .large-push-2{position:relative;left:16.66667%}.browser-ie .large-pull-2{position:relative;left:-16.66667%}.browser-ie .large-offset-1{margin-left:8.33333%}.browser-ie .large-3{width:25%}.browser-ie .large-push-3{position:relative;left:25%}.browser-ie .large-pull-3{position:relative;left:-25%}.browser-ie .large-offset-2{margin-left:16.66667%}.browser-ie .large-4{width:33.33333%}.browser-ie .large-push-4{position:relative;left:33.33333%}.browser-ie .large-pull-4{position:relative;left:-33.33333%}.browser-ie .large-offset-3{margin-left:25%}.browser-ie .large-5{width:41.66667%}.browser-ie .large-push-5{position:relative;left:41.66667%}.browser-ie .large-pull-5{position:relative;left:-41.66667%}.browser-ie .large-offset-4{margin-left:33.33333%}.browser-ie .large-6{width:50%}.browser-ie .large-push-6{position:relative;left:50%}.browser-ie .large-pull-6{position:relative;left:-50%}.browser-ie .large-offset-5{margin-left:41.66667%}.browser-ie .large-7{width:58.33333%}.browser-ie .large-push-7{position:relative;left:58.33333%}.browser-ie .large-pull-7{position:relative;left:-58.33333%}.browser-ie .large-offset-6{margin-left:50%}.browser-ie .large-8{width:66.66667%}.browser-ie .large-push-8{position:relative;left:66.66667%}.browser-ie .large-pull-8{position:relative;left:-66.66667%}.browser-ie .large-offset-7{margin-left:58.33333%}.browser-ie .large-9{width:75%}.browser-ie .large-push-9{position:relative;left:75%}.browser-ie .large-pull-9{position:relative;left:-75%}.browser-ie .large-offset-8{margin-left:66.66667%}.browser-ie .large-10{width:83.33333%}.browser-ie .large-push-10{position:relative;left:83.33333%}.browser-ie .large-pull-10{position:relative;left:-83.33333%}.browser-ie .large-offset-9{margin-left:75%}.browser-ie .large-11{width:91.66667%}.browser-ie .large-push-11{position:relative;left:91.66667%}.browser-ie .large-pull-11{position:relative;left:-91.66667%}.browser-ie .large-offset-10{margin-left:83.33333%}.browser-ie .large-12{width:100%}.browser-ie .large-offset-11{margin-left:91.66667%}.browser-ie .large-up-1>.column,.browser-ie .large-up-1>.columns{float:left;width:100%}.browser-ie .large-up-1>.column:nth-of-type(1n),.browser-ie .large-up-1>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-1>.column:nth-of-type(1n+1),.browser-ie .large-up-1>.columns:nth-of-type(1n+1){clear:both}.browser-ie .large-up-1>.column:last-child,.browser-ie .large-up-1>.columns:last-child{float:left}.browser-ie .large-up-2>.column,.browser-ie .large-up-2>.columns{float:left;width:50%}.browser-ie .large-up-2>.column:nth-of-type(1n),.browser-ie .large-up-2>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-2>.column:nth-of-type(2n+1),.browser-ie .large-up-2>.columns:nth-of-type(2n+1){clear:both}.browser-ie .large-up-2>.column:last-child,.browser-ie .large-up-2>.columns:last-child{float:left}.browser-ie .large-up-3>.column,.browser-ie .large-up-3>.columns{float:left;width:33.33333%}.browser-ie .large-up-3>.column:nth-of-type(1n),.browser-ie .large-up-3>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-3>.column:nth-of-type(3n+1),.browser-ie .large-up-3>.columns:nth-of-type(3n+1){clear:both}.browser-ie .large-up-3>.column:last-child,.browser-ie .large-up-3>.columns:last-child{float:left}.browser-ie .large-up-4>.column,.browser-ie .large-up-4>.columns{float:left;width:25%}.browser-ie .large-up-4>.column:nth-of-type(1n),.browser-ie .large-up-4>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-4>.column:nth-of-type(4n+1),.browser-ie .large-up-4>.columns:nth-of-type(4n+1){clear:both}.browser-ie .large-up-4>.column:last-child,.browser-ie .large-up-4>.columns:last-child{float:left}.browser-ie .large-up-5>.column,.browser-ie .large-up-5>.columns{float:left;width:20%}.browser-ie .large-up-5>.column:nth-of-type(1n),.browser-ie .large-up-5>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-5>.column:nth-of-type(5n+1),.browser-ie .large-up-5>.columns:nth-of-type(5n+1){clear:both}.browser-ie .large-up-5>.column:last-child,.browser-ie .large-up-5>.columns:last-child{float:left}.browser-ie .large-up-6>.column,.browser-ie .large-up-6>.columns{float:left;width:16.66667%}.browser-ie .large-up-6>.column:nth-of-type(1n),.browser-ie .large-up-6>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-6>.column:nth-of-type(6n+1),.browser-ie .large-up-6>.columns:nth-of-type(6n+1){clear:both}.browser-ie .large-up-6>.column:last-child,.browser-ie .large-up-6>.columns:last-child{float:left}.browser-ie .large-up-7>.column,.browser-ie .large-up-7>.columns{float:left;width:14.28571%}.browser-ie .large-up-7>.column:nth-of-type(1n),.browser-ie .large-up-7>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-7>.column:nth-of-type(7n+1),.browser-ie .large-up-7>.columns:nth-of-type(7n+1){clear:both}.browser-ie .large-up-7>.column:last-child,.browser-ie .large-up-7>.columns:last-child{float:left}.browser-ie .large-up-8>.column,.browser-ie .large-up-8>.columns{float:left;width:12.5%}.browser-ie .large-up-8>.column:nth-of-type(1n),.browser-ie .large-up-8>.columns:nth-of-type(1n){clear:none}.browser-ie .large-up-8>.column:nth-of-type(8n+1),.browser-ie .large-up-8>.columns:nth-of-type(8n+1){clear:both}.browser-ie .large-up-8>.column:last-child,.browser-ie .large-up-8>.columns:last-child{float:left}.browser-ie .large-collapse>.column,.browser-ie .large-collapse>.columns{padding-right:0;padding-left:0}.browser-ie .expanded.row .large-collapse.row,.browser-ie .large-collapse .row{margin-right:0;margin-left:0}.browser-ie .large-uncollapse>.column,.browser-ie .large-uncollapse>.columns{padding-right:.9375rem;padding-left:.9375rem}.browser-ie .large-centered{margin-right:auto;margin-left:auto}.browser-ie .large-centered,.browser-ie .large-centered:last-child:not(:first-child){float:none;clear:both}.browser-ie .large-pull-0,.browser-ie .large-push-0,.browser-ie .large-uncentered{position:static;float:left;margin-right:0;margin-left:0}}.browser-ie .column-block{margin-bottom:1.25rem}.browser-ie .column-block>:last-child{margin-bottom:0}@media print,screen and (min-width:40em){.browser-ie .column-block{margin-bottom:1.875rem}.browser-ie .column-block>:last-child{margin-bottom:0}}/*! * Font Awesome 4.6.3 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(../fonts/fontawesome-webfont.eot?v=4.6.3);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3) format("embedded-opentype"),url(../fonts/fontawesome-webfont.woff2?v=4.6.3) format("woff2"),url(../fonts/fontawesome-webfont.woff?v=4.6.3) format("woff"),url(../fonts/fontawesome-webfont.ttf?v=4.6.3) format("truetype"),url(../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular) format("svg");font-weight:400;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-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.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}.owl-carousel .animated{-webkit-animation-duration:1s;animation-duration:1s;-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-height{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out}.owl-carousel{display:none;width:100%;position:relative;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}.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;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-controls .owl-dot,.owl-carousel .owl-controls .owl-nav .owl-next,.owl-carousel .owl-controls .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.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{display:none}.owl-carousel .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.menu-primary-container,.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.owl-carousel.owl-text-select-on .owl-item{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.owl-carousel .owl-grab{cursor:move;cursor:-webkit-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.no-js .owl-carousel{display:block}.owl-carousel .owl-item .owl-lazy{opacity:0;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}.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(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;-webkit-transition:scale .1s ease;transition:scale .1s ease}.control-input[type=radio][disabled]+.control-label,.control-input[type=checkbox][disabled]+.control-label,.input[disabled],.select[disabled]{cursor:not-allowed}.owl-carousel .owl-video-play-icon:hover{-webkit-transition:scale(1.3,1.3);transition:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{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 .4s ease;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1}.row.narrow{max-width:800px}.site-header{position:relative}.site-branding{display:inline-block}.section-fullwidth{padding:80px 0;position:relative}@media (min-width:640px){.section-fullwidth{padding:80px 0}}.section-fullwidth.border-bottom{border-bottom:1px solid #ddd}.section-fullwidth.border-top{border-top:1px solid #ddd}.section-fullwidth.shadow{box-shadow:0 5px 10px -5px rgba(0,0,0,.3);z-index:10}.section-fullwidth.shadow-inset{box-shadow:inset 0 5px 10px -5px rgba(0,0,0,.3);z-index:10}.section-fullwidth.inverted{background:#000;color:#fff}.section-fullwidth.inverted hr,.section-fullwidth.text-white hr{background-color:rgba(255,255,255,.2)}hr{margin:20px 0}.control,.input,.select{box-sizing:border-box;margin:0 0 1rem}.input{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%;padding:.66667rem;background:#fff;border:1px solid #ddd;box-shadow:inset 0 1px 3px rgba(0,0,0,.05);border-radius:0;resize:vertical;-webkit-transition:border-color .3s ease;transition:border-color .3s ease}.input[disabled]{border-color:#eaeaea;background-color:#f2f2f2;box-shadow:none}.input:focus{border-color:#4072db}.control-input{position:absolute;opacity:0;pointer-events:none}.control-label{display:block;position:relative;padding-left:calc(20px + .66667rem);will-change:transform}.control-label::after,.control-label::before{position:absolute;top:calc(50% - 10px);left:0;width:20px;height:20px;content:'';border:1px solid transparent}.control-label::before{border-color:#ddd;box-shadow:inset 0 1px 3px rgba(0,0,0,.05);background:#fff;background-size:0}.control-label::after{background-size:60%;background-repeat:no-repeat;background-position:center;-webkit-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;will-change:transform}.control-input[type=radio]+.control-label::before{border-radius:100%}.control-input[type=radio]+.control-label::after{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%234072db%22%20d%3D%22M256%2C464c114.9%2C0%2C208-93.1%2C208-208c0-114.9-93.1-208-208-208C141.1%2C48%2C48%2C141.1%2C48%2C256C48%2C370.9%2C141.1%2C464%2C256%2C464z%22/%3E%3C/svg%3E)}.control-input[type=checkbox]+.control-label::after{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%234072db%22%20d%3D%22M461.6%2C109.6l-54.9-43.3c-1.7-1.4-3.8-2.4-6.2-2.4c-2.4%2C0-4.6%2C1-6.3%2C2.5L194.5%2C323c0%2C0-78.5-75.5-80.7-77.7c-2.2-2.2-5.1-5.9-9.5-5.9c-4.4%2C0-6.4%2C3.1-8.7%2C5.4c-1.7%2C1.8-29.7%2C31.2-43.5%2C45.8c-0.8%2C0.9-1.3%2C1.4-2%2C2.1c-1.2%2C1.7-2%2C3.6-2%2C5.7c0%2C2.2%2C0.8%2C4%2C2%2C5.7l2.8%2C2.6c0%2C0%2C139.3%2C133.8%2C141.6%2C136.1c2.3%2C2.3%2C5.1%2C5.2%2C9.2%2C5.2c4%2C0%2C7.3-4.3%2C9.2-6.2L462%2C121.8c1.2-1.7%2C2-3.6%2C2-5.8C464%2C113.5%2C463%2C111.4%2C461.6%2C109.6z%22/%3E%3C/svg%3E)}.control-input[type=radio][disabled]+.control-label::before,.control-input[type=checkbox][disabled]+.control-label::before{border-color:#eaeaea;background-color:#f2f2f2;box-shadow:none}.control-input:checked+.control-label::after{-webkit-transform:scale(1);transform:scale(1)}.select{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:.66667rem;width:100%;background:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%234072db%22%20d%3D%22M256%2C298.3L256%2C298.3L256%2C298.3l174.2-167.2c4.3-4.2%2C11.4-4.1%2C15.8%2C0.2l30.6%2C29.9c4.4%2C4.3%2C4.5%2C11.3%2C0.2%2C15.5L264.1%2C380.9c-2.2%2C2.2-5.2%2C3.2-8.1%2C3c-3%2C0.1-5.9-0.9-8.1-3L35.2%2C176.7c-4.3-4.2-4.2-11.2%2C0.2-15.5L66%2C131.3c4.4-4.3%2C11.5-4.4%2C15.8-0.2L256%2C298.3z%22/%3E%3C/svg%3E) no-repeat #fff;background-size:12px;background-position:calc(100% - .66667rem) center;border:1px solid #ddd;box-shadow:inset 0 1px 3px rgba(0,0,0,.05);border-radius:0}.select[disabled]{border-color:#eaeaea;background-color:#f2f2f2;box-shadow:none}.select:focus{border-color:#4072db}.select::-ms-expand{display:none}.main-navigation{display:inline-block}.main-navigation .menu-toggle{display:inline-block;color:#333;line-height:1;font-size:26px;background:0 0;border:none}.main-navigation .menu-toggle:hover{cursor:pointer;color:#4072db}.main-navigation .menu-item{display:inline-block;position:relative;margin-right:20px;font-weight:700}.main-navigation .menu-item:last-of-type{margin-right:0}@media (max-width:640px){.main-navigation .menu-item{border-bottom:1px solid #f0f0f0;margin:0;display:block}.main-navigation .menu-item a{display:block;padding:.5rem .625rem}.main-navigation .menu-item a:hover{color:#4072db}.main-navigation .menu-item:last-of-type{border-bottom:none}.main-navigation .sub-menu{display:none;border-top:1px solid #ccc;background:#f0f0f0}.main-navigation .menu-item.is-extended .sub-menu{display:block}.menu-primary-container{display:none;position:absolute;left:0;width:100%;margin-top:.5625rem;background:rgba(255,255,255,.95);border-bottom:1px solid #f0f0f0;box-shadow:0 10px 20px rgba(0,0,0,.1)}.is-extended .menu-primary-container{display:block}.is-extended .menu-primary{opacity:1;-webkit-transform:translateY(0);transform:translateY(0);pointer-events:auto}}@media (min-width:640px){.menu-primary-container{display:block}.main-navigation .menu-toggle{display:none}.main-navigation .sub-menu{pointer-events:none;opacity:0;-webkit-transition:.2s;transition:.2s;-webkit-transform:translateY(40px);transform:translateY(40px)}.main-navigation .menu-item-has-children:hover>.sub-menu{display:block}.main-navigation li{position:relative}.main-navigation li:hover>.sub-menu{opacity:1;pointer-events:auto;-webkit-transition:.2s;transition:.2s;-webkit-transform:translateY(0);transform:translateY(0)}.menu-item:nth-last-child(-n+3) .sub-menu{right:0;left:auto}.menu-item:nth-last-child(-n+3) .sub-menu .sub-menu{right:100%}.sub-menu{position:absolute;border:1px solid #ccc;top:calc(100% + 14px);background:rgba(255,255,255,.98);min-width:200px;text-align:left;z-index:99}.sub-menu .menu-item{display:relative}.sub-menu:before{position:absolute;bottom:100%;width:100%;height:16px;background:0 0;content:'';display:block}.sub-menu .sub-menu{top:0;left:100%}.sub-menu a{display:block;padding:8px 13px;font-weight:400;color:#000}.sub-menu a:hover{background:0 0;color:#4072db}.sub-menu li{width:100%;border-bottom:1px solid #f0f0f0;float:none;display:block}}.menu-item-has-children{position:relative}.menu-item-has-children .dropdown-arrow{height:2.625rem;width:2.625rem;font-family:FontAwesome;display:inline-block;position:absolute;top:0;right:0;text-align:center;vertical-align:middle;cursor:pointer;padding:4px;line-height:1.7;font-size:20px}.menu-item-has-children .dropdown-arrow,.menu-item-has-children .dropdown-arrow i{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.menu-item-has-children.is-extended .dropdown-arrow{-webkit-transform:rotate(90deg);transform:rotate(90deg)}@media (min-width:640px){.menu-item-has-children .dropdown-arrow{display:none}}.site-header{padding:30px 0;box-shadow:0 5px 10px -5px rgba(0,0,0,.1)}.site-header-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.site-description{display:none}.site-branding,.site-title{margin:0}.main-navigation{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.main-navigation .menu-item a{padding:.75rem .625rem;color:#1a1a1a;background-color:#fff;border-radius:.1875rem}.main-navigation .menu-item a:hover{color:#1a1a1a;background-color:#f0f0f0}@media (min-width:640px){.menu-item:nth-last-child(-n+3) .sub-menu .sub-menu{right:calc(100%);top:0}.sub-menu{box-shadow:0 7px 13px -9px rgba(0,0,0,.1);padding:0;font-size:14px;min-width:250px}.sub-menu .menu-item{margin:0;padding:0;border:none}.sub-menu .menu-item:last-of-type{margin-bottom:0}.sub-menu .menu-item a{padding:.9375rem 1.25rem;display:block}.sub-menu .menu-item a:hover{background:#fafafa}}.flex-grid-wrapper .flex-grid{margin:0 -20px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-grid-wrapper .grid-item{padding:0 20px}.flex-grid-wrapper .col-4 .grid-item{-webkit-box-flex:1;-ms-flex:1 1 calc(100% / 4);flex:1 1 calc(100% / 4)}.flex-grid-wrapper .col-3 .grid-item{-webkit-box-flex:1;-ms-flex:1 1 calc(100% / 3);flex:1 1 calc(100% / 3)}.flex-grid-wrapper .col-2 .grid-item{-webkit-box-flex:1;-ms-flex:1 1 calc(100% / 2);flex:1 1 calc(100% / 2)}@media (max-width:960px){.flex-grid-wrapper .col-2 .grid-item,.flex-grid-wrapper .col-3 .grid-item,.flex-grid-wrapper .col-4 .grid-item{-webkit-box-flex:1;-ms-flex:1 1 calc(100% / 2);flex:1 1 calc(100% / 2)}}@media (max-width:640px){.flex-grid-wrapper .col-2 .grid-item,.flex-grid-wrapper .col-3 .grid-item,.flex-grid-wrapper .col-4 .grid-item{-webkit-box-flex:1;-ms-flex:1 1 calc(100% / 1);flex:1 1 calc(100% / 1)}}.flex-grid-wrapper.separators{overflow:hidden}.flex-grid-wrapper.separators .grid-item{border-right:1px solid #f0f0f0;border-bottom:1px solid #f0f0f0;margin-right:-1px;margin-bottom:-2px;padding:40px}.inverted .flex-grid-wrapper.separators .grid-item{border-right:1px solid #444;border-bottom:1px solid #444}.section-fullwidth.demo-gradient{background:#a90329;background:-webkit-linear-gradient(top,#a90329 0,#8f0222 44%,#6d0019 100%);background:linear-gradient(to bottom,#a90329 0,#8f0222 44%,#6d0019 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#a90329', endColorstr='#6d0019', GradientType=0 )}.section-fullwidth.section-faq-list{background:#1a1a1a}.section-heading{text-align:center;margin-bottom:40px}.section-halfsplit{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0}.section-halfsplit.image-right{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.section-halfsplit .section-content,.section-halfsplit .section-image{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;padding:33.33px}@media (min-width:640px){.section-halfsplit .section-content,.section-halfsplit .section-image{padding:50px}}@media (min-width:960px){.section-halfsplit .section-content,.section-halfsplit .section-image{padding:100px}}.section-hero{position:relative;padding:0}.section-hero:after{content:'';display:block;height:100%;width:100%;background:-webkit-linear-gradient(top,transparent,rgba(0,0,0,.5));background:linear-gradient(to bottom,transparent,rgba(0,0,0,.5));z-index:1;position:absolute;top:0;left:0}.section-hero .section-content{position:absolute;z-index:2;left:50%;bottom:80px;-webkit-transform:translateX(-50%);transform:translateX(-50%);color:#fff;text-align:center;max-width:600px;width:100%}.faq-elements{counter-reset:ol-counter}.faq-elements .row:last-child .columns:last-of-type .faq-element{margin-bottom:0}.faq-element{position:relative;margin-bottom:40px}.faq-element:before{content:counter(ol-counter);counter-increment:ol-counter;display:block;position:absolute;left:0;top:-.7em;font-weight:700;font-size:2.4em;color:#4072db}.faq-element .title{font-family:Georgia;font-size:22px;margin-bottom:10px;margin-top:0;padding-left:50px}.faq-element .content{opacity:.5}@media (min-width:640px){.faq-element{margin-bottom:80px}.faq-element .title{margin-bottom:30px}}.tooltip{position:relative;cursor:help}.tooltip:hover{-webkit-transition:.4s;transition:.4s}.tooltip:hover .tooltip-content{-webkit-transform:translateY(0);transform:translateY(0);opacity:1;pointer-events:normal}.tooltip-content{-webkit-transform:translateY(10px);transform:translateY(10px);opacity:0;pointer-events:none;-webkit-transition:.4s;transition:.4s;bottom:100%;position:absolute;left:0;right:0;z-index:100;background:rgba(0,0,0,.8);display:block;max-width:200px;line-height:1.3em;padding:8px 15px;color:#FFF;border-radius:5px;margin:0 auto}.tooltip-content:after{top:100%;left:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-top-color:rgba(0,0,0,.8);border-width:10px;margin-left:-10px} \ No newline at end of file + */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.6.3);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3) format("embedded-opentype"),url(../fonts/fontawesome-webfont.woff2?v=4.6.3) format("woff2"),url(../fonts/fontawesome-webfont.woff?v=4.6.3) format("woff"),url(../fonts/fontawesome-webfont.ttf?v=4.6.3) format("truetype"),url(../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular) format("svg");font-weight:400;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-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.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}.owl-carousel .animated{-webkit-animation-duration:1s;animation-duration:1s;-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-height{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out}.owl-carousel{display:none;width:100%;position:relative;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}.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;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-controls .owl-dot,.owl-carousel .owl-controls .owl-nav .owl-next,.owl-carousel .owl-controls .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.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{display:none}.owl-carousel .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.menu-primary-container,.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.owl-carousel.owl-text-select-on .owl-item{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.owl-carousel .owl-grab{cursor:move;cursor:-webkit-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.no-js .owl-carousel{display:block}.owl-carousel .owl-item .owl-lazy{opacity:0;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}.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(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;-webkit-transition:scale .1s ease;transition:scale .1s ease}.control-input[type=radio][disabled]+.control-label,.control-input[type=checkbox][disabled]+.control-label,.input[disabled],.select[disabled]{cursor:not-allowed}.owl-carousel .owl-video-play-icon:hover{-webkit-transition:scale(1.3,1.3);transition:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{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 .4s ease;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1}.row.narrow{max-width:800px}.site-branding{display:inline-block}.section-fullwidth{padding:80px 0;position:relative}@media (min-width:640px){.section-fullwidth{padding:80px 0}}.section-fullwidth.border-bottom{border-bottom:1px solid #ddd}.section-fullwidth.border-top{border-top:1px solid #ddd}.section-fullwidth.shadow{box-shadow:0 5px 10px -5px rgba(0,0,0,.3);z-index:10}.section-fullwidth.shadow-inset{box-shadow:inset 0 5px 10px -5px rgba(0,0,0,.3);z-index:10}.section-fullwidth.inverted{background:#000;color:#fff}.section-fullwidth.inverted hr,.section-fullwidth.text-white hr{background-color:rgba(255,255,255,.2)}hr{margin:20px 0}.control,.input,.select{margin:0 0 1rem;box-sizing:border-box}.input{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%;padding:.66667rem;background:#fff;border:1px solid #ddd;box-shadow:inset 0 1px 3px rgba(0,0,0,.05);border-radius:0;resize:vertical;-webkit-transition:border-color .3s ease;transition:border-color .3s ease}.input[disabled]{border-color:#eaeaea;background-color:#f2f2f2;box-shadow:none}.input:focus{border-color:#4072db}.control-input{position:absolute;opacity:0;pointer-events:none}.control-label{display:block;position:relative;padding-left:calc(20px + .66667rem);will-change:transform}.control-label::after,.control-label::before{content:'';position:absolute;top:calc(50% - 10px);left:0;width:20px;height:20px;border:1px solid transparent}.control-label::before{border-color:#ddd;box-shadow:inset 0 1px 3px rgba(0,0,0,.05);background:#fff;background-size:0}.control-label::after{background-size:60%;background-repeat:no-repeat;background-position:center;-webkit-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;will-change:transform}.control-input[type=radio]+.control-label::before{border-radius:100%}.control-input[type=radio]+.control-label::after{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%234072db%22%20d%3D%22M256%2C464c114.9%2C0%2C208-93.1%2C208-208c0-114.9-93.1-208-208-208C141.1%2C48%2C48%2C141.1%2C48%2C256C48%2C370.9%2C141.1%2C464%2C256%2C464z%22/%3E%3C/svg%3E)}.control-input[type=checkbox]+.control-label::after{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%234072db%22%20d%3D%22M461.6%2C109.6l-54.9-43.3c-1.7-1.4-3.8-2.4-6.2-2.4c-2.4%2C0-4.6%2C1-6.3%2C2.5L194.5%2C323c0%2C0-78.5-75.5-80.7-77.7c-2.2-2.2-5.1-5.9-9.5-5.9c-4.4%2C0-6.4%2C3.1-8.7%2C5.4c-1.7%2C1.8-29.7%2C31.2-43.5%2C45.8c-0.8%2C0.9-1.3%2C1.4-2%2C2.1c-1.2%2C1.7-2%2C3.6-2%2C5.7c0%2C2.2%2C0.8%2C4%2C2%2C5.7l2.8%2C2.6c0%2C0%2C139.3%2C133.8%2C141.6%2C136.1c2.3%2C2.3%2C5.1%2C5.2%2C9.2%2C5.2c4%2C0%2C7.3-4.3%2C9.2-6.2L462%2C121.8c1.2-1.7%2C2-3.6%2C2-5.8C464%2C113.5%2C463%2C111.4%2C461.6%2C109.6z%22/%3E%3C/svg%3E)}.control-input[type=radio][disabled]+.control-label::before,.control-input[type=checkbox][disabled]+.control-label::before{border-color:#eaeaea;background-color:#f2f2f2;box-shadow:none}.control-input:checked+.control-label::after{-webkit-transform:scale(1);transform:scale(1)}.select{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:.66667rem;width:100%;background:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%234072db%22%20d%3D%22M256%2C298.3L256%2C298.3L256%2C298.3l174.2-167.2c4.3-4.2%2C11.4-4.1%2C15.8%2C0.2l30.6%2C29.9c4.4%2C4.3%2C4.5%2C11.3%2C0.2%2C15.5L264.1%2C380.9c-2.2%2C2.2-5.2%2C3.2-8.1%2C3c-3%2C0.1-5.9-0.9-8.1-3L35.2%2C176.7c-4.3-4.2-4.2-11.2%2C0.2-15.5L66%2C131.3c4.4-4.3%2C11.5-4.4%2C15.8-0.2L256%2C298.3z%22/%3E%3C/svg%3E) no-repeat #fff;background-size:12px;background-position:calc(100% - .66667rem) center;border:1px solid #ddd;box-shadow:inset 0 1px 3px rgba(0,0,0,.05);border-radius:0}.select[disabled]{border-color:#eaeaea;background-color:#f2f2f2;box-shadow:none}.select:focus{border-color:#4072db}.select::-ms-expand{display:none}input,input[type=checkbox],input[type=radio],input[type=number],input[type=search]{box-sizing:border-box}.main-navigation{display:inline-block}.main-navigation .menu-toggle{display:inline-block;color:#333;line-height:1;font-size:26px;background:0 0;border:none}.main-navigation .menu-toggle:hover{cursor:pointer;color:#4072db}.main-navigation .menu-item{display:inline-block;position:relative;margin-right:20px;font-weight:700}.main-navigation .menu-item:last-of-type{margin-right:0}@media (max-width:640px){.main-navigation .menu-item{border-bottom:1px solid #f0f0f0;margin:0;display:block}.main-navigation .menu-item a{display:block;padding:.5rem .625rem}.main-navigation .menu-item a:hover{color:#4072db}.main-navigation .menu-item:last-of-type{border-bottom:none}.main-navigation .sub-menu{display:none;border-top:1px solid #ccc;background:#f0f0f0}.main-navigation .menu-item.is-extended .sub-menu{display:block}.menu-primary-container{display:none;position:absolute;left:0;width:100%;margin-top:.5625rem;background:rgba(255,255,255,.95);border-bottom:1px solid #f0f0f0;box-shadow:0 10px 20px rgba(0,0,0,.1)}.is-extended .menu-primary-container{display:block}.is-extended .menu-primary{opacity:1;-webkit-transform:translateY(0);transform:translateY(0);pointer-events:auto}}@media (min-width:640px){.menu-primary-container{display:block}.main-navigation .menu-toggle{display:none}.main-navigation .sub-menu{pointer-events:none;opacity:0;-webkit-transition:.2s;transition:.2s;-webkit-transform:translateY(40px);transform:translateY(40px)}.main-navigation .menu-item-has-children:hover>.sub-menu{display:block}.main-navigation li{position:relative}.main-navigation li:hover>.sub-menu{opacity:1;pointer-events:auto;-webkit-transition:.2s;transition:.2s;-webkit-transform:translateY(0);transform:translateY(0)}.menu-item:nth-last-child(-n+3) .sub-menu{right:0;left:auto}.menu-item:nth-last-child(-n+3) .sub-menu .sub-menu{right:100%}.sub-menu{position:absolute;border:1px solid #ccc;top:calc(100% + 14px);background:rgba(255,255,255,.98);min-width:200px;text-align:left;z-index:99}.sub-menu .menu-item{display:relative}.sub-menu:before{position:absolute;bottom:100%;width:100%;height:16px;background:0 0;content:'';display:block}.sub-menu .sub-menu{top:0;left:100%}.sub-menu a{display:block;padding:8px 13px;font-weight:400;color:#000}.sub-menu a:hover{background:0 0;color:#4072db}.sub-menu li{width:100%;border-bottom:1px solid #f0f0f0;float:none;display:block}}.menu-item-has-children{position:relative}.menu-item-has-children .dropdown-arrow{height:2.625rem;width:2.625rem;font-family:FontAwesome;display:inline-block;position:absolute;top:0;right:0;text-align:center;vertical-align:middle;cursor:pointer;padding:4px;line-height:1.7;font-size:20px}.menu-item-has-children .dropdown-arrow,.menu-item-has-children .dropdown-arrow i{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.menu-item-has-children.is-extended .dropdown-arrow{-webkit-transform:rotate(90deg);transform:rotate(90deg)}@media (min-width:640px){.menu-item-has-children .dropdown-arrow{display:none}}@media screen and (max-width:600px){#wpadminbar{position:fixed!important}}.site-header{padding:10px 0;background-color:#4072db;color:#fff;font-size:16px;position:fixed;top:0;left:0;width:100%;z-index:90}.site-header a,.site-header a:hover{color:#fff}.site-header-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.site-header-placeholder{height:60px}.site-description{display:none}.site-branding,.site-title{margin:0}.site-branding{margin-right:24px;color:#fff}@media (max-width:640px){.site-branding{margin-right:10px}}.site-branding a{font-weight:700;font-size:24px;margin-top:-8/2px;display:inherit}.main-navigation{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;margin-right:24px}@media (max-width:640px){.main-navigation{display:none}}.main-navigation .menu-item a{padding:1rem .5rem;color:#fff;background-color:transparent;border-radius:0;font-weight:400;cursor:pointer}.main-navigation .sub-menu .menu-item a{color:#000;border-bottom:1px solid #f0f0f0;font-weight:500}.main-navigation .sub-menu .menu-item a:hover{color:#4072db;font-weight:500}.main-navigation .sub-menu .menu-item a:last-of-type{border:none}@media (min-width:640px){.menu-item:nth-last-child(-n+3) .sub-menu .sub-menu{right:calc(100%);top:-.75rem}.sub-menu{box-shadow:0 7px 13px -9px rgba(0,0,0,.1);padding:1.5rem 0;font-size:14px;min-width:250px}.sub-menu .menu-item{margin:0;padding:0;border:none}.sub-menu .menu-item:last-of-type{margin-bottom:0}.sub-menu .menu-item a{padding:.3125rem 1.5rem;display:block}.sub-menu .menu-item a:hover{background:0 0}}.site-button-navigation{margin-left:auto;display:-webkit-box;display:-ms-flexbox;display:flex}.site-button-navigation .mobile-menu-button{border:none;border-radius:3px;font-weight:700;color:#fff;margin-left:4px;cursor:pointer;background:0 0;display:none;font-size:24px;padding:0 .5rem}.site-button-navigation .mobile-menu-button:hover{color:#fff;opacity:.8;background-color:#2b62d7}@media (max-width:640px){.site-button-navigation .mobile-menu-button{display:none}.site-button-navigation .mobile{display:block}}.mobile-menu{display:none;width:100vw;height:100vh;background:#1a1a1a;color:#fff;position:fixed;top:60px}.mobile-menu.is-visible{display:block;z-index:100}.admin-bar .mobile-menu{top:92px}@media screen and (max-width:782px){.admin-bar .mobile-menu{top:106px}}.mobile-menu-top-nav{text-align:center;background:#2b62d7}.mobile-menu-top-nav li{display:inline-block}.mobile-menu-top-nav a{display:inline-block;font-size:14px;padding:.5rem;font-weight:700;color:#fff}.mobile-menu-search .search-submit,.mobile-menu-top-nav .children{display:none}.mobile-menu-search{padding:1rem;border-bottom:1px solid #343434;width:100%}.mobile-menu-search .search-field{width:100%;border:none;padding:.5rem 1rem;border-radius:3px}.mobile-menu-search label{position:relative}.mobile-menu-search label:after{content:'\f002';display:inline-block;font-family:FontAwesome;position:absolute;right:16px;top:-.125rem;color:#000}.mobile-menu-categories{list-style:none;max-height:calc(100vh - 228px);overflow-y:scroll;-webkit-overflow-scrolling:touch}.admin-bar .mobile-menu-categories{max-height:calc(100vh - 274px)}.mobile-menu-categories li a{color:#fff;display:block;padding:.5rem 1rem}.mobile-menu-social{position:absolute;left:0;width:100vw;height:60px;bottom:60px;background:#fff;padding:.5rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.admin-bar .mobile-menu-social{bottom:106px}.mobile-menu-social .button{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;margin:0 .25rem;line-height:1.7;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:.5rem 1rem}.mobile-menu-social .fa{display:inline-block;margin-right:4px}.mobile-menu-social .facebook{background-color:#3b5998}.mobile-menu-social .twitter{background-color:#1da1f2}.mobile-menu-social .google-plus{background-color:#dd4b39}.mobile-menu-social .rss{background-color:#f26522}@media (max-width:640px){.mobile-menu-social .google-plus,.mobile-menu-social .rss{display:none}}.flex-grid-wrapper .flex-grid{margin:0 -20px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-grid-wrapper .grid-item{padding:0 20px}.flex-grid-wrapper .col-4 .grid-item{-webkit-box-flex:1;-ms-flex:1 1 calc(100% / 4);flex:1 1 calc(100% / 4)}.flex-grid-wrapper .col-3 .grid-item{-webkit-box-flex:1;-ms-flex:1 1 calc(100% / 3);flex:1 1 calc(100% / 3)}.flex-grid-wrapper .col-2 .grid-item{-webkit-box-flex:1;-ms-flex:1 1 calc(100% / 2);flex:1 1 calc(100% / 2)}@media (max-width:960px){.flex-grid-wrapper .col-2 .grid-item,.flex-grid-wrapper .col-3 .grid-item,.flex-grid-wrapper .col-4 .grid-item{-webkit-box-flex:1;-ms-flex:1 1 calc(100% / 2);flex:1 1 calc(100% / 2)}}@media (max-width:640px){.flex-grid-wrapper .col-2 .grid-item,.flex-grid-wrapper .col-3 .grid-item,.flex-grid-wrapper .col-4 .grid-item{-webkit-box-flex:1;-ms-flex:1 1 calc(100% / 1);flex:1 1 calc(100% / 1)}}.flex-grid-wrapper.separators{overflow:hidden}.flex-grid-wrapper.separators .grid-item{border-right:1px solid #f0f0f0;border-bottom:1px solid #f0f0f0;margin-right:-1px;margin-bottom:-2px;padding:40px}.inverted .flex-grid-wrapper.separators .grid-item{border-right:1px solid #444;border-bottom:1px solid #444}.section-fullwidth.demo-gradient{background:#a90329;background:-webkit-linear-gradient(top,#a90329 0,#8f0222 44%,#6d0019 100%);background:linear-gradient(to bottom,#a90329 0,#8f0222 44%,#6d0019 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#a90329', endColorstr='#6d0019', GradientType=0 )}.section-fullwidth.section-faq-list{background:#1a1a1a}.section-heading{text-align:center;margin-bottom:40px}.section-halfsplit{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0}.section-halfsplit.image-right{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.section-halfsplit .section-content,.section-halfsplit .section-image{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;padding:33.33px}@media (min-width:640px){.section-halfsplit .section-content,.section-halfsplit .section-image{padding:50px}}@media (min-width:960px){.section-halfsplit .section-content,.section-halfsplit .section-image{padding:100px}}.section-hero{position:relative;padding:0}.section-hero:after{content:'';display:block;height:100%;width:100%;background:-webkit-linear-gradient(top,transparent,rgba(0,0,0,.5));background:linear-gradient(to bottom,transparent,rgba(0,0,0,.5));z-index:1;position:absolute;top:0;left:0}.section-hero .section-content{position:absolute;z-index:2;left:50%;bottom:80px;-webkit-transform:translateX(-50%);transform:translateX(-50%);color:#fff;text-align:center;max-width:600px;width:100%}.faq-elements{counter-reset:ol-counter}.faq-elements .row:last-child .columns:last-of-type .faq-element{margin-bottom:0}.faq-element{position:relative;margin-bottom:40px}.faq-element:before{content:counter(ol-counter);counter-increment:ol-counter;display:block;position:absolute;left:0;top:-.7em;font-weight:700;font-size:2.4em;color:#4072db}.faq-element .title{font-family:Georgia;font-size:22px;margin-bottom:10px;margin-top:0;padding-left:50px}.faq-element .content{opacity:.5}@media (min-width:640px){.faq-element{margin-bottom:80px}.faq-element .title{margin-bottom:30px}}.tooltip{position:relative;cursor:help}.tooltip:hover{-webkit-transition:.4s;transition:.4s}.tooltip:hover .tooltip-content{-webkit-transform:translateY(0);transform:translateY(0);opacity:1;pointer-events:normal}.tooltip-content{-webkit-transform:translateY(10px);transform:translateY(10px);opacity:0;pointer-events:none;-webkit-transition:.4s;transition:.4s;bottom:100%;position:absolute;left:0;right:0;z-index:100;background:rgba(0,0,0,.8);display:block;max-width:200px;line-height:1.3em;padding:8px 15px;color:#FFF;border-radius:5px;margin:0 auto}.tooltip-content:after{top:100%;left:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-top-color:rgba(0,0,0,.8);border-width:10px;margin-left:-10px} \ No newline at end of file diff --git a/assets/sass/base/_settings.scss b/assets/sass/base/_settings.scss index 6a5aad8..54519d3 100644 --- a/assets/sass/base/_settings.scss +++ b/assets/sass/base/_settings.scss @@ -1,3 +1,7 @@ +// Use this as a base so that all spacings are calculated by mutiplying or dividing +// to the multiplier. It creates a much more coherent look of the site. +$multiplier: 8; + // Global settings $global-layout-gutter: 20px; $global-font-size: 16px; diff --git a/assets/sass/components/_input.scss b/assets/sass/components/_input.scss index 87606e0..8aed611 100644 --- a/assets/sass/components/_input.scss +++ b/assets/sass/components/_input.scss @@ -185,3 +185,14 @@ $formbase__timing : ease !default; display: none; } } + +input, +input[type="checkbox"], +input[type="radio"], +input[type="number"], +input[type="number"], +input[type="search"], +input[type="search"], +input[type="search"], { + box-sizing: border-box; +} diff --git a/assets/sass/prebuilds/_header-clean.scss b/assets/sass/prebuilds/_header-clean.scss index cc140a4..bcf62bc 100644 --- a/assets/sass/prebuilds/_header-clean.scss +++ b/assets/sass/prebuilds/_header-clean.scss @@ -3,20 +3,36 @@ * with white background and subtle shadow. */ -$menu-link-padding: rem-calc(12px 10px); -$menu-link-color: #1a1a1a; -$menu-link-background: #fff; -$menu-link-color-hover: #1a1a1a; -$menu-link-background-hover: #f0f0f0; -$menu-link-border-radius: rem-calc(3px); -$submenu-padding: 0; -$submenu-menu-padding: rem-calc(15px) rem-calc(20px); +$menu-link-padding: rem-calc(2px * $multiplier 1px * $multiplier); +$menu-link-color: #fff; +$menu-link-background: transparent; +$menu-link-color-hover: transparent; +$menu-link-background-hover: transparent; +$menu-link-border-radius: rem-calc(0); +$submenu-padding: rem-calc(3px *$multiplier); +$submenu-menu-padding: rem-calc(5px) $submenu-padding; $submenu-width: 250px; $submenu-font-size: 14px; +@media screen and (max-width: 600px) { + #wpadminbar { + position: fixed !important; + } +} + + .site-header { - padding: 30px 0; - box-shadow: 0 5px 10px -5px rgba(black, 0.1); + padding: 10px 0; + // box-shadow: 0 5px 10px -5px rgba(black, 0.1); + background-color: $color-primary; + color: white; + font-size: 16px; + position: fixed; + top: 0; left: 0; + width: 100%; + z-index: 90; + + a, a:hover { color: white; } // This will be the flexbox wrapper &-inner { @@ -26,6 +42,10 @@ $submenu-font-size: 14px; } } +.site-header-placeholder { + height: 60px; +} + .site-description { display: none; } @@ -35,8 +55,30 @@ $submenu-font-size: 14px; margin: 0; } +.site-branding { + margin-right: 3px * $multiplier; + color: white; + + @media (max-width: $breakpoint-small) { + margin-right: 10px; + } + + a { + font-weight: bold; + font-size: 3px * $multiplier; + margin-top: -(#{$multiplier} / 2px); + display: inherit; + } +} + .main-navigation { flex: 1 1 auto; + margin-right: 3px * $multiplier; + + // We are hiding it for tablet devices + @media (max-width: $breakpoint-small) { + display: none; + } .menu-item { a { @@ -44,11 +86,25 @@ $submenu-font-size: 14px; color: $menu-link-color; background-color: $menu-link-background; border-radius: $menu-link-border-radius; + font-weight: normal; + cursor: pointer; + } + } + + .sub-menu { + .menu-item a { + color: black; + border-bottom: 1px solid #f0f0f0; + font-weight: 500; + } + + .menu-item a:hover { + color: $color-primary; + font-weight: 500; } - a:hover { - color: $menu-link-color-hover; - background-color: $menu-link-background-hover; + .menu-item a:last-of-type { + border: none; } } } @@ -56,7 +112,7 @@ $submenu-font-size: 14px; // Dropdown menu settings. // You can have these in a separate file or tweak the standard menu settings. -// +// // $menu-breakpoint - comes from the components/_mobile-menu.scss base stylings // ---------------------------------------------------------------------------- @media (min-width: $menu-breakpoint) { @@ -70,7 +126,7 @@ $submenu-font-size: 14px; padding: $submenu-padding 0; font-size: $submenu-font-size; min-width: $submenu-width; - + .menu-item { margin: 0; padding: 0; @@ -86,9 +142,189 @@ $submenu-font-size: 14px; } a:hover { - background: #fafafa; + background: none; } } } +} + +.site-button-navigation { + margin-left: auto; + display: flex; + + .mobile-menu-button { + border: none; + font-size: 14px; + padding: rem-calc(1px * $multiplier 2px* $multiplier); + border-radius: 3px; + font-weight: 700; + color: white; + margin-left: 4px; + background-color: darken($color-primary, 5%); + cursor: pointer; + + &:hover { + color: white; + opacity: 0.8; + } + + @media (max-width: $breakpoint-small) { display: none; } + } + + .mobile-menu-button { + cursor: pointer; + background: none; + display: none; + padding: 0; + font-size: 24px; + padding: rem-calc(0 * $multiplier 1px* $multiplier); + + &:hover { + background-color: darken($color-primary, 5%); + } + } + + // These are items that will be shown on mobile. + // ( with some exceptions :3 ) + .mobile { + @media (max-width: $breakpoint-small) { display: block; } + } +} + +// Dropdown mobile menu +// Build as a separate component in the header.php file. +.mobile-menu { + display: none; + width: 100vw; + height: 100vh; + background: #1a1a1a; + color: white; + position: fixed; + top: 60px; + + &.is-visible { + display: block; + // The overlay has z-index: 95 + z-index: 100; + } + + // Positioning + .admin-bar & { + top: 92px; + @media screen and (max-width: 782px) { top: 106px; } + } +} + +.mobile-menu-top-nav { + text-align: center; + background: darken($color-primary, 5%); + + li { + display: inline-block; + } + + a { + display: inline-block; + font-size: 14px; + padding: rem-calc(1px * $multiplier 1px * $multiplier); + font-weight: 700; + color: white; + } + + // Do not show submenu items in here. + .children { + display: none; + } +} + + +.mobile-menu-search { + padding: rem-calc(2px * $multiplier); + border-bottom: 1px solid #343434; + width: 100%; + + .search-field { + border: none; + width: 100%; + border: none; + padding: rem-calc(1px * $multiplier 2px * $multiplier); + border-radius: 3px; + } + + .search-submit { + display: none; + } + label { + position: relative; + } + + label:after { + content: '\f002'; + display: inline-block; + font-family: FontAwesome; + position: absolute; + right: 2px * $multiplier; + top: rem-calc(-2px); + color: black; + } +} + +.mobile-menu-categories { + list-style: none; + max-height: calc(100vh - 228px); // Magic numbers o.O + overflow-y: scroll; + -webkit-overflow-scrolling: touch; + + .admin-bar & { + max-height: calc(100vh - 274px); // Magic numbers o.O + } + + li a { + color: white; + display: block; + padding: rem-calc(1px * $multiplier 2px * $multiplier); + } +} + +.mobile-menu-social { + position: absolute; + left: 0; + width: 100vw; + height: 60px; + bottom: 60px; + background: white; + padding: rem-calc(1px * $multiplier 1px * $multiplier); + display: flex; + justify-content: space-between; + + .admin-bar & { + bottom: 106px; + } + + .button { + flex: 1 1 100%; + margin: rem-calc(0 $multiplier / 2px); + line-height: 1.7; + color: white; + font-weight: 700; + text-align: center; + display: inline-block; + padding: rem-calc(1px * $multiplier 2px * $multiplier); + } + + .fa { + display: inline-block; + margin-right: 4px; + } + + .facebook { background-color: #3b5998; } + .twitter { background-color: #1da1f2; } + .google-plus { background-color: #dd4b39; } + .rss { background-color: #f26522; } + + .google-plus, + .rss { + @media (max-width: 640px) { display: none; } + } } diff --git a/assets/scripts/bundle.js b/assets/scripts/bundle.js index 9817c3d..f841d32 100644 --- a/assets/scripts/bundle.js +++ b/assets/scripts/bundle.js @@ -142,4 +142,28 @@ jQuery( document ).ready( function ( $ ) { console.log = function() {}; } + // Show the advanced mobile menu + $('.site-header .mobile-menu-button').on('click', function(e) { + e.preventDefault(); + $('.mobile-menu').toggleClass('is-visible'); + }); + + // Add visible element to the list. + function registerIsVisibleToggle( $element ) { + siteOverlayVisibleStack.push($element); + } + + // Show/hide the site overlay + function toggleSiteOverlay( element, action ) { + if ( 'show' === action ) { + $(element).addClass('is-visible'); + } + if ( 'hide' === action ) { + $(element).removeClass('is-visible'); + } + if ( 'toggle' === action ) { + $(element).toggleClass('is-visible'); + } + } + }); diff --git a/assets/scripts/bundle.min.js b/assets/scripts/bundle.min.js index d26216e..6ac9ac5 100644 --- a/assets/scripts/bundle.min.js +++ b/assets/scripts/bundle.min.js @@ -1,2 +1,2 @@ -!function(t,e){"use strict";function i(t){this.callback=t,this.ticking=!1}function s(e){return e&&"undefined"!=typeof t&&(e===t||e.nodeType)}function n(t){if(arguments.length<=0)throw new Error("Missing arguments in extend function");var e,i,o=t||{};for(i=1;it,i=t+this.getViewportHeight()>this.getScrollerHeight();return e||i},toleranceExceeded:function(t,e){return Math.abs(t-this.lastKnownScrollY)>=this.tolerance[e]},shouldUnpin:function(t,e){var i=t>this.lastKnownScrollY,s=t>=this.offset;return i&&s&&e},shouldPin:function(t,e){var i=tthis.lastKnownScrollY?"down":"up",i=this.toleranceExceeded(t,e);this.isOutOfBounds(t)||(t<=this.offset?this.top():this.notTop(),this.shouldUnpin(t,i)?this.unpin():this.shouldPin(t,i)&&this.pin(),this.lastKnownScrollY=t)}},r.options={tolerance:{up:0,down:0},offset:0,scroller:t,classes:{pinned:"headroom--pinned",unpinned:"headroom--unpinned",top:"headroom--top",notTop:"headroom--not-top",initial:"headroom"}},r.cutsTheMustard="undefined"!=typeof a&&a.rAF&&a.bind&&a.classList,t.Headroom=r}(window,document),!function(t,e,i){function s(t,e){return typeof t===e}function n(){var t,e,i,n,o,r,a;for(var h in _)if(_.hasOwnProperty(h)){if(t=[],e=_[h],e.name&&(t.push(e.name.toLowerCase()),e.options&&e.options.aliases&&e.options.aliases.length))for(i=0;iu;u++)if(f=t[u],m=z.style[f],a(f,"-")&&(f=h(f)),z.style[f]!==i){if(o||s(n,"undefined"))return l(),"pfx"!=e||f;try{z.style[f]=n}catch(t){}if(z.style[f]!=m)return l(),"pfx"!=e||f}return l(),!1}function m(t,e,i,n,o){var r=t.charAt(0).toUpperCase()+t.slice(1),a=(t+" "+E.join(r+" ")+r).split(" ");return s(e,"string")||s(e,"undefined")?f(a,e,n,o):(a=(t+" "+T.join(r+" ")+r).split(" "),c(a,e,i))}function v(t,e,s){return m(t,i,i,e,s)}var y=[],_=[],w={_version:"3.3.1",_config:{classPrefix:"",enableClasses:!0,enableJSClass:!0,usePrefixes:!0},_q:[],on:function(t,e){var i=this;setTimeout(function(){e(i[t])},0)},addTest:function(t,e,i){_.push({name:t,fn:e,options:i})},addAsyncTest:function(t){_.push({name:null,fn:t})}},x=function(){};x.prototype=w,x=new x;var C=e.documentElement,$="svg"===C.nodeName.toLowerCase();x.addTest("csspointerevents",function(){var t=r("a").style;return t.cssText="pointer-events:auto","auto"===t.pointerEvents});var b="Moz O ms Webkit",E=w._config.usePrefixes?b.split(" "):[];w._cssomPrefixes=E;var T=w._config.usePrefixes?b.toLowerCase().split(" "):[];w._domPrefixes=T;var S={elem:r("modernizr")};x._q.push(function(){delete S.elem});var z={style:S.elem.style};x._q.unshift(function(){delete z.style}),w.testAllProps=m,w.testAllProps=v,x.addTest("boxshadow",v("boxShadow","1px 1px",!0)),x.addTest("flexbox",v("flexBasis","1px",!0)),x.addTest("json","JSON"in t&&"parse"in JSON&&"stringify"in JSON),n(),o(y),delete w.addTest,delete w.addAsyncTest;for(var P=0;P0)&&(this.$stage.children(".cloned").remove(),this._clones=[])}},{filter:["items","settings"],run:function(){var t,e,i=this._clones,s=this._items,n=this.settings.loop?i.length-Math.max(2*this.settings.items,4):0;for(t=0,e=Math.abs(n/2);e>t;t++)n>0?(this.$stage.children().eq(s.length+i.length-1).remove(),i.pop(),this.$stage.children().eq(0).remove(),i.pop()):(i.push(i.length/2),this.$stage.append(s[i[i.length-1]].clone().addClass("cloned")),i.push(s.length-1-(i.length-1)/2),this.$stage.prepend(s[i[i.length-1]].clone().addClass("cloned")))}},{filter:["width","items","settings"],run:function(){var t,e,i,s=this.settings.rtl?1:-1,n=(this.width()/this.settings.items).toFixed(3),o=0;for(this._coordinates=[],e=0,i=this._clones.length+this._items.length;i>e;e++)t=this._mergers[this.relative(e)],t=this.settings.mergeFit&&Math.min(t,this.settings.items)||t,o+=(this.settings.autoWidth?this._items[this.relative(e)].width()+this.settings.margin:n*t)*s,this._coordinates.push(o)}},{filter:["width","items","settings"],run:function(){var e,i,s=(this.width()/this.settings.items).toFixed(3),n={width:Math.abs(this._coordinates[this._coordinates.length-1])+2*this.settings.stagePadding,"padding-left":this.settings.stagePadding||"","padding-right":this.settings.stagePadding||""};if(this.$stage.css(n),n={width:this.settings.autoWidth?"auto":s-this.settings.margin},n[this.settings.rtl?"margin-left":"margin-right"]=this.settings.margin,!this.settings.autoWidth&&t.grep(this._mergers,function(t){return t>1}).length>0)for(e=0,i=this._coordinates.length;i>e;e++)n.width=Math.abs(this._coordinates[e])-Math.abs(this._coordinates[e-1]||0)-this.settings.margin,this.$stage.children().eq(e).css(n);else this.$stage.children().css(n)}},{filter:["width","items","settings"],run:function(t){t.current&&this.reset(this.$stage.children().index(t.current))}},{filter:["position"],run:function(){this.animate(this.coordinates(this._current))}},{filter:["width","position","items","settings"],run:function(){var t,e,i,s,n=this.settings.rtl?1:-1,o=2*this.settings.stagePadding,r=this.coordinates(this.current())+o,a=r+this.width()*n,h=[];for(i=0,s=this._coordinates.length;s>i;i++)t=this._coordinates[i-1]||0,e=Math.abs(this._coordinates[i])+o*n,(this.op(t,"<=",r)&&this.op(t,">",a)||this.op(e,"<",r)&&this.op(e,">",a))&&h.push(i);this.$stage.children("."+this.settings.activeClass).removeClass(this.settings.activeClass),this.$stage.children(":eq("+h.join("), :eq(")+")").addClass(this.settings.activeClass),this.settings.center&&(this.$stage.children("."+this.settings.centerClass).removeClass(this.settings.centerClass),this.$stage.children().eq(this.current()).addClass(this.settings.centerClass))}}],n.prototype.initialize=function(){if(this.trigger("initialize"),this.$element.addClass(this.settings.baseClass).addClass(this.settings.themeClass).toggleClass("owl-rtl",this.settings.rtl),this.browserSupport(),this.settings.autoWidth&&this.state.imagesLoaded!==!0){var e,i,n;if(e=this.$element.find("img"),i=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:s,n=this.$element.children(i).width(),e.length&&0>=n)return this.preloadAutoWidthImages(e),!1}this.$element.addClass("owl-loading"),this.$stage=t("<"+this.settings.stageElement+' class="owl-stage"/>').wrap('
'),this.$element.append(this.$stage.parent()),this.replace(this.$element.children().not(this.$stage.parent())),this._width=this.$element.width(),this.refresh(),this.$element.removeClass("owl-loading").addClass("owl-loaded"),this.eventsCall(),this.internalEvents(),this.addTriggerableEvents(),this.trigger("initialized")},n.prototype.setup=function(){var e=this.viewport(),i=this.options.responsive,s=-1,n=null;i?(t.each(i,function(t){e>=t&&t>s&&(s=Number(t))}),n=t.extend({},this.options,i[s]),delete n.responsive,n.responsiveClass&&this.$element.attr("class",function(t,e){return e.replace(/\b owl-responsive-\S+/g,"")}).addClass("owl-responsive-"+s)):n=t.extend({},this.options),(null===this.settings||this._breakpoint!==s)&&(this.trigger("change",{property:{name:"settings",value:n}}),this._breakpoint=s,this.settings=n,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}}))},n.prototype.optionsLogic=function(){this.$element.toggleClass("owl-center",this.settings.center),this.settings.loop&&this._items.length").addClass(this.settings.itemClass).append(e)),this.trigger("prepared",{content:i.data}),i.data},n.prototype.update=function(){for(var e=0,i=this._pipe.length,s=t.proxy(function(t){return this[t]},this._invalidated),n={};i>e;)(this._invalidated.all||t.grep(this._pipe[e].filter,s).length>0)&&this._pipe[e].run(n),e++;this._invalidated={}},n.prototype.width=function(t){switch(t=t||n.Width.Default){case n.Width.Inner:case n.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},n.prototype.refresh=function(){return 0!==this._items.length&&((new Date).getTime(),this.trigger("refresh"),this.setup(),this.optionsLogic(),this.$stage.addClass("owl-refresh"),this.update(),this.$stage.removeClass("owl-refresh"),this.state.orientation=e.orientation,this.watchVisibility(),this.trigger("refreshed"),void 0)},n.prototype.eventsCall=function(){this.e._onDragStart=t.proxy(function(t){this.onDragStart(t)},this),this.e._onDragMove=t.proxy(function(t){this.onDragMove(t)},this),this.e._onDragEnd=t.proxy(function(t){this.onDragEnd(t)},this),this.e._onResize=t.proxy(function(t){this.onResize(t)},this),this.e._transitionEnd=t.proxy(function(t){this.transitionEnd(t)},this),this.e._preventClick=t.proxy(function(t){this.preventClick(t)},this)},n.prototype.onThrottledResize=function(){e.clearTimeout(this.resizeTimer),this.resizeTimer=e.setTimeout(this.e._onResize,this.settings.responsiveRefreshRate)},n.prototype.onResize=function(){return!!this._items.length&&(this._width!==this.$element.width()&&(!this.trigger("resize").isDefaultPrevented()&&(this._width=this.$element.width(),this.invalidate("width"),this.refresh(),void this.trigger("resized"))))},n.prototype.eventsRouter=function(t){var e=t.type;"mousedown"===e||"touchstart"===e?this.onDragStart(t):"mousemove"===e||"touchmove"===e?this.onDragMove(t):"mouseup"===e||"touchend"===e?this.onDragEnd(t):"touchcancel"===e&&this.onDragEnd(t)},n.prototype.internalEvents=function(){var i=(c(),d());this.settings.mouseDrag?(this.$stage.on("mousedown",t.proxy(function(t){this.eventsRouter(t)},this)),this.$stage.on("dragstart",function(){return!1}),this.$stage.get(0).onselectstart=function(){return!1}):this.$element.addClass("owl-text-select-on"),this.settings.touchDrag&&!i&&this.$stage.on("touchstart touchcancel",t.proxy(function(t){this.eventsRouter(t)},this)),this.transitionEndVendor&&this.on(this.$stage.get(0),this.transitionEndVendor,this.e._transitionEnd,!1),this.settings.responsive!==!1&&this.on(e,"resize",t.proxy(this.onThrottledResize,this))},n.prototype.onDragStart=function(s){var n,r,a,h;if(n=s.originalEvent||s||e.event,3===n.which||this.state.isTouch)return!1;if("mousedown"===n.type&&this.$stage.addClass("owl-grab"),this.trigger("drag"),this.drag.startTime=(new Date).getTime(),this.speed(0),this.state.isTouch=!0,this.state.isScrolling=!1,this.state.isSwiping=!1,this.drag.distance=0,r=o(n).x,a=o(n).y,this.drag.offsetX=this.$stage.position().left,this.drag.offsetY=this.$stage.position().top,this.settings.rtl&&(this.drag.offsetX=this.$stage.position().left+this.$stage.width()-this.width()+this.settings.margin),this.state.inMotion&&this.support3d)h=this.getTransformProperty(),this.drag.offsetX=h,this.animate(h),this.state.inMotion=!0;else if(this.state.inMotion&&!this.support3d)return this.state.inMotion=!1,!1;this.drag.startX=r-this.drag.offsetX,this.drag.startY=a-this.drag.offsetY,this.drag.start=r-this.drag.startX,this.drag.targetEl=n.target||n.srcElement,this.drag.updatedX=this.drag.start,("IMG"===this.drag.targetEl.tagName||"A"===this.drag.targetEl.tagName)&&(this.drag.targetEl.draggable=!1),t(i).on("mousemove.owl.dragEvents mouseup.owl.dragEvents touchmove.owl.dragEvents touchend.owl.dragEvents",t.proxy(function(t){this.eventsRouter(t)},this))},n.prototype.onDragMove=function(t){var i,n,r,a,h,l;this.state.isTouch&&(this.state.isScrolling||(i=t.originalEvent||t||e.event,n=o(i).x,r=o(i).y,this.drag.currentX=n-this.drag.startX,this.drag.currentY=r-this.drag.startY,this.drag.distance=this.drag.currentX-this.drag.offsetX,this.drag.distance<0?this.state.direction=this.settings.rtl?"right":"left":this.drag.distance>0&&(this.state.direction=this.settings.rtl?"left":"right"),this.settings.loop?this.op(this.drag.currentX,">",this.coordinates(this.minimum()))&&"right"===this.state.direction?this.drag.currentX-=(this.settings.center&&this.coordinates(0))-this.coordinates(this._items.length):this.op(this.drag.currentX,"<",this.coordinates(this.maximum()))&&"left"===this.state.direction&&(this.drag.currentX+=(this.settings.center&&this.coordinates(0))-this.coordinates(this._items.length)):(a=this.coordinates(this.settings.rtl?this.maximum():this.minimum()),h=this.coordinates(this.settings.rtl?this.minimum():this.maximum()),l=this.settings.pullDrag?this.drag.distance/5:0,this.drag.currentX=Math.max(Math.min(this.drag.currentX,a+l),h+l)),(this.drag.distance>8||this.drag.distance<-8)&&(i.preventDefault!==s?i.preventDefault():i.returnValue=!1,this.state.isSwiping=!0),this.drag.updatedX=this.drag.currentX,(this.drag.currentY>16||this.drag.currentY<-16)&&this.state.isSwiping===!1&&(this.state.isScrolling=!0,this.drag.updatedX=this.drag.start),this.animate(this.drag.updatedX)))},n.prototype.onDragEnd=function(e){var s,n,o;if(this.state.isTouch){if("mouseup"===e.type&&this.$stage.removeClass("owl-grab"),this.trigger("dragged"),this.drag.targetEl.removeAttribute("draggable"),this.state.isTouch=!1,this.state.isScrolling=!1,this.state.isSwiping=!1,0===this.drag.distance&&this.state.inMotion!==!0)return this.state.inMotion=!1,!1;this.drag.endTime=(new Date).getTime(),s=this.drag.endTime-this.drag.startTime,n=Math.abs(this.drag.distance),(n>3||s>300)&&this.removeClick(this.drag.targetEl),o=this.closest(this.drag.updatedX),this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(o),this.invalidate("position"),this.update(),this.settings.pullDrag||this.drag.updatedX!==this.coordinates(o)||this.transitionEnd(),this.drag.distance=0,t(i).off(".owl.dragEvents")}},n.prototype.removeClick=function(i){this.drag.targetEl=i,t(i).on("click.preventClick",this.e._preventClick),e.setTimeout(function(){t(i).off("click.preventClick")},300)},n.prototype.preventClick=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1,e.stopPropagation&&e.stopPropagation(),t(e.target).off("click.preventClick")},n.prototype.getTransformProperty=function(){var t,i;return t=e.getComputedStyle(this.$stage.get(0),null).getPropertyValue(this.vendorName+"transform"),t=t.replace(/matrix(3d)?\(|\)/g,"").split(","),i=16===t.length,i!==!0?t[4]:t[12]},n.prototype.closest=function(e){var i=-1,s=30,n=this.width(),o=this.coordinates();return this.settings.freeDrag||t.each(o,t.proxy(function(t,r){return e>r-s&&r+s>e?i=t:this.op(e,"<",r)&&this.op(e,">",o[t+1]||r-n)&&(i="left"===this.state.direction?t+1:t),-1===i},this)),this.settings.loop||(this.op(e,">",o[this.minimum()])?i=e=this.minimum():this.op(e,"<",o[this.maximum()])&&(i=e=this.maximum())),i},n.prototype.animate=function(e){this.trigger("translate"),this.state.inMotion=this.speed()>0,this.support3d?this.$stage.css({transform:"translate3d("+e+"px,0px, 0px)",transition:this.speed()/1e3+"s"}):this.state.isTouch?this.$stage.css({left:e+"px"}):this.$stage.animate({left:e},this.speed()/1e3,this.settings.fallbackEasing,t.proxy(function(){this.state.inMotion&&this.transitionEnd()},this))},n.prototype.current=function(t){if(t===s)return this._current;if(0===this._items.length)return s;if(t=this.normalize(t),this._current!==t){var e=this.trigger("change",{property:{name:"position",value:t}});e.data!==s&&(t=this.normalize(e.data)),this._current=t,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},n.prototype.invalidate=function(t){this._invalidated[t]=!0},n.prototype.reset=function(t){t=this.normalize(t),t!==s&&(this._speed=0,this._current=t,this.suppress(["translate","translated"]),this.animate(this.coordinates(t)),this.release(["translate","translated"]))},n.prototype.normalize=function(e,i){var n=i?this._items.length:this._items.length+this._clones.length;return!t.isNumeric(e)||1>n?s:e=this._clones.length?(e%n+n)%n:Math.max(this.minimum(i),Math.min(this.maximum(i),e))},n.prototype.relative=function(t){return t=this.normalize(t),t-=this._clones.length/2,this.normalize(t,!0)},n.prototype.maximum=function(t){var e,i,s,n=0,o=this.settings;if(t)return this._items.length-1;if(!o.loop&&o.center)e=this._items.length-1;else if(o.loop||o.center)if(o.loop||o.center)e=this._items.length+o.items;else{if(!o.autoWidth&&!o.merge)throw"Can not detect maximum absolute position.";for(revert=o.rtl?1:-1,i=this.$stage.width()-this.$element.width();(s=this.coordinates(n))&&!(s*revert>=i);)e=++n}else e=this._items.length-o.items;return e},n.prototype.minimum=function(t){return t?0:this._clones.length/2},n.prototype.items=function(t){return t===s?this._items.slice():(t=this.normalize(t,!0),this._items[t])},n.prototype.mergers=function(t){return t===s?this._mergers.slice():(t=this.normalize(t,!0),this._mergers[t])},n.prototype.clones=function(e){var i=this._clones.length/2,n=i+this._items.length,o=function(t){return t%2===0?n+t/2:i-(t+1)/2};return e===s?t.map(this._clones,function(t,e){return o(e)}):t.map(this._clones,function(t,i){return t===e?o(i):null})},n.prototype.speed=function(t){return t!==s&&(this._speed=t),this._speed},n.prototype.coordinates=function(e){var i=null;return e===s?t.map(this._coordinates,t.proxy(function(t,e){return this.coordinates(e)},this)):(this.settings.center?(i=this._coordinates[e],i+=(this.width()-i+(this._coordinates[e-1]||0))/2*(this.settings.rtl?-1:1)):i=this._coordinates[e-1]||0,i)},n.prototype.duration=function(t,e,i){return Math.min(Math.max(Math.abs(e-t),1),6)*Math.abs(i||this.settings.smartSpeed)},n.prototype.to=function(i,s){if(this.settings.loop){var n=i-this.relative(this.current()),o=this.current(),r=this.current(),a=this.current()+n,h=0>r-a,l=this._clones.length+this._items.length;a=l-this.settings.items&&h===!0&&(o=r-this._items.length,this.reset(o)),e.clearTimeout(this.e._goToLoop),this.e._goToLoop=e.setTimeout(t.proxy(function(){this.speed(this.duration(this.current(),o+n,s)),this.current(o+n),this.update()},this),30)}else this.speed(this.duration(this.current(),i,s)),this.current(i),this.update()},n.prototype.next=function(t){t=t||!1,this.to(this.relative(this.current())+1,t)},n.prototype.prev=function(t){t=t||!1,this.to(this.relative(this.current())-1,t)},n.prototype.transitionEnd=function(t){return(t===s||(t.stopPropagation(),(t.target||t.srcElement||t.originalTarget)===this.$stage.get(0)))&&(this.state.inMotion=!1,void this.trigger("translated"))},n.prototype.viewport=function(){var s;if(this.options.responsiveBaseElement!==e)s=t(this.options.responsiveBaseElement).width();else if(e.innerWidth)s=e.innerWidth;else{if(!i.documentElement||!i.documentElement.clientWidth)throw"Can not detect viewport width.";s=i.documentElement.clientWidth}return s},n.prototype.replace=function(e){this.$stage.empty(),this._items=[],e&&(e=e instanceof jQuery?e:t(e)),this.settings.nestedItemSelector&&(e=e.find("."+this.settings.nestedItemSelector)),e.filter(function(){return 1===this.nodeType}).each(t.proxy(function(t,e){e=this.prepare(e),this.$stage.append(e),this._items.push(e),this._mergers.push(1*e.find("[data-merge]").andSelf("[data-merge]").attr("data-merge")||1)},this)),this.reset(t.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},n.prototype.add=function(t,e){e=e===s?this._items.length:this.normalize(e,!0),this.trigger("add",{content:t,position:e}),0===this._items.length||e===this._items.length?(this.$stage.append(t),this._items.push(t),this._mergers.push(1*t.find("[data-merge]").andSelf("[data-merge]").attr("data-merge")||1)):(this._items[e].before(t),this._items.splice(e,0,t),this._mergers.splice(e,0,1*t.find("[data-merge]").andSelf("[data-merge]").attr("data-merge")||1)),this.invalidate("items"),this.trigger("added",{content:t,position:e})},n.prototype.remove=function(t){t=this.normalize(t,!0),t!==s&&(this.trigger("remove",{content:this._items[t],position:t}),this._items[t].remove(),this._items.splice(t,1),this._mergers.splice(t,1),this.invalidate("items"),this.trigger("removed",{content:null,position:t}))},n.prototype.addTriggerableEvents=function(){var e=t.proxy(function(e,i){return t.proxy(function(t){t.relatedTarget!==this&&(this.suppress([i]),e.apply(this,[].slice.call(arguments,1)),this.release([i]))},this)},this);t.each({next:this.next,prev:this.prev,to:this.to,destroy:this.destroy,refresh:this.refresh,replace:this.replace,add:this.add,remove:this.remove},t.proxy(function(t,i){this.$element.on(t+".owl.carousel",e(i,t+".owl.carousel"))},this))},n.prototype.watchVisibility=function(){function i(t){return t.offsetWidth>0&&t.offsetHeight>0}function s(){i(this.$element.get(0))&&(this.$element.removeClass("owl-hidden"),this.refresh(),e.clearInterval(this.e._checkVisibile))}i(this.$element.get(0))||(this.$element.addClass("owl-hidden"),e.clearInterval(this.e._checkVisibile),this.e._checkVisibile=e.setInterval(t.proxy(s,this),500))},n.prototype.preloadAutoWidthImages=function(e){var i,s,n,o;i=0,s=this,e.each(function(r,a){n=t(a),o=new Image,o.onload=function(){i++,n.attr("src",o.src),n.css("opacity",1),i>=e.length&&(s.state.imagesLoaded=!0,s.initialize())},o.src=n.attr("src")||n.attr("data-src")||n.attr("data-src-retina")})},n.prototype.destroy=function(){this.$element.hasClass(this.settings.themeClass)&&this.$element.removeClass(this.settings.themeClass),this.settings.responsive!==!1&&t(e).off("resize.owl.carousel"),this.transitionEndVendor&&this.off(this.$stage.get(0),this.transitionEndVendor,this.e._transitionEnd);for(var s in this._plugins)this._plugins[s].destroy();(this.settings.mouseDrag||this.settings.touchDrag)&&(this.$stage.off("mousedown touchstart touchcancel"),t(i).off(".owl.dragEvents"),this.$stage.get(0).onselectstart=function(){},this.$stage.off("dragstart",function(){return!1})),this.$element.off(".owl"),this.$stage.children(".cloned").remove(),this.e=null,this.$element.removeData("owlCarousel"),this.$stage.children().contents().unwrap(),this.$stage.children().unwrap(),this.$stage.unwrap()},n.prototype.op=function(t,e,i){var s=this.settings.rtl;switch(e){case"<":return s?t>i:i>t;case">":return s?i>t:t>i;case">=":return s?i>=t:t>=i;case"<=":return s?t>=i:i>=t}},n.prototype.on=function(t,e,i,s){t.addEventListener?t.addEventListener(e,i,s):t.attachEvent&&t.attachEvent("on"+e,i)},n.prototype.off=function(t,e,i,s){t.removeEventListener?t.removeEventListener(e,i,s):t.detachEvent&&t.detachEvent("on"+e,i)},n.prototype.trigger=function(e,i,s){var n={item:{count:this._items.length,index:this.current()}},o=t.camelCase(t.grep(["on",e,s],function(t){return t}).join("-").toLowerCase()),r=t.Event([e,"owl",s||"carousel"].join(".").toLowerCase(),t.extend({relatedTarget:this},n,i));return this._supress[e]||(t.each(this._plugins,function(t,e){e.onTrigger&&e.onTrigger(r)}),this.$element.trigger(r),this.settings&&"function"==typeof this.settings[o]&&this.settings[o].apply(this,r)),r},n.prototype.suppress=function(e){t.each(e,t.proxy(function(t,e){this._supress[e]=!0},this))},n.prototype.release=function(e){t.each(e,t.proxy(function(t,e){delete this._supress[e]},this))},n.prototype.browserSupport=function(){if(this.support3d=l(),this.support3d){this.transformVendor=h();var t=["transitionend","webkitTransitionEnd","transitionend","oTransitionEnd"];this.transitionEndVendor=t[a()],this.vendorName=this.transformVendor.replace(/Transform/i,""),this.vendorName=""!==this.vendorName?"-"+this.vendorName.toLowerCase()+"-":""}this.state.orientation=e.orientation},t.fn.owlCarousel=function(e){return this.each(function(){t(this).data("owlCarousel")||t(this).data("owlCarousel",new n(this,e))})},t.fn.owlCarousel.Constructor=n}(window.Zepto||window.jQuery,window,document),function(t,e){var i=function(e){this._core=e,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel":t.proxy(function(e){if(e.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(e.property&&"position"==e.property.name||"initialized"==e.type))for(var i=this._core.settings,s=i.center&&Math.ceil(i.items/2)||i.items,n=i.center&&-1*s||0,o=(e.property&&e.property.value||this._core.current())+n,r=this._core.clones().length,a=t.proxy(function(t,e){ -this.load(e)},this);n++-1||(n.each(t.proxy(function(i,s){var n,o=t(s),r=e.devicePixelRatio>1&&o.attr("data-src-retina")||o.attr("data-src");this._core.trigger("load",{element:o,url:r},"lazy"),o.is("img")?o.one("load.owl.lazy",t.proxy(function(){o.css("opacity",1),this._core.trigger("loaded",{element:o,url:r},"lazy")},this)).attr("src",r):(n=new Image,n.onload=t.proxy(function(){o.css({"background-image":"url("+r+")",opacity:"1"}),this._core.trigger("loaded",{element:o,url:r},"lazy")},this),n.src=r)},this)),this._loaded.push(s.get(0)))},i.prototype.destroy=function(){var t,e;for(t in this.handlers)this._core.$element.off(t,this.handlers[t]);for(e in Object.getOwnPropertyNames(this))"function"!=typeof this[e]&&(this[e]=null)},t.fn.owlCarousel.Constructor.Plugins.Lazy=i}(window.Zepto||window.jQuery,window,document),function(t){var e=function(i){this._core=i,this._handlers={"initialized.owl.carousel":t.proxy(function(){this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":t.proxy(function(t){this._core.settings.autoHeight&&"position"==t.property.name&&this.update()},this),"loaded.owl.lazy":t.proxy(function(t){this._core.settings.autoHeight&&t.element.closest("."+this._core.settings.itemClass)===this._core.$stage.children().eq(this._core.current())&&this.update()},this)},this._core.options=t.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},e.prototype.update=function(){this._core.$stage.parent().height(this._core.$stage.children().eq(this._core.current()).height()).addClass(this._core.settings.autoHeightClass)},e.prototype.destroy=function(){var t,e;for(t in this._handlers)this._core.$element.off(t,this._handlers[t]);for(e in Object.getOwnPropertyNames(this))"function"!=typeof this[e]&&(this[e]=null)},t.fn.owlCarousel.Constructor.Plugins.AutoHeight=e}(window.Zepto||window.jQuery,window,document),function(t,e,i){var s=function(e){this._core=e,this._videos={},this._playing=null,this._fullscreen=!1,this._handlers={"resize.owl.carousel":t.proxy(function(t){this._core.settings.video&&!this.isInFullScreen()&&t.preventDefault()},this),"refresh.owl.carousel changed.owl.carousel":t.proxy(function(){this._playing&&this.stop()},this),"prepared.owl.carousel":t.proxy(function(e){var i=t(e.content).find(".owl-video");i.length&&(i.css("display","none"),this.fetch(i,t(e.content)))},this)},this._core.options=t.extend({},s.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",t.proxy(function(t){this.play(t)},this))};s.Defaults={video:!1,videoHeight:!1,videoWidth:!1},s.prototype.fetch=function(t,e){var i=t.attr("data-vimeo-id")?"vimeo":"youtube",s=t.attr("data-vimeo-id")||t.attr("data-youtube-id"),n=t.attr("data-width")||this._core.settings.videoWidth,o=t.attr("data-height")||this._core.settings.videoHeight,r=t.attr("href");if(!r)throw new Error("Missing video URL.");if(s=r.match(/(http:|https:|)\/\/(player.|www.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com))\/(video\/|embed\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/),s[3].indexOf("youtu")>-1)i="youtube";else{if(!(s[3].indexOf("vimeo")>-1))throw new Error("Video URL not supported.");i="vimeo"}s=s[6],this._videos[r]={type:i,id:s,width:n,height:o},e.attr("data-video",r),this.thumbnail(t,this._videos[r])},s.prototype.thumbnail=function(e,i){var s,n,o,r=i.width&&i.height?'style="width:'+i.width+"px;height:"+i.height+'px;"':"",a=e.find("img"),h="src",l="",c=this._core.settings,d=function(t){n='
',s=c.lazyLoad?'
':'
',e.after(s),e.after(n)};return e.wrap('
"),this._core.settings.lazyLoad&&(h="data-src",l="owl-lazy"),a.length?(d(a.attr(h)),a.remove(),!1):void("youtube"===i.type?(o="http://img.youtube.com/vi/"+i.id+"/hqdefault.jpg",d(o)):"vimeo"===i.type&&t.ajax({type:"GET",url:"http://vimeo.com/api/v2/video/"+i.id+".json",jsonp:"callback",dataType:"jsonp",success:function(t){o=t[0].thumbnail_large,d(o)}}))},s.prototype.stop=function(){this._core.trigger("stop",null,"video"),this._playing.find(".owl-video-frame").remove(),this._playing.removeClass("owl-video-playing"),this._playing=null},s.prototype.play=function(e){this._core.trigger("play",null,"video"),this._playing&&this.stop();var i,s,n=t(e.target||e.srcElement),o=n.closest("."+this._core.settings.itemClass),r=this._videos[o.attr("data-video")],a=r.width||"100%",h=r.height||this._core.$stage.height();"youtube"===r.type?i='':"vimeo"===r.type&&(i=''),o.addClass("owl-video-playing"),this._playing=o,s=t('
'+i+"
"),n.after(s)},s.prototype.isInFullScreen=function(){var s=i.fullscreenElement||i.mozFullScreenElement||i.webkitFullscreenElement;return s&&t(s).parent().hasClass("owl-video-frame")&&(this._core.speed(0),this._fullscreen=!0),!(s&&this._fullscreen&&this._playing)&&(this._fullscreen?(this._fullscreen=!1,!1):!this._playing||this._core.state.orientation===e.orientation||(this._core.state.orientation=e.orientation,!1))},s.prototype.destroy=function(){var t,e;this._core.$element.off("click.owl.video");for(t in this._handlers)this._core.$element.off(t,this._handlers[t]);for(e in Object.getOwnPropertyNames(this))"function"!=typeof this[e]&&(this[e]=null)},t.fn.owlCarousel.Constructor.Plugins.Video=s}(window.Zepto||window.jQuery,window,document),function(t,e,i,s){var n=function(e){this.core=e,this.core.options=t.extend({},n.Defaults,this.core.options),this.swapping=!0,this.previous=s,this.next=s,this.handlers={"change.owl.carousel":t.proxy(function(t){"position"==t.property.name&&(this.previous=this.core.current(),this.next=t.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":t.proxy(function(t){this.swapping="translated"==t.type},this),"translate.owl.carousel":t.proxy(function(){this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};n.Defaults={animateOut:!1,animateIn:!1},n.prototype.swap=function(){if(1===this.core.settings.items&&this.core.support3d){this.core.speed(0);var e,i=t.proxy(this.clear,this),s=this.core.$stage.children().eq(this.previous),n=this.core.$stage.children().eq(this.next),o=this.core.settings.animateIn,r=this.core.settings.animateOut;this.core.current()!==this.previous&&(r&&(e=this.core.coordinates(this.previous)-this.core.coordinates(this.next),s.css({left:e+"px"}).addClass("animated owl-animated-out").addClass(r).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",i)),o&&n.addClass("animated owl-animated-in").addClass(o).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",i))}},n.prototype.clear=function(e){t(e.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.transitionEnd()},n.prototype.destroy=function(){var t,e;for(t in this.handlers)this.core.$element.off(t,this.handlers[t]);for(e in Object.getOwnPropertyNames(this))"function"!=typeof this[e]&&(this[e]=null)},t.fn.owlCarousel.Constructor.Plugins.Animate=n}(window.Zepto||window.jQuery,window,document),function(t,e,i){var s=function(e){this.core=e,this.core.options=t.extend({},s.Defaults,this.core.options),this.handlers={"translated.owl.carousel refreshed.owl.carousel":t.proxy(function(){this.autoplay()},this),"play.owl.autoplay":t.proxy(function(t,e,i){this.play(e,i)},this),"stop.owl.autoplay":t.proxy(function(){this.stop()},this),"mouseover.owl.autoplay":t.proxy(function(){this.core.settings.autoplayHoverPause&&this.pause()},this),"mouseleave.owl.autoplay":t.proxy(function(){this.core.settings.autoplayHoverPause&&this.autoplay()},this)},this.core.$element.on(this.handlers)};s.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},s.prototype.autoplay=function(){this.core.settings.autoplay&&!this.core.state.videoPlay?(e.clearInterval(this.interval),this.interval=e.setInterval(t.proxy(function(){this.play()},this),this.core.settings.autoplayTimeout)):e.clearInterval(this.interval)},s.prototype.play=function(){return i.hidden===!0||this.core.state.isTouch||this.core.state.isScrolling||this.core.state.isSwiping||this.core.state.inMotion?void 0:this.core.settings.autoplay===!1?void e.clearInterval(this.interval):void this.core.next(this.core.settings.autoplaySpeed)},s.prototype.stop=function(){e.clearInterval(this.interval)},s.prototype.pause=function(){e.clearInterval(this.interval)},s.prototype.destroy=function(){var t,i;e.clearInterval(this.interval);for(t in this.handlers)this.core.$element.off(t,this.handlers[t]);for(i in Object.getOwnPropertyNames(this))"function"!=typeof this[i]&&(this[i]=null)},t.fn.owlCarousel.Constructor.Plugins.autoplay=s}(window.Zepto||window.jQuery,window,document),function(t){"use strict";var e=function(i){this._core=i,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":t.proxy(function(e){this._core.settings.dotsData&&this._templates.push(t(e.content).find("[data-dot]").andSelf("[data-dot]").attr("data-dot"))},this),"add.owl.carousel":t.proxy(function(e){this._core.settings.dotsData&&this._templates.splice(e.position,0,t(e.content).find("[data-dot]").andSelf("[data-dot]").attr("data-dot"))},this),"remove.owl.carousel prepared.owl.carousel":t.proxy(function(t){this._core.settings.dotsData&&this._templates.splice(t.position,1)},this),"change.owl.carousel":t.proxy(function(t){if("position"==t.property.name&&!this._core.state.revert&&!this._core.settings.loop&&this._core.settings.navRewind){var e=this._core.current(),i=this._core.maximum(),s=this._core.minimum();t.data=t.property.value>i?e>=i?s:i:t.property.value").addClass(s.dotClass).append(t("")).prop("outerHTML")]),s.navContainer&&s.dotsContainer||(this._controls.$container=t("
").addClass(s.controlsClass).appendTo(this.$element)),this._controls.$indicators=s.dotsContainer?t(s.dotsContainer):t("
").hide().addClass(s.dotsClass).appendTo(this._controls.$container),this._controls.$indicators.on("click","div",t.proxy(function(e){var i=t(e.target).parent().is(this._controls.$indicators)?t(e.target).index():t(e.target).parent().index();e.preventDefault(),this.to(i,s.dotsSpeed)},this)),e=s.navContainer?t(s.navContainer):t("
").addClass(s.navContainerClass).prependTo(this._controls.$container),this._controls.$next=t("<"+s.navElement+">"),this._controls.$previous=this._controls.$next.clone(),this._controls.$previous.addClass(s.navClass[0]).html(s.navText[0]).hide().prependTo(e).on("click",t.proxy(function(){this.prev(s.navSpeed)},this)),this._controls.$next.addClass(s.navClass[1]).html(s.navText[1]).hide().appendTo(e).on("click",t.proxy(function(){this.next(s.navSpeed)},this));for(i in this._overrides)this._core[i]=t.proxy(this[i],this)},e.prototype.destroy=function(){var t,e,i,s;for(t in this._handlers)this.$element.off(t,this._handlers[t]);for(e in this._controls)this._controls[e].remove();for(s in this.overides)this._core[s]=this._overrides[s];for(i in Object.getOwnPropertyNames(this))"function"!=typeof this[i]&&(this[i]=null)},e.prototype.update=function(){var t,e,i,s=this._core.settings,n=this._core.clones().length/2,o=n+this._core.items().length,r=s.center||s.autoWidth||s.dotData?1:s.dotsEach||s.items;if("page"!==s.slideBy&&(s.slideBy=Math.min(s.slideBy,s.items)),s.dots||"page"==s.slideBy)for(this._pages=[],t=n,e=0,i=0;o>t;t++)(e>=r||0===e)&&(this._pages.push({start:t-n,end:t-n+r-1}),e=0,++i),e+=this._core.mergers(this._core.relative(t))},e.prototype.draw=function(){var e,i,s="",n=this._core.settings,o=(this._core.$stage.children(),this._core.relative(this._core.current()));if(!n.nav||n.loop||n.navRewind||(this._controls.$previous.toggleClass("disabled",0>=o),this._controls.$next.toggleClass("disabled",o>=this._core.maximum())),this._controls.$previous.toggle(n.nav),this._controls.$next.toggle(n.nav),n.dots){if(e=this._pages.length-this._controls.$indicators.children().length,n.dotData&&0!==e){for(i=0;i0?(s=new Array(e+1).join(this._templates[0]),this._controls.$indicators.append(s)):0>e&&this._controls.$indicators.children().slice(e).remove();this._controls.$indicators.find(".active").removeClass("active"),this._controls.$indicators.children().eq(t.inArray(this.current(),this._pages)).addClass("active")}this._controls.$indicators.toggle(n.dots)},e.prototype.onTrigger=function(e){var i=this._core.settings;e.page={index:t.inArray(this.current(),this._pages),count:this._pages.length,size:i&&(i.center||i.autoWidth||i.dotData?1:i.dotsEach||i.items)}},e.prototype.current=function(){var e=this._core.relative(this._core.current());return t.grep(this._pages,function(t){return t.start<=e&&t.end>=e}).pop()},e.prototype.getPosition=function(e){var i,s,n=this._core.settings;return"page"==n.slideBy?(i=t.inArray(this.current(),this._pages),s=this._pages.length,e?++i:--i,i=this._pages[(i%s+s)%s].start):(i=this._core.relative(this._core.current()),s=this._core.items().length,e?i+=n.slideBy:i-=n.slideBy),i},e.prototype.next=function(e){t.proxy(this._overrides.to,this._core)(this.getPosition(!0),e)},e.prototype.prev=function(e){t.proxy(this._overrides.to,this._core)(this.getPosition(!1),e)},e.prototype.to=function(e,i,s){var n;s?t.proxy(this._overrides.to,this._core)(e,i):(n=this._pages.length,t.proxy(this._overrides.to,this._core)(this._pages[(e%n+n)%n].start,i))},t.fn.owlCarousel.Constructor.Plugins.Navigation=e}(window.Zepto||window.jQuery,window,document),function(t,e){"use strict";var i=function(s){this._core=s,this._hashes={},this.$element=this._core.$element,this._handlers={"initialized.owl.carousel":t.proxy(function(){"URLHash"==this._core.settings.startPosition&&t(e).trigger("hashchange.owl.navigation")},this),"prepared.owl.carousel":t.proxy(function(e){var i=t(e.content).find("[data-hash]").andSelf("[data-hash]").attr("data-hash");this._hashes[i]=e.content},this)},this._core.options=t.extend({},i.Defaults,this._core.options),this.$element.on(this._handlers),t(e).on("hashchange.owl.navigation",t.proxy(function(){var t=e.location.hash.substring(1),i=this._core.$stage.children(),s=this._hashes[t]&&i.index(this._hashes[t])||0;return!!t&&void this._core.to(s,!1,!0)},this))};i.Defaults={URLhashListener:!1},i.prototype.destroy=function(){var i,s;t(e).off("hashchange.owl.navigation");for(i in this._handlers)this._core.$element.off(i,this._handlers[i]);for(s in Object.getOwnPropertyNames(this))"function"!=typeof this[s]&&(this[s]=null)},t.fn.owlCarousel.Constructor.Plugins.Hash=i}(window.Zepto||window.jQuery,window,document),jQuery(document).ready(function(t){"use strict";var e=function(){var e={heightHeader:80,heightAdminbar:50},i={menuIcon:t(".menu-toggle"),dropdownArrow:t("span.dropdown-arrow"),menuNav:t(".main-navigation"),wavesButtonSelector:".button"},s=function(){i.menuIcon.on("click",n),t("li.menu-item-has-children").on("click",t(this).closest("span.dropdown-arrow"),o)},n=function(s){var n=(e.heightHeader,e.heightAdminbar);t("body").hasClass("admin-bar")||(n=0),t(this).toggleClass("is-opened"),i.menuNav.toggleClass("is-extended").removeClass("init"),t("body").toggleClass("is-menu-opened")},o=function(e){e.stopImmediatePropagation(),t(this).toggleClass("is-extended")},r=function(){t(".menu-item-has-children").each(function(){t(this).append("")})},a=function(){r(),s()};return{init:a}}();e.init()}),function(){var t=navigator.userAgent.toLowerCase().indexOf("webkit")>-1,e=navigator.userAgent.toLowerCase().indexOf("opera")>-1,i=navigator.userAgent.toLowerCase().indexOf("msie")>-1;(t||e||i)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e),t&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus()))},!1)}(),jQuery(document).ready(function(t){"use strict";var e=function(){return!0};e()||(console.log=function(){})}); \ No newline at end of file +!function(t,e){"use strict";function i(t){this.callback=t,this.ticking=!1}function s(e){return e&&"undefined"!=typeof t&&(e===t||e.nodeType)}function n(t){if(arguments.length<=0)throw new Error("Missing arguments in extend function");var e,i,o=t||{};for(i=1;it,i=t+this.getViewportHeight()>this.getScrollerHeight();return e||i},toleranceExceeded:function(t,e){return Math.abs(t-this.lastKnownScrollY)>=this.tolerance[e]},shouldUnpin:function(t,e){var i=t>this.lastKnownScrollY,s=t>=this.offset;return i&&s&&e},shouldPin:function(t,e){var i=tthis.lastKnownScrollY?"down":"up",i=this.toleranceExceeded(t,e);this.isOutOfBounds(t)||(t<=this.offset?this.top():this.notTop(),this.shouldUnpin(t,i)?this.unpin():this.shouldPin(t,i)&&this.pin(),this.lastKnownScrollY=t)}},r.options={tolerance:{up:0,down:0},offset:0,scroller:t,classes:{pinned:"headroom--pinned",unpinned:"headroom--unpinned",top:"headroom--top",notTop:"headroom--not-top",initial:"headroom"}},r.cutsTheMustard="undefined"!=typeof a&&a.rAF&&a.bind&&a.classList,t.Headroom=r}(window,document),!function(t,e,i){function s(t,e){return typeof t===e}function n(){var t,e,i,n,o,r,a;for(var h in _)if(_.hasOwnProperty(h)){if(t=[],e=_[h],e.name&&(t.push(e.name.toLowerCase()),e.options&&e.options.aliases&&e.options.aliases.length))for(i=0;iu;u++)if(f=t[u],m=z.style[f],a(f,"-")&&(f=h(f)),z.style[f]!==i){if(o||s(n,"undefined"))return l(),"pfx"!=e||f;try{z.style[f]=n}catch(t){}if(z.style[f]!=m)return l(),"pfx"!=e||f}return l(),!1}function m(t,e,i,n,o){var r=t.charAt(0).toUpperCase()+t.slice(1),a=(t+" "+E.join(r+" ")+r).split(" ");return s(e,"string")||s(e,"undefined")?f(a,e,n,o):(a=(t+" "+T.join(r+" ")+r).split(" "),c(a,e,i))}function v(t,e,s){return m(t,i,i,e,s)}var y=[],_=[],w={_version:"3.3.1",_config:{classPrefix:"",enableClasses:!0,enableJSClass:!0,usePrefixes:!0},_q:[],on:function(t,e){var i=this;setTimeout(function(){e(i[t])},0)},addTest:function(t,e,i){_.push({name:t,fn:e,options:i})},addAsyncTest:function(t){_.push({name:null,fn:t})}},x=function(){};x.prototype=w,x=new x;var C=e.documentElement,$="svg"===C.nodeName.toLowerCase();x.addTest("csspointerevents",function(){var t=r("a").style;return t.cssText="pointer-events:auto","auto"===t.pointerEvents});var b="Moz O ms Webkit",E=w._config.usePrefixes?b.split(" "):[];w._cssomPrefixes=E;var T=w._config.usePrefixes?b.toLowerCase().split(" "):[];w._domPrefixes=T;var S={elem:r("modernizr")};x._q.push(function(){delete S.elem});var z={style:S.elem.style};x._q.unshift(function(){delete z.style}),w.testAllProps=m,w.testAllProps=v,x.addTest("boxshadow",v("boxShadow","1px 1px",!0)),x.addTest("flexbox",v("flexBasis","1px",!0)),x.addTest("json","JSON"in t&&"parse"in JSON&&"stringify"in JSON),n(),o(y),delete w.addTest,delete w.addAsyncTest;for(var D=0;D0)&&(this.$stage.children(".cloned").remove(),this._clones=[])}},{filter:["items","settings"],run:function(){var t,e,i=this._clones,s=this._items,n=this.settings.loop?i.length-Math.max(2*this.settings.items,4):0;for(t=0,e=Math.abs(n/2);e>t;t++)n>0?(this.$stage.children().eq(s.length+i.length-1).remove(),i.pop(),this.$stage.children().eq(0).remove(),i.pop()):(i.push(i.length/2),this.$stage.append(s[i[i.length-1]].clone().addClass("cloned")),i.push(s.length-1-(i.length-1)/2),this.$stage.prepend(s[i[i.length-1]].clone().addClass("cloned")))}},{filter:["width","items","settings"],run:function(){var t,e,i,s=this.settings.rtl?1:-1,n=(this.width()/this.settings.items).toFixed(3),o=0;for(this._coordinates=[],e=0,i=this._clones.length+this._items.length;i>e;e++)t=this._mergers[this.relative(e)],t=this.settings.mergeFit&&Math.min(t,this.settings.items)||t,o+=(this.settings.autoWidth?this._items[this.relative(e)].width()+this.settings.margin:n*t)*s,this._coordinates.push(o)}},{filter:["width","items","settings"],run:function(){var e,i,s=(this.width()/this.settings.items).toFixed(3),n={width:Math.abs(this._coordinates[this._coordinates.length-1])+2*this.settings.stagePadding,"padding-left":this.settings.stagePadding||"","padding-right":this.settings.stagePadding||""};if(this.$stage.css(n),n={width:this.settings.autoWidth?"auto":s-this.settings.margin},n[this.settings.rtl?"margin-left":"margin-right"]=this.settings.margin,!this.settings.autoWidth&&t.grep(this._mergers,function(t){return t>1}).length>0)for(e=0,i=this._coordinates.length;i>e;e++)n.width=Math.abs(this._coordinates[e])-Math.abs(this._coordinates[e-1]||0)-this.settings.margin,this.$stage.children().eq(e).css(n);else this.$stage.children().css(n)}},{filter:["width","items","settings"],run:function(t){t.current&&this.reset(this.$stage.children().index(t.current))}},{filter:["position"],run:function(){this.animate(this.coordinates(this._current))}},{filter:["width","position","items","settings"],run:function(){var t,e,i,s,n=this.settings.rtl?1:-1,o=2*this.settings.stagePadding,r=this.coordinates(this.current())+o,a=r+this.width()*n,h=[];for(i=0,s=this._coordinates.length;s>i;i++)t=this._coordinates[i-1]||0,e=Math.abs(this._coordinates[i])+o*n,(this.op(t,"<=",r)&&this.op(t,">",a)||this.op(e,"<",r)&&this.op(e,">",a))&&h.push(i);this.$stage.children("."+this.settings.activeClass).removeClass(this.settings.activeClass),this.$stage.children(":eq("+h.join("), :eq(")+")").addClass(this.settings.activeClass),this.settings.center&&(this.$stage.children("."+this.settings.centerClass).removeClass(this.settings.centerClass),this.$stage.children().eq(this.current()).addClass(this.settings.centerClass))}}],n.prototype.initialize=function(){if(this.trigger("initialize"),this.$element.addClass(this.settings.baseClass).addClass(this.settings.themeClass).toggleClass("owl-rtl",this.settings.rtl),this.browserSupport(),this.settings.autoWidth&&this.state.imagesLoaded!==!0){var e,i,n;if(e=this.$element.find("img"),i=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:s,n=this.$element.children(i).width(),e.length&&0>=n)return this.preloadAutoWidthImages(e),!1}this.$element.addClass("owl-loading"),this.$stage=t("<"+this.settings.stageElement+' class="owl-stage"/>').wrap('
'),this.$element.append(this.$stage.parent()),this.replace(this.$element.children().not(this.$stage.parent())),this._width=this.$element.width(),this.refresh(),this.$element.removeClass("owl-loading").addClass("owl-loaded"),this.eventsCall(),this.internalEvents(),this.addTriggerableEvents(),this.trigger("initialized")},n.prototype.setup=function(){var e=this.viewport(),i=this.options.responsive,s=-1,n=null;i?(t.each(i,function(t){e>=t&&t>s&&(s=Number(t))}),n=t.extend({},this.options,i[s]),delete n.responsive,n.responsiveClass&&this.$element.attr("class",function(t,e){return e.replace(/\b owl-responsive-\S+/g,"")}).addClass("owl-responsive-"+s)):n=t.extend({},this.options),(null===this.settings||this._breakpoint!==s)&&(this.trigger("change",{property:{name:"settings",value:n}}),this._breakpoint=s,this.settings=n,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}}))},n.prototype.optionsLogic=function(){this.$element.toggleClass("owl-center",this.settings.center),this.settings.loop&&this._items.length").addClass(this.settings.itemClass).append(e)),this.trigger("prepared",{content:i.data}),i.data},n.prototype.update=function(){for(var e=0,i=this._pipe.length,s=t.proxy(function(t){return this[t]},this._invalidated),n={};i>e;)(this._invalidated.all||t.grep(this._pipe[e].filter,s).length>0)&&this._pipe[e].run(n),e++;this._invalidated={}},n.prototype.width=function(t){switch(t=t||n.Width.Default){case n.Width.Inner:case n.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},n.prototype.refresh=function(){return 0!==this._items.length&&((new Date).getTime(),this.trigger("refresh"),this.setup(),this.optionsLogic(),this.$stage.addClass("owl-refresh"),this.update(),this.$stage.removeClass("owl-refresh"),this.state.orientation=e.orientation,this.watchVisibility(),this.trigger("refreshed"),void 0)},n.prototype.eventsCall=function(){this.e._onDragStart=t.proxy(function(t){this.onDragStart(t)},this),this.e._onDragMove=t.proxy(function(t){this.onDragMove(t)},this),this.e._onDragEnd=t.proxy(function(t){this.onDragEnd(t)},this),this.e._onResize=t.proxy(function(t){this.onResize(t)},this),this.e._transitionEnd=t.proxy(function(t){this.transitionEnd(t)},this),this.e._preventClick=t.proxy(function(t){this.preventClick(t)},this)},n.prototype.onThrottledResize=function(){e.clearTimeout(this.resizeTimer),this.resizeTimer=e.setTimeout(this.e._onResize,this.settings.responsiveRefreshRate)},n.prototype.onResize=function(){return!!this._items.length&&(this._width!==this.$element.width()&&(!this.trigger("resize").isDefaultPrevented()&&(this._width=this.$element.width(),this.invalidate("width"),this.refresh(),void this.trigger("resized"))))},n.prototype.eventsRouter=function(t){var e=t.type;"mousedown"===e||"touchstart"===e?this.onDragStart(t):"mousemove"===e||"touchmove"===e?this.onDragMove(t):"mouseup"===e||"touchend"===e?this.onDragEnd(t):"touchcancel"===e&&this.onDragEnd(t)},n.prototype.internalEvents=function(){var i=(c(),d());this.settings.mouseDrag?(this.$stage.on("mousedown",t.proxy(function(t){this.eventsRouter(t)},this)),this.$stage.on("dragstart",function(){return!1}),this.$stage.get(0).onselectstart=function(){return!1}):this.$element.addClass("owl-text-select-on"),this.settings.touchDrag&&!i&&this.$stage.on("touchstart touchcancel",t.proxy(function(t){this.eventsRouter(t)},this)),this.transitionEndVendor&&this.on(this.$stage.get(0),this.transitionEndVendor,this.e._transitionEnd,!1),this.settings.responsive!==!1&&this.on(e,"resize",t.proxy(this.onThrottledResize,this))},n.prototype.onDragStart=function(s){var n,r,a,h;if(n=s.originalEvent||s||e.event,3===n.which||this.state.isTouch)return!1;if("mousedown"===n.type&&this.$stage.addClass("owl-grab"),this.trigger("drag"),this.drag.startTime=(new Date).getTime(),this.speed(0),this.state.isTouch=!0,this.state.isScrolling=!1,this.state.isSwiping=!1,this.drag.distance=0,r=o(n).x,a=o(n).y,this.drag.offsetX=this.$stage.position().left,this.drag.offsetY=this.$stage.position().top,this.settings.rtl&&(this.drag.offsetX=this.$stage.position().left+this.$stage.width()-this.width()+this.settings.margin),this.state.inMotion&&this.support3d)h=this.getTransformProperty(),this.drag.offsetX=h,this.animate(h),this.state.inMotion=!0;else if(this.state.inMotion&&!this.support3d)return this.state.inMotion=!1,!1;this.drag.startX=r-this.drag.offsetX,this.drag.startY=a-this.drag.offsetY,this.drag.start=r-this.drag.startX,this.drag.targetEl=n.target||n.srcElement,this.drag.updatedX=this.drag.start,("IMG"===this.drag.targetEl.tagName||"A"===this.drag.targetEl.tagName)&&(this.drag.targetEl.draggable=!1),t(i).on("mousemove.owl.dragEvents mouseup.owl.dragEvents touchmove.owl.dragEvents touchend.owl.dragEvents",t.proxy(function(t){this.eventsRouter(t)},this))},n.prototype.onDragMove=function(t){var i,n,r,a,h,l;this.state.isTouch&&(this.state.isScrolling||(i=t.originalEvent||t||e.event,n=o(i).x,r=o(i).y,this.drag.currentX=n-this.drag.startX,this.drag.currentY=r-this.drag.startY,this.drag.distance=this.drag.currentX-this.drag.offsetX,this.drag.distance<0?this.state.direction=this.settings.rtl?"right":"left":this.drag.distance>0&&(this.state.direction=this.settings.rtl?"left":"right"),this.settings.loop?this.op(this.drag.currentX,">",this.coordinates(this.minimum()))&&"right"===this.state.direction?this.drag.currentX-=(this.settings.center&&this.coordinates(0))-this.coordinates(this._items.length):this.op(this.drag.currentX,"<",this.coordinates(this.maximum()))&&"left"===this.state.direction&&(this.drag.currentX+=(this.settings.center&&this.coordinates(0))-this.coordinates(this._items.length)):(a=this.coordinates(this.settings.rtl?this.maximum():this.minimum()),h=this.coordinates(this.settings.rtl?this.minimum():this.maximum()),l=this.settings.pullDrag?this.drag.distance/5:0,this.drag.currentX=Math.max(Math.min(this.drag.currentX,a+l),h+l)),(this.drag.distance>8||this.drag.distance<-8)&&(i.preventDefault!==s?i.preventDefault():i.returnValue=!1,this.state.isSwiping=!0),this.drag.updatedX=this.drag.currentX,(this.drag.currentY>16||this.drag.currentY<-16)&&this.state.isSwiping===!1&&(this.state.isScrolling=!0,this.drag.updatedX=this.drag.start),this.animate(this.drag.updatedX)))},n.prototype.onDragEnd=function(e){var s,n,o;if(this.state.isTouch){if("mouseup"===e.type&&this.$stage.removeClass("owl-grab"),this.trigger("dragged"),this.drag.targetEl.removeAttribute("draggable"),this.state.isTouch=!1,this.state.isScrolling=!1,this.state.isSwiping=!1,0===this.drag.distance&&this.state.inMotion!==!0)return this.state.inMotion=!1,!1;this.drag.endTime=(new Date).getTime(),s=this.drag.endTime-this.drag.startTime,n=Math.abs(this.drag.distance),(n>3||s>300)&&this.removeClick(this.drag.targetEl),o=this.closest(this.drag.updatedX),this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(o),this.invalidate("position"),this.update(),this.settings.pullDrag||this.drag.updatedX!==this.coordinates(o)||this.transitionEnd(),this.drag.distance=0,t(i).off(".owl.dragEvents")}},n.prototype.removeClick=function(i){this.drag.targetEl=i,t(i).on("click.preventClick",this.e._preventClick),e.setTimeout(function(){t(i).off("click.preventClick")},300)},n.prototype.preventClick=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1,e.stopPropagation&&e.stopPropagation(),t(e.target).off("click.preventClick")},n.prototype.getTransformProperty=function(){var t,i;return t=e.getComputedStyle(this.$stage.get(0),null).getPropertyValue(this.vendorName+"transform"),t=t.replace(/matrix(3d)?\(|\)/g,"").split(","),i=16===t.length,i!==!0?t[4]:t[12]},n.prototype.closest=function(e){var i=-1,s=30,n=this.width(),o=this.coordinates();return this.settings.freeDrag||t.each(o,t.proxy(function(t,r){return e>r-s&&r+s>e?i=t:this.op(e,"<",r)&&this.op(e,">",o[t+1]||r-n)&&(i="left"===this.state.direction?t+1:t),-1===i},this)),this.settings.loop||(this.op(e,">",o[this.minimum()])?i=e=this.minimum():this.op(e,"<",o[this.maximum()])&&(i=e=this.maximum())),i},n.prototype.animate=function(e){this.trigger("translate"),this.state.inMotion=this.speed()>0,this.support3d?this.$stage.css({transform:"translate3d("+e+"px,0px, 0px)",transition:this.speed()/1e3+"s"}):this.state.isTouch?this.$stage.css({left:e+"px"}):this.$stage.animate({left:e},this.speed()/1e3,this.settings.fallbackEasing,t.proxy(function(){this.state.inMotion&&this.transitionEnd()},this))},n.prototype.current=function(t){if(t===s)return this._current;if(0===this._items.length)return s;if(t=this.normalize(t),this._current!==t){var e=this.trigger("change",{property:{name:"position",value:t}});e.data!==s&&(t=this.normalize(e.data)),this._current=t,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},n.prototype.invalidate=function(t){this._invalidated[t]=!0},n.prototype.reset=function(t){t=this.normalize(t),t!==s&&(this._speed=0,this._current=t,this.suppress(["translate","translated"]),this.animate(this.coordinates(t)),this.release(["translate","translated"]))},n.prototype.normalize=function(e,i){var n=i?this._items.length:this._items.length+this._clones.length;return!t.isNumeric(e)||1>n?s:e=this._clones.length?(e%n+n)%n:Math.max(this.minimum(i),Math.min(this.maximum(i),e))},n.prototype.relative=function(t){return t=this.normalize(t),t-=this._clones.length/2,this.normalize(t,!0)},n.prototype.maximum=function(t){var e,i,s,n=0,o=this.settings;if(t)return this._items.length-1;if(!o.loop&&o.center)e=this._items.length-1;else if(o.loop||o.center)if(o.loop||o.center)e=this._items.length+o.items;else{if(!o.autoWidth&&!o.merge)throw"Can not detect maximum absolute position.";for(revert=o.rtl?1:-1,i=this.$stage.width()-this.$element.width();(s=this.coordinates(n))&&!(s*revert>=i);)e=++n}else e=this._items.length-o.items;return e},n.prototype.minimum=function(t){return t?0:this._clones.length/2},n.prototype.items=function(t){return t===s?this._items.slice():(t=this.normalize(t,!0),this._items[t])},n.prototype.mergers=function(t){return t===s?this._mergers.slice():(t=this.normalize(t,!0),this._mergers[t])},n.prototype.clones=function(e){var i=this._clones.length/2,n=i+this._items.length,o=function(t){return t%2===0?n+t/2:i-(t+1)/2};return e===s?t.map(this._clones,function(t,e){return o(e)}):t.map(this._clones,function(t,i){return t===e?o(i):null})},n.prototype.speed=function(t){return t!==s&&(this._speed=t),this._speed},n.prototype.coordinates=function(e){var i=null;return e===s?t.map(this._coordinates,t.proxy(function(t,e){return this.coordinates(e)},this)):(this.settings.center?(i=this._coordinates[e],i+=(this.width()-i+(this._coordinates[e-1]||0))/2*(this.settings.rtl?-1:1)):i=this._coordinates[e-1]||0,i)},n.prototype.duration=function(t,e,i){return Math.min(Math.max(Math.abs(e-t),1),6)*Math.abs(i||this.settings.smartSpeed)},n.prototype.to=function(i,s){if(this.settings.loop){var n=i-this.relative(this.current()),o=this.current(),r=this.current(),a=this.current()+n,h=0>r-a,l=this._clones.length+this._items.length;a=l-this.settings.items&&h===!0&&(o=r-this._items.length,this.reset(o)),e.clearTimeout(this.e._goToLoop),this.e._goToLoop=e.setTimeout(t.proxy(function(){this.speed(this.duration(this.current(),o+n,s)),this.current(o+n),this.update()},this),30)}else this.speed(this.duration(this.current(),i,s)),this.current(i),this.update()},n.prototype.next=function(t){t=t||!1,this.to(this.relative(this.current())+1,t)},n.prototype.prev=function(t){t=t||!1,this.to(this.relative(this.current())-1,t)},n.prototype.transitionEnd=function(t){return(t===s||(t.stopPropagation(),(t.target||t.srcElement||t.originalTarget)===this.$stage.get(0)))&&(this.state.inMotion=!1,void this.trigger("translated"))},n.prototype.viewport=function(){var s;if(this.options.responsiveBaseElement!==e)s=t(this.options.responsiveBaseElement).width();else if(e.innerWidth)s=e.innerWidth;else{if(!i.documentElement||!i.documentElement.clientWidth)throw"Can not detect viewport width.";s=i.documentElement.clientWidth}return s},n.prototype.replace=function(e){this.$stage.empty(),this._items=[],e&&(e=e instanceof jQuery?e:t(e)),this.settings.nestedItemSelector&&(e=e.find("."+this.settings.nestedItemSelector)),e.filter(function(){return 1===this.nodeType}).each(t.proxy(function(t,e){e=this.prepare(e),this.$stage.append(e),this._items.push(e),this._mergers.push(1*e.find("[data-merge]").andSelf("[data-merge]").attr("data-merge")||1)},this)),this.reset(t.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},n.prototype.add=function(t,e){e=e===s?this._items.length:this.normalize(e,!0),this.trigger("add",{content:t,position:e}),0===this._items.length||e===this._items.length?(this.$stage.append(t),this._items.push(t),this._mergers.push(1*t.find("[data-merge]").andSelf("[data-merge]").attr("data-merge")||1)):(this._items[e].before(t),this._items.splice(e,0,t),this._mergers.splice(e,0,1*t.find("[data-merge]").andSelf("[data-merge]").attr("data-merge")||1)),this.invalidate("items"),this.trigger("added",{content:t,position:e})},n.prototype.remove=function(t){t=this.normalize(t,!0),t!==s&&(this.trigger("remove",{content:this._items[t],position:t}),this._items[t].remove(),this._items.splice(t,1),this._mergers.splice(t,1),this.invalidate("items"),this.trigger("removed",{content:null,position:t}))},n.prototype.addTriggerableEvents=function(){var e=t.proxy(function(e,i){return t.proxy(function(t){t.relatedTarget!==this&&(this.suppress([i]),e.apply(this,[].slice.call(arguments,1)),this.release([i]))},this)},this);t.each({next:this.next,prev:this.prev,to:this.to,destroy:this.destroy,refresh:this.refresh,replace:this.replace,add:this.add,remove:this.remove},t.proxy(function(t,i){this.$element.on(t+".owl.carousel",e(i,t+".owl.carousel"))},this))},n.prototype.watchVisibility=function(){function i(t){return t.offsetWidth>0&&t.offsetHeight>0}function s(){i(this.$element.get(0))&&(this.$element.removeClass("owl-hidden"),this.refresh(),e.clearInterval(this.e._checkVisibile))}i(this.$element.get(0))||(this.$element.addClass("owl-hidden"),e.clearInterval(this.e._checkVisibile),this.e._checkVisibile=e.setInterval(t.proxy(s,this),500))},n.prototype.preloadAutoWidthImages=function(e){var i,s,n,o;i=0,s=this,e.each(function(r,a){n=t(a),o=new Image,o.onload=function(){i++,n.attr("src",o.src),n.css("opacity",1),i>=e.length&&(s.state.imagesLoaded=!0,s.initialize())},o.src=n.attr("src")||n.attr("data-src")||n.attr("data-src-retina")})},n.prototype.destroy=function(){this.$element.hasClass(this.settings.themeClass)&&this.$element.removeClass(this.settings.themeClass),this.settings.responsive!==!1&&t(e).off("resize.owl.carousel"),this.transitionEndVendor&&this.off(this.$stage.get(0),this.transitionEndVendor,this.e._transitionEnd);for(var s in this._plugins)this._plugins[s].destroy();(this.settings.mouseDrag||this.settings.touchDrag)&&(this.$stage.off("mousedown touchstart touchcancel"),t(i).off(".owl.dragEvents"),this.$stage.get(0).onselectstart=function(){},this.$stage.off("dragstart",function(){return!1})),this.$element.off(".owl"),this.$stage.children(".cloned").remove(),this.e=null,this.$element.removeData("owlCarousel"),this.$stage.children().contents().unwrap(),this.$stage.children().unwrap(),this.$stage.unwrap()},n.prototype.op=function(t,e,i){var s=this.settings.rtl;switch(e){case"<":return s?t>i:i>t;case">":return s?i>t:t>i;case">=":return s?i>=t:t>=i;case"<=":return s?t>=i:i>=t}},n.prototype.on=function(t,e,i,s){t.addEventListener?t.addEventListener(e,i,s):t.attachEvent&&t.attachEvent("on"+e,i)},n.prototype.off=function(t,e,i,s){t.removeEventListener?t.removeEventListener(e,i,s):t.detachEvent&&t.detachEvent("on"+e,i)},n.prototype.trigger=function(e,i,s){var n={item:{count:this._items.length,index:this.current()}},o=t.camelCase(t.grep(["on",e,s],function(t){return t}).join("-").toLowerCase()),r=t.Event([e,"owl",s||"carousel"].join(".").toLowerCase(),t.extend({relatedTarget:this},n,i));return this._supress[e]||(t.each(this._plugins,function(t,e){e.onTrigger&&e.onTrigger(r)}),this.$element.trigger(r),this.settings&&"function"==typeof this.settings[o]&&this.settings[o].apply(this,r)),r},n.prototype.suppress=function(e){t.each(e,t.proxy(function(t,e){this._supress[e]=!0},this))},n.prototype.release=function(e){t.each(e,t.proxy(function(t,e){delete this._supress[e]},this))},n.prototype.browserSupport=function(){if(this.support3d=l(),this.support3d){this.transformVendor=h();var t=["transitionend","webkitTransitionEnd","transitionend","oTransitionEnd"];this.transitionEndVendor=t[a()],this.vendorName=this.transformVendor.replace(/Transform/i,""),this.vendorName=""!==this.vendorName?"-"+this.vendorName.toLowerCase()+"-":""}this.state.orientation=e.orientation},t.fn.owlCarousel=function(e){return this.each(function(){t(this).data("owlCarousel")||t(this).data("owlCarousel",new n(this,e))})},t.fn.owlCarousel.Constructor=n}(window.Zepto||window.jQuery,window,document),function(t,e){var i=function(e){this._core=e,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel":t.proxy(function(e){if(e.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(e.property&&"position"==e.property.name||"initialized"==e.type))for(var i=this._core.settings,s=i.center&&Math.ceil(i.items/2)||i.items,n=i.center&&-1*s||0,o=(e.property&&e.property.value||this._core.current())+n,r=this._core.clones().length,a=t.proxy(function(t,e){ +this.load(e)},this);n++-1||(n.each(t.proxy(function(i,s){var n,o=t(s),r=e.devicePixelRatio>1&&o.attr("data-src-retina")||o.attr("data-src");this._core.trigger("load",{element:o,url:r},"lazy"),o.is("img")?o.one("load.owl.lazy",t.proxy(function(){o.css("opacity",1),this._core.trigger("loaded",{element:o,url:r},"lazy")},this)).attr("src",r):(n=new Image,n.onload=t.proxy(function(){o.css({"background-image":"url("+r+")",opacity:"1"}),this._core.trigger("loaded",{element:o,url:r},"lazy")},this),n.src=r)},this)),this._loaded.push(s.get(0)))},i.prototype.destroy=function(){var t,e;for(t in this.handlers)this._core.$element.off(t,this.handlers[t]);for(e in Object.getOwnPropertyNames(this))"function"!=typeof this[e]&&(this[e]=null)},t.fn.owlCarousel.Constructor.Plugins.Lazy=i}(window.Zepto||window.jQuery,window,document),function(t){var e=function(i){this._core=i,this._handlers={"initialized.owl.carousel":t.proxy(function(){this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":t.proxy(function(t){this._core.settings.autoHeight&&"position"==t.property.name&&this.update()},this),"loaded.owl.lazy":t.proxy(function(t){this._core.settings.autoHeight&&t.element.closest("."+this._core.settings.itemClass)===this._core.$stage.children().eq(this._core.current())&&this.update()},this)},this._core.options=t.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},e.prototype.update=function(){this._core.$stage.parent().height(this._core.$stage.children().eq(this._core.current()).height()).addClass(this._core.settings.autoHeightClass)},e.prototype.destroy=function(){var t,e;for(t in this._handlers)this._core.$element.off(t,this._handlers[t]);for(e in Object.getOwnPropertyNames(this))"function"!=typeof this[e]&&(this[e]=null)},t.fn.owlCarousel.Constructor.Plugins.AutoHeight=e}(window.Zepto||window.jQuery,window,document),function(t,e,i){var s=function(e){this._core=e,this._videos={},this._playing=null,this._fullscreen=!1,this._handlers={"resize.owl.carousel":t.proxy(function(t){this._core.settings.video&&!this.isInFullScreen()&&t.preventDefault()},this),"refresh.owl.carousel changed.owl.carousel":t.proxy(function(){this._playing&&this.stop()},this),"prepared.owl.carousel":t.proxy(function(e){var i=t(e.content).find(".owl-video");i.length&&(i.css("display","none"),this.fetch(i,t(e.content)))},this)},this._core.options=t.extend({},s.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",t.proxy(function(t){this.play(t)},this))};s.Defaults={video:!1,videoHeight:!1,videoWidth:!1},s.prototype.fetch=function(t,e){var i=t.attr("data-vimeo-id")?"vimeo":"youtube",s=t.attr("data-vimeo-id")||t.attr("data-youtube-id"),n=t.attr("data-width")||this._core.settings.videoWidth,o=t.attr("data-height")||this._core.settings.videoHeight,r=t.attr("href");if(!r)throw new Error("Missing video URL.");if(s=r.match(/(http:|https:|)\/\/(player.|www.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com))\/(video\/|embed\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/),s[3].indexOf("youtu")>-1)i="youtube";else{if(!(s[3].indexOf("vimeo")>-1))throw new Error("Video URL not supported.");i="vimeo"}s=s[6],this._videos[r]={type:i,id:s,width:n,height:o},e.attr("data-video",r),this.thumbnail(t,this._videos[r])},s.prototype.thumbnail=function(e,i){var s,n,o,r=i.width&&i.height?'style="width:'+i.width+"px;height:"+i.height+'px;"':"",a=e.find("img"),h="src",l="",c=this._core.settings,d=function(t){n='
',s=c.lazyLoad?'
':'
',e.after(s),e.after(n)};return e.wrap('
"),this._core.settings.lazyLoad&&(h="data-src",l="owl-lazy"),a.length?(d(a.attr(h)),a.remove(),!1):void("youtube"===i.type?(o="http://img.youtube.com/vi/"+i.id+"/hqdefault.jpg",d(o)):"vimeo"===i.type&&t.ajax({type:"GET",url:"http://vimeo.com/api/v2/video/"+i.id+".json",jsonp:"callback",dataType:"jsonp",success:function(t){o=t[0].thumbnail_large,d(o)}}))},s.prototype.stop=function(){this._core.trigger("stop",null,"video"),this._playing.find(".owl-video-frame").remove(),this._playing.removeClass("owl-video-playing"),this._playing=null},s.prototype.play=function(e){this._core.trigger("play",null,"video"),this._playing&&this.stop();var i,s,n=t(e.target||e.srcElement),o=n.closest("."+this._core.settings.itemClass),r=this._videos[o.attr("data-video")],a=r.width||"100%",h=r.height||this._core.$stage.height();"youtube"===r.type?i='':"vimeo"===r.type&&(i=''),o.addClass("owl-video-playing"),this._playing=o,s=t('
'+i+"
"),n.after(s)},s.prototype.isInFullScreen=function(){var s=i.fullscreenElement||i.mozFullScreenElement||i.webkitFullscreenElement;return s&&t(s).parent().hasClass("owl-video-frame")&&(this._core.speed(0),this._fullscreen=!0),!(s&&this._fullscreen&&this._playing)&&(this._fullscreen?(this._fullscreen=!1,!1):!this._playing||this._core.state.orientation===e.orientation||(this._core.state.orientation=e.orientation,!1))},s.prototype.destroy=function(){var t,e;this._core.$element.off("click.owl.video");for(t in this._handlers)this._core.$element.off(t,this._handlers[t]);for(e in Object.getOwnPropertyNames(this))"function"!=typeof this[e]&&(this[e]=null)},t.fn.owlCarousel.Constructor.Plugins.Video=s}(window.Zepto||window.jQuery,window,document),function(t,e,i,s){var n=function(e){this.core=e,this.core.options=t.extend({},n.Defaults,this.core.options),this.swapping=!0,this.previous=s,this.next=s,this.handlers={"change.owl.carousel":t.proxy(function(t){"position"==t.property.name&&(this.previous=this.core.current(),this.next=t.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":t.proxy(function(t){this.swapping="translated"==t.type},this),"translate.owl.carousel":t.proxy(function(){this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};n.Defaults={animateOut:!1,animateIn:!1},n.prototype.swap=function(){if(1===this.core.settings.items&&this.core.support3d){this.core.speed(0);var e,i=t.proxy(this.clear,this),s=this.core.$stage.children().eq(this.previous),n=this.core.$stage.children().eq(this.next),o=this.core.settings.animateIn,r=this.core.settings.animateOut;this.core.current()!==this.previous&&(r&&(e=this.core.coordinates(this.previous)-this.core.coordinates(this.next),s.css({left:e+"px"}).addClass("animated owl-animated-out").addClass(r).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",i)),o&&n.addClass("animated owl-animated-in").addClass(o).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",i))}},n.prototype.clear=function(e){t(e.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.transitionEnd()},n.prototype.destroy=function(){var t,e;for(t in this.handlers)this.core.$element.off(t,this.handlers[t]);for(e in Object.getOwnPropertyNames(this))"function"!=typeof this[e]&&(this[e]=null)},t.fn.owlCarousel.Constructor.Plugins.Animate=n}(window.Zepto||window.jQuery,window,document),function(t,e,i){var s=function(e){this.core=e,this.core.options=t.extend({},s.Defaults,this.core.options),this.handlers={"translated.owl.carousel refreshed.owl.carousel":t.proxy(function(){this.autoplay()},this),"play.owl.autoplay":t.proxy(function(t,e,i){this.play(e,i)},this),"stop.owl.autoplay":t.proxy(function(){this.stop()},this),"mouseover.owl.autoplay":t.proxy(function(){this.core.settings.autoplayHoverPause&&this.pause()},this),"mouseleave.owl.autoplay":t.proxy(function(){this.core.settings.autoplayHoverPause&&this.autoplay()},this)},this.core.$element.on(this.handlers)};s.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},s.prototype.autoplay=function(){this.core.settings.autoplay&&!this.core.state.videoPlay?(e.clearInterval(this.interval),this.interval=e.setInterval(t.proxy(function(){this.play()},this),this.core.settings.autoplayTimeout)):e.clearInterval(this.interval)},s.prototype.play=function(){return i.hidden===!0||this.core.state.isTouch||this.core.state.isScrolling||this.core.state.isSwiping||this.core.state.inMotion?void 0:this.core.settings.autoplay===!1?void e.clearInterval(this.interval):void this.core.next(this.core.settings.autoplaySpeed)},s.prototype.stop=function(){e.clearInterval(this.interval)},s.prototype.pause=function(){e.clearInterval(this.interval)},s.prototype.destroy=function(){var t,i;e.clearInterval(this.interval);for(t in this.handlers)this.core.$element.off(t,this.handlers[t]);for(i in Object.getOwnPropertyNames(this))"function"!=typeof this[i]&&(this[i]=null)},t.fn.owlCarousel.Constructor.Plugins.autoplay=s}(window.Zepto||window.jQuery,window,document),function(t){"use strict";var e=function(i){this._core=i,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":t.proxy(function(e){this._core.settings.dotsData&&this._templates.push(t(e.content).find("[data-dot]").andSelf("[data-dot]").attr("data-dot"))},this),"add.owl.carousel":t.proxy(function(e){this._core.settings.dotsData&&this._templates.splice(e.position,0,t(e.content).find("[data-dot]").andSelf("[data-dot]").attr("data-dot"))},this),"remove.owl.carousel prepared.owl.carousel":t.proxy(function(t){this._core.settings.dotsData&&this._templates.splice(t.position,1)},this),"change.owl.carousel":t.proxy(function(t){if("position"==t.property.name&&!this._core.state.revert&&!this._core.settings.loop&&this._core.settings.navRewind){var e=this._core.current(),i=this._core.maximum(),s=this._core.minimum();t.data=t.property.value>i?e>=i?s:i:t.property.value").addClass(s.dotClass).append(t("")).prop("outerHTML")]),s.navContainer&&s.dotsContainer||(this._controls.$container=t("
").addClass(s.controlsClass).appendTo(this.$element)),this._controls.$indicators=s.dotsContainer?t(s.dotsContainer):t("
").hide().addClass(s.dotsClass).appendTo(this._controls.$container),this._controls.$indicators.on("click","div",t.proxy(function(e){var i=t(e.target).parent().is(this._controls.$indicators)?t(e.target).index():t(e.target).parent().index();e.preventDefault(),this.to(i,s.dotsSpeed)},this)),e=s.navContainer?t(s.navContainer):t("
").addClass(s.navContainerClass).prependTo(this._controls.$container),this._controls.$next=t("<"+s.navElement+">"),this._controls.$previous=this._controls.$next.clone(),this._controls.$previous.addClass(s.navClass[0]).html(s.navText[0]).hide().prependTo(e).on("click",t.proxy(function(){this.prev(s.navSpeed)},this)),this._controls.$next.addClass(s.navClass[1]).html(s.navText[1]).hide().appendTo(e).on("click",t.proxy(function(){this.next(s.navSpeed)},this));for(i in this._overrides)this._core[i]=t.proxy(this[i],this)},e.prototype.destroy=function(){var t,e,i,s;for(t in this._handlers)this.$element.off(t,this._handlers[t]);for(e in this._controls)this._controls[e].remove();for(s in this.overides)this._core[s]=this._overrides[s];for(i in Object.getOwnPropertyNames(this))"function"!=typeof this[i]&&(this[i]=null)},e.prototype.update=function(){var t,e,i,s=this._core.settings,n=this._core.clones().length/2,o=n+this._core.items().length,r=s.center||s.autoWidth||s.dotData?1:s.dotsEach||s.items;if("page"!==s.slideBy&&(s.slideBy=Math.min(s.slideBy,s.items)),s.dots||"page"==s.slideBy)for(this._pages=[],t=n,e=0,i=0;o>t;t++)(e>=r||0===e)&&(this._pages.push({start:t-n,end:t-n+r-1}),e=0,++i),e+=this._core.mergers(this._core.relative(t))},e.prototype.draw=function(){var e,i,s="",n=this._core.settings,o=(this._core.$stage.children(),this._core.relative(this._core.current()));if(!n.nav||n.loop||n.navRewind||(this._controls.$previous.toggleClass("disabled",0>=o),this._controls.$next.toggleClass("disabled",o>=this._core.maximum())),this._controls.$previous.toggle(n.nav),this._controls.$next.toggle(n.nav),n.dots){if(e=this._pages.length-this._controls.$indicators.children().length,n.dotData&&0!==e){for(i=0;i0?(s=new Array(e+1).join(this._templates[0]),this._controls.$indicators.append(s)):0>e&&this._controls.$indicators.children().slice(e).remove();this._controls.$indicators.find(".active").removeClass("active"),this._controls.$indicators.children().eq(t.inArray(this.current(),this._pages)).addClass("active")}this._controls.$indicators.toggle(n.dots)},e.prototype.onTrigger=function(e){var i=this._core.settings;e.page={index:t.inArray(this.current(),this._pages),count:this._pages.length,size:i&&(i.center||i.autoWidth||i.dotData?1:i.dotsEach||i.items)}},e.prototype.current=function(){var e=this._core.relative(this._core.current());return t.grep(this._pages,function(t){return t.start<=e&&t.end>=e}).pop()},e.prototype.getPosition=function(e){var i,s,n=this._core.settings;return"page"==n.slideBy?(i=t.inArray(this.current(),this._pages),s=this._pages.length,e?++i:--i,i=this._pages[(i%s+s)%s].start):(i=this._core.relative(this._core.current()),s=this._core.items().length,e?i+=n.slideBy:i-=n.slideBy),i},e.prototype.next=function(e){t.proxy(this._overrides.to,this._core)(this.getPosition(!0),e)},e.prototype.prev=function(e){t.proxy(this._overrides.to,this._core)(this.getPosition(!1),e)},e.prototype.to=function(e,i,s){var n;s?t.proxy(this._overrides.to,this._core)(e,i):(n=this._pages.length,t.proxy(this._overrides.to,this._core)(this._pages[(e%n+n)%n].start,i))},t.fn.owlCarousel.Constructor.Plugins.Navigation=e}(window.Zepto||window.jQuery,window,document),function(t,e){"use strict";var i=function(s){this._core=s,this._hashes={},this.$element=this._core.$element,this._handlers={"initialized.owl.carousel":t.proxy(function(){"URLHash"==this._core.settings.startPosition&&t(e).trigger("hashchange.owl.navigation")},this),"prepared.owl.carousel":t.proxy(function(e){var i=t(e.content).find("[data-hash]").andSelf("[data-hash]").attr("data-hash");this._hashes[i]=e.content},this)},this._core.options=t.extend({},i.Defaults,this._core.options),this.$element.on(this._handlers),t(e).on("hashchange.owl.navigation",t.proxy(function(){var t=e.location.hash.substring(1),i=this._core.$stage.children(),s=this._hashes[t]&&i.index(this._hashes[t])||0;return!!t&&void this._core.to(s,!1,!0)},this))};i.Defaults={URLhashListener:!1},i.prototype.destroy=function(){var i,s;t(e).off("hashchange.owl.navigation");for(i in this._handlers)this._core.$element.off(i,this._handlers[i]);for(s in Object.getOwnPropertyNames(this))"function"!=typeof this[s]&&(this[s]=null)},t.fn.owlCarousel.Constructor.Plugins.Hash=i}(window.Zepto||window.jQuery,window,document),jQuery(document).ready(function(t){"use strict";var e=function(){var e={heightHeader:80,heightAdminbar:50},i={menuIcon:t(".menu-toggle"),dropdownArrow:t("span.dropdown-arrow"),menuNav:t(".main-navigation"),wavesButtonSelector:".button"},s=function(){i.menuIcon.on("click",n),t("li.menu-item-has-children").on("click",t(this).closest("span.dropdown-arrow"),o)},n=function(s){var n=(e.heightHeader,e.heightAdminbar);t("body").hasClass("admin-bar")||(n=0),t(this).toggleClass("is-opened"),i.menuNav.toggleClass("is-extended").removeClass("init"),t("body").toggleClass("is-menu-opened")},o=function(e){e.stopImmediatePropagation(),t(this).toggleClass("is-extended")},r=function(){t(".menu-item-has-children").each(function(){t(this).append("")})},a=function(){r(),s()};return{init:a}}();e.init()}),function(){var t=navigator.userAgent.toLowerCase().indexOf("webkit")>-1,e=navigator.userAgent.toLowerCase().indexOf("opera")>-1,i=navigator.userAgent.toLowerCase().indexOf("msie")>-1;(t||e||i)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e),t&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus()))},!1)}(),jQuery(document).ready(function(t){"use strict";var e=function(){return!0};e()||(console.log=function(){}),t(".site-header .mobile-menu-button").on("click",function(e){e.preventDefault(),t(".mobile-menu").toggleClass("is-visible")})}); \ No newline at end of file diff --git a/assets/scripts/scripts.js b/assets/scripts/scripts.js index 883778e..c5dd9a5 100644 --- a/assets/scripts/scripts.js +++ b/assets/scripts/scripts.js @@ -19,4 +19,28 @@ jQuery( document ).ready( function ( $ ) { console.log = function() {}; } + // Show the advanced mobile menu + $('.site-header .mobile-menu-button').on('click', function(e) { + e.preventDefault(); + $('.mobile-menu').toggleClass('is-visible'); + }); + + // Add visible element to the list. + function registerIsVisibleToggle( $element ) { + siteOverlayVisibleStack.push($element); + } + + // Show/hide the site overlay + function toggleSiteOverlay( element, action ) { + if ( 'show' === action ) { + $(element).addClass('is-visible'); + } + if ( 'hide' === action ) { + $(element).removeClass('is-visible'); + } + if ( 'toggle' === action ) { + $(element).toggleClass('is-visible'); + } + } + }); diff --git a/header.php b/header.php index 467f31f..ce1f049 100644 --- a/header.php +++ b/header.php @@ -52,9 +52,44 @@ 'primary', 'menu_id' => 'primary-menu' ) ); ?>
+ +
+ + + +
diff --git a/scripts.js b/scripts.js index b0c8a2a..de70049 100644 --- a/scripts.js +++ b/scripts.js @@ -1 +1 @@ -jQuery(document).ready(function(n){"use strict";var o=function(){return!0};o()||(console.log=function(){})}); \ No newline at end of file +jQuery(document).ready(function(e){"use strict";var n=function(){return!0};n()||(console.log=function(){}),e(".site-header .mobile-menu-button").on("click",function(n){n.preventDefault(),e(".mobile-menu").toggleClass("is-visible")})}); \ No newline at end of file