From 50f5f94e4a4981b2dd107645564d3264ded35e5d Mon Sep 17 00:00:00 2001 From: Holger Koenemann Date: Fri, 19 Dec 2014 08:50:59 +0100 Subject: [PATCH] Hero widget and owl.carousel slider Adding a new hero widget position and slider owl.carousel script to slide from one widget to another --- css/owl.carousel.css | 216 ++ css/theme.css | 79 +- footer.php | 30 + hero.php | 22 +- inc/customizer.php | 22 + inc/enqueue.php | 4 +- inc/widgets.php | 10 + js/owl.carousel.js | 3069 ++++++++++++++++++++ js/owl.carousel.min.js | 2 + sass/owlcarousel/_mixins.scss | 21 + sass/owlcarousel/_theme.scss | 63 + sass/owlcarousel/owl.animate.css | 2 + sass/owlcarousel/owl.animate.css.map | 7 + sass/owlcarousel/owl.animate.scss | 40 + sass/owlcarousel/owl.autoheight.css | 2 + sass/owlcarousel/owl.autoheight.css.map | 7 + sass/owlcarousel/owl.autoheight.scss | 9 + sass/owlcarousel/owl.carousel.css | 2 + sass/owlcarousel/owl.carousel.css.map | 7 + sass/owlcarousel/owl.carousel.scss | 108 + sass/owlcarousel/owl.lazyload.css | 2 + sass/owlcarousel/owl.lazyload.css.map | 7 + sass/owlcarousel/owl.lazyload.scss | 18 + sass/owlcarousel/owl.theme.default.css | 2 + sass/owlcarousel/owl.theme.default.css.map | 7 + sass/owlcarousel/owl.theme.default.scss | 31 + sass/owlcarousel/owl.theme.green.css | 2 + sass/owlcarousel/owl.theme.green.css.map | 7 + sass/owlcarousel/owl.theme.green.scss | 31 + sass/owlcarousel/owl.video.css | 2 + sass/owlcarousel/owl.video.css.map | 7 + sass/owlcarousel/owl.video.scss | 51 + sass/theme.css.map | 4 +- sass/theme.scss | 1 - sass/underscores/style.scss | 109 - sass/understrap/understrap.scss | 2 +- 36 files changed, 3806 insertions(+), 199 deletions(-) create mode 100644 css/owl.carousel.css create mode 100644 js/owl.carousel.js create mode 100644 js/owl.carousel.min.js create mode 100755 sass/owlcarousel/_mixins.scss create mode 100755 sass/owlcarousel/_theme.scss create mode 100644 sass/owlcarousel/owl.animate.css create mode 100644 sass/owlcarousel/owl.animate.css.map create mode 100755 sass/owlcarousel/owl.animate.scss create mode 100644 sass/owlcarousel/owl.autoheight.css create mode 100644 sass/owlcarousel/owl.autoheight.css.map create mode 100755 sass/owlcarousel/owl.autoheight.scss create mode 100644 sass/owlcarousel/owl.carousel.css create mode 100644 sass/owlcarousel/owl.carousel.css.map create mode 100755 sass/owlcarousel/owl.carousel.scss create mode 100644 sass/owlcarousel/owl.lazyload.css create mode 100644 sass/owlcarousel/owl.lazyload.css.map create mode 100755 sass/owlcarousel/owl.lazyload.scss create mode 100644 sass/owlcarousel/owl.theme.default.css create mode 100644 sass/owlcarousel/owl.theme.default.css.map create mode 100755 sass/owlcarousel/owl.theme.default.scss create mode 100644 sass/owlcarousel/owl.theme.green.css create mode 100644 sass/owlcarousel/owl.theme.green.css.map create mode 100755 sass/owlcarousel/owl.theme.green.scss create mode 100644 sass/owlcarousel/owl.video.css create mode 100644 sass/owlcarousel/owl.video.css.map create mode 100755 sass/owlcarousel/owl.video.scss delete mode 100755 sass/underscores/style.scss diff --git a/css/owl.carousel.css b/css/owl.carousel.css new file mode 100644 index 0000000..ecc8071 --- /dev/null +++ b/css/owl.carousel.css @@ -0,0 +1,216 @@ +/* + * Owl Carousel - Animate Plugin + */ +.owl-carousel .animated { + -webkit-animation-duration: 1000ms; + animation-duration: 1000ms; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} +.owl-carousel .owl-animated-in { + z-index: 0; +} +.owl-carousel .owl-animated-out { + z-index: 1; +} +.owl-carousel .fadeOut { + -webkit-animation-name: fadeOut; + animation-name: fadeOut; +} + +@-webkit-keyframes fadeOut { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} +@keyframes fadeOut { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +/* + * Owl Carousel - Auto Height Plugin + */ +.owl-height { + -webkit-transition: height 500ms ease-in-out; + -moz-transition: height 500ms ease-in-out; + -ms-transition: height 500ms ease-in-out; + -o-transition: height 500ms ease-in-out; + transition: height 500ms ease-in-out; +} + +/* + * Core Owl Carousel CSS File + */ +.owl-carousel { + display: none; + width: 100%; + -webkit-tap-highlight-color: transparent; + /* position relative and z-index fix webkit rendering fonts issue */ + position: relative; + z-index: 1; +} +.owl-carousel .owl-stage { + position: relative; + -ms-touch-action: pan-Y; +} +.owl-carousel .owl-stage:after { + content: "."; + display: block; + clear: both; + visibility: hidden; + line-height: 0; + height: 0; +} +.owl-carousel .owl-stage-outer { + position: relative; + overflow: hidden; + /* fix for flashing background */ + -webkit-transform: translate3d(0px, 0px, 0px); +} +.owl-carousel .owl-controls .owl-nav .owl-prev, +.owl-carousel .owl-controls .owl-nav .owl-next, +.owl-carousel .owl-controls .owl-dot { + cursor: pointer; + cursor: hand; + -webkit-user-select: none; + -khtml-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-tap-highlight-color: transparent; + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.owl-carousel .owl-item img { + display: block; + width: 100%; + -webkit-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; +} +.owl-carousel.owl-rtl .owl-item { + float: right; +} + +/* No Js */ +.no-js .owl-carousel { + display: block; +} + +/* + * Owl Carousel - Lazy Load Plugin + */ +.owl-carousel .owl-item .owl-lazy { + opacity: 0; + -webkit-transition: opacity 400ms ease; + -moz-transition: opacity 400ms ease; + -ms-transition: opacity 400ms ease; + -o-transition: opacity 400ms ease; + transition: opacity 400ms ease; +} +.owl-carousel .owl-item img { + transform-style: preserve-3d; +} + +/* + * Owl Carousel - Video Plugin + */ +.owl-carousel .owl-video-wrapper { + position: relative; + height: 100%; + background: #000; +} +.owl-carousel .owl-video-play-icon { + position: absolute; + height: 80px; + width: 80px; + left: 50%; + top: 50%; + margin-left: -40px; + margin-top: -40px; + background: url("owl.video.play.png") no-repeat; + cursor: pointer; + z-index: 1; + -webkit-backface-visibility: hidden; + -webkit-transition: scale 100ms ease; + -moz-transition: scale 100ms ease; + -ms-transition: scale 100ms ease; + -o-transition: scale 100ms ease; + transition: scale 100ms ease; +} +.owl-carousel .owl-video-play-icon:hover { + -webkit-transition: scale(1.3, 1.3); + -moz-transition: scale(1.3, 1.3); + -ms-transition: scale(1.3, 1.3); + -o-transition: scale(1.3, 1.3); + transition: scale(1.3, 1.3); +} +.owl-carousel .owl-video-playing .owl-video-tn, +.owl-carousel .owl-video-playing .owl-video-play-icon { + display: none; +} +.owl-carousel .owl-video-tn { + opacity: 0; + height: 100%; + background-position: center center; + background-repeat: no-repeat; + -webkit-background-size: contain; + -moz-background-size: contain; + -o-background-size: contain; + background-size: contain; + -webkit-transition: opacity 400ms ease; + -moz-transition: opacity 400ms ease; + -ms-transition: opacity 400ms ease; + -o-transition: opacity 400ms ease; + transition: opacity 400ms ease; +} +.owl-carousel .owl-video-frame { + position: relative; + z-index: 1; +} diff --git a/css/theme.css b/css/theme.css index ca1b99e..c747215 100644 --- a/css/theme.css +++ b/css/theme.css @@ -1,74 +1,5 @@ -/* -Error: Invalid CSS after "...les/alignments"": expected "{", was ";" - on line 65 of underscores/understrap_underscores.scss - from line 1 of theme.scss - -60: @import "modules/accessibility"; -61: -62: /*-------------------------------------------------------------- -63: 7.0 Alignments -64: --------------------------------------------------------------*\/ -65: /@import "modules/alignments"; -66: -67: /*-------------------------------------------------------------- -68: 8.0 Clearings -69: --------------------------------------------------------------*\/ -70: @import "modules/clearings"; - -Backtrace: -underscores/understrap_underscores.scss:65 -theme.scss:1 -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/scss/parser.rb:1165:in `expected' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/scss/parser.rb:1101:in `expected' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/scss/parser.rb:1096:in `tok!' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/scss/parser.rb:641:in `block' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/scss/parser.rb:635:in `ruleset' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/scss/parser.rb:660:in `block_child' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/scss/parser.rb:653:in `block_contents' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/scss/parser.rb:117:in `stylesheet' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/scss/parser.rb:42:in `parse' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/engine.rb:393:in `_to_tree' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/engine.rb:299:in `to_tree' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:313:in `block in visit_import' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/stack.rb:88:in `block in with_import' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/stack.rb:115:in `with_frame' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/stack.rb:88:in `with_import' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:312:in `visit_import' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:36:in `visit' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:158:in `block in visit' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/stack.rb:79:in `block in with_base' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/stack.rb:115:in `with_frame' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/stack.rb:79:in `with_base' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:158:in `visit' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:52:in `block in visit_children' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:52:in `map' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:52:in `visit_children' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:179:in `with_environment' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:166:in `visit_children' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:36:in `block in visit' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:186:in `visit_root' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:36:in `visit' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:157:in `visit' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:8:in `visit' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/root_node.rb:36:in `css_tree' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/tree/root_node.rb:29:in `render_with_sourcemap' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/engine.rb:368:in `_render_with_sourcemap' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/engine.rb:285:in `render_with_sourcemap' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/plugin/compiler.rb:490:in `update_stylesheet' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/plugin/compiler.rb:215:in `block in update_stylesheets' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/plugin/compiler.rb:209:in `each' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/plugin/compiler.rb:209:in `update_stylesheets' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/plugin.rb:82:in `update_stylesheets' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/exec/sass_scss.rb:350:in `watch_or_update' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/exec/sass_scss.rb:50:in `process_result' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/exec/base.rb:52:in `parse' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/lib/sass/exec/base.rb:19:in `parse!' -/Library/Ruby/Gems/2.0.0/gems/sass-3.4.9/bin/scss:13:in `' -/usr/bin/scss:23:in `load' -/usr/bin/scss:23:in `
' -*/ -body:before { - white-space: pre; - font-family: monospace; - content: "Error: Invalid CSS after \"...les/alignments\"\": expected \"{\", was \";\"\A on line 65 of underscores/understrap_underscores.scss\A from line 1 of theme.scss\A \A 60: @import \"modules/accessibility\";\A 61: \A 62: /*--------------------------------------------------------------\A 63: 7.0 Alignments\A 64: --------------------------------------------------------------*/\A 65: /@import \"modules/alignments\";\A 66: \A 67: /*--------------------------------------------------------------\A 68: 8.0 Clearings\A 69: --------------------------------------------------------------*/\A 70: @import \"modules/clearings\";"; } +html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{border:0;font-family:inherit;font-size:100%;font-style:inherit;font-weight:inherit;margin:0;outline:0;padding:0;vertical-align:baseline}html{font-size:62.5%;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{background:#fff}article,aside,details,figcaption,figure,footer,header,main,nav,section{display:block}ol,ul{list-style:none}table{border-collapse:separate;border-spacing:0}caption,th,td{font-weight:normal;text-align:left}blockquote:before,blockquote:after,q:before,q:after{content:""}blockquote,q{quotes:"" ""}a:focus{outline:thin dotted}a:hover,a:active{outline:0}a img{border:0}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}ul,ol{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ul,li>ol{margin-bottom:0;margin-left:1.5em}dt{font-weight:bold}dd{margin:0 1.5em 1.5em}img{height:auto;max-width:100%}figure{margin:0}table{margin:0 0 1.5em;width:100%}th{font-weight:bold}a{color:#4169e1}a:visited{color:purple}a:hover,a:focus,a:active{color:#191970}.main-navigation{clear:both;display:block;float:left;width:100%}.main-navigation ul{list-style:none;margin:0;padding-left:0}.main-navigation ul ul{box-shadow:0 3px 3px rgba(0,0,0,0.2);float:left;position:absolute;top:1.5em;left:-999em;z-index:99999}.main-navigation ul ul ul{left:-999em;top:0}.main-navigation ul ul li:hover>ul{left:100%}.main-navigation ul ul a{width:200px}.main-navigation ul li:hover>ul{left:auto}.main-navigation li{float:left;position:relative}.main-navigation a{display:block;text-decoration:none}.menu-toggle{display:none}@media screen and (max-width: 600px){.menu-toggle,.main-navigation.toggled .nav-menu{display:block}.main-navigation ul{display:none}}.site-main .comment-navigation,.site-main .paging-navigation,.site-main .post-navigation{margin:0 0 1.5em;overflow:hidden}.comment-navigation .nav-previous,.paging-navigation .nav-previous,.post-navigation .nav-previous{float:left;width:50%}.comment-navigation .nav-next,.paging-navigation .nav-next,.post-navigation .nav-next{float:right;text-align:right;width:50%}.screen-reader-text{clip:rect(1px, 1px, 1px, 1px);position:absolute !important;height:1px;width:1px;overflow:hidden}.screen-reader-text:hover,.screen-reader-text:active,.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,0.6);clip:auto !important;color:#21759b;display:block;font-size:14px;font-size:1.4rem;font-weight:bold;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.alignleft{display:inline;float:left;margin-right:1.5em}.alignright{display:inline;float:right;margin-left:1.5em}.aligncenter{display:block;margin:0 auto}.clear:before,.clear:after,.entry-content:before,.entry-content:after,.comment-content:before,.comment-content:after,.site-header:before,.site-header:after,.site-content:before,.site-content:after,.site-footer:before,.site-footer:after{content:"";display:table}.clear:after,.entry-content:after,.comment-content:after,.site-header:after,.site-content:after,.site-footer:after{clear:both}.widget{margin:0 0 1.5em}.widget select{max-width:100%}.widget_search .search-submit{display:none}.sticky{display:block}.hentry{margin:0 0 1.5em}.byline,.updated:not(.published){display:none}.single .byline,.group-blog .byline{display:inline}.page-content,.entry-content,.entry-summary{margin:1.5em 0 0}.page-links{clear:both;margin:0 0 1.5em}.blog .format-aside .entry-title,.archive .format-aside .entry-title{display:none}.comment-content a{word-wrap:break-word}.bypostauthor{display:block}.infinite-scroll .paging-navigation,.infinite-scroll.neverending .site-footer{display:none}.infinity-end.neverending .site-footer{display:block}.page-content img.wp-smiley,.entry-content img.wp-smiley,.comment-content img.wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*="wp-image-"]{display:block;margin:0 auto}.wp-caption .wp-caption-text{margin:0.8075em 0}.wp-caption-text{text-align:center}.gallery{margin-bottom:1.5em}.gallery-item{display:inline-block;text-align:center;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}/*! normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,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:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}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{line-height:normal}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;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.table td,.table th{background-color:#fff !important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url("../fonts/bootstrap/glyphicons-halflings-regular.eot");src:url("../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("../fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"),url("../fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"),url("../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#ff6d5a;text-decoration:none}a:hover,a:focus{color:#ff290e;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;width:100% \9;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;display:inline-block;width:100% \9;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;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}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h1 .small,h2 small,h2 .small,h3 small,h3 .small,h4 small,h4 .small,h5 small,h5 .small,h6 small,h6 .small,.h1 small,.h1 .small,.h2 small,.h2 .small,.h3 small,.h3 .small,.h4 small,.h4 .small,.h5 small,.h5 .small,.h6 small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,h1 .small,.h1 small,.h1 .small,h2 small,h2 .small,.h2 small,.h2 .small,h3 small,h3 .small,.h3 small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,h4 .small,.h4 small,.h4 .small,h5 small,h5 .small,.h5 small,.h5 .small,h6 small,h6 .small,.h6 small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width: 768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#ff6d5a}a.text-primary:hover{color:#ff4027}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff}.bg-primary{background-color:#ff6d5a}a.bg-primary:hover{background-color:#ff4027}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ul ol,ol ul,ol ol{margin-bottom:0}.list-unstyled,.list-inline{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857}dt{font-weight:bold}dd{margin-left:0}.dl-horizontal dd:before,.dl-horizontal dd:after{content:" ";display:table}.dl-horizontal dd:after{clear:both}@media (min-width: 768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,.blockquote-reverse small:before,.blockquote-reverse .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,.blockquote-reverse small:after,.blockquote-reverse .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}@media (min-width: 768px){.container{width:750px}}@media (min-width: 992px){.container{width:970px}}@media (min-width: 1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container-fluid:before,.container-fluid:after{content:" ";display:table}.container-fluid:after{clear:both}.row{margin-left:-15px;margin-right:-15px}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-1{width:8.33333%}.col-xs-2{width:16.66667%}.col-xs-3{width:25%}.col-xs-4{width:33.33333%}.col-xs-5{width:41.66667%}.col-xs-6{width:50%}.col-xs-7{width:58.33333%}.col-xs-8{width:66.66667%}.col-xs-9{width:75%}.col-xs-10{width:83.33333%}.col-xs-11{width:91.66667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.33333%}.col-xs-pull-2{right:16.66667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.33333%}.col-xs-pull-5{right:41.66667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.33333%}.col-xs-pull-8{right:66.66667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.33333%}.col-xs-pull-11{right:91.66667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.33333%}.col-xs-push-2{left:16.66667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.33333%}.col-xs-push-5{left:41.66667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.33333%}.col-xs-push-8{left:66.66667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.33333%}.col-xs-push-11{left:91.66667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0%}.col-xs-offset-1{margin-left:8.33333%}.col-xs-offset-2{margin-left:16.66667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.33333%}.col-xs-offset-5{margin-left:41.66667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.33333%}.col-xs-offset-8{margin-left:66.66667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.33333%}.col-xs-offset-11{margin-left:91.66667%}.col-xs-offset-12{margin-left:100%}@media (min-width: 768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.33333%}.col-sm-pull-2{right:16.66667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333%}.col-sm-pull-5{right:41.66667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.33333%}.col-sm-pull-8{right:66.66667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333%}.col-sm-pull-11{right:91.66667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.33333%}.col-sm-push-2{left:16.66667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333%}.col-sm-push-5{left:41.66667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.33333%}.col-sm-push-8{left:66.66667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333%}.col-sm-push-11{left:91.66667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0%}.col-sm-offset-1{margin-left:8.33333%}.col-sm-offset-2{margin-left:16.66667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333%}.col-sm-offset-5{margin-left:41.66667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333%}.col-sm-offset-8{margin-left:66.66667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333%}.col-sm-offset-11{margin-left:91.66667%}.col-sm-offset-12{margin-left:100%}}@media (min-width: 992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.33333%}.col-md-pull-2{right:16.66667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333%}.col-md-pull-5{right:41.66667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.33333%}.col-md-pull-8{right:66.66667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333%}.col-md-pull-11{right:91.66667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.33333%}.col-md-push-2{left:16.66667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333%}.col-md-push-5{left:41.66667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.33333%}.col-md-push-8{left:66.66667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333%}.col-md-push-11{left:91.66667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0%}.col-md-offset-1{margin-left:8.33333%}.col-md-offset-2{margin-left:16.66667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333%}.col-md-offset-5{margin-left:41.66667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333%}.col-md-offset-8{margin-left:66.66667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333%}.col-md-offset-11{margin-left:91.66667%}.col-md-offset-12{margin-left:100%}}@media (min-width: 1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.33333%}.col-lg-pull-2{right:16.66667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333%}.col-lg-pull-5{right:41.66667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.33333%}.col-lg-pull-8{right:66.66667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333%}.col-lg-pull-11{right:91.66667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.33333%}.col-lg-push-2{left:16.66667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333%}.col-lg-push-5{left:41.66667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.33333%}.col-lg-push-8{left:66.66667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333%}.col-lg-push-11{left:91.66667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0%}.col-lg-offset-1{margin-left:8.33333%}.col-lg-offset-2{margin-left:16.66667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333%}.col-lg-offset-5{margin-left:41.66667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333%}.col-lg-offset-8{margin-left:66.66667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333%}.col-lg-offset-11{margin-left:91.66667%}.col-lg-offset-12{margin-left:100%}}table{background-color:transparent}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>thead>tr>td,.table>tbody>tr>th,.table>tbody>tr>td,.table>tfoot>tr>th,.table>tfoot>tr>td{padding:8px;line-height:1.42857;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>th,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>thead>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>thead>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>thead>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>thead>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>thead>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media screen and (max-width: 767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:auto;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;-o-transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:34px;line-height:1.42857 \0}input[type="date"].input-sm,.form-horizontal .form-group-sm input[type="date"].form-control,.input-group-sm>input[type="date"].form-control,.input-group-sm>input[type="date"].input-group-addon,.input-group-sm>.input-group-btn>input[type="date"].btn,input[type="time"].input-sm,.form-horizontal .form-group-sm input[type="time"].form-control,.input-group-sm>input[type="time"].form-control,.input-group-sm>input[type="time"].input-group-addon,.input-group-sm>.input-group-btn>input[type="time"].btn,input[type="datetime-local"].input-sm,.form-horizontal .form-group-sm input[type="datetime-local"].form-control,.input-group-sm>input[type="datetime-local"].form-control,.input-group-sm>input[type="datetime-local"].input-group-addon,.input-group-sm>.input-group-btn>input[type="datetime-local"].btn,input[type="month"].input-sm,.form-horizontal .form-group-sm input[type="month"].form-control,.input-group-sm>input[type="month"].form-control,.input-group-sm>input[type="month"].input-group-addon,.input-group-sm>.input-group-btn>input[type="month"].btn{line-height:30px}input[type="date"].input-lg,.form-horizontal .form-group-lg input[type="date"].form-control,.input-group-lg>input[type="date"].form-control,.input-group-lg>input[type="date"].input-group-addon,.input-group-lg>.input-group-btn>input[type="date"].btn,input[type="time"].input-lg,.form-horizontal .form-group-lg input[type="time"].form-control,.input-group-lg>input[type="time"].form-control,.input-group-lg>input[type="time"].input-group-addon,.input-group-lg>.input-group-btn>input[type="time"].btn,input[type="datetime-local"].input-lg,.form-horizontal .form-group-lg input[type="datetime-local"].form-control,.input-group-lg>input[type="datetime-local"].form-control,.input-group-lg>input[type="datetime-local"].input-group-addon,.input-group-lg>.input-group-btn>input[type="datetime-local"].btn,input[type="month"].input-lg,.form-horizontal .form-group-lg input[type="month"].form-control,.input-group-lg>input[type="month"].form-control,.input-group-lg>input[type="month"].input-group-addon,.input-group-lg>.input-group-btn>input[type="month"].btn{line-height:46px}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;min-height:20px;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="radio"].disabled,fieldset[disabled] input[type="radio"],input[type="checkbox"][disabled],input[type="checkbox"].disabled,fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,fieldset[disabled] .radio-inline,.checkbox-inline.disabled,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,fieldset[disabled] .radio label,.checkbox.disabled label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-horizontal .form-group-lg .form-control-static.form-control,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.form-control-static.input-sm,.form-horizontal .form-group-sm .form-control-static.form-control,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-left:0;padding-right:0}.input-sm,.form-horizontal .form-group-sm .form-control,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm,.form-horizontal .form-group-sm select.form-control,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,.input-group-sm>.input-group-btn>select.btn{height:30px;line-height:30px}textarea.input-sm,.form-horizontal .form-group-sm textarea.form-control,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,.input-group-sm>.input-group-btn>textarea.btn,select[multiple].input-sm,.form-horizontal .form-group-sm select[multiple].form-control,.input-group-sm>select[multiple].form-control,.input-group-sm>select[multiple].input-group-addon,.input-group-sm>.input-group-btn>select[multiple].btn{height:auto}.input-lg,.form-horizontal .form-group-lg .form-control,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg,.form-horizontal .form-group-lg select.form-control,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,.input-group-lg>.input-group-btn>select.btn{height:46px;line-height:46px}textarea.input-lg,.form-horizontal .form-group-lg textarea.form-control,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,.input-group-lg>.input-group-btn>textarea.btn,select[multiple].input-lg,.form-horizontal .form-group-lg select[multiple].form-control,.input-group-lg>select[multiple].form-control,.input-group-lg>select[multiple].input-group-addon,.input-group-lg>.input-group-btn>select[multiple].btn{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:25px;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center}.input-lg+.form-control-feedback,.form-horizontal .form-group-lg .form-control+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.form-horizontal .form-group-sm .form-control+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label.sr-only ~ .form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width: 768px){.form-inline .form-group,.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control,.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group,.navbar-form .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.navbar-form .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.navbar-form .input-group .input-group-btn,.form-inline .input-group .form-control,.navbar-form .input-group .form-control{width:auto}.form-inline .input-group>.form-control,.navbar-form .input-group>.form-control{width:100%}.form-inline .control-label,.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.navbar-form .radio,.form-inline .checkbox,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.navbar-form .radio label,.form-inline .checkbox label,.navbar-form .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.navbar-form .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback,.navbar-form .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{content:" ";display:table}.form-horizontal .form-group:after{clear:both}@media (min-width: 768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}@media (min-width: 768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width: 768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open>.btn-default.dropdown-toggle{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.btn-default.dropdown-toggle{background-image:none}.btn-default.disabled,.btn-default.disabled:hover,.btn-default.disabled:focus,.btn-default.disabled:active,.btn-default.disabled.active,.btn-default[disabled],.btn-default[disabled]:hover,.btn-default[disabled]:focus,.btn-default[disabled]:active,.btn-default[disabled].active,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default:hover,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#ff6d5a;border-color:#ff5641}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#ff4027;border-color:#ff2003}.btn-primary:active,.btn-primary.active,.open>.btn-primary.dropdown-toggle{background-image:none}.btn-primary.disabled,.btn-primary.disabled:hover,.btn-primary.disabled:focus,.btn-primary.disabled:active,.btn-primary.disabled.active,.btn-primary[disabled],.btn-primary[disabled]:hover,.btn-primary[disabled]:focus,.btn-primary[disabled]:active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary:hover,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary.active{background-color:#ff6d5a;border-color:#ff5641}.btn-primary .badge{color:#ff6d5a;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.btn-success.dropdown-toggle{background-image:none}.btn-success.disabled,.btn-success.disabled:hover,.btn-success.disabled:focus,.btn-success.disabled:active,.btn-success.disabled.active,.btn-success[disabled],.btn-success[disabled]:hover,.btn-success[disabled]:focus,.btn-success[disabled]:active,.btn-success[disabled].active,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success:hover,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.btn-info.dropdown-toggle{background-image:none}.btn-info.disabled,.btn-info.disabled:hover,.btn-info.disabled:focus,.btn-info.disabled:active,.btn-info.disabled.active,.btn-info[disabled],.btn-info[disabled]:hover,.btn-info[disabled]:focus,.btn-info[disabled]:active,.btn-info[disabled].active,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info:hover,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.btn-warning.dropdown-toggle{background-image:none}.btn-warning.disabled,.btn-warning.disabled:hover,.btn-warning.disabled:focus,.btn-warning.disabled:active,.btn-warning.disabled.active,.btn-warning[disabled],.btn-warning[disabled]:hover,.btn-warning[disabled]:focus,.btn-warning[disabled]:active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning:hover,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.btn-danger.dropdown-toggle{background-image:none}.btn-danger.disabled,.btn-danger.disabled:hover,.btn-danger.disabled:focus,.btn-danger.disabled:active,.btn-danger.disabled.active,.btn-danger[disabled],.btn-danger[disabled]:hover,.btn-danger[disabled]:focus,.btn-danger[disabled]:active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger:hover,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#ff6d5a;font-weight:normal;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#ff290e;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:hover,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#ff6d5a}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width: 768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar:before,.btn-toolbar:after{content:" ";display:table}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle,.btn-group-lg.btn-group>.btn+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret,.btn-group-lg>.btn .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret,.dropup .btn-group-lg>.btn .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{content:" ";display:table}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{position:absolute;z-index:-1;opacity:0;filter:alpha(opacity=0)}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm,.form-horizontal .form-group-sm .input-group-addon.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg,.form-horizontal .form-group-lg .input-group-addon.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav:before,.nav:after{content:" ";display:table}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#ff6d5a}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#ff6d5a}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li,.nav-tabs.nav-justified>li{float:none}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width: 768px){.nav-justified>li,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width: 768px){.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:before,.navbar:after{content:" ";display:table}.navbar:after{clear:both}@media (min-width: 768px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{content:" ";display:table}.navbar-header:after{clear:both}@media (min-width: 768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{content:" ";display:table}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media (min-width: 768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-width: 480px) and (orientation: landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-header,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width: 768px){.container>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-header,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width: 768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}@media (min-width: 768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width: 768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width: 768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width: 767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width: 768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width: 768px){.navbar-left{float:left !important}.navbar-right{float:right !important}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (max-width: 767px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width: 768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm,.btn-group-sm>.navbar-btn.btn{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs,.btn-group-xs>.navbar-btn.btn{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width: 768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width: 767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:hover,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#090909}.navbar-inverse .navbar-brand{color:#777}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#777}.navbar-inverse .navbar-nav>li>a{color:#777}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#090909;color:#fff}@media (max-width: 767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#777}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#777}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:hover,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/ ";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857;text-decoration:none;color:#ff6d5a;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>a:focus,.pagination>li>span:hover,.pagination>li>span:focus{color:#ff290e;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:hover,.pagination>.active>a:focus,.pagination>.active>span,.pagination>.active>span:hover,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#ff6d5a;border-color:#ff6d5a;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager:before,.pager:after{content:" ";display:table}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#ff6d5a}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#ff4027}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#ff6d5a;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width: 768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.thumbnail>img,.thumbnail a>img{display:block;width:100% \9;max-width:100%;height:auto;margin-left:auto;margin-right:auto}.thumbnail .caption{padding:9px;color:#333}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#ff6d5a}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#ff6d5a;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar[aria-valuenow="1"],.progress-bar[aria-valuenow="2"]{min-width:30px}.progress-bar[aria-valuenow="0"]{color:#777;min-width:30px;background-color:transparent;background-image:none;box-shadow:none}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#ff6d5a;border-color:#ff6d5a}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#fff}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{content:" ";display:table}.panel-body:after{clear:both}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#ff6d5a}.panel-primary>.panel-heading{color:#fff;background-color:#ff6d5a;border-color:#ff6d5a}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ff6d5a}.panel-primary>.panel-heading .badge{color:#ff6d5a;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ff6d5a}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:0.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:0.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate3d(0, -25%, 0);transform:translate3d(0, -25%, 0);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:0.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{content:" ";display:table}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width: 992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:0.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;width:100% \9;max-width:100%;height:auto;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:0.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0%, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0%, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0%, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:transparent}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width: 768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width: 767px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width: 767px){.visible-xs-block{display:block !important}}@media (max-width: 767px){.visible-xs-inline{display:inline !important}}@media (max-width: 767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width: 768px) and (max-width: 991px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width: 768px) and (max-width: 991px){.visible-sm-block{display:block !important}}@media (min-width: 768px) and (max-width: 991px){.visible-sm-inline{display:inline !important}}@media (min-width: 768px) and (max-width: 991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width: 992px) and (max-width: 1199px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width: 992px) and (max-width: 1199px){.visible-md-block{display:block !important}}@media (min-width: 992px) and (max-width: 1199px){.visible-md-inline{display:inline !important}}@media (min-width: 992px) and (max-width: 1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width: 1200px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width: 1200px){.visible-lg-block{display:block !important}}@media (min-width: 1200px){.visible-lg-inline{display:inline !important}}@media (min-width: 1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width: 767px){.hidden-xs{display:none !important}}@media (min-width: 768px) and (max-width: 991px){.hidden-sm{display:none !important}}@media (min-width: 992px) and (max-width: 1199px){.hidden-md{display:none !important}}@media (min-width: 1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}body{padding-top:50px}.sticky,.gallery-caption,.bypostauthor{font-size:inherit}/*! + * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url("../fonts/fontawesome-webfont.eot?v=4.1.0");src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff?v=4.1.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.1.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:0.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:0.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.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-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog: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-rotate-right:before,.fa-repeat: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-photo:before,.fa-image: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-warning:before,.fa-exclamation-triangle: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{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs: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:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.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-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars: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-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard: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-unlink:before,.fa-chain-broken: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-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw: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{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-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try: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-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap: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-square:before,.fa-pied-piper: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-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-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-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-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:""} +/*# sourceMappingURL=theme.css.map */ diff --git a/footer.php b/footer.php index e98dd45..562010a 100644 --- a/footer.php +++ b/footer.php @@ -29,6 +29,36 @@ + + + + + + diff --git a/hero.php b/hero.php index 0d17571..2d69585 100644 --- a/hero.php +++ b/hero.php @@ -1,13 +1,13 @@ -
- -
- -
-

Hello, world!

-

At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

-

Learn more

+ + +
+ -
- -
\ No newline at end of file + + + + diff --git a/inc/customizer.php b/inc/customizer.php index e16e25c..2e8ffd8 100644 --- a/inc/customizer.php +++ b/inc/customizer.php @@ -14,6 +14,28 @@ function understrap_customize_register( $wp_customize ) { $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; + $wp_customize->add_section( 'themename_color_scheme', array( + 'title' => __( 'Header Settings', 'understrap' ), + 'priority' => 35, + ) ); + + $wp_customize->add_setting( 'themename_theme_options[color_scheme]', array( + 'default' => 'some-default-value', + 'type' => 'option', + 'capability' => 'edit_theme_options', + ) ); + + $wp_customize->add_control( 'themename_color_scheme', array( + 'label' => __( 'Activate Header', 'understrap' ), + 'section' => 'themename_color_scheme', + 'settings' => 'themename_theme_options[color_scheme]', + 'type' => 'radio', + 'choices' => array( + 'value1' => 'Off', + 'value2' => 'On all pages', + 'value3' => 'On Frontpage only', + ), + ) ); } add_action( 'customize_register', 'understrap_customize_register' ); diff --git a/inc/enqueue.php b/inc/enqueue.php index 6f9308e..e49be06 100644 --- a/inc/enqueue.php +++ b/inc/enqueue.php @@ -2,9 +2,11 @@ function understrap_scripts() { wp_enqueue_style( 'understrap-theme', get_stylesheet_directory_uri() . '/css/theme.css', array(), '0.1', false ); + wp_enqueue_style( 'understrap-carousel-style', get_stylesheet_directory_uri() . '/css/owl.carousel.css', array(), '20024', false ); wp_enqueue_script('jquery'); wp_enqueue_script( 'understrap-navigation', get_template_directory_uri() . '/js/bootstrap.min.js', array(), '20120206', true ); - wp_enqueue_script( 'understrap-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true ); + wp_enqueue_script( 'understrap-carousel-script', get_template_directory_uri() . '/js/owl.carousel.min.js', array(), '20024', true ); + wp_enqueue_script( 'understrap-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } diff --git a/inc/widgets.php b/inc/widgets.php index 7d004db..95a8a9c 100644 --- a/inc/widgets.php +++ b/inc/widgets.php @@ -9,5 +9,15 @@ function understrap_widgets_init() { 'before_title' => '

', 'after_title' => '

', ) ); + + register_sidebar( array( + 'name' => __( 'Hero', 'understrap' ), + 'id' => 'hero', + 'description' => '', + 'before_widget' => '
', + 'after_widget' => '
', + 'before_title' => '', + 'after_title' => '', + ) ); } add_action( 'widgets_init', 'understrap_widgets_init' ); \ No newline at end of file diff --git a/js/owl.carousel.js b/js/owl.carousel.js new file mode 100644 index 0000000..f6ef78b --- /dev/null +++ b/js/owl.carousel.js @@ -0,0 +1,3069 @@ +/** + * Owl carousel + * @version 2.0.0 + * @author Bartosz Wojciechowski + * @license The MIT License (MIT) + * @todo Lazy Load Icon + * @todo prevent animationend bubling + * @todo itemsScaleUp + * @todo Test Zepto + * @todo stagePadding calculate wrong active classes + */ +;(function($, window, document, undefined) { + + var drag, state, e; + + /** + * Template for status information about drag and touch events. + * @private + */ + drag = { + start: 0, + startX: 0, + startY: 0, + current: 0, + currentX: 0, + currentY: 0, + offsetX: 0, + offsetY: 0, + distance: null, + startTime: 0, + endTime: 0, + updatedX: 0, + targetEl: null + }; + + /** + * Template for some status informations. + * @private + */ + state = { + isTouch: false, + isScrolling: false, + isSwiping: false, + direction: false, + inMotion: false + }; + + /** + * Event functions references. + * @private + */ + e = { + _onDragStart: null, + _onDragMove: null, + _onDragEnd: null, + _transitionEnd: null, + _resizer: null, + _responsiveCall: null, + _goToLoop: null, + _checkVisibile: null + }; + + /** + * Creates a carousel. + * @class The Owl Carousel. + * @public + * @param {HTMLElement|jQuery} element - The element to create the carousel for. + * @param {Object} [options] - The options + */ + function Owl(element, options) { + + /** + * Current settings for the carousel. + * @public + */ + this.settings = null; + + /** + * Current options set by the caller including defaults. + * @public + */ + this.options = $.extend({}, Owl.Defaults, options); + + /** + * Plugin element. + * @public + */ + this.$element = $(element); + + /** + * Caches informations about drag and touch events. + */ + this.drag = $.extend({}, drag); + + /** + * Caches some status informations. + * @protected + */ + this.state = $.extend({}, state); + + /** + * @protected + * @todo Must be documented + */ + this.e = $.extend({}, e); + + /** + * References to the running plugins of this carousel. + * @protected + */ + this._plugins = {}; + + /** + * Currently suppressed events to prevent them from beeing retriggered. + * @protected + */ + this._supress = {}; + + /** + * Absolute current position. + * @protected + */ + this._current = null; + + /** + * Animation speed in milliseconds. + * @protected + */ + this._speed = null; + + /** + * Coordinates of all items in pixel. + * @todo The name of this member is missleading. + * @protected + */ + this._coordinates = []; + + /** + * Current breakpoint. + * @todo Real media queries would be nice. + * @protected + */ + this._breakpoint = null; + + /** + * Current width of the plugin element. + */ + this._width = null; + + /** + * All real items. + * @protected + */ + this._items = []; + + /** + * All cloned items. + * @protected + */ + this._clones = []; + + /** + * Merge values of all items. + * @todo Maybe this could be part of a plugin. + * @protected + */ + this._mergers = []; + + /** + * Invalidated parts within the update process. + * @protected + */ + this._invalidated = {}; + + /** + * Ordered list of workers for the update process. + * @protected + */ + this._pipe = []; + + $.each(Owl.Plugins, $.proxy(function(key, plugin) { + this._plugins[key[0].toLowerCase() + key.slice(1)] + = new plugin(this); + }, this)); + + $.each(Owl.Pipe, $.proxy(function(priority, worker) { + this._pipe.push({ + 'filter': worker.filter, + 'run': $.proxy(worker.run, this) + }); + }, this)); + + this.setup(); + this.initialize(); + } + + /** + * Default options for the carousel. + * @public + */ + Owl.Defaults = { + items: 3, + loop: false, + center: false, + + mouseDrag: true, + touchDrag: true, + pullDrag: true, + freeDrag: false, + + margin: 0, + stagePadding: 0, + + merge: false, + mergeFit: true, + autoWidth: false, + + startPosition: 0, + rtl: false, + + smartSpeed: 250, + fluidSpeed: false, + dragEndSpeed: false, + + responsive: {}, + responsiveRefreshRate: 200, + responsiveBaseElement: window, + responsiveClass: false, + + fallbackEasing: 'swing', + + info: false, + + nestedItemSelector: false, + itemElement: 'div', + stageElement: 'div', + + // Classes and Names + themeClass: 'owl-theme', + baseClass: 'owl-carousel', + itemClass: 'owl-item', + centerClass: 'center', + activeClass: 'active' + }; + + /** + * Enumeration for width. + * @public + * @readonly + * @enum {String} + */ + Owl.Width = { + Default: 'default', + Inner: 'inner', + Outer: 'outer' + }; + + /** + * Contains all registered plugins. + * @public + */ + Owl.Plugins = {}; + + /** + * Update pipe. + */ + Owl.Pipe = [ { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + cache.current = this._items && this._items[this.relative(this._current)]; + } + }, { + filter: [ 'items', 'settings' ], + run: function() { + var cached = this._clones, + clones = this.$stage.children('.cloned'); + + if (clones.length !== cached.length || (!this.settings.loop && cached.length > 0)) { + this.$stage.children('.cloned').remove(); + this._clones = []; + } + } + }, { + filter: [ 'items', 'settings' ], + run: function() { + var i, n, + clones = this._clones, + items = this._items, + delta = this.settings.loop ? clones.length - Math.max(this.settings.items * 2, 4) : 0; + + for (i = 0, n = Math.abs(delta / 2); i < n; i++) { + if (delta > 0) { + this.$stage.children().eq(items.length + clones.length - 1).remove(); + clones.pop(); + this.$stage.children().eq(0).remove(); + clones.pop(); + } else { + clones.push(clones.length / 2); + this.$stage.append(items[clones[clones.length - 1]].clone().addClass('cloned')); + clones.push(items.length - 1 - (clones.length - 1) / 2); + this.$stage.prepend(items[clones[clones.length - 1]].clone().addClass('cloned')); + } + } + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function() { + var rtl = (this.settings.rtl ? 1 : -1), + width = (this.width() / this.settings.items).toFixed(3), + coordinate = 0, merge, i, n; + + this._coordinates = []; + for (i = 0, n = this._clones.length + this._items.length; i < n; i++) { + merge = this._mergers[this.relative(i)]; + merge = (this.settings.mergeFit && Math.min(merge, this.settings.items)) || merge; + coordinate += (this.settings.autoWidth ? this._items[this.relative(i)].width() + this.settings.margin : width * merge) * rtl; + + this._coordinates.push(coordinate); + } + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function() { + var i, n, width = (this.width() / this.settings.items).toFixed(3), css = { + 'width': Math.abs(this._coordinates[this._coordinates.length - 1]) + this.settings.stagePadding * 2, + 'padding-left': this.settings.stagePadding || '', + 'padding-right': this.settings.stagePadding || '' + }; + + this.$stage.css(css); + + css = { 'width': this.settings.autoWidth ? 'auto' : width - this.settings.margin }; + css[this.settings.rtl ? 'margin-left' : 'margin-right'] = this.settings.margin; + + if (!this.settings.autoWidth && $.grep(this._mergers, function(v) { return v > 1 }).length > 0) { + for (i = 0, n = this._coordinates.length; i < n; i++) { + css.width = Math.abs(this._coordinates[i]) - Math.abs(this._coordinates[i - 1] || 0) - this.settings.margin; + this.$stage.children().eq(i).css(css); + } + } else { + this.$stage.children().css(css); + } + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + cache.current && this.reset(this.$stage.children().index(cache.current)); + } + }, { + filter: [ 'position' ], + run: function() { + this.animate(this.coordinates(this._current)); + } + }, { + filter: [ 'width', 'position', 'items', 'settings' ], + run: function() { + var rtl = this.settings.rtl ? 1 : -1, + padding = this.settings.stagePadding * 2, + begin = this.coordinates(this.current()) + padding, + end = begin + this.width() * rtl, + inner, outer, matches = [], i, n; + + for (i = 0, n = this._coordinates.length; i < n; i++) { + inner = this._coordinates[i - 1] || 0; + outer = Math.abs(this._coordinates[i]) + padding * rtl; + + if ((this.op(inner, '<=', begin) && (this.op(inner, '>', end))) + || (this.op(outer, '<', begin) && this.op(outer, '>', end))) { + matches.push(i); + } + } + + this.$stage.children('.' + this.settings.activeClass).removeClass(this.settings.activeClass); + this.$stage.children(':eq(' + matches.join('), :eq(') + ')').addClass(this.settings.activeClass); + + if (this.settings.center) { + this.$stage.children('.' + this.settings.centerClass).removeClass(this.settings.centerClass); + this.$stage.children().eq(this.current()).addClass(this.settings.centerClass); + } + } + } ]; + + /** + * Initializes the carousel. + * @protected + */ + Owl.prototype.initialize = function() { + this.trigger('initialize'); + + this.$element + .addClass(this.settings.baseClass) + .addClass(this.settings.themeClass) + .toggleClass('owl-rtl', this.settings.rtl); + + // check support + this.browserSupport(); + + if (this.settings.autoWidth && this.state.imagesLoaded !== true) { + var imgs, nestedSelector, width; + imgs = this.$element.find('img'); + nestedSelector = this.settings.nestedItemSelector ? '.' + this.settings.nestedItemSelector : undefined; + width = this.$element.children(nestedSelector).width(); + + if (imgs.length && width <= 0) { + this.preloadAutoWidthImages(imgs); + return false; + } + } + + this.$element.addClass('owl-loading'); + + // create stage + this.$stage = $('<' + this.settings.stageElement + ' class="owl-stage"/>') + .wrap('
'); + + // append stage + this.$element.append(this.$stage.parent()); + + // append content + this.replace(this.$element.children().not(this.$stage.parent())); + + // set view width + this._width = this.$element.width(); + + // update view + this.refresh(); + + this.$element.removeClass('owl-loading').addClass('owl-loaded'); + + // attach generic events + this.eventsCall(); + + // attach generic events + this.internalEvents(); + + // attach custom control events + this.addTriggerableEvents(); + + this.trigger('initialized'); + }; + + /** + * Setups the current settings. + * @todo Remove responsive classes. Why should adaptive designs be brought into IE8? + * @todo Support for media queries by using `matchMedia` would be nice. + * @public + */ + Owl.prototype.setup = function() { + var viewport = this.viewport(), + overwrites = this.options.responsive, + match = -1, + settings = null; + + if (!overwrites) { + settings = $.extend({}, this.options); + } else { + $.each(overwrites, function(breakpoint) { + if (breakpoint <= viewport && breakpoint > match) { + match = Number(breakpoint); + } + }); + + settings = $.extend({}, this.options, overwrites[match]); + delete settings.responsive; + + // responsive class + if (settings.responsiveClass) { + this.$element.attr('class', function(i, c) { + return c.replace(/\b owl-responsive-\S+/g, ''); + }).addClass('owl-responsive-' + match); + } + } + + if (this.settings === null || this._breakpoint !== match) { + this.trigger('change', { property: { name: 'settings', value: settings } }); + this._breakpoint = match; + this.settings = settings; + this.invalidate('settings'); + this.trigger('changed', { property: { name: 'settings', value: this.settings } }); + } + }; + + /** + * Updates option logic if necessery. + * @protected + */ + Owl.prototype.optionsLogic = function() { + // Toggle Center class + this.$element.toggleClass('owl-center', this.settings.center); + + // if items number is less than in body + if (this.settings.loop && this._items.length < this.settings.items) { + this.settings.loop = false; + } + + if (this.settings.autoWidth) { + this.settings.stagePadding = false; + this.settings.merge = false; + } + }; + + /** + * Prepares an item before add. + * @todo Rename event parameter `content` to `item`. + * @protected + * @returns {jQuery|HTMLElement} - The item container. + */ + Owl.prototype.prepare = function(item) { + var event = this.trigger('prepare', { content: item }); + + if (!event.data) { + event.data = $('<' + this.settings.itemElement + '/>') + .addClass(this.settings.itemClass).append(item) + } + + this.trigger('prepared', { content: event.data }); + + return event.data; + }; + + /** + * Updates the view. + * @public + */ + Owl.prototype.update = function() { + var i = 0, + n = this._pipe.length, + filter = $.proxy(function(p) { return this[p] }, this._invalidated), + cache = {}; + + while (i < n) { + if (this._invalidated.all || $.grep(this._pipe[i].filter, filter).length > 0) { + this._pipe[i].run(cache); + } + i++; + } + + this._invalidated = {}; + }; + + /** + * Gets the width of the view. + * @public + * @param {Owl.Width} [dimension=Owl.Width.Default] - The dimension to return. + * @returns {Number} - The width of the view in pixel. + */ + Owl.prototype.width = function(dimension) { + dimension = dimension || Owl.Width.Default; + switch (dimension) { + case Owl.Width.Inner: + case Owl.Width.Outer: + return this._width; + default: + return this._width - this.settings.stagePadding * 2 + this.settings.margin; + } + }; + + /** + * Refreshes the carousel primarily for adaptive purposes. + * @public + */ + Owl.prototype.refresh = function() { + if (this._items.length === 0) { + return false; + } + + var start = new Date().getTime(); + + this.trigger('refresh'); + + this.setup(); + + this.optionsLogic(); + + // hide and show methods helps here to set a proper widths, + // this prevents scrollbar to be calculated in stage width + this.$stage.addClass('owl-refresh'); + + this.update(); + + this.$stage.removeClass('owl-refresh'); + + this.state.orientation = window.orientation; + + this.watchVisibility(); + + this.trigger('refreshed'); + }; + + /** + * Save internal event references and add event based functions. + * @protected + */ + Owl.prototype.eventsCall = function() { + // Save events references + this.e._onDragStart = $.proxy(function(e) { + this.onDragStart(e); + }, this); + this.e._onDragMove = $.proxy(function(e) { + this.onDragMove(e); + }, this); + this.e._onDragEnd = $.proxy(function(e) { + this.onDragEnd(e); + }, this); + this.e._onResize = $.proxy(function(e) { + this.onResize(e); + }, this); + this.e._transitionEnd = $.proxy(function(e) { + this.transitionEnd(e); + }, this); + this.e._preventClick = $.proxy(function(e) { + this.preventClick(e); + }, this); + }; + + /** + * Checks window `resize` event. + * @protected + */ + Owl.prototype.onThrottledResize = function() { + window.clearTimeout(this.resizeTimer); + this.resizeTimer = window.setTimeout(this.e._onResize, this.settings.responsiveRefreshRate); + }; + + /** + * Checks window `resize` event. + * @protected + */ + Owl.prototype.onResize = function() { + if (!this._items.length) { + return false; + } + + if (this._width === this.$element.width()) { + return false; + } + + if (this.trigger('resize').isDefaultPrevented()) { + return false; + } + + this._width = this.$element.width(); + + this.invalidate('width'); + + this.refresh(); + + this.trigger('resized'); + }; + + /** + * Checks for touch/mouse drag event type and add run event handlers. + * @protected + */ + Owl.prototype.eventsRouter = function(event) { + var type = event.type; + + if (type === "mousedown" || type === "touchstart") { + this.onDragStart(event); + } else if (type === "mousemove" || type === "touchmove") { + this.onDragMove(event); + } else if (type === "mouseup" || type === "touchend") { + this.onDragEnd(event); + } else if (type === "touchcancel") { + this.onDragEnd(event); + } + }; + + /** + * Checks for touch/mouse drag options and add necessery event handlers. + * @protected + */ + Owl.prototype.internalEvents = function() { + var isTouch = isTouchSupport(), + isTouchIE = isTouchSupportIE(); + + if (this.settings.mouseDrag){ + this.$stage.on('mousedown', $.proxy(function(event) { this.eventsRouter(event) }, this)); + this.$stage.on('dragstart', function() { return false }); + this.$stage.get(0).onselectstart = function() { return false }; + } else { + this.$element.addClass('owl-text-select-on'); + } + + if (this.settings.touchDrag && !isTouchIE){ + this.$stage.on('touchstart touchcancel', $.proxy(function(event) { this.eventsRouter(event) }, this)); + } + + // catch transitionEnd event + if (this.transitionEndVendor) { + this.on(this.$stage.get(0), this.transitionEndVendor, this.e._transitionEnd, false); + } + + // responsive + if (this.settings.responsive !== false) { + this.on(window, 'resize', $.proxy(this.onThrottledResize, this)); + } + }; + + /** + * Handles touchstart/mousedown event. + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onDragStart = function(event) { + var ev, isTouchEvent, pageX, pageY, animatedPos; + + ev = event.originalEvent || event || window.event; + + // prevent right click + if (ev.which === 3 || this.state.isTouch) { + return false; + } + + if (ev.type === 'mousedown') { + this.$stage.addClass('owl-grab'); + } + + this.trigger('drag'); + this.drag.startTime = new Date().getTime(); + this.speed(0); + this.state.isTouch = true; + this.state.isScrolling = false; + this.state.isSwiping = false; + this.drag.distance = 0; + + pageX = getTouches(ev).x; + pageY = getTouches(ev).y; + + // get stage position left + this.drag.offsetX = this.$stage.position().left; + this.drag.offsetY = this.$stage.position().top; + + if (this.settings.rtl) { + this.drag.offsetX = this.$stage.position().left + this.$stage.width() - this.width() + + this.settings.margin; + } + + // catch position // ie to fix + if (this.state.inMotion && this.support3d) { + animatedPos = this.getTransformProperty(); + this.drag.offsetX = animatedPos; + this.animate(animatedPos); + this.state.inMotion = true; + } else if (this.state.inMotion && !this.support3d) { + this.state.inMotion = false; + return false; + } + + this.drag.startX = pageX - this.drag.offsetX; + this.drag.startY = pageY - this.drag.offsetY; + + this.drag.start = pageX - this.drag.startX; + this.drag.targetEl = ev.target || ev.srcElement; + this.drag.updatedX = this.drag.start; + + // to do/check + // prevent links and images dragging; + if (this.drag.targetEl.tagName === "IMG" || this.drag.targetEl.tagName === "A") { + this.drag.targetEl.draggable = false; + } + + $(document).on('mousemove.owl.dragEvents mouseup.owl.dragEvents touchmove.owl.dragEvents touchend.owl.dragEvents', $.proxy(function(event) {this.eventsRouter(event)},this)); + }; + + /** + * Handles the touchmove/mousemove events. + * @todo Simplify + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onDragMove = function(event) { + var ev, isTouchEvent, pageX, pageY, minValue, maxValue, pull; + + if (!this.state.isTouch) { + return; + } + + if (this.state.isScrolling) { + return; + } + + ev = event.originalEvent || event || window.event; + + pageX = getTouches(ev).x; + pageY = getTouches(ev).y; + + // Drag Direction + this.drag.currentX = pageX - this.drag.startX; + this.drag.currentY = pageY - this.drag.startY; + this.drag.distance = this.drag.currentX - this.drag.offsetX; + + // Check move direction + if (this.drag.distance < 0) { + this.state.direction = this.settings.rtl ? 'right' : 'left'; + } else if (this.drag.distance > 0) { + this.state.direction = this.settings.rtl ? 'left' : 'right'; + } + // Loop + if (this.settings.loop) { + if (this.op(this.drag.currentX, '>', this.coordinates(this.minimum())) && this.state.direction === 'right') { + this.drag.currentX -= (this.settings.center && this.coordinates(0)) - this.coordinates(this._items.length); + } else if (this.op(this.drag.currentX, '<', this.coordinates(this.maximum())) && this.state.direction === 'left') { + this.drag.currentX += (this.settings.center && this.coordinates(0)) - this.coordinates(this._items.length); + } + } else { + // pull + minValue = this.settings.rtl ? this.coordinates(this.maximum()) : this.coordinates(this.minimum()); + maxValue = this.settings.rtl ? this.coordinates(this.minimum()) : this.coordinates(this.maximum()); + pull = this.settings.pullDrag ? this.drag.distance / 5 : 0; + this.drag.currentX = Math.max(Math.min(this.drag.currentX, minValue + pull), maxValue + pull); + } + + // Lock browser if swiping horizontal + + if ((this.drag.distance > 8 || this.drag.distance < -8)) { + if (ev.preventDefault !== undefined) { + ev.preventDefault(); + } else { + ev.returnValue = false; + } + this.state.isSwiping = true; + } + + this.drag.updatedX = this.drag.currentX; + + // Lock Owl if scrolling + if ((this.drag.currentY > 16 || this.drag.currentY < -16) && this.state.isSwiping === false) { + this.state.isScrolling = true; + this.drag.updatedX = this.drag.start; + } + + this.animate(this.drag.updatedX); + }; + + /** + * Handles the touchend/mouseup events. + * @protected + */ + Owl.prototype.onDragEnd = function(event) { + var compareTimes, distanceAbs, closest; + + if (!this.state.isTouch) { + return; + } + + if (event.type === 'mouseup') { + this.$stage.removeClass('owl-grab'); + } + + this.trigger('dragged'); + + // prevent links and images dragging; + this.drag.targetEl.removeAttribute("draggable"); + + // remove drag event listeners + + this.state.isTouch = false; + this.state.isScrolling = false; + this.state.isSwiping = false; + + // to check + if (this.drag.distance === 0 && this.state.inMotion !== true) { + this.state.inMotion = false; + return false; + } + + // prevent clicks while scrolling + + this.drag.endTime = new Date().getTime(); + compareTimes = this.drag.endTime - this.drag.startTime; + distanceAbs = Math.abs(this.drag.distance); + + // to test + if (distanceAbs > 3 || compareTimes > 300) { + this.removeClick(this.drag.targetEl); + } + + closest = this.closest(this.drag.updatedX); + + this.speed(this.settings.dragEndSpeed || this.settings.smartSpeed); + this.current(closest); + this.invalidate('position'); + this.update(); + + // if pullDrag is off then fire transitionEnd event manually when stick + // to border + if (!this.settings.pullDrag && this.drag.updatedX === this.coordinates(closest)) { + this.transitionEnd(); + } + + this.drag.distance = 0; + + $(document).off('.owl.dragEvents'); + }; + + /** + * Attaches `preventClick` to disable link while swipping. + * @protected + * @param {HTMLElement} [target] - The target of the `click` event. + */ + Owl.prototype.removeClick = function(target) { + this.drag.targetEl = target; + $(target).on('click.preventClick', this.e._preventClick); + // to make sure click is removed: + window.setTimeout(function() { + $(target).off('click.preventClick'); + }, 300); + }; + + /** + * Suppresses click event. + * @protected + * @param {Event} ev - The event arguments. + */ + Owl.prototype.preventClick = function(ev) { + if (ev.preventDefault) { + ev.preventDefault(); + } else { + ev.returnValue = false; + } + if (ev.stopPropagation) { + ev.stopPropagation(); + } + $(ev.target).off('click.preventClick'); + }; + + /** + * Catches stage position while animate (only CSS3). + * @protected + * @returns + */ + Owl.prototype.getTransformProperty = function() { + var transform, matrix3d; + + transform = window.getComputedStyle(this.$stage.get(0), null).getPropertyValue(this.vendorName + 'transform'); + // var transform = this.$stage.css(this.vendorName + 'transform') + transform = transform.replace(/matrix(3d)?\(|\)/g, '').split(','); + matrix3d = transform.length === 16; + + return matrix3d !== true ? transform[4] : transform[12]; + }; + + /** + * Gets absolute position of the closest item for a coordinate. + * @todo Setting `freeDrag` makes `closest` not reusable. See #165. + * @protected + * @param {Number} coordinate - The coordinate in pixel. + * @return {Number} - The absolute position of the closest item. + */ + Owl.prototype.closest = function(coordinate) { + var position = -1, pull = 30, width = this.width(), coordinates = this.coordinates(); + + if (!this.settings.freeDrag) { + // check closest item + $.each(coordinates, $.proxy(function(index, value) { + if (coordinate > value - pull && coordinate < value + pull) { + position = index; + } else if (this.op(coordinate, '<', value) + && this.op(coordinate, '>', coordinates[index + 1] || value - width)) { + position = this.state.direction === 'left' ? index + 1 : index; + } + return position === -1; + }, this)); + } + + if (!this.settings.loop) { + // non loop boundries + if (this.op(coordinate, '>', coordinates[this.minimum()])) { + position = coordinate = this.minimum(); + } else if (this.op(coordinate, '<', coordinates[this.maximum()])) { + position = coordinate = this.maximum(); + } + } + + return position; + }; + + /** + * Animates the stage. + * @public + * @param {Number} coordinate - The coordinate in pixels. + */ + Owl.prototype.animate = function(coordinate) { + this.trigger('translate'); + this.state.inMotion = this.speed() > 0; + + if (this.support3d) { + this.$stage.css({ + transform: 'translate3d(' + coordinate + 'px' + ',0px, 0px)', + transition: (this.speed() / 1000) + 's' + }); + } else if (this.state.isTouch) { + this.$stage.css({ + left: coordinate + 'px' + }); + } else { + this.$stage.animate({ + left: coordinate + }, this.speed() / 1000, this.settings.fallbackEasing, $.proxy(function() { + if (this.state.inMotion) { + this.transitionEnd(); + } + }, this)); + } + }; + + /** + * Sets the absolute position of the current item. + * @public + * @param {Number} [position] - The new absolute position or nothing to leave it unchanged. + * @returns {Number} - The absolute position of the current item. + */ + Owl.prototype.current = function(position) { + if (position === undefined) { + return this._current; + } + + if (this._items.length === 0) { + return undefined; + } + + position = this.normalize(position); + + if (this._current !== position) { + var event = this.trigger('change', { property: { name: 'position', value: position } }); + + if (event.data !== undefined) { + position = this.normalize(event.data); + } + + this._current = position; + + this.invalidate('position'); + + this.trigger('changed', { property: { name: 'position', value: this._current } }); + } + + return this._current; + }; + + /** + * Invalidates the given part of the update routine. + * @param {String} part - The part to invalidate. + */ + Owl.prototype.invalidate = function(part) { + this._invalidated[part] = true; + } + + /** + * Resets the absolute position of the current item. + * @public + * @param {Number} position - The absolute position of the new item. + */ + Owl.prototype.reset = function(position) { + position = this.normalize(position); + + if (position === undefined) { + return; + } + + this._speed = 0; + this._current = position; + + this.suppress([ 'translate', 'translated' ]); + + this.animate(this.coordinates(position)); + + this.release([ 'translate', 'translated' ]); + }; + + /** + * Normalizes an absolute or a relative position for an item. + * @public + * @param {Number} position - The absolute or relative position to normalize. + * @param {Boolean} [relative=false] - Whether the given position is relative or not. + * @returns {Number} - The normalized position. + */ + Owl.prototype.normalize = function(position, relative) { + var n = (relative ? this._items.length : this._items.length + this._clones.length); + + if (!$.isNumeric(position) || n < 1) { + return undefined; + } + + if (this._clones.length) { + position = ((position % n) + n) % n; + } else { + position = Math.max(this.minimum(relative), Math.min(this.maximum(relative), position)); + } + + return position; + }; + + /** + * Converts an absolute position for an item into a relative position. + * @public + * @param {Number} position - The absolute position to convert. + * @returns {Number} - The converted position. + */ + Owl.prototype.relative = function(position) { + position = this.normalize(position); + position = position - this._clones.length / 2; + return this.normalize(position, true); + }; + + /** + * Gets the maximum position for an item. + * @public + * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position. + * @returns {Number} + */ + Owl.prototype.maximum = function(relative) { + var maximum, width, i = 0, coordinate, + settings = this.settings; + + if (relative) { + return this._items.length - 1; + } + + if (!settings.loop && settings.center) { + maximum = this._items.length - 1; + } else if (!settings.loop && !settings.center) { + maximum = this._items.length - settings.items; + } else if (settings.loop || settings.center) { + maximum = this._items.length + settings.items; + } else if (settings.autoWidth || settings.merge) { + revert = settings.rtl ? 1 : -1; + width = this.$stage.width() - this.$element.width(); + while (coordinate = this.coordinates(i)) { + if (coordinate * revert >= width) { + break; + } + maximum = ++i; + } + } else { + throw 'Can not detect maximum absolute position.' + } + + return maximum; + }; + + /** + * Gets the minimum position for an item. + * @public + * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position. + * @returns {Number} + */ + Owl.prototype.minimum = function(relative) { + if (relative) { + return 0; + } + + return this._clones.length / 2; + }; + + /** + * Gets an item at the specified relative position. + * @public + * @param {Number} [position] - The relative position of the item. + * @return {jQuery|Array.} - The item at the given position or all items if no position was given. + */ + Owl.prototype.items = function(position) { + if (position === undefined) { + return this._items.slice(); + } + + position = this.normalize(position, true); + return this._items[position]; + }; + + /** + * Gets an item at the specified relative position. + * @public + * @param {Number} [position] - The relative position of the item. + * @return {jQuery|Array.} - The item at the given position or all items if no position was given. + */ + Owl.prototype.mergers = function(position) { + if (position === undefined) { + return this._mergers.slice(); + } + + position = this.normalize(position, true); + return this._mergers[position]; + }; + + /** + * Gets the absolute positions of clones for an item. + * @public + * @param {Number} [position] - The relative position of the item. + * @returns {Array.} - The absolute positions of clones for the item or all if no position was given. + */ + Owl.prototype.clones = function(position) { + var odd = this._clones.length / 2, + even = odd + this._items.length, + map = function(index) { return index % 2 === 0 ? even + index / 2 : odd - (index + 1) / 2 }; + + if (position === undefined) { + return $.map(this._clones, function(v, i) { return map(i) }); + } + + return $.map(this._clones, function(v, i) { return v === position ? map(i) : null }); + }; + + /** + * Sets the current animation speed. + * @public + * @param {Number} [speed] - The animation speed in milliseconds or nothing to leave it unchanged. + * @returns {Number} - The current animation speed in milliseconds. + */ + Owl.prototype.speed = function(speed) { + if (speed !== undefined) { + this._speed = speed; + } + + return this._speed; + }; + + /** + * Gets the coordinate of an item. + * @todo The name of this method is missleanding. + * @public + * @param {Number} position - The absolute position of the item within `minimum()` and `maximum()`. + * @returns {Number|Array.} - The coordinate of the item in pixel or all coordinates. + */ + Owl.prototype.coordinates = function(position) { + var coordinate = null; + + if (position === undefined) { + return $.map(this._coordinates, $.proxy(function(coordinate, index) { + return this.coordinates(index); + }, this)); + } + + if (this.settings.center) { + coordinate = this._coordinates[position]; + coordinate += (this.width() - coordinate + (this._coordinates[position - 1] || 0)) / 2 * (this.settings.rtl ? -1 : 1); + } else { + coordinate = this._coordinates[position - 1] || 0; + } + + return coordinate; + }; + + /** + * Calculates the speed for a translation. + * @protected + * @param {Number} from - The absolute position of the start item. + * @param {Number} to - The absolute position of the target item. + * @param {Number} [factor=undefined] - The time factor in milliseconds. + * @returns {Number} - The time in milliseconds for the translation. + */ + Owl.prototype.duration = function(from, to, factor) { + return Math.min(Math.max(Math.abs(to - from), 1), 6) * Math.abs((factor || this.settings.smartSpeed)); + }; + + /** + * Slides to the specified item. + * @public + * @param {Number} position - The position of the item. + * @param {Number} [speed] - The time in milliseconds for the transition. + */ + Owl.prototype.to = function(position, speed) { + if (this.settings.loop) { + var distance = position - this.relative(this.current()), + revert = this.current(), + before = this.current(), + after = this.current() + distance, + direction = before - after < 0 ? true : false, + items = this._clones.length + this._items.length; + + if (after < this.settings.items && direction === false) { + revert = before + this._items.length; + this.reset(revert); + } else if (after >= items - this.settings.items && direction === true) { + revert = before - this._items.length; + this.reset(revert); + } + window.clearTimeout(this.e._goToLoop); + this.e._goToLoop = window.setTimeout($.proxy(function() { + this.speed(this.duration(this.current(), revert + distance, speed)); + this.current(revert + distance); + this.update(); + }, this), 30); + } else { + this.speed(this.duration(this.current(), position, speed)); + this.current(position); + this.update(); + } + }; + + /** + * Slides to the next item. + * @public + * @param {Number} [speed] - The time in milliseconds for the transition. + */ + Owl.prototype.next = function(speed) { + speed = speed || false; + this.to(this.relative(this.current()) + 1, speed); + }; + + /** + * Slides to the previous item. + * @public + * @param {Number} [speed] - The time in milliseconds for the transition. + */ + Owl.prototype.prev = function(speed) { + speed = speed || false; + this.to(this.relative(this.current()) - 1, speed); + }; + + /** + * Handles the end of an animation. + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.transitionEnd = function(event) { + + // if css2 animation then event object is undefined + if (event !== undefined) { + event.stopPropagation(); + + // Catch only owl-stage transitionEnd event + if ((event.target || event.srcElement || event.originalTarget) !== this.$stage.get(0)) { + return false; + } + } + + this.state.inMotion = false; + this.trigger('translated'); + }; + + /** + * Gets viewport width. + * @protected + * @return {Number} - The width in pixel. + */ + Owl.prototype.viewport = function() { + var width; + if (this.options.responsiveBaseElement !== window) { + width = $(this.options.responsiveBaseElement).width(); + } else if (window.innerWidth) { + width = window.innerWidth; + } else if (document.documentElement && document.documentElement.clientWidth) { + width = document.documentElement.clientWidth; + } else { + throw 'Can not detect viewport width.'; + } + return width; + }; + + /** + * Replaces the current content. + * @public + * @param {HTMLElement|jQuery|String} content - The new content. + */ + Owl.prototype.replace = function(content) { + this.$stage.empty(); + this._items = []; + + if (content) { + content = (content instanceof jQuery) ? content : $(content); + } + + if (this.settings.nestedItemSelector) { + content = content.find('.' + this.settings.nestedItemSelector); + } + + content.filter(function() { + return this.nodeType === 1; + }).each($.proxy(function(index, item) { + item = this.prepare(item); + this.$stage.append(item); + this._items.push(item); + this._mergers.push(item.find('[data-merge]').andSelf('[data-merge]').attr('data-merge') * 1 || 1); + }, this)); + + this.reset($.isNumeric(this.settings.startPosition) ? this.settings.startPosition : 0); + + this.invalidate('items'); + }; + + /** + * Adds an item. + * @todo Use `item` instead of `content` for the event arguments. + * @public + * @param {HTMLElement|jQuery|String} content - The item content to add. + * @param {Number} [position] - The relative position at which to insert the item otherwise the item will be added to the end. + */ + Owl.prototype.add = function(content, position) { + position = position === undefined ? this._items.length : this.normalize(position, true); + + this.trigger('add', { content: content, position: position }); + + if (this._items.length === 0 || position === this._items.length) { + this.$stage.append(content); + this._items.push(content); + this._mergers.push(content.find('[data-merge]').andSelf('[data-merge]').attr('data-merge') * 1 || 1); + } else { + this._items[position].before(content); + this._items.splice(position, 0, content); + this._mergers.splice(position, 0, content.find('[data-merge]').andSelf('[data-merge]').attr('data-merge') * 1 || 1); + } + + this.invalidate('items'); + + this.trigger('added', { content: content, position: position }); + }; + + /** + * Removes an item by its position. + * @todo Use `item` instead of `content` for the event arguments. + * @public + * @param {Number} position - The relative position of the item to remove. + */ + Owl.prototype.remove = function(position) { + position = this.normalize(position, true); + + if (position === undefined) { + return; + } + + this.trigger('remove', { content: this._items[position], position: position }); + + this._items[position].remove(); + this._items.splice(position, 1); + this._mergers.splice(position, 1); + + this.invalidate('items'); + + this.trigger('removed', { content: null, position: position }); + }; + + /** + * Adds triggerable events. + * @protected + */ + Owl.prototype.addTriggerableEvents = function() { + var handler = $.proxy(function(callback, event) { + return $.proxy(function(e) { + if (e.relatedTarget !== this) { + this.suppress([ event ]); + callback.apply(this, [].slice.call(arguments, 1)); + this.release([ event ]); + } + }, this); + }, this); + + $.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 + }, $.proxy(function(event, callback) { + this.$element.on(event + '.owl.carousel', handler(callback, event + '.owl.carousel')); + }, this)); + + }; + + /** + * Watches the visibility of the carousel element. + * @protected + */ + Owl.prototype.watchVisibility = function() { + + // test on zepto + if (!isElVisible(this.$element.get(0))) { + this.$element.addClass('owl-hidden'); + window.clearInterval(this.e._checkVisibile); + this.e._checkVisibile = window.setInterval($.proxy(checkVisible, this), 500); + } + + function isElVisible(el) { + return el.offsetWidth > 0 && el.offsetHeight > 0; + } + + function checkVisible() { + if (isElVisible(this.$element.get(0))) { + this.$element.removeClass('owl-hidden'); + this.refresh(); + window.clearInterval(this.e._checkVisibile); + } + } + }; + + /** + * Preloads images with auto width. + * @protected + * @todo Still to test + */ + Owl.prototype.preloadAutoWidthImages = function(imgs) { + var loaded, that, $el, img; + + loaded = 0; + that = this; + imgs.each(function(i, el) { + $el = $(el); + img = new Image(); + + img.onload = function() { + loaded++; + $el.attr('src', img.src); + $el.css('opacity', 1); + if (loaded >= imgs.length) { + that.state.imagesLoaded = true; + that.initialize(); + } + }; + + img.src = $el.attr('src') || $el.attr('data-src') || $el.attr('data-src-retina'); + }); + }; + + /** + * Destroys the carousel. + * @public + */ + Owl.prototype.destroy = function() { + + if (this.$element.hasClass(this.settings.themeClass)) { + this.$element.removeClass(this.settings.themeClass); + } + + if (this.settings.responsive !== false) { + $(window).off('resize.owl.carousel'); + } + + if (this.transitionEndVendor) { + this.off(this.$stage.get(0), this.transitionEndVendor, this.e._transitionEnd); + } + + for ( var i in this._plugins) { + this._plugins[i].destroy(); + } + + if (this.settings.mouseDrag || this.settings.touchDrag) { + this.$stage.off('mousedown touchstart touchcancel'); + $(document).off('.owl.dragEvents'); + this.$stage.get(0).onselectstart = function() {}; + this.$stage.off('dragstart', function() { return false }); + } + + // remove event handlers in the ".owl.carousel" namespace + 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(); + }; + + /** + * Operators to calculate right-to-left and left-to-right. + * @protected + * @param {Number} [a] - The left side operand. + * @param {String} [o] - The operator. + * @param {Number} [b] - The right side operand. + */ + Owl.prototype.op = function(a, o, b) { + var rtl = this.settings.rtl; + switch (o) { + case '<': + return rtl ? a > b : a < b; + case '>': + return rtl ? a < b : a > b; + case '>=': + return rtl ? a <= b : a >= b; + case '<=': + return rtl ? a >= b : a <= b; + default: + break; + } + }; + + /** + * Attaches to an internal event. + * @protected + * @param {HTMLElement} element - The event source. + * @param {String} event - The event name. + * @param {Function} listener - The event handler to attach. + * @param {Boolean} capture - Wether the event should be handled at the capturing phase or not. + */ + Owl.prototype.on = function(element, event, listener, capture) { + if (element.addEventListener) { + element.addEventListener(event, listener, capture); + } else if (element.attachEvent) { + element.attachEvent('on' + event, listener); + } + }; + + /** + * Detaches from an internal event. + * @protected + * @param {HTMLElement} element - The event source. + * @param {String} event - The event name. + * @param {Function} listener - The attached event handler to detach. + * @param {Boolean} capture - Wether the attached event handler was registered as a capturing listener or not. + */ + Owl.prototype.off = function(element, event, listener, capture) { + if (element.removeEventListener) { + element.removeEventListener(event, listener, capture); + } else if (element.detachEvent) { + element.detachEvent('on' + event, listener); + } + }; + + /** + * Triggers an public event. + * @protected + * @param {String} name - The event name. + * @param {*} [data=null] - The event data. + * @param {String} [namespace=.owl.carousel] - The event namespace. + * @returns {Event} - The event arguments. + */ + Owl.prototype.trigger = function(name, data, namespace) { + var status = { + item: { count: this._items.length, index: this.current() } + }, handler = $.camelCase( + $.grep([ 'on', name, namespace ], function(v) { return v }) + .join('-').toLowerCase() + ), event = $.Event( + [ name, 'owl', namespace || 'carousel' ].join('.').toLowerCase(), + $.extend({ relatedTarget: this }, status, data) + ); + + if (!this._supress[name]) { + $.each(this._plugins, function(name, plugin) { + if (plugin.onTrigger) { + plugin.onTrigger(event); + } + }); + + this.$element.trigger(event); + + if (this.settings && typeof this.settings[handler] === 'function') { + this.settings[handler].apply(this, event); + } + } + + return event; + }; + + /** + * Suppresses events. + * @protected + * @param {Array.} events - The events to suppress. + */ + Owl.prototype.suppress = function(events) { + $.each(events, $.proxy(function(index, event) { + this._supress[event] = true; + }, this)); + } + + /** + * Releases suppressed events. + * @protected + * @param {Array.} events - The events to release. + */ + Owl.prototype.release = function(events) { + $.each(events, $.proxy(function(index, event) { + delete this._supress[event]; + }, this)); + } + + /** + * Checks the availability of some browser features. + * @protected + */ + Owl.prototype.browserSupport = function() { + this.support3d = isPerspective(); + + if (this.support3d) { + this.transformVendor = isTransform(); + + // take transitionend event name by detecting transition + var endVendors = [ 'transitionend', 'webkitTransitionEnd', 'transitionend', 'oTransitionEnd' ]; + this.transitionEndVendor = endVendors[isTransition()]; + + // take vendor name from transform name + this.vendorName = this.transformVendor.replace(/Transform/i, ''); + this.vendorName = this.vendorName !== '' ? '-' + this.vendorName.toLowerCase() + '-' : ''; + } + + this.state.orientation = window.orientation; + }; + + /** + * Get touch/drag coordinats. + * @private + * @param {event} - mousedown/touchstart event + * @returns {object} - Contains X and Y of current mouse/touch position + */ + + function getTouches(event) { + if (event.touches !== undefined) { + return { + x: event.touches[0].pageX, + y: event.touches[0].pageY + }; + } + + if (event.touches === undefined) { + if (event.pageX !== undefined) { + return { + x: event.pageX, + y: event.pageY + }; + } + + if (event.pageX === undefined) { + return { + x: event.clientX, + y: event.clientY + }; + } + } + } + + /** + * Checks for CSS support. + * @private + * @param {Array} array - The CSS properties to check for. + * @returns {Array} - Contains the supported CSS property name and its index or `false`. + */ + function isStyleSupported(array) { + var p, s, fake = document.createElement('div'), list = array; + for (p in list) { + s = list[p]; + if (typeof fake.style[s] !== 'undefined') { + fake = null; + return [ s, p ]; + } + } + return [ false ]; + } + + /** + * Checks for CSS transition support. + * @private + * @todo Realy bad design + * @returns {Number} + */ + function isTransition() { + return isStyleSupported([ 'transition', 'WebkitTransition', 'MozTransition', 'OTransition' ])[1]; + } + + /** + * Checks for CSS transform support. + * @private + * @returns {String} The supported property name or false. + */ + function isTransform() { + return isStyleSupported([ 'transform', 'WebkitTransform', 'MozTransform', 'OTransform', 'msTransform' ])[0]; + } + + /** + * Checks for CSS perspective support. + * @private + * @returns {String} The supported property name or false. + */ + function isPerspective() { + return isStyleSupported([ 'perspective', 'webkitPerspective', 'MozPerspective', 'OPerspective', 'MsPerspective' ])[0]; + } + + /** + * Checks wether touch is supported or not. + * @private + * @returns {Boolean} + */ + function isTouchSupport() { + return 'ontouchstart' in window || !!(navigator.msMaxTouchPoints); + } + + /** + * Checks wether touch is supported or not for IE. + * @private + * @returns {Boolean} + */ + function isTouchSupportIE() { + return window.navigator.msPointerEnabled; + } + + /** + * The jQuery Plugin for the Owl Carousel + * @public + */ + $.fn.owlCarousel = function(options) { + return this.each(function() { + if (!$(this).data('owlCarousel')) { + $(this).data('owlCarousel', new Owl(this, options)); + } + }); + }; + + /** + * The constructor for the jQuery Plugin + * @public + */ + $.fn.owlCarousel.Constructor = Owl; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Lazy Plugin + * @version 2.0.0 + * @author Bartosz Wojciechowski + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the lazy plugin. + * @class The Lazy Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var Lazy = function(carousel) { + + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Already loaded items. + * @protected + * @type {Array.} + */ + this._loaded = []; + + /** + * Event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel change.owl.carousel': $.proxy(function(e) { + if (!e.namespace) { + return; + } + + if (!this._core.settings || !this._core.settings.lazyLoad) { + return; + } + + if ((e.property && e.property.name == 'position') || e.type == 'initialized') { + var settings = this._core.settings, + n = (settings.center && Math.ceil(settings.items / 2) || settings.items), + i = ((settings.center && n * -1) || 0), + position = ((e.property && e.property.value) || this._core.current()) + i, + clones = this._core.clones().length, + load = $.proxy(function(i, v) { this.load(v) }, this); + + while (i++ < n) { + this.load(clones / 2 + this._core.relative(position)); + clones && $.each(this._core.clones(this._core.relative(position++)), load); + } + } + }, this) + }; + + // set the default options + this._core.options = $.extend({}, Lazy.Defaults, this._core.options); + + // register event handler + this._core.$element.on(this._handlers); + } + + /** + * Default options. + * @public + */ + Lazy.Defaults = { + lazyLoad: false + } + + /** + * Loads all resources of an item at the specified position. + * @param {Number} position - The absolute position of the item. + * @protected + */ + Lazy.prototype.load = function(position) { + var $item = this._core.$stage.children().eq(position), + $elements = $item && $item.find('.owl-lazy'); + + if (!$elements || $.inArray($item.get(0), this._loaded) > -1) { + return; + } + + $elements.each($.proxy(function(index, element) { + var $element = $(element), image, + url = (window.devicePixelRatio > 1 && $element.attr('data-src-retina')) || $element.attr('data-src'); + + this._core.trigger('load', { element: $element, url: url }, 'lazy'); + + if ($element.is('img')) { + $element.one('load.owl.lazy', $.proxy(function() { + $element.css('opacity', 1); + this._core.trigger('loaded', { element: $element, url: url }, 'lazy'); + }, this)).attr('src', url); + } else { + image = new Image(); + image.onload = $.proxy(function() { + $element.css({ + 'background-image': 'url(' + url + ')', + 'opacity': '1' + }); + this._core.trigger('loaded', { element: $element, url: url }, 'lazy'); + }, this); + image.src = url; + } + }, this)); + + this._loaded.push($item.get(0)); + } + + /** + * Destroys the plugin. + * @public + */ + Lazy.prototype.destroy = function() { + var handler, property; + + for (handler in this.handlers) { + this._core.$element.off(handler, this.handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + } + + $.fn.owlCarousel.Constructor.Plugins.Lazy = Lazy; + +})(window.Zepto || window.jQuery, window, document); + +/** + * AutoHeight Plugin + * @version 2.0.0 + * @author Bartosz Wojciechowski + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the auto height plugin. + * @class The Auto Height Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var AutoHeight = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel': $.proxy(function() { + if (this._core.settings.autoHeight) { + this.update(); + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (this._core.settings.autoHeight && e.property.name == 'position'){ + this.update(); + } + }, this), + 'loaded.owl.lazy': $.proxy(function(e) { + if (this._core.settings.autoHeight && e.element.closest('.' + this._core.settings.itemClass) + === this._core.$stage.children().eq(this._core.current())) { + this.update(); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, AutoHeight.Defaults, this._core.options); + + // register event handlers + this._core.$element.on(this._handlers); + }; + + /** + * Default options. + * @public + */ + AutoHeight.Defaults = { + autoHeight: false, + autoHeightClass: 'owl-height' + }; + + /** + * Updates the view. + */ + AutoHeight.prototype.update = function() { + this._core.$stage.parent() + .height(this._core.$stage.children().eq(this._core.current()).height()) + .addClass(this._core.settings.autoHeightClass); + }; + + AutoHeight.prototype.destroy = function() { + var handler, property; + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.AutoHeight = AutoHeight; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Video Plugin + * @version 2.0.0 + * @author Bartosz Wojciechowski + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the video plugin. + * @class The Video Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var Video = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Cache all video URLs. + * @protected + * @type {Object} + */ + this._videos = {}; + + /** + * Current playing item. + * @protected + * @type {jQuery} + */ + this._playing = null; + + /** + * Whether this is in fullscreen or not. + * @protected + * @type {Boolean} + */ + this._fullscreen = false; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'resize.owl.carousel': $.proxy(function(e) { + if (this._core.settings.video && !this.isInFullScreen()) { + e.preventDefault(); + } + }, this), + 'refresh.owl.carousel changed.owl.carousel': $.proxy(function(e) { + if (this._playing) { + this.stop(); + } + }, this), + 'prepared.owl.carousel': $.proxy(function(e) { + var $element = $(e.content).find('.owl-video'); + if ($element.length) { + $element.css('display', 'none'); + this.fetch($element, $(e.content)); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, Video.Defaults, this._core.options); + + // register event handlers + this._core.$element.on(this._handlers); + + this._core.$element.on('click.owl.video', '.owl-video-play-icon', $.proxy(function(e) { + this.play(e); + }, this)); + }; + + /** + * Default options. + * @public + */ + Video.Defaults = { + video: false, + videoHeight: false, + videoWidth: false + }; + + /** + * Gets the video ID and the type (YouTube/Vimeo only). + * @protected + * @param {jQuery} target - The target containing the video data. + * @param {jQuery} item - The item containing the video. + */ + Video.prototype.fetch = function(target, item) { + + var type = target.attr('data-vimeo-id') ? 'vimeo' : 'youtube', + id = target.attr('data-vimeo-id') || target.attr('data-youtube-id'), + width = target.attr('data-width') || this._core.settings.videoWidth, + height = target.attr('data-height') || this._core.settings.videoHeight, + url = target.attr('href'); + + if (url) { + id = url.match(/(http:|https:|)\/\/(player.|www.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com))\/(video\/|embed\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/); + + if (id[3].indexOf('youtu') > -1) { + type = 'youtube'; + } else if (id[3].indexOf('vimeo') > -1) { + type = 'vimeo'; + } else { + throw new Error('Video URL not supported.'); + } + id = id[6]; + } else { + throw new Error('Missing video URL.'); + } + + this._videos[url] = { + type: type, + id: id, + width: width, + height: height + }; + + item.attr('data-video', url); + + this.thumbnail(target, this._videos[url]); + }; + + /** + * Creates video thumbnail. + * @protected + * @param {jQuery} target - The target containing the video data. + * @param {Object} info - The video info object. + * @see `fetch` + */ + Video.prototype.thumbnail = function(target, video) { + + var tnLink, + icon, + path, + dimensions = video.width && video.height ? 'style="width:' + video.width + 'px;height:' + video.height + 'px;"' : '', + customTn = target.find('img'), + srcType = 'src', + lazyClass = '', + settings = this._core.settings, + create = function(path) { + icon = '
'; + + if (settings.lazyLoad) { + tnLink = '
'; + } else { + tnLink = '
'; + } + target.after(tnLink); + target.after(icon); + }; + + // wrap video content into owl-video-wrapper div + target.wrap('
'); + + if (this._core.settings.lazyLoad) { + srcType = 'data-src'; + lazyClass = 'owl-lazy'; + } + + // custom thumbnail + if (customTn.length) { + create(customTn.attr(srcType)); + customTn.remove(); + return false; + } + + if (video.type === 'youtube') { + path = "http://img.youtube.com/vi/" + video.id + "/hqdefault.jpg"; + create(path); + } else if (video.type === 'vimeo') { + $.ajax({ + type: 'GET', + url: 'http://vimeo.com/api/v2/video/' + video.id + '.json', + jsonp: 'callback', + dataType: 'jsonp', + success: function(data) { + path = data[0].thumbnail_large; + create(path); + } + }); + } + }; + + /** + * Stops the current video. + * @public + */ + Video.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; + }; + + /** + * Starts the current video. + * @public + * @param {Event} ev - The event arguments. + */ + Video.prototype.play = function(ev) { + this._core.trigger('play', null, 'video'); + + if (this._playing) { + this.stop(); + } + + var target = $(ev.target || ev.srcElement), + item = target.closest('.' + this._core.settings.itemClass), + video = this._videos[item.attr('data-video')], + width = video.width || '100%', + height = video.height || this._core.$stage.height(), + html, wrap; + + if (video.type === 'youtube') { + html = ''; + } else if (video.type === 'vimeo') { + html = ''; + } + + item.addClass('owl-video-playing'); + this._playing = item; + + wrap = $('
' + + html + '
'); + target.after(wrap); + }; + + /** + * Checks whether an video is currently in full screen mode or not. + * @todo Bad style because looks like a readonly method but changes members. + * @protected + * @returns {Boolean} + */ + Video.prototype.isInFullScreen = function() { + + // if Vimeo Fullscreen mode + var element = document.fullscreenElement || document.mozFullScreenElement + || document.webkitFullscreenElement; + + if (element && $(element).parent().hasClass('owl-video-frame')) { + this._core.speed(0); + this._fullscreen = true; + } + + if (element && this._fullscreen && this._playing) { + return false; + } + + // comming back from fullscreen + if (this._fullscreen) { + this._fullscreen = false; + return false; + } + + // check full screen mode and window orientation + if (this._playing) { + if (this._core.state.orientation !== window.orientation) { + this._core.state.orientation = window.orientation; + return false; + } + } + + return true; + }; + + /** + * Destroys the plugin. + */ + Video.prototype.destroy = function() { + var handler, property; + + this._core.$element.off('click.owl.video'); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Video = Video; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Animate Plugin + * @version 2.0.0 + * @author Bartosz Wojciechowski + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the animate plugin. + * @class The Navigation Plugin + * @param {Owl} scope - The Owl Carousel + */ + var Animate = function(scope) { + this.core = scope; + this.core.options = $.extend({}, Animate.Defaults, this.core.options); + this.swapping = true; + this.previous = undefined; + this.next = undefined; + + this.handlers = { + 'change.owl.carousel': $.proxy(function(e) { + if (e.property.name == 'position') { + this.previous = this.core.current(); + this.next = e.property.value; + } + }, this), + 'drag.owl.carousel dragged.owl.carousel translated.owl.carousel': $.proxy(function(e) { + this.swapping = e.type == 'translated'; + }, this), + 'translate.owl.carousel': $.proxy(function(e) { + if (this.swapping && (this.core.options.animateOut || this.core.options.animateIn)) { + this.swap(); + } + }, this) + }; + + this.core.$element.on(this.handlers); + }; + + /** + * Default options. + * @public + */ + Animate.Defaults = { + animateOut: false, + animateIn: false + }; + + /** + * Toggles the animation classes whenever an translations starts. + * @protected + * @returns {Boolean|undefined} + */ + Animate.prototype.swap = function() { + + if (this.core.settings.items !== 1 || !this.core.support3d) { + return; + } + + this.core.speed(0); + + var left, + clear = $.proxy(this.clear, this), + previous = this.core.$stage.children().eq(this.previous), + next = this.core.$stage.children().eq(this.next), + incoming = this.core.settings.animateIn, + outgoing = this.core.settings.animateOut; + + if (this.core.current() === this.previous) { + return; + } + + if (outgoing) { + left = this.core.coordinates(this.previous) - this.core.coordinates(this.next); + previous.css( { 'left': left + 'px' } ) + .addClass('animated owl-animated-out') + .addClass(outgoing) + .one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', clear); + } + + if (incoming) { + next.addClass('animated owl-animated-in') + .addClass(incoming) + .one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', clear); + } + }; + + Animate.prototype.clear = function(e) { + $(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(); + } + + /** + * Destroys the plugin. + * @public + */ + Animate.prototype.destroy = function() { + var handler, property; + + for (handler in this.handlers) { + this.core.$element.off(handler, this.handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Animate = Animate; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Autoplay Plugin + * @version 2.0.0 + * @author Bartosz Wojciechowski + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the autoplay plugin. + * @class The Autoplay Plugin + * @param {Owl} scope - The Owl Carousel + */ + var Autoplay = function(scope) { + this.core = scope; + this.core.options = $.extend({}, Autoplay.Defaults, this.core.options); + + this.handlers = { + 'translated.owl.carousel refreshed.owl.carousel': $.proxy(function() { + this.autoplay(); + }, this), + 'play.owl.autoplay': $.proxy(function(e, t, s) { + this.play(t, s); + }, this), + 'stop.owl.autoplay': $.proxy(function() { + this.stop(); + }, this), + 'mouseover.owl.autoplay': $.proxy(function() { + if (this.core.settings.autoplayHoverPause) { + this.pause(); + } + }, this), + 'mouseleave.owl.autoplay': $.proxy(function() { + if (this.core.settings.autoplayHoverPause) { + this.autoplay(); + } + }, this) + }; + + this.core.$element.on(this.handlers); + }; + + /** + * Default options. + * @public + */ + Autoplay.Defaults = { + autoplay: false, + autoplayTimeout: 5000, + autoplayHoverPause: false, + autoplaySpeed: false + }; + + /** + * @protected + * @todo Must be documented. + */ + Autoplay.prototype.autoplay = function() { + if (this.core.settings.autoplay && !this.core.state.videoPlay) { + window.clearInterval(this.interval); + + this.interval = window.setInterval($.proxy(function() { + this.play(); + }, this), this.core.settings.autoplayTimeout); + } else { + window.clearInterval(this.interval); + } + }; + + /** + * Starts the autoplay. + * @public + * @param {Number} [timeout] - ... + * @param {Number} [speed] - ... + * @returns {Boolean|undefined} - ... + * @todo Must be documented. + */ + Autoplay.prototype.play = function(timeout, speed) { + // if tab is inactive - doesnt work in } + */ + this._templates = []; + + /** + * The carousel element. + * @type {jQuery} + */ + this.$element = this._core.$element; + + /** + * Overridden methods of the carousel. + * @protected + * @type {Object} + */ + this._overrides = { + next: this._core.next, + prev: this._core.prev, + to: this._core.to + }; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'prepared.owl.carousel': $.proxy(function(e) { + if (this._core.settings.dotsData) { + this._templates.push($(e.content).find('[data-dot]').andSelf('[data-dot]').attr('data-dot')); + } + }, this), + 'add.owl.carousel': $.proxy(function(e) { + if (this._core.settings.dotsData) { + this._templates.splice(e.position, 0, $(e.content).find('[data-dot]').andSelf('[data-dot]').attr('data-dot')); + } + }, this), + 'remove.owl.carousel prepared.owl.carousel': $.proxy(function(e) { + if (this._core.settings.dotsData) { + this._templates.splice(e.position, 1); + } + }, this), + 'change.owl.carousel': $.proxy(function(e) { + if (e.property.name == 'position') { + if (!this._core.state.revert && !this._core.settings.loop && this._core.settings.navRewind) { + var current = this._core.current(), + maximum = this._core.maximum(), + minimum = this._core.minimum(); + e.data = e.property.value > maximum + ? current >= maximum ? minimum : maximum + : e.property.value < minimum ? maximum : e.property.value; + } + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (e.property.name == 'position') { + this.draw(); + } + }, this), + 'refreshed.owl.carousel': $.proxy(function() { + if (!this._initialized) { + this.initialize(); + this._initialized = true; + } + this._core.trigger('refresh', null, 'navigation'); + this.update(); + this.draw(); + this._core.trigger('refreshed', null, 'navigation'); + }, this) + }; + + // set default options + this._core.options = $.extend({}, Navigation.Defaults, this._core.options); + + // register event handlers + this.$element.on(this._handlers); + } + + /** + * Default options. + * @public + * @todo Rename `slideBy` to `navBy` + */ + Navigation.Defaults = { + nav: false, + navRewind: true, + navText: [ 'prev', 'next' ], + navSpeed: false, + navElement: 'div', + navContainer: false, + navContainerClass: 'owl-nav', + navClass: [ 'owl-prev', 'owl-next' ], + slideBy: 1, + dotClass: 'owl-dot', + dotsClass: 'owl-dots', + dots: true, + dotsEach: false, + dotData: false, + dotsSpeed: false, + dotsContainer: false, + controlsClass: 'owl-controls' + } + + /** + * Initializes the layout of the plugin and extends the carousel. + * @protected + */ + Navigation.prototype.initialize = function() { + var $container, override, + options = this._core.settings; + + // create the indicator template + if (!options.dotsData) { + this._templates = [ $('
') + .addClass(options.dotClass) + .append($('')) + .prop('outerHTML') ]; + } + + // create controls container if needed + if (!options.navContainer || !options.dotsContainer) { + this._controls.$container = $('
') + .addClass(options.controlsClass) + .appendTo(this.$element); + } + + // create DOM structure for absolute navigation + this._controls.$indicators = options.dotsContainer ? $(options.dotsContainer) + : $('
').hide().addClass(options.dotsClass).appendTo(this._controls.$container); + + this._controls.$indicators.on('click', 'div', $.proxy(function(e) { + var index = $(e.target).parent().is(this._controls.$indicators) + ? $(e.target).index() : $(e.target).parent().index(); + + e.preventDefault(); + + this.to(index, options.dotsSpeed); + }, this)); + + // create DOM structure for relative navigation + $container = options.navContainer ? $(options.navContainer) + : $('
').addClass(options.navContainerClass).prependTo(this._controls.$container); + + this._controls.$next = $('<' + options.navElement + '>'); + this._controls.$previous = this._controls.$next.clone(); + + this._controls.$previous + .addClass(options.navClass[0]) + .html(options.navText[0]) + .hide() + .prependTo($container) + .on('click', $.proxy(function(e) { + this.prev(options.navSpeed); + }, this)); + this._controls.$next + .addClass(options.navClass[1]) + .html(options.navText[1]) + .hide() + .appendTo($container) + .on('click', $.proxy(function(e) { + this.next(options.navSpeed); + }, this)); + + // override public methods of the carousel + for (override in this._overrides) { + this._core[override] = $.proxy(this[override], this); + } + } + + /** + * Destroys the plugin. + * @protected + */ + Navigation.prototype.destroy = function() { + var handler, control, property, override; + + for (handler in this._handlers) { + this.$element.off(handler, this._handlers[handler]); + } + for (control in this._controls) { + this._controls[control].remove(); + } + for (override in this.overides) { + this._core[override] = this._overrides[override]; + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + } + + /** + * Updates the internal state. + * @protected + */ + Navigation.prototype.update = function() { + var i, j, k, + options = this._core.settings, + lower = this._core.clones().length / 2, + upper = lower + this._core.items().length, + size = options.center || options.autoWidth || options.dotData + ? 1 : options.dotsEach || options.items; + + if (options.slideBy !== 'page') { + options.slideBy = Math.min(options.slideBy, options.items); + } + + if (options.dots || options.slideBy == 'page') { + this._pages = []; + + for (i = lower, j = 0, k = 0; i < upper; i++) { + if (j >= size || j === 0) { + this._pages.push({ + start: i - lower, + end: i - lower + size - 1 + }); + j = 0, ++k; + } + j += this._core.mergers(this._core.relative(i)); + } + } + } + + /** + * Draws the user interface. + * @todo The option `dotData` wont work. + * @protected + */ + Navigation.prototype.draw = function() { + var difference, i, html = '', + options = this._core.settings, + $items = this._core.$stage.children(), + index = this._core.relative(this._core.current()); + + if (options.nav && !options.loop && !options.navRewind) { + this._controls.$previous.toggleClass('disabled', index <= 0); + this._controls.$next.toggleClass('disabled', index >= this._core.maximum()); + } + + this._controls.$previous.toggle(options.nav); + this._controls.$next.toggle(options.nav); + + if (options.dots) { + difference = this._pages.length - this._controls.$indicators.children().length; + + if (options.dotData && difference !== 0) { + for (i = 0; i < this._controls.$indicators.children().length; i++) { + html += this._templates[this._core.relative(i)]; + } + this._controls.$indicators.html(html); + } else if (difference > 0) { + html = new Array(difference + 1).join(this._templates[0]); + this._controls.$indicators.append(html); + } else if (difference < 0) { + this._controls.$indicators.children().slice(difference).remove(); + } + + this._controls.$indicators.find('.active').removeClass('active'); + this._controls.$indicators.children().eq($.inArray(this.current(), this._pages)).addClass('active'); + } + + this._controls.$indicators.toggle(options.dots); + } + + /** + * Extends event data. + * @protected + * @param {Event} event - The event object which gets thrown. + */ + Navigation.prototype.onTrigger = function(event) { + var settings = this._core.settings; + + event.page = { + index: $.inArray(this.current(), this._pages), + count: this._pages.length, + size: settings && (settings.center || settings.autoWidth || settings.dotData + ? 1 : settings.dotsEach || settings.items) + }; + } + + /** + * Gets the current page position of the carousel. + * @protected + * @returns {Number} + */ + Navigation.prototype.current = function() { + var index = this._core.relative(this._core.current()); + return $.grep(this._pages, function(o) { + return o.start <= index && o.end >= index; + }).pop(); + } + + /** + * Gets the current succesor/predecessor position. + * @protected + * @returns {Number} + */ + Navigation.prototype.getPosition = function(successor) { + var position, length, + options = this._core.settings; + + if (options.slideBy == 'page') { + position = $.inArray(this.current(), this._pages); + length = this._pages.length; + successor ? ++position : --position; + position = this._pages[((position % length) + length) % length].start; + } else { + position = this._core.relative(this._core.current()); + length = this._core.items().length; + successor ? position += options.slideBy : position -= options.slideBy; + } + return position; + } + + /** + * Slides to the next item or page. + * @public + * @param {Number} [speed=false] - The time in milliseconds for the transition. + */ + Navigation.prototype.next = function(speed) { + $.proxy(this._overrides.to, this._core)(this.getPosition(true), speed); + } + + /** + * Slides to the previous item or page. + * @public + * @param {Number} [speed=false] - The time in milliseconds for the transition. + */ + Navigation.prototype.prev = function(speed) { + $.proxy(this._overrides.to, this._core)(this.getPosition(false), speed); + } + + /** + * Slides to the specified item or page. + * @public + * @param {Number} position - The position of the item or page. + * @param {Number} [speed] - The time in milliseconds for the transition. + * @param {Boolean} [standard=false] - Whether to use the standard behaviour or not. + */ + Navigation.prototype.to = function(position, speed, standard) { + var length; + + if (!standard) { + length = this._pages.length; + $.proxy(this._overrides.to, this._core)(this._pages[((position % length) + length) % length].start, speed); + } else { + $.proxy(this._overrides.to, this._core)(position, speed); + } + } + + $.fn.owlCarousel.Constructor.Plugins.Navigation = Navigation; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Hash Plugin + * @version 2.0.0 + * @author Artus Kolanowski + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + 'use strict'; + + /** + * Creates the hash plugin. + * @class The Hash Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var Hash = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Hash table for the hashes. + * @protected + * @type {Object} + */ + this._hashes = {}; + + /** + * The carousel element. + * @type {jQuery} + */ + this.$element = this._core.$element; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel': $.proxy(function() { + if (this._core.settings.startPosition == 'URLHash') { + $(window).trigger('hashchange.owl.navigation'); + } + }, this), + 'prepared.owl.carousel': $.proxy(function(e) { + var hash = $(e.content).find('[data-hash]').andSelf('[data-hash]').attr('data-hash'); + this._hashes[hash] = e.content; + }, this) + }; + + // set default options + this._core.options = $.extend({}, Hash.Defaults, this._core.options); + + // register the event handlers + this.$element.on(this._handlers); + + // register event listener for hash navigation + $(window).on('hashchange.owl.navigation', $.proxy(function() { + var hash = window.location.hash.substring(1), + items = this._core.$stage.children(), + position = this._hashes[hash] && items.index(this._hashes[hash]) || 0; + + if (!hash) { + return false; + } + + this._core.to(position, false, true); + }, this)); + } + + /** + * Default options. + * @public + */ + Hash.Defaults = { + URLhashListener: false + } + + /** + * Destroys the plugin. + * @public + */ + Hash.prototype.destroy = function() { + var handler, property; + + $(window).off('hashchange.owl.navigation'); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + } + + $.fn.owlCarousel.Constructor.Plugins.Hash = Hash; + +})(window.Zepto || window.jQuery, window, document); diff --git a/js/owl.carousel.min.js b/js/owl.carousel.min.js new file mode 100644 index 0000000..f2a15f6 --- /dev/null +++ b/js/owl.carousel.min.js @@ -0,0 +1,2 @@ +!function(a,b,c,d){function e(b,c){this.settings=null,this.options=a.extend({},e.Defaults,c),this.$element=a(b),this.drag=a.extend({},m),this.state=a.extend({},n),this.e=a.extend({},o),this._plugins={},this._supress={},this._current=null,this._speed=null,this._coordinates=[],this._breakpoint=null,this._width=null,this._items=[],this._clones=[],this._mergers=[],this._invalidated={},this._pipe=[],a.each(e.Plugins,a.proxy(function(a,b){this._plugins[a[0].toLowerCase()+a.slice(1)]=new b(this)},this)),a.each(e.Pipe,a.proxy(function(b,c){this._pipe.push({filter:c.filter,run:a.proxy(c.run,this)})},this)),this.setup(),this.initialize()}function f(a){if(a.touches!==d)return{x:a.touches[0].pageX,y:a.touches[0].pageY};if(a.touches===d){if(a.pageX!==d)return{x:a.pageX,y:a.pageY};if(a.pageX===d)return{x:a.clientX,y:a.clientY}}}function g(a){var b,d,e=c.createElement("div"),f=a;for(b in f)if(d=f[b],"undefined"!=typeof e.style[d])return e=null,[d,b];return[!1]}function h(){return g(["transition","WebkitTransition","MozTransition","OTransition"])[1]}function i(){return g(["transform","WebkitTransform","MozTransform","OTransform","msTransform"])[0]}function j(){return g(["perspective","webkitPerspective","MozPerspective","OPerspective","MsPerspective"])[0]}function k(){return"ontouchstart"in b||!!navigator.msMaxTouchPoints}function l(){return b.navigator.msPointerEnabled}var m,n,o;m={start:0,startX:0,startY:0,current:0,currentX:0,currentY:0,offsetX:0,offsetY:0,distance:null,startTime:0,endTime:0,updatedX:0,targetEl:null},n={isTouch:!1,isScrolling:!1,isSwiping:!1,direction:!1,inMotion:!1},o={_onDragStart:null,_onDragMove:null,_onDragEnd:null,_transitionEnd:null,_resizer:null,_responsiveCall:null,_goToLoop:null,_checkVisibile:null},e.Defaults={items:3,loop:!1,center:!1,mouseDrag:!0,touchDrag:!0,pullDrag:!0,freeDrag:!1,margin:0,stagePadding:0,merge:!1,mergeFit:!0,autoWidth:!1,startPosition:0,rtl:!1,smartSpeed:250,fluidSpeed:!1,dragEndSpeed:!1,responsive:{},responsiveRefreshRate:200,responsiveBaseElement:b,responsiveClass:!1,fallbackEasing:"swing",info:!1,nestedItemSelector:!1,itemElement:"div",stageElement:"div",themeClass:"owl-theme",baseClass:"owl-carousel",itemClass:"owl-item",centerClass:"center",activeClass:"active"},e.Width={Default:"default",Inner:"inner",Outer:"outer"},e.Plugins={},e.Pipe=[{filter:["width","items","settings"],run:function(a){a.current=this._items&&this._items[this.relative(this._current)]}},{filter:["items","settings"],run:function(){var a=this._clones,b=this.$stage.children(".cloned");(b.length!==a.length||!this.settings.loop&&a.length>0)&&(this.$stage.children(".cloned").remove(),this._clones=[])}},{filter:["items","settings"],run:function(){var a,b,c=this._clones,d=this._items,e=this.settings.loop?c.length-Math.max(2*this.settings.items,4):0;for(a=0,b=Math.abs(e/2);b>a;a++)e>0?(this.$stage.children().eq(d.length+c.length-1).remove(),c.pop(),this.$stage.children().eq(0).remove(),c.pop()):(c.push(c.length/2),this.$stage.append(d[c[c.length-1]].clone().addClass("cloned")),c.push(d.length-1-(c.length-1)/2),this.$stage.prepend(d[c[c.length-1]].clone().addClass("cloned")))}},{filter:["width","items","settings"],run:function(){var a,b,c,d=this.settings.rtl?1:-1,e=(this.width()/this.settings.items).toFixed(3),f=0;for(this._coordinates=[],b=0,c=this._clones.length+this._items.length;c>b;b++)a=this._mergers[this.relative(b)],a=this.settings.mergeFit&&Math.min(a,this.settings.items)||a,f+=(this.settings.autoWidth?this._items[this.relative(b)].width()+this.settings.margin:e*a)*d,this._coordinates.push(f)}},{filter:["width","items","settings"],run:function(){var b,c,d=(this.width()/this.settings.items).toFixed(3),e={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(e),e={width:this.settings.autoWidth?"auto":d-this.settings.margin},e[this.settings.rtl?"margin-left":"margin-right"]=this.settings.margin,!this.settings.autoWidth&&a.grep(this._mergers,function(a){return a>1}).length>0)for(b=0,c=this._coordinates.length;c>b;b++)e.width=Math.abs(this._coordinates[b])-Math.abs(this._coordinates[b-1]||0)-this.settings.margin,this.$stage.children().eq(b).css(e);else this.$stage.children().css(e)}},{filter:["width","items","settings"],run:function(a){a.current&&this.reset(this.$stage.children().index(a.current))}},{filter:["position"],run:function(){this.animate(this.coordinates(this._current))}},{filter:["width","position","items","settings"],run:function(){var a,b,c,d,e=this.settings.rtl?1:-1,f=2*this.settings.stagePadding,g=this.coordinates(this.current())+f,h=g+this.width()*e,i=[];for(c=0,d=this._coordinates.length;d>c;c++)a=this._coordinates[c-1]||0,b=Math.abs(this._coordinates[c])+f*e,(this.op(a,"<=",g)&&this.op(a,">",h)||this.op(b,"<",g)&&this.op(b,">",h))&&i.push(c);this.$stage.children("."+this.settings.activeClass).removeClass(this.settings.activeClass),this.$stage.children(":eq("+i.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))}}],e.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 b,c,e;if(b=this.$element.find("img"),c=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:d,e=this.$element.children(c).width(),b.length&&0>=e)return this.preloadAutoWidthImages(b),!1}this.$element.addClass("owl-loading"),this.$stage=a("<"+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")},e.prototype.setup=function(){var b=this.viewport(),c=this.options.responsive,d=-1,e=null;c?(a.each(c,function(a){b>=a&&a>d&&(d=Number(a))}),e=a.extend({},this.options,c[d]),delete e.responsive,e.responsiveClass&&this.$element.attr("class",function(a,b){return b.replace(/\b owl-responsive-\S+/g,"")}).addClass("owl-responsive-"+d)):e=a.extend({},this.options),(null===this.settings||this._breakpoint!==d)&&(this.trigger("change",{property:{name:"settings",value:e}}),this._breakpoint=d,this.settings=e,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}}))},e.prototype.optionsLogic=function(){this.$element.toggleClass("owl-center",this.settings.center),this.settings.loop&&this._items.length").addClass(this.settings.itemClass).append(b)),this.trigger("prepared",{content:c.data}),c.data},e.prototype.update=function(){for(var b=0,c=this._pipe.length,d=a.proxy(function(a){return this[a]},this._invalidated),e={};c>b;)(this._invalidated.all||a.grep(this._pipe[b].filter,d).length>0)&&this._pipe[b].run(e),b++;this._invalidated={}},e.prototype.width=function(a){switch(a=a||e.Width.Default){case e.Width.Inner:case e.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},e.prototype.refresh=function(){if(0===this._items.length)return!1;(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=b.orientation,this.watchVisibility(),this.trigger("refreshed")},e.prototype.eventsCall=function(){this.e._onDragStart=a.proxy(function(a){this.onDragStart(a)},this),this.e._onDragMove=a.proxy(function(a){this.onDragMove(a)},this),this.e._onDragEnd=a.proxy(function(a){this.onDragEnd(a)},this),this.e._onResize=a.proxy(function(a){this.onResize(a)},this),this.e._transitionEnd=a.proxy(function(a){this.transitionEnd(a)},this),this.e._preventClick=a.proxy(function(a){this.preventClick(a)},this)},e.prototype.onThrottledResize=function(){b.clearTimeout(this.resizeTimer),this.resizeTimer=b.setTimeout(this.e._onResize,this.settings.responsiveRefreshRate)},e.prototype.onResize=function(){return this._items.length?this._width===this.$element.width()?!1:this.trigger("resize").isDefaultPrevented()?!1:(this._width=this.$element.width(),this.invalidate("width"),this.refresh(),void this.trigger("resized")):!1},e.prototype.eventsRouter=function(a){var b=a.type;"mousedown"===b||"touchstart"===b?this.onDragStart(a):"mousemove"===b||"touchmove"===b?this.onDragMove(a):"mouseup"===b||"touchend"===b?this.onDragEnd(a):"touchcancel"===b&&this.onDragEnd(a)},e.prototype.internalEvents=function(){var c=(k(),l());this.settings.mouseDrag?(this.$stage.on("mousedown",a.proxy(function(a){this.eventsRouter(a)},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&&!c&&this.$stage.on("touchstart touchcancel",a.proxy(function(a){this.eventsRouter(a)},this)),this.transitionEndVendor&&this.on(this.$stage.get(0),this.transitionEndVendor,this.e._transitionEnd,!1),this.settings.responsive!==!1&&this.on(b,"resize",a.proxy(this.onThrottledResize,this))},e.prototype.onDragStart=function(d){var e,g,h,i;if(e=d.originalEvent||d||b.event,3===e.which||this.state.isTouch)return!1;if("mousedown"===e.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,g=f(e).x,h=f(e).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)i=this.getTransformProperty(),this.drag.offsetX=i,this.animate(i),this.state.inMotion=!0;else if(this.state.inMotion&&!this.support3d)return this.state.inMotion=!1,!1;this.drag.startX=g-this.drag.offsetX,this.drag.startY=h-this.drag.offsetY,this.drag.start=g-this.drag.startX,this.drag.targetEl=e.target||e.srcElement,this.drag.updatedX=this.drag.start,("IMG"===this.drag.targetEl.tagName||"A"===this.drag.targetEl.tagName)&&(this.drag.targetEl.draggable=!1),a(c).on("mousemove.owl.dragEvents mouseup.owl.dragEvents touchmove.owl.dragEvents touchend.owl.dragEvents",a.proxy(function(a){this.eventsRouter(a)},this))},e.prototype.onDragMove=function(a){var c,e,g,h,i,j;this.state.isTouch&&(this.state.isScrolling||(c=a.originalEvent||a||b.event,e=f(c).x,g=f(c).y,this.drag.currentX=e-this.drag.startX,this.drag.currentY=g-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)):(h=this.coordinates(this.settings.rtl?this.maximum():this.minimum()),i=this.coordinates(this.settings.rtl?this.minimum():this.maximum()),j=this.settings.pullDrag?this.drag.distance/5:0,this.drag.currentX=Math.max(Math.min(this.drag.currentX,h+j),i+j)),(this.drag.distance>8||this.drag.distance<-8)&&(c.preventDefault!==d?c.preventDefault():c.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)))},e.prototype.onDragEnd=function(b){var d,e,f;if(this.state.isTouch){if("mouseup"===b.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(),d=this.drag.endTime-this.drag.startTime,e=Math.abs(this.drag.distance),(e>3||d>300)&&this.removeClick(this.drag.targetEl),f=this.closest(this.drag.updatedX),this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(f),this.invalidate("position"),this.update(),this.settings.pullDrag||this.drag.updatedX!==this.coordinates(f)||this.transitionEnd(),this.drag.distance=0,a(c).off(".owl.dragEvents")}},e.prototype.removeClick=function(c){this.drag.targetEl=c,a(c).on("click.preventClick",this.e._preventClick),b.setTimeout(function(){a(c).off("click.preventClick")},300)},e.prototype.preventClick=function(b){b.preventDefault?b.preventDefault():b.returnValue=!1,b.stopPropagation&&b.stopPropagation(),a(b.target).off("click.preventClick")},e.prototype.getTransformProperty=function(){var a,c;return a=b.getComputedStyle(this.$stage.get(0),null).getPropertyValue(this.vendorName+"transform"),a=a.replace(/matrix(3d)?\(|\)/g,"").split(","),c=16===a.length,c!==!0?a[4]:a[12]},e.prototype.closest=function(b){var c=-1,d=30,e=this.width(),f=this.coordinates();return this.settings.freeDrag||a.each(f,a.proxy(function(a,g){return b>g-d&&g+d>b?c=a:this.op(b,"<",g)&&this.op(b,">",f[a+1]||g-e)&&(c="left"===this.state.direction?a+1:a),-1===c},this)),this.settings.loop||(this.op(b,">",f[this.minimum()])?c=b=this.minimum():this.op(b,"<",f[this.maximum()])&&(c=b=this.maximum())),c},e.prototype.animate=function(b){this.trigger("translate"),this.state.inMotion=this.speed()>0,this.support3d?this.$stage.css({transform:"translate3d("+b+"px,0px, 0px)",transition:this.speed()/1e3+"s"}):this.state.isTouch?this.$stage.css({left:b+"px"}):this.$stage.animate({left:b},this.speed()/1e3,this.settings.fallbackEasing,a.proxy(function(){this.state.inMotion&&this.transitionEnd()},this))},e.prototype.current=function(a){if(a===d)return this._current;if(0===this._items.length)return d;if(a=this.normalize(a),this._current!==a){var b=this.trigger("change",{property:{name:"position",value:a}});b.data!==d&&(a=this.normalize(b.data)),this._current=a,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},e.prototype.invalidate=function(a){this._invalidated[a]=!0},e.prototype.reset=function(a){a=this.normalize(a),a!==d&&(this._speed=0,this._current=a,this.suppress(["translate","translated"]),this.animate(this.coordinates(a)),this.release(["translate","translated"]))},e.prototype.normalize=function(b,c){var e=c?this._items.length:this._items.length+this._clones.length;return!a.isNumeric(b)||1>e?d:b=this._clones.length?(b%e+e)%e:Math.max(this.minimum(c),Math.min(this.maximum(c),b))},e.prototype.relative=function(a){return a=this.normalize(a),a-=this._clones.length/2,this.normalize(a,!0)},e.prototype.maximum=function(a){var b,c,d,e=0,f=this.settings;if(a)return this._items.length-1;if(!f.loop&&f.center)b=this._items.length-1;else if(f.loop||f.center)if(f.loop||f.center)b=this._items.length+f.items;else{if(!f.autoWidth&&!f.merge)throw"Can not detect maximum absolute position.";for(revert=f.rtl?1:-1,c=this.$stage.width()-this.$element.width();(d=this.coordinates(e))&&!(d*revert>=c);)b=++e}else b=this._items.length-f.items;return b},e.prototype.minimum=function(a){return a?0:this._clones.length/2},e.prototype.items=function(a){return a===d?this._items.slice():(a=this.normalize(a,!0),this._items[a])},e.prototype.mergers=function(a){return a===d?this._mergers.slice():(a=this.normalize(a,!0),this._mergers[a])},e.prototype.clones=function(b){var c=this._clones.length/2,e=c+this._items.length,f=function(a){return a%2===0?e+a/2:c-(a+1)/2};return b===d?a.map(this._clones,function(a,b){return f(b)}):a.map(this._clones,function(a,c){return a===b?f(c):null})},e.prototype.speed=function(a){return a!==d&&(this._speed=a),this._speed},e.prototype.coordinates=function(b){var c=null;return b===d?a.map(this._coordinates,a.proxy(function(a,b){return this.coordinates(b)},this)):(this.settings.center?(c=this._coordinates[b],c+=(this.width()-c+(this._coordinates[b-1]||0))/2*(this.settings.rtl?-1:1)):c=this._coordinates[b-1]||0,c)},e.prototype.duration=function(a,b,c){return Math.min(Math.max(Math.abs(b-a),1),6)*Math.abs(c||this.settings.smartSpeed)},e.prototype.to=function(c,d){if(this.settings.loop){var e=c-this.relative(this.current()),f=this.current(),g=this.current(),h=this.current()+e,i=0>g-h?!0:!1,j=this._clones.length+this._items.length;h=j-this.settings.items&&i===!0&&(f=g-this._items.length,this.reset(f)),b.clearTimeout(this.e._goToLoop),this.e._goToLoop=b.setTimeout(a.proxy(function(){this.speed(this.duration(this.current(),f+e,d)),this.current(f+e),this.update()},this),30)}else this.speed(this.duration(this.current(),c,d)),this.current(c),this.update()},e.prototype.next=function(a){a=a||!1,this.to(this.relative(this.current())+1,a)},e.prototype.prev=function(a){a=a||!1,this.to(this.relative(this.current())-1,a)},e.prototype.transitionEnd=function(a){return a!==d&&(a.stopPropagation(),(a.target||a.srcElement||a.originalTarget)!==this.$stage.get(0))?!1:(this.state.inMotion=!1,void this.trigger("translated"))},e.prototype.viewport=function(){var d;if(this.options.responsiveBaseElement!==b)d=a(this.options.responsiveBaseElement).width();else if(b.innerWidth)d=b.innerWidth;else{if(!c.documentElement||!c.documentElement.clientWidth)throw"Can not detect viewport width.";d=c.documentElement.clientWidth}return d},e.prototype.replace=function(b){this.$stage.empty(),this._items=[],b&&(b=b instanceof jQuery?b:a(b)),this.settings.nestedItemSelector&&(b=b.find("."+this.settings.nestedItemSelector)),b.filter(function(){return 1===this.nodeType}).each(a.proxy(function(a,b){b=this.prepare(b),this.$stage.append(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").andSelf("[data-merge]").attr("data-merge")||1)},this)),this.reset(a.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},e.prototype.add=function(a,b){b=b===d?this._items.length:this.normalize(b,!0),this.trigger("add",{content:a,position:b}),0===this._items.length||b===this._items.length?(this.$stage.append(a),this._items.push(a),this._mergers.push(1*a.find("[data-merge]").andSelf("[data-merge]").attr("data-merge")||1)):(this._items[b].before(a),this._items.splice(b,0,a),this._mergers.splice(b,0,1*a.find("[data-merge]").andSelf("[data-merge]").attr("data-merge")||1)),this.invalidate("items"),this.trigger("added",{content:a,position:b})},e.prototype.remove=function(a){a=this.normalize(a,!0),a!==d&&(this.trigger("remove",{content:this._items[a],position:a}),this._items[a].remove(),this._items.splice(a,1),this._mergers.splice(a,1),this.invalidate("items"),this.trigger("removed",{content:null,position:a}))},e.prototype.addTriggerableEvents=function(){var b=a.proxy(function(b,c){return a.proxy(function(a){a.relatedTarget!==this&&(this.suppress([c]),b.apply(this,[].slice.call(arguments,1)),this.release([c]))},this)},this);a.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},a.proxy(function(a,c){this.$element.on(a+".owl.carousel",b(c,a+".owl.carousel"))},this))},e.prototype.watchVisibility=function(){function c(a){return a.offsetWidth>0&&a.offsetHeight>0}function d(){c(this.$element.get(0))&&(this.$element.removeClass("owl-hidden"),this.refresh(),b.clearInterval(this.e._checkVisibile))}c(this.$element.get(0))||(this.$element.addClass("owl-hidden"),b.clearInterval(this.e._checkVisibile),this.e._checkVisibile=b.setInterval(a.proxy(d,this),500))},e.prototype.preloadAutoWidthImages=function(b){var c,d,e,f;c=0,d=this,b.each(function(g,h){e=a(h),f=new Image,f.onload=function(){c++,e.attr("src",f.src),e.css("opacity",1),c>=b.length&&(d.state.imagesLoaded=!0,d.initialize())},f.src=e.attr("src")||e.attr("data-src")||e.attr("data-src-retina")})},e.prototype.destroy=function(){this.$element.hasClass(this.settings.themeClass)&&this.$element.removeClass(this.settings.themeClass),this.settings.responsive!==!1&&a(b).off("resize.owl.carousel"),this.transitionEndVendor&&this.off(this.$stage.get(0),this.transitionEndVendor,this.e._transitionEnd);for(var d in this._plugins)this._plugins[d].destroy();(this.settings.mouseDrag||this.settings.touchDrag)&&(this.$stage.off("mousedown touchstart touchcancel"),a(c).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()},e.prototype.op=function(a,b,c){var d=this.settings.rtl;switch(b){case"<":return d?a>c:c>a;case">":return d?c>a:a>c;case">=":return d?c>=a:a>=c;case"<=":return d?a>=c:c>=a}},e.prototype.on=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},e.prototype.off=function(a,b,c,d){a.removeEventListener?a.removeEventListener(b,c,d):a.detachEvent&&a.detachEvent("on"+b,c)},e.prototype.trigger=function(b,c,d){var e={item:{count:this._items.length,index:this.current()}},f=a.camelCase(a.grep(["on",b,d],function(a){return a}).join("-").toLowerCase()),g=a.Event([b,"owl",d||"carousel"].join(".").toLowerCase(),a.extend({relatedTarget:this},e,c));return this._supress[b]||(a.each(this._plugins,function(a,b){b.onTrigger&&b.onTrigger(g)}),this.$element.trigger(g),this.settings&&"function"==typeof this.settings[f]&&this.settings[f].apply(this,g)),g},e.prototype.suppress=function(b){a.each(b,a.proxy(function(a,b){this._supress[b]=!0},this))},e.prototype.release=function(b){a.each(b,a.proxy(function(a,b){delete this._supress[b]},this))},e.prototype.browserSupport=function(){if(this.support3d=j(),this.support3d){this.transformVendor=i();var a=["transitionend","webkitTransitionEnd","transitionend","oTransitionEnd"];this.transitionEndVendor=a[h()],this.vendorName=this.transformVendor.replace(/Transform/i,""),this.vendorName=""!==this.vendorName?"-"+this.vendorName.toLowerCase()+"-":""}this.state.orientation=b.orientation},a.fn.owlCarousel=function(b){return this.each(function(){a(this).data("owlCarousel")||a(this).data("owlCarousel",new e(this,b))})},a.fn.owlCarousel.Constructor=e}(window.Zepto||window.jQuery,window,document),function(a,b){var c=function(b){this._core=b,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel":a.proxy(function(b){if(b.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(b.property&&"position"==b.property.name||"initialized"==b.type))for(var c=this._core.settings,d=c.center&&Math.ceil(c.items/2)||c.items,e=c.center&&-1*d||0,f=(b.property&&b.property.value||this._core.current())+e,g=this._core.clones().length,h=a.proxy(function(a,b){this.load(b)},this);e++-1||(e.each(a.proxy(function(c,d){var e,f=a(d),g=b.devicePixelRatio>1&&f.attr("data-src-retina")||f.attr("data-src");this._core.trigger("load",{element:f,url:g},"lazy"),f.is("img")?f.one("load.owl.lazy",a.proxy(function(){f.css("opacity",1),this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("src",g):(e=new Image,e.onload=a.proxy(function(){f.css({"background-image":"url("+g+")",opacity:"1"}),this._core.trigger("loaded",{element:f,url:g},"lazy")},this),e.src=g)},this)),this._loaded.push(d.get(0)))},c.prototype.destroy=function(){var a,b;for(a in this.handlers)this._core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Lazy=c}(window.Zepto||window.jQuery,window,document),function(a){var b=function(c){this._core=c,this._handlers={"initialized.owl.carousel":a.proxy(function(){this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":a.proxy(function(a){this._core.settings.autoHeight&&"position"==a.property.name&&this.update()},this),"loaded.owl.lazy":a.proxy(function(a){this._core.settings.autoHeight&&a.element.closest("."+this._core.settings.itemClass)===this._core.$stage.children().eq(this._core.current())&&this.update()},this)},this._core.options=a.extend({},b.Defaults,this._core.options),this._core.$element.on(this._handlers)};b.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},b.prototype.update=function(){this._core.$stage.parent().height(this._core.$stage.children().eq(this._core.current()).height()).addClass(this._core.settings.autoHeightClass)},b.prototype.destroy=function(){var a,b;for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoHeight=b}(window.Zepto||window.jQuery,window,document),function(a,b,c){var d=function(b){this._core=b,this._videos={},this._playing=null,this._fullscreen=!1,this._handlers={"resize.owl.carousel":a.proxy(function(a){this._core.settings.video&&!this.isInFullScreen()&&a.preventDefault()},this),"refresh.owl.carousel changed.owl.carousel":a.proxy(function(){this._playing&&this.stop()},this),"prepared.owl.carousel":a.proxy(function(b){var c=a(b.content).find(".owl-video");c.length&&(c.css("display","none"),this.fetch(c,a(b.content)))},this)},this._core.options=a.extend({},d.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",a.proxy(function(a){this.play(a)},this))};d.Defaults={video:!1,videoHeight:!1,videoWidth:!1},d.prototype.fetch=function(a,b){var c=a.attr("data-vimeo-id")?"vimeo":"youtube",d=a.attr("data-vimeo-id")||a.attr("data-youtube-id"),e=a.attr("data-width")||this._core.settings.videoWidth,f=a.attr("data-height")||this._core.settings.videoHeight,g=a.attr("href");if(!g)throw new Error("Missing video URL.");if(d=g.match(/(http:|https:|)\/\/(player.|www.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com))\/(video\/|embed\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/),d[3].indexOf("youtu")>-1)c="youtube";else{if(!(d[3].indexOf("vimeo")>-1))throw new Error("Video URL not supported.");c="vimeo"}d=d[6],this._videos[g]={type:c,id:d,width:e,height:f},b.attr("data-video",g),this.thumbnail(a,this._videos[g])},d.prototype.thumbnail=function(b,c){var d,e,f,g=c.width&&c.height?'style="width:'+c.width+"px;height:"+c.height+'px;"':"",h=b.find("img"),i="src",j="",k=this._core.settings,l=function(a){e='
',d=k.lazyLoad?'
':'
',b.after(d),b.after(e)};return b.wrap('
"),this._core.settings.lazyLoad&&(i="data-src",j="owl-lazy"),h.length?(l(h.attr(i)),h.remove(),!1):void("youtube"===c.type?(f="http://img.youtube.com/vi/"+c.id+"/hqdefault.jpg",l(f)):"vimeo"===c.type&&a.ajax({type:"GET",url:"http://vimeo.com/api/v2/video/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a[0].thumbnail_large,l(f)}}))},d.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},d.prototype.play=function(b){this._core.trigger("play",null,"video"),this._playing&&this.stop();var c,d,e=a(b.target||b.srcElement),f=e.closest("."+this._core.settings.itemClass),g=this._videos[f.attr("data-video")],h=g.width||"100%",i=g.height||this._core.$stage.height();"youtube"===g.type?c='':"vimeo"===g.type&&(c=''),f.addClass("owl-video-playing"),this._playing=f,d=a('
'+c+"
"),e.after(d)},d.prototype.isInFullScreen=function(){var d=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return d&&a(d).parent().hasClass("owl-video-frame")&&(this._core.speed(0),this._fullscreen=!0),d&&this._fullscreen&&this._playing?!1:this._fullscreen?(this._fullscreen=!1,!1):this._playing&&this._core.state.orientation!==b.orientation?(this._core.state.orientation=b.orientation,!1):!0},d.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=d}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){this.swapping="translated"==a.type},this),"translate.owl.carousel":a.proxy(function(){this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1,animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&this.core.support3d){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",c)),f&&e.addClass("animated owl-animated-in").addClass(f).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",c))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.transitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c){var d=function(b){this.core=b,this.core.options=a.extend({},d.Defaults,this.core.options),this.handlers={"translated.owl.carousel refreshed.owl.carousel":a.proxy(function(){this.autoplay() +},this),"play.owl.autoplay":a.proxy(function(a,b,c){this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(){this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this.core.settings.autoplayHoverPause&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this.core.settings.autoplayHoverPause&&this.autoplay()},this)},this.core.$element.on(this.handlers)};d.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},d.prototype.autoplay=function(){this.core.settings.autoplay&&!this.core.state.videoPlay?(b.clearInterval(this.interval),this.interval=b.setInterval(a.proxy(function(){this.play()},this),this.core.settings.autoplayTimeout)):b.clearInterval(this.interval)},d.prototype.play=function(){return c.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 b.clearInterval(this.interval):void this.core.next(this.core.settings.autoplaySpeed)},d.prototype.stop=function(){b.clearInterval(this.interval)},d.prototype.pause=function(){b.clearInterval(this.interval)},d.prototype.destroy=function(){var a,c;b.clearInterval(this.interval);for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=d}(window.Zepto||window.jQuery,window,document),function(a){"use strict";var b=function(c){this._core=c,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":a.proxy(function(b){this._core.settings.dotsData&&this._templates.push(a(b.content).find("[data-dot]").andSelf("[data-dot]").attr("data-dot"))},this),"add.owl.carousel":a.proxy(function(b){this._core.settings.dotsData&&this._templates.splice(b.position,0,a(b.content).find("[data-dot]").andSelf("[data-dot]").attr("data-dot"))},this),"remove.owl.carousel prepared.owl.carousel":a.proxy(function(a){this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"change.owl.carousel":a.proxy(function(a){if("position"==a.property.name&&!this._core.state.revert&&!this._core.settings.loop&&this._core.settings.navRewind){var b=this._core.current(),c=this._core.maximum(),d=this._core.minimum();a.data=a.property.value>c?b>=c?d:c:a.property.value").addClass(d.dotClass).append(a("")).prop("outerHTML")]),d.navContainer&&d.dotsContainer||(this._controls.$container=a("
").addClass(d.controlsClass).appendTo(this.$element)),this._controls.$indicators=d.dotsContainer?a(d.dotsContainer):a("
").hide().addClass(d.dotsClass).appendTo(this._controls.$container),this._controls.$indicators.on("click","div",a.proxy(function(b){var c=a(b.target).parent().is(this._controls.$indicators)?a(b.target).index():a(b.target).parent().index();b.preventDefault(),this.to(c,d.dotsSpeed)},this)),b=d.navContainer?a(d.navContainer):a("
").addClass(d.navContainerClass).prependTo(this._controls.$container),this._controls.$next=a("<"+d.navElement+">"),this._controls.$previous=this._controls.$next.clone(),this._controls.$previous.addClass(d.navClass[0]).html(d.navText[0]).hide().prependTo(b).on("click",a.proxy(function(){this.prev(d.navSpeed)},this)),this._controls.$next.addClass(d.navClass[1]).html(d.navText[1]).hide().appendTo(b).on("click",a.proxy(function(){this.next(d.navSpeed)},this));for(c in this._overrides)this._core[c]=a.proxy(this[c],this)},b.prototype.destroy=function(){var a,b,c,d;for(a in this._handlers)this.$element.off(a,this._handlers[a]);for(b in this._controls)this._controls[b].remove();for(d in this.overides)this._core[d]=this._overrides[d];for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},b.prototype.update=function(){var a,b,c,d=this._core.settings,e=this._core.clones().length/2,f=e+this._core.items().length,g=d.center||d.autoWidth||d.dotData?1:d.dotsEach||d.items;if("page"!==d.slideBy&&(d.slideBy=Math.min(d.slideBy,d.items)),d.dots||"page"==d.slideBy)for(this._pages=[],a=e,b=0,c=0;f>a;a++)(b>=g||0===b)&&(this._pages.push({start:a-e,end:a-e+g-1}),b=0,++c),b+=this._core.mergers(this._core.relative(a))},b.prototype.draw=function(){var b,c,d="",e=this._core.settings,f=(this._core.$stage.children(),this._core.relative(this._core.current()));if(!e.nav||e.loop||e.navRewind||(this._controls.$previous.toggleClass("disabled",0>=f),this._controls.$next.toggleClass("disabled",f>=this._core.maximum())),this._controls.$previous.toggle(e.nav),this._controls.$next.toggle(e.nav),e.dots){if(b=this._pages.length-this._controls.$indicators.children().length,e.dotData&&0!==b){for(c=0;c0?(d=new Array(b+1).join(this._templates[0]),this._controls.$indicators.append(d)):0>b&&this._controls.$indicators.children().slice(b).remove();this._controls.$indicators.find(".active").removeClass("active"),this._controls.$indicators.children().eq(a.inArray(this.current(),this._pages)).addClass("active")}this._controls.$indicators.toggle(e.dots)},b.prototype.onTrigger=function(b){var c=this._core.settings;b.page={index:a.inArray(this.current(),this._pages),count:this._pages.length,size:c&&(c.center||c.autoWidth||c.dotData?1:c.dotsEach||c.items)}},b.prototype.current=function(){var b=this._core.relative(this._core.current());return a.grep(this._pages,function(a){return a.start<=b&&a.end>=b}).pop()},b.prototype.getPosition=function(b){var c,d,e=this._core.settings;return"page"==e.slideBy?(c=a.inArray(this.current(),this._pages),d=this._pages.length,b?++c:--c,c=this._pages[(c%d+d)%d].start):(c=this._core.relative(this._core.current()),d=this._core.items().length,b?c+=e.slideBy:c-=e.slideBy),c},b.prototype.next=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!0),b)},b.prototype.prev=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!1),b)},b.prototype.to=function(b,c,d){var e;d?a.proxy(this._overrides.to,this._core)(b,c):(e=this._pages.length,a.proxy(this._overrides.to,this._core)(this._pages[(b%e+e)%e].start,c))},a.fn.owlCarousel.Constructor.Plugins.Navigation=b}(window.Zepto||window.jQuery,window,document),function(a,b){"use strict";var c=function(d){this._core=d,this._hashes={},this.$element=this._core.$element,this._handlers={"initialized.owl.carousel":a.proxy(function(){"URLHash"==this._core.settings.startPosition&&a(b).trigger("hashchange.owl.navigation")},this),"prepared.owl.carousel":a.proxy(function(b){var c=a(b.content).find("[data-hash]").andSelf("[data-hash]").attr("data-hash");this._hashes[c]=b.content},this)},this._core.options=a.extend({},c.Defaults,this._core.options),this.$element.on(this._handlers),a(b).on("hashchange.owl.navigation",a.proxy(function(){var a=b.location.hash.substring(1),c=this._core.$stage.children(),d=this._hashes[a]&&c.index(this._hashes[a])||0;return a?void this._core.to(d,!1,!0):!1},this))};c.Defaults={URLhashListener:!1},c.prototype.destroy=function(){var c,d;a(b).off("hashchange.owl.navigation");for(c in this._handlers)this._core.$element.off(c,this._handlers[c]);for(d in Object.getOwnPropertyNames(this))"function"!=typeof this[d]&&(this[d]=null)},a.fn.owlCarousel.Constructor.Plugins.Hash=c}(window.Zepto||window.jQuery,window,document); \ No newline at end of file diff --git a/sass/owlcarousel/_mixins.scss b/sass/owlcarousel/_mixins.scss new file mode 100755 index 0000000..a6102bc --- /dev/null +++ b/sass/owlcarousel/_mixins.scss @@ -0,0 +1,21 @@ +@mixin transition($prop, $time, $easing){ + -webkit-transition: $prop $time $easing; + -moz-transition: $prop $time $easing; + -ms-transition: $prop $time $easing; + -o-transition: $prop $time $easing; + transition: $prop $time $easing; +} + +@mixin rounded($value){ + -webkit-border-radius: $value; + -moz-border-radius: $value; + border-radius: $value; +} + +@mixin transform($prop){ + -webkit-transition: $prop; + -moz-transition: $prop; + -ms-transition: $prop; + -o-transition: $prop; + transition: $prop; +} diff --git a/sass/owlcarousel/_theme.scss b/sass/owlcarousel/_theme.scss new file mode 100755 index 0000000..b93f5c9 --- /dev/null +++ b/sass/owlcarousel/_theme.scss @@ -0,0 +1,63 @@ + +.owl-theme { + // Styling Next and Prev buttons + .owl-nav { + margin-top: 10px; + text-align: center; + -webkit-tap-highlight-color: transparent; + + [class*='owl-'] { + color: $nav-color; + font-size: $nav-font-size; + margin: $nav-margin; + padding: $nav-padding; + background: $nav-background; + display: inline-block; + cursor: pointer; + @include rounded($nav-rounded); + + &:hover { + background: $nav-background-hover; + color:$nav-color-hover; + text-decoration: none; + } + } + .disabled { + opacity: $nav-disabled-opacity; + cursor: default; + } + } + + // Styling dots + .owl-nav.disabled + .owl-dots { + margin-top: 10px; + } + .owl-dots { + text-align: center; + -webkit-tap-highlight-color: transparent; + + .owl-dot { + display: inline-block; + zoom: 1; + *display: inline; + + span { + width: $dot-width; + height: $dot-height; + margin: $dot-margin; + background: $dot-background; + display: block; + -webkit-backface-visibility: visible; + @include transition(opacity, 200ms, ease); + @include rounded($dot-rounded); + } + + &.active, + &:hover { + span { + background: $dot-background-active; + } + } + } + } +} \ No newline at end of file diff --git a/sass/owlcarousel/owl.animate.css b/sass/owlcarousel/owl.animate.css new file mode 100644 index 0000000..942ffdb --- /dev/null +++ b/sass/owlcarousel/owl.animate.css @@ -0,0 +1,2 @@ +.owl-carousel .animated{-webkit-animation-duration:1000ms;animation-duration:1000ms;-webkit-animation-fill-mode:both;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}} +/*# sourceMappingURL=owl.animate.css.map */ diff --git a/sass/owlcarousel/owl.animate.css.map b/sass/owlcarousel/owl.animate.css.map new file mode 100644 index 0000000..7b9c6c6 --- /dev/null +++ b/sass/owlcarousel/owl.animate.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAIC,uBAAU,CACT,0BAA0B,CAAE,MAAM,CAClC,kBAAkB,CAAE,MAAM,CAC1B,2BAA2B,CAAE,IAAI,CACjC,mBAAmB,CAAE,IAAI,CAE1B,8BAAiB,CAChB,OAAO,CAAE,CAAC,CAEX,+BAAkB,CACjB,OAAO,CAAE,CAAC,CAEX,sBAAS,CACR,sBAAsB,CAAE,OAAO,CAC/B,cAAc,CAAE,OAAO,CAIzB,0BAQC,CAPA,EAAG,CACF,OAAO,CAAE,CAAC,CAGX,IAAK,CACJ,OAAO,CAAE,CAAC,EAGZ,kBAQC,CAPA,EAAG,CACF,OAAO,CAAE,CAAC,CAGX,IAAK,CACJ,OAAO,CAAE,CAAC", +"sources": ["owl.animate.scss"], +"names": [], +"file": "owl.animate.css" +} \ No newline at end of file diff --git a/sass/owlcarousel/owl.animate.scss b/sass/owlcarousel/owl.animate.scss new file mode 100755 index 0000000..b1ea872 --- /dev/null +++ b/sass/owlcarousel/owl.animate.scss @@ -0,0 +1,40 @@ +/* + * Owl Carousel - Animate Plugin + */ +.owl-carousel{ + .animated { + -webkit-animation-duration: 1000ms; + animation-duration: 1000ms; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + } + .owl-animated-in { + z-index: 0; + } + .owl-animated-out { + z-index: 1; + } + .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; + } +} diff --git a/sass/owlcarousel/owl.autoheight.css b/sass/owlcarousel/owl.autoheight.css new file mode 100644 index 0000000..cbffaec --- /dev/null +++ b/sass/owlcarousel/owl.autoheight.css @@ -0,0 +1,2 @@ +.owl-height{-webkit-transition:height 500ms ease-in-out;-moz-transition:height 500ms ease-in-out;-ms-transition:height 500ms ease-in-out;-o-transition:height 500ms ease-in-out;transition:height 500ms ease-in-out} +/*# sourceMappingURL=owl.autoheight.css.map */ diff --git a/sass/owlcarousel/owl.autoheight.css.map b/sass/owlcarousel/owl.autoheight.css.map new file mode 100644 index 0000000..2c8e843 --- /dev/null +++ b/sass/owlcarousel/owl.autoheight.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAMA,WAAY,CCLX,kBAAkB,CAAE,wBAAmB,CACvC,eAAe,CAAE,wBAAmB,CACpC,cAAc,CAAE,wBAAmB,CACnC,aAAa,CAAE,wBAAmB,CAClC,UAAU,CAAE,wBAAmB", +"sources": ["owl.autoheight.scss","_mixins.scss"], +"names": [], +"file": "owl.autoheight.css" +} \ No newline at end of file diff --git a/sass/owlcarousel/owl.autoheight.scss b/sass/owlcarousel/owl.autoheight.scss new file mode 100755 index 0000000..1375a16 --- /dev/null +++ b/sass/owlcarousel/owl.autoheight.scss @@ -0,0 +1,9 @@ +/* + * Owl Carousel - Auto Height Plugin + */ + +@import 'mixins'; + +.owl-height { + @include transition(height, 500ms, ease-in-out) +} diff --git a/sass/owlcarousel/owl.carousel.css b/sass/owlcarousel/owl.carousel.css new file mode 100644 index 0000000..6f5a403 --- /dev/null +++ b/sass/owlcarousel/owl.carousel.css @@ -0,0 +1,2 @@ +.owl-carousel{display:none;width:100%;-webkit-tap-highlight-color:transparent;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(0px, 0px, 0px)}.owl-carousel .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d}.owl-carousel .owl-nav.disabled,.owl-carousel .owl-dots.disabled{display:none}.owl-carousel .owl-nav .owl-prev,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-dot{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-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-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:-webkit-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.no-js .owl-carousel{display:block} +/*# sourceMappingURL=owl.carousel.css.map */ diff --git a/sass/owlcarousel/owl.carousel.css.map b/sass/owlcarousel/owl.carousel.css.map new file mode 100644 index 0000000..ff7911d --- /dev/null +++ b/sass/owlcarousel/owl.carousel.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAGA,aAAc,CACb,OAAO,CAAE,IAAI,CACb,KAAK,CAAE,IAAI,CACX,2BAA2B,CAAE,WAAW,CAExC,QAAQ,CAAE,QAAQ,CAClB,OAAO,CAAE,CAAC,CAEV,wBAAW,CACV,QAAQ,CAAE,QAAQ,CAClB,gBAAgB,CAAE,KAAK,CAGxB,8BAAiB,CAChB,OAAO,CAAE,GAAG,CACZ,OAAO,CAAE,KAAK,CACd,KAAK,CAAE,IAAI,CACX,UAAU,CAAE,MAAM,CAClB,WAAW,CAAE,CAAC,CACd,MAAM,CAAE,CAAC,CAGV,8BAAiB,CAChB,QAAQ,CAAE,QAAQ,CAClB,QAAQ,CAAE,MAAM,CAEhB,iBAAiB,CAAE,0BAA0B,CAG9C,uBAAU,CACT,QAAQ,CAAE,QAAQ,CAClB,UAAU,CAAE,GAAG,CACf,KAAK,CAAE,IAAI,CACX,2BAA2B,CAAE,MAAM,CACnC,2BAA2B,CAAE,WAAW,CACxC,qBAAqB,CAAE,IAAI,CAE5B,2BAAc,CACb,OAAO,CAAE,KAAK,CACd,KAAK,CAAE,IAAI,CACX,uBAAuB,CAAE,WAAW,CAGrC,gEACmB,CAClB,OAAO,CAAE,IAAI,CAGd,wFAES,CACR,MAAM,CAAE,OAAO,CACf,MAAM,CAAE,IAAI,CACZ,mBAAmB,CAAE,IAAI,CACzB,kBAAkB,CAAE,IAAI,CACxB,gBAAgB,CAAE,IAAI,CACtB,eAAe,CAAE,IAAI,CACrB,WAAW,CAAE,IAAI,CAGlB,wBAAa,CACZ,OAAO,CAAE,KAAK,CAGf,yBAAc,CACb,OAAO,CAAE,CAAC,CACV,OAAO,CAAE,KAAK,CAGf,wBAAa,CACZ,OAAO,CAAE,CAAC,CAGX,mCAAwB,CACvB,OAAO,CAAE,IAAI,CAGd,gCAAqB,CACpB,mBAAmB,CAAE,IAAI,CACzB,gBAAgB,CAAE,IAAI,CACtB,eAAe,CAAE,IAAI,CACrB,WAAW,CAAE,IAAI,CAGlB,sBAAW,CACV,MAAM,CAAE,IAAI,CACZ,MAAM,CAAE,YAAY,CACpB,MAAM,CAAE,OAAO,CACf,MAAM,CAAE,QAAQ,CAChB,MAAM,CAAE,IAAI,CAGb,qBAAU,CACT,SAAS,CAAE,GAAG,CAGf,+BAAoB,CACnB,KAAK,CAAE,KAAK,CAKd,oBAAqB,CACpB,OAAO,CAAE,KAAK", +"sources": ["owl.carousel.scss"], +"names": [], +"file": "owl.carousel.css" +} \ No newline at end of file diff --git a/sass/owlcarousel/owl.carousel.scss b/sass/owlcarousel/owl.carousel.scss new file mode 100755 index 0000000..1eff06c --- /dev/null +++ b/sass/owlcarousel/owl.carousel.scss @@ -0,0 +1,108 @@ +/* + * Core Owl Carousel CSS File + */ +.owl-carousel { + display: none; + width: 100%; + -webkit-tap-highlight-color: transparent; + /* position relative and z-index fix webkit rendering fonts issue */ + position: relative; + z-index: 1; + + .owl-stage { + position: relative; + -ms-touch-action: pan-Y; + } + + .owl-stage:after { + content: "."; + display: block; + clear: both; + visibility: hidden; + line-height: 0; + height: 0; + } + + .owl-stage-outer { + position: relative; + overflow: hidden; + /* fix for flashing background */ + -webkit-transform: translate3d(0px, 0px, 0px); + } + + .owl-item { + position: relative; + min-height: 1px; + float: left; + -webkit-backface-visibility: hidden; + -webkit-tap-highlight-color: transparent; + -webkit-touch-callout: none; + } + .owl-item img { + display: block; + width: 100%; + -webkit-transform-style: preserve-3d; + } + + .owl-nav.disabled, + .owl-dots.disabled { + display: none; + } + + .owl-nav .owl-prev, + .owl-nav .owl-next, + .owl-dot { + cursor: pointer; + cursor: hand; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + + &.owl-loaded { + display: block; + } + + &.owl-loading { + opacity: 0; + display: block; + } + + &.owl-hidden { + opacity: 0; + } + + &.owl-refresh .owl-item { + display: none; + } + + &.owl-drag .owl-item { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + + &.owl-grab { + cursor: move; + cursor: -webkit-grab; + cursor: -o-grab; + cursor: -ms-grab; + cursor: grab; + } + + &.owl-rtl { + direction: rtl; + } + + &.owl-rtl .owl-item { + float: right; + } +} + +/* No Js */ +.no-js .owl-carousel { + display: block; +} diff --git a/sass/owlcarousel/owl.lazyload.css b/sass/owlcarousel/owl.lazyload.css new file mode 100644 index 0000000..760ca7a --- /dev/null +++ b/sass/owlcarousel/owl.lazyload.css @@ -0,0 +1,2 @@ +.owl-carousel .owl-item .owl-lazy{opacity:0;-webkit-transition:opacity 400ms ease;-moz-transition:opacity 400ms ease;-ms-transition:opacity 400ms ease;-o-transition:opacity 400ms ease;transition:opacity 400ms ease}.owl-carousel .owl-item img{transform-style:preserve-3d} +/*# sourceMappingURL=owl.lazyload.css.map */ diff --git a/sass/owlcarousel/owl.lazyload.css.map b/sass/owlcarousel/owl.lazyload.css.map new file mode 100644 index 0000000..a7b306c --- /dev/null +++ b/sass/owlcarousel/owl.lazyload.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAQE,iCAAU,CACP,OAAO,CAAE,CAAC,CCRd,kBAAkB,CAAE,kBAAmB,CACvC,eAAe,CAAE,kBAAmB,CACpC,cAAc,CAAE,kBAAmB,CACnC,aAAa,CAAE,kBAAmB,CAClC,UAAU,CAAE,kBAAmB,CDO9B,2BAAG,CACF,eAAe,CAAE,WAAW", +"sources": ["owl.lazyload.scss","_mixins.scss"], +"names": [], +"file": "owl.lazyload.css" +} \ No newline at end of file diff --git a/sass/owlcarousel/owl.lazyload.scss b/sass/owlcarousel/owl.lazyload.scss new file mode 100755 index 0000000..0a5405b --- /dev/null +++ b/sass/owlcarousel/owl.lazyload.scss @@ -0,0 +1,18 @@ +/* + * Owl Carousel - Lazy Load Plugin + */ + +@import 'mixins'; + +.owl-carousel { + .owl-item { + .owl-lazy { + opacity: 0; + @include transition(opacity, 400ms, ease); + } + img{ + transform-style: preserve-3d; + } + } +} + diff --git a/sass/owlcarousel/owl.theme.default.css b/sass/owlcarousel/owl.theme.default.css new file mode 100644 index 0000000..6f70a2e --- /dev/null +++ b/sass/owlcarousel/owl.theme.default.css @@ -0,0 +1,2 @@ +.owl-theme .owl-nav{margin-top:10px;text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav [class*='owl-']{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.owl-theme .owl-nav [class*='owl-']:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:0.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1;*display:inline}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity 200ms ease;-moz-transition:opacity 200ms ease;-ms-transition:opacity 200ms ease;-o-transition:opacity 200ms ease;transition:opacity 200ms ease;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791} +/*# sourceMappingURL=owl.theme.default.css.map */ diff --git a/sass/owlcarousel/owl.theme.default.css.map b/sass/owlcarousel/owl.theme.default.css.map new file mode 100644 index 0000000..c81c0a1 --- /dev/null +++ b/sass/owlcarousel/owl.theme.default.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAGC,mBAAS,CACR,UAAU,CAAE,IAAI,CAChB,UAAU,CAAE,MAAM,CAClB,2BAA2B,CAAE,WAAW,CAExC,mCAAgB,CACf,KAAK,CCEW,IAAY,CDD5B,SAAS,CCEM,IAAI,CDDnB,MAAM,CCGO,GAAG,CDFhB,OAAO,CCGO,OAAO,CDFrB,UAAU,CCaK,OAAW,CDZ1B,OAAO,CAAE,YAAY,CACrB,MAAM,CAAE,OAAO,CENjB,qBAAqB,CDIL,GAAG,CCHnB,kBAAkB,CDGF,GAAG,CCFnB,aAAa,CDEG,GAAG,CDKjB,yCAAQ,CACP,UAAU,CCQU,OAAW,CDP/B,KAAK,CCTU,IAAY,CDU3B,eAAe,CAAE,IAAI,CAGvB,6BAAU,CACT,OAAO,CCPc,GAAG,CDQxB,MAAM,CAAE,OAAO,CAKjB,sCAA8B,CAC7B,UAAU,CAAE,IAAI,CAEjB,oBAAU,CACT,UAAU,CAAE,MAAM,CAClB,2BAA2B,CAAE,WAAW,CAExC,6BAAS,CACR,OAAO,CAAE,YAAY,CACrB,IAAI,CAAE,CAAC,CACP,QAAQ,CAAE,MAAM,CAEhB,kCAAK,CACJ,KAAK,CCtBM,IAAI,CDuBf,MAAM,CCtBK,IAAI,CDuBf,MAAM,CCrBM,OAAO,CDsBnB,UAAU,CCrBI,OAAW,CDsBzB,OAAO,CAAE,KAAK,CACd,2BAA2B,CAAE,OAAO,CEhDvC,kBAAkB,CAAE,kBAAmB,CACvC,eAAe,CAAE,kBAAmB,CACpC,cAAc,CAAE,kBAAmB,CACnC,aAAa,CAAE,kBAAmB,CAClC,UAAU,CAAE,kBAAmB,CAI/B,qBAAqB,CDeN,IAAI,CCdnB,kBAAkB,CDcH,IAAI,CCbnB,aAAa,CDaE,IAAI,CDgChB,kFAAK,CACJ,UAAU,CC9BS,OAAW", +"sources": ["_theme.scss","owl.theme.default.scss","_mixins.scss"], +"names": [], +"file": "owl.theme.default.css" +} \ No newline at end of file diff --git a/sass/owlcarousel/owl.theme.default.scss b/sass/owlcarousel/owl.theme.default.scss new file mode 100755 index 0000000..52d6a33 --- /dev/null +++ b/sass/owlcarousel/owl.theme.default.scss @@ -0,0 +1,31 @@ +/* + * Default theme - Owl Carousel CSS File + */ + +$color-base: #869791; +$color-white: #FFF; +$color-gray: #D6D6D6; + +//nav + +$nav-color: $color-white; +$nav-color-hover: $color-white; +$nav-font-size: 14px; +$nav-rounded: 3px; +$nav-margin: 5px; +$nav-padding: 4px 7px; +$nav-background: $color-gray; +$nav-background-hover: $color-base; +$nav-disabled-opacity: 0.5; + +//dots + +$dot-width: 10px; +$dot-height: 10px; +$dot-rounded: 30px; +$dot-margin: 5px 7px; +$dot-background: $color-gray; +$dot-background-active: $color-base; + +@import 'mixins'; +@import 'theme'; \ No newline at end of file diff --git a/sass/owlcarousel/owl.theme.green.css b/sass/owlcarousel/owl.theme.green.css new file mode 100644 index 0000000..25750ae --- /dev/null +++ b/sass/owlcarousel/owl.theme.green.css @@ -0,0 +1,2 @@ +.owl-theme .owl-nav{margin-top:10px;text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav [class*='owl-']{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.owl-theme .owl-nav [class*='owl-']:hover{background:#4DC7A0;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:0.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1;*display:inline}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity 200ms ease;-moz-transition:opacity 200ms ease;-ms-transition:opacity 200ms ease;-o-transition:opacity 200ms ease;transition:opacity 200ms ease;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#4DC7A0} +/*# sourceMappingURL=owl.theme.green.css.map */ diff --git a/sass/owlcarousel/owl.theme.green.css.map b/sass/owlcarousel/owl.theme.green.css.map new file mode 100644 index 0000000..6931c2e --- /dev/null +++ b/sass/owlcarousel/owl.theme.green.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAGC,mBAAS,CACR,UAAU,CAAE,IAAI,CAChB,UAAU,CAAE,MAAM,CAClB,2BAA2B,CAAE,WAAW,CAExC,mCAAgB,CACf,KAAK,CCEW,IAAY,CDD5B,SAAS,CCEM,IAAI,CDDnB,MAAM,CCGO,GAAG,CDFhB,OAAO,CCGO,OAAO,CDFrB,UAAU,CCaK,OAAW,CDZ1B,OAAO,CAAE,YAAY,CACrB,MAAM,CAAE,OAAO,CENjB,qBAAqB,CDIL,GAAG,CCHnB,kBAAkB,CDGF,GAAG,CCFnB,aAAa,CDEG,GAAG,CDKjB,yCAAQ,CACP,UAAU,CCQU,OAAW,CDP/B,KAAK,CCTU,IAAY,CDU3B,eAAe,CAAE,IAAI,CAGvB,6BAAU,CACT,OAAO,CCPc,GAAG,CDQxB,MAAM,CAAE,OAAO,CAKjB,sCAA8B,CAC7B,UAAU,CAAE,IAAI,CAEjB,oBAAU,CACT,UAAU,CAAE,MAAM,CAClB,2BAA2B,CAAE,WAAW,CAExC,6BAAS,CACR,OAAO,CAAE,YAAY,CACrB,IAAI,CAAE,CAAC,CACP,QAAQ,CAAE,MAAM,CAEhB,kCAAK,CACJ,KAAK,CCtBM,IAAI,CDuBf,MAAM,CCtBK,IAAI,CDuBf,MAAM,CCrBM,OAAO,CDsBnB,UAAU,CCrBI,OAAW,CDsBzB,OAAO,CAAE,KAAK,CACd,2BAA2B,CAAE,OAAO,CEhDvC,kBAAkB,CAAE,kBAAmB,CACvC,eAAe,CAAE,kBAAmB,CACpC,cAAc,CAAE,kBAAmB,CACnC,aAAa,CAAE,kBAAmB,CAClC,UAAU,CAAE,kBAAmB,CAI/B,qBAAqB,CDeN,IAAI,CCdnB,kBAAkB,CDcH,IAAI,CCbnB,aAAa,CDaE,IAAI,CDgChB,kFAAK,CACJ,UAAU,CC9BS,OAAW", +"sources": ["_theme.scss","owl.theme.green.scss","_mixins.scss"], +"names": [], +"file": "owl.theme.green.css" +} \ No newline at end of file diff --git a/sass/owlcarousel/owl.theme.green.scss b/sass/owlcarousel/owl.theme.green.scss new file mode 100755 index 0000000..ef6783f --- /dev/null +++ b/sass/owlcarousel/owl.theme.green.scss @@ -0,0 +1,31 @@ +/* + * Green theme - Owl Carousel CSS File + */ + +$color-base: #4DC7A0; +$color-white: #FFF; +$color-gray: #D6D6D6; + +//nav + +$nav-color: $color-white; +$nav-color-hover: $color-white; +$nav-font-size: 14px; +$nav-rounded: 3px; +$nav-margin: 5px; +$nav-padding: 4px 7px; +$nav-background: $color-gray; +$nav-background-hover: $color-base; +$nav-disabled-opacity: 0.5; + +//dots + +$dot-width: 10px; +$dot-height: 10px; +$dot-rounded: 30px; +$dot-margin: 5px 7px; +$dot-background: $color-gray; +$dot-background-active: $color-base; + +@import 'mixins'; +@import 'theme'; diff --git a/sass/owlcarousel/owl.video.css b/sass/owlcarousel/owl.video.css new file mode 100644 index 0000000..ca6c9e0 --- /dev/null +++ b/sass/owlcarousel/owl.video.css @@ -0,0 +1,2 @@ +.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 100ms ease;-moz-transition:scale 100ms ease;-ms-transition:scale 100ms ease;-o-transition:scale 100ms ease;transition:scale 100ms ease}.owl-carousel .owl-video-play-icon:hover{-webkit-transition:scale(1.3, 1.3);-moz-transition:scale(1.3, 1.3);-ms-transition:scale(1.3, 1.3);-o-transition:scale(1.3, 1.3);transition:scale(1.3, 1.3)}.owl-carousel .owl-video-playing .owl-video-tn,.owl-carousel .owl-video-playing .owl-video-play-icon{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;-webkit-background-size:contain;-moz-background-size:contain;-o-background-size:contain;background-size:contain;-webkit-transition:opacity 400ms ease;-moz-transition:opacity 400ms ease;-ms-transition:opacity 400ms ease;-o-transition:opacity 400ms ease;transition:opacity 400ms ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} +/*# sourceMappingURL=owl.video.css.map */ diff --git a/sass/owlcarousel/owl.video.css.map b/sass/owlcarousel/owl.video.css.map new file mode 100644 index 0000000..7084958 --- /dev/null +++ b/sass/owlcarousel/owl.video.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAOC,gCAAmB,CAClB,QAAQ,CAAE,QAAQ,CAClB,MAAM,CAAE,IAAI,CACZ,UAAU,CAAE,IAAI,CAEjB,kCAAqB,CACpB,QAAQ,CAAE,QAAQ,CAClB,MAAM,CAAE,IAAI,CACZ,KAAK,CAAE,IAAI,CACX,IAAI,CAAE,GAAG,CACT,GAAG,CAAE,GAAG,CACR,WAAW,CAAE,KAAK,CAClB,UAAU,CAAE,KAAK,CACjB,UAAU,CAAE,mCAAmC,CAC/C,MAAM,CAAE,OAAO,CACf,OAAO,CAAE,CAAC,CACV,2BAA2B,CAAE,MAAM,CCtBpC,kBAAkB,CAAE,gBAAmB,CACvC,eAAe,CAAE,gBAAmB,CACpC,cAAc,CAAE,gBAAmB,CACnC,aAAa,CAAE,gBAAmB,CAClC,UAAU,CAAE,gBAAmB,CDqB/B,wCAA2B,CCX3B,kBAAkB,CAAE,eAAK,CACzB,eAAe,CAAE,eAAK,CACtB,cAAc,CAAE,eAAK,CACrB,aAAa,CAAE,eAAK,CACpB,UAAU,CAAE,eAAK,CDUjB,oGACwC,CACvC,OAAO,CAAE,IAAI,CAEd,2BAAc,CACb,OAAO,CAAE,CAAC,CACV,MAAM,CAAE,IAAI,CACZ,mBAAmB,CAAE,aAAa,CAClC,iBAAiB,CAAE,SAAS,CAC5B,uBAAuB,CAAE,OAAO,CAChC,oBAAoB,CAAE,OAAO,CAC7B,kBAAkB,CAAE,OAAO,CAC3B,eAAe,CAAE,OAAO,CCxCzB,kBAAkB,CAAE,kBAAmB,CACvC,eAAe,CAAE,kBAAmB,CACpC,cAAc,CAAE,kBAAmB,CACnC,aAAa,CAAE,kBAAmB,CAClC,UAAU,CAAE,kBAAmB,CDuC/B,8BAAiB,CAChB,QAAQ,CAAE,QAAQ,CAClB,OAAO,CAAE,CAAC,CACV,MAAM,CAAE,IAAI,CACZ,KAAK,CAAE,IAAI", +"sources": ["owl.video.scss","_mixins.scss"], +"names": [], +"file": "owl.video.css" +} \ No newline at end of file diff --git a/sass/owlcarousel/owl.video.scss b/sass/owlcarousel/owl.video.scss new file mode 100755 index 0000000..5be424b --- /dev/null +++ b/sass/owlcarousel/owl.video.scss @@ -0,0 +1,51 @@ +/* + * Owl Carousel - Video Plugin + */ + +@import 'mixins'; + +.owl-carousel{ + .owl-video-wrapper { + position: relative; + height: 100%; + background: #000; + } + .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; + @include transition(scale, 100ms, ease); + } + .owl-video-play-icon:hover { + @include transform(scale(1.3, 1.3)); + } + .owl-video-playing .owl-video-tn, + .owl-video-playing .owl-video-play-icon { + display: none; + } + .owl-video-tn { + opacity: 0; + height: 100%; + background-position: center center; + background-repeat: no-repeat; + -webkit-background-size: contain; + -moz-background-size: contain; + -o-background-size: contain; + background-size: contain; + @include transition(opacity, 400ms, ease); + } + .owl-video-frame { + position: relative; + z-index: 1; + height: 100%; + width: 100%; + } +} \ No newline at end of file diff --git a/sass/theme.css.map b/sass/theme.css.map index 98f44b5..461ef93 100644 --- a/sass/theme.css.map +++ b/sass/theme.css.map @@ -1,7 +1,7 @@ { "version": 3, -"mappings": "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", -"sources": ["underscores/_reset.scss","underscores/variables-site/_colors.scss","underscores/elements/_elements.scss","underscores/elements/_lists.scss","underscores/elements/_tables.scss","underscores/navigation/_links.scss","underscores/navigation/_menus.scss","underscores/modules/_accessibility.scss","underscores/mixins/_mixins-master.scss","underscores/modules/_clearings.scss","underscores/site/secondary/_widgets.scss","underscores/site/primary/_posts-and-pages.scss","underscores/site/primary/_asides.scss","underscores/site/primary/_comments.scss","underscores/modules/_infinite-scroll.scss","underscores/media/_media.scss","underscores/media/_captions.scss","underscores/media/_galleries.scss","bootstrap/_normalize.scss","bootstrap/_print.scss","bootstrap/_glyphicons.scss","bootstrap/_scaffolding.scss","bootstrap/mixins/_vendor-prefixes.scss","bootstrap/_variables.scss","bootstrap/mixins/_tab-focus.scss","bootstrap/mixins/_image.scss","bootstrap/_type.scss","bootstrap/mixins/_text-emphasis.scss","bootstrap/mixins/_background-variant.scss","bootstrap/mixins/_clearfix.scss","bootstrap/mixins/_text-overflow.scss","bootstrap/_code.scss","bootstrap/_grid.scss","bootstrap/mixins/_grid.scss","bootstrap/mixins/_grid-framework.scss","bootstrap/_tables.scss","bootstrap/mixins/_table-row.scss","bootstrap/_forms.scss","bootstrap/mixins/_forms.scss","bootstrap/_buttons.scss","bootstrap/mixins/_buttons.scss","bootstrap/mixins/_opacity.scss","bootstrap/_component-animations.scss","bootstrap/_dropdowns.scss","bootstrap/mixins/_nav-divider.scss","bootstrap/mixins/_reset-filter.scss","bootstrap/_button-groups.scss","bootstrap/mixins/_border-radius.scss","bootstrap/_input-groups.scss","bootstrap/_navs.scss","bootstrap/_navbar.scss","bootstrap/mixins/_nav-vertical-align.scss","bootstrap/_breadcrumbs.scss","bootstrap/_pagination.scss","bootstrap/mixins/_pagination.scss","bootstrap/_pager.scss","bootstrap/_labels.scss","bootstrap/mixins/_labels.scss","bootstrap/_badges.scss","bootstrap/_jumbotron.scss","bootstrap/_thumbnails.scss","bootstrap/_alerts.scss","bootstrap/mixins/_alerts.scss","bootstrap/_progress-bars.scss","bootstrap/mixins/_gradients.scss","bootstrap/mixins/_progress-bar.scss","bootstrap/_media.scss","bootstrap/_list-group.scss","bootstrap/mixins/_list-group.scss","bootstrap/_panels.scss","bootstrap/mixins/_panels.scss","bootstrap/_responsive-embed.scss","bootstrap/_wells.scss","bootstrap/_close.scss","bootstrap/_modals.scss","bootstrap/_tooltip.scss","bootstrap/_popovers.scss","bootstrap/_carousel.scss","bootstrap/_utilities.scss","bootstrap/mixins/_center-block.scss","bootstrap/mixins/_hide-text.scss","bootstrap/_responsive-utilities.scss","bootstrap/mixins/_responsive-visibility.scss","understrap/understrap.scss","font-awesome/_path.scss","font-awesome/_core.scss","font-awesome/_larger.scss","font-awesome/_fixed-width.scss","font-awesome/_list.scss","font-awesome/_variables.scss","font-awesome/_bordered-pulled.scss","font-awesome/_spinning.scss","font-awesome/_rotated-flipped.scss","font-awesome/_mixins.scss","font-awesome/_stacked.scss","font-awesome/_icons.scss"], +"mappings": "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", +"sources": ["underscores/_reset.scss","underscores/variables-site/_colors.scss","underscores/elements/_elements.scss","underscores/elements/_lists.scss","underscores/elements/_tables.scss","underscores/navigation/_links.scss","underscores/navigation/_menus.scss","underscores/modules/_accessibility.scss","underscores/mixins/_mixins-master.scss","underscores/modules/_alignments.scss","underscores/modules/_clearings.scss","underscores/site/secondary/_widgets.scss","underscores/site/primary/_posts-and-pages.scss","underscores/site/primary/_asides.scss","underscores/site/primary/_comments.scss","underscores/modules/_infinite-scroll.scss","underscores/media/_media.scss","underscores/media/_captions.scss","underscores/media/_galleries.scss","bootstrap/_normalize.scss","bootstrap/_print.scss","bootstrap/_glyphicons.scss","bootstrap/_scaffolding.scss","bootstrap/mixins/_vendor-prefixes.scss","bootstrap/_variables.scss","bootstrap/mixins/_tab-focus.scss","bootstrap/mixins/_image.scss","bootstrap/_type.scss","bootstrap/mixins/_text-emphasis.scss","bootstrap/mixins/_background-variant.scss","bootstrap/mixins/_clearfix.scss","bootstrap/mixins/_text-overflow.scss","bootstrap/_code.scss","bootstrap/_grid.scss","bootstrap/mixins/_grid.scss","bootstrap/mixins/_grid-framework.scss","bootstrap/_tables.scss","bootstrap/mixins/_table-row.scss","bootstrap/_forms.scss","bootstrap/mixins/_forms.scss","bootstrap/_buttons.scss","bootstrap/mixins/_buttons.scss","bootstrap/mixins/_opacity.scss","bootstrap/_component-animations.scss","bootstrap/_dropdowns.scss","bootstrap/mixins/_nav-divider.scss","bootstrap/mixins/_reset-filter.scss","bootstrap/_button-groups.scss","bootstrap/mixins/_border-radius.scss","bootstrap/_input-groups.scss","bootstrap/_navs.scss","bootstrap/_navbar.scss","bootstrap/mixins/_nav-vertical-align.scss","bootstrap/_breadcrumbs.scss","bootstrap/_pagination.scss","bootstrap/mixins/_pagination.scss","bootstrap/_pager.scss","bootstrap/_labels.scss","bootstrap/mixins/_labels.scss","bootstrap/_badges.scss","bootstrap/_jumbotron.scss","bootstrap/_thumbnails.scss","bootstrap/_alerts.scss","bootstrap/mixins/_alerts.scss","bootstrap/_progress-bars.scss","bootstrap/mixins/_gradients.scss","bootstrap/mixins/_progress-bar.scss","bootstrap/_media.scss","bootstrap/_list-group.scss","bootstrap/mixins/_list-group.scss","bootstrap/_panels.scss","bootstrap/mixins/_panels.scss","bootstrap/_responsive-embed.scss","bootstrap/_wells.scss","bootstrap/_close.scss","bootstrap/_modals.scss","bootstrap/_tooltip.scss","bootstrap/_popovers.scss","bootstrap/_carousel.scss","bootstrap/_utilities.scss","bootstrap/mixins/_center-block.scss","bootstrap/mixins/_hide-text.scss","bootstrap/_responsive-utilities.scss","bootstrap/mixins/_responsive-visibility.scss","understrap/understrap.scss","font-awesome/_path.scss","font-awesome/_core.scss","font-awesome/_larger.scss","font-awesome/_fixed-width.scss","font-awesome/_list.scss","font-awesome/_variables.scss","font-awesome/_bordered-pulled.scss","font-awesome/_spinning.scss","font-awesome/_rotated-flipped.scss","font-awesome/_mixins.scss","font-awesome/_stacked.scss","font-awesome/_icons.scss"], "names": [], "file": "theme.css" } \ No newline at end of file diff --git a/sass/theme.scss b/sass/theme.scss index 694a063..e1e2b0e 100644 --- a/sass/theme.scss +++ b/sass/theme.scss @@ -4,6 +4,5 @@ @import "understrap/understrap"; // Some basic understrap styles. Helps to combine Bootsrap and _s theme and provides some basic styleing for additonal functions <- Dont edit this files! @import "font-awesome/understrap_font-awesome"; // <- Dont edit this files! If you don´t need/want Font Awesome support comment out this line - // Any additional imported files // @import "theme/theme"; // <-- ADD YOUR STYLES HERE \ No newline at end of file diff --git a/sass/underscores/style.scss b/sass/underscores/style.scss deleted file mode 100755 index 4cafb17..0000000 --- a/sass/underscores/style.scss +++ /dev/null @@ -1,109 +0,0 @@ -/* -Theme Name: _s -Theme URI: http://underscores.me/ -Author: Automattic -Author URI: http://automattic.com/ -Description: Hi. I'm a starter theme called _s, or underscores, if you like. I'm a theme meant for hacking so don't use me as a Parent Theme. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for. -Version: 1.0-wpcom -License: GNU General Public License v2 or later -License URI: http://www.gnu.org/licenses/gpl-2.0.html -Text Domain: _s -Tags: - -This theme, like WordPress, is licensed under the GPL. -Use it to make something cool, have fun, and share what you've learned with others. - - _s is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc. - -Resetting and rebuilding styles have been helped along thanks to the fine work of -Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html -along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/ -and Blueprint http://www.blueprintcss.org/ -*/ - -/*-------------------------------------------------------------- ->>> TABLE OF CONTENTS: ----------------------------------------------------------------- -1.0 Reset -2.0 Typography -3.0 Elements -4.0 Forms -5.0 Navigation - 5.1 Links - 5.2 Menus -6.0 Accessibility -7.0 Alignments -8.0 Clearings -9.0 Widgets -10.0 Content - 10.1 Posts and pages - 10.2 Asides - 10.3 Comments -11.0 Infinite scroll -12.0 Media - 12.1 Captions - 12.2 Galleries - ---------------------------------------------------------------*/ -@import "variables-site/variables-site"; -@import "mixins/mixins-master"; - -/*-------------------------------------------------------------- -1.0 Reset ---------------------------------------------------------------*/ -@import "reset"; - -/*-------------------------------------------------------------- -2.0 Typography ---------------------------------------------------------------*/ -//@import "typography/typography"; - -/*-------------------------------------------------------------- -3.0 Elements ---------------------------------------------------------------*/ -@import "elements/elements"; - -/*-------------------------------------------------------------- -4.0 Forms ---------------------------------------------------------------*/ -//@import "forms/forms"; - -/*-------------------------------------------------------------- -5.0 Navigation ---------------------------------------------------------------*/ -@import "navigation/navigation"; - -/*-------------------------------------------------------------- -6.0 Accessibility ---------------------------------------------------------------*/ -@import "modules/accessibility"; - -/*-------------------------------------------------------------- -7.0 Alignments ---------------------------------------------------------------*/ -//@import "modules/alignments"; - -/*-------------------------------------------------------------- -8.0 Clearings ---------------------------------------------------------------*/ -@import "modules/clearings"; - -/*-------------------------------------------------------------- -9.0 Widgets ---------------------------------------------------------------*/ -@import "site/secondary/widgets"; - -/*-------------------------------------------------------------- -10.0 Content ---------------------------------------------------------------*/ -@import "site/site"; - -/*-------------------------------------------------------------- -11.0 Infinite scroll ---------------------------------------------------------------*/ -@import "modules/infinite-scroll"; - -/*-------------------------------------------------------------- -12.0 Media ---------------------------------------------------------------*/ -@import "media/media"; diff --git a/sass/understrap/understrap.scss b/sass/understrap/understrap.scss index 809cf6a..e444252 100644 --- a/sass/understrap/understrap.scss +++ b/sass/understrap/understrap.scss @@ -1,5 +1,5 @@ // If you use the Bootstrap .navbar-fixed-top class on your navbar you need this -body { padding-top: 70px; } +body { padding-top: 50px; } // Adding basic Wordpress classes to pass the Wordpress.org tests .sticky, .gallery-caption, .bypostauthor {