
/* styles.css */

/* 1   */ .wpcf7 .screen-reader-response {
/* 2   */ 	position: absolute;
/* 3   */ 	overflow: hidden;
/* 4   */ 	clip: rect(1px, 1px, 1px, 1px);
/* 5   */ 	clip-path: inset(50%);
/* 6   */ 	height: 1px;
/* 7   */ 	width: 1px;
/* 8   */ 	margin: -1px;
/* 9   */ 	padding: 0;
/* 10  */ 	border: 0;
/* 11  */ 	word-wrap: normal !important;
/* 12  */ }
/* 13  */ 
/* 14  */ .wpcf7 .hidden-fields-container {
/* 15  */ 	display: none;
/* 16  */ }
/* 17  */ 
/* 18  */ .wpcf7 form .wpcf7-response-output {
/* 19  */ 	margin: 2em 0.5em 1em;
/* 20  */ 	padding: 0.2em 1em;
/* 21  */ 	border: 2px solid #00a0d2; /* Blue */
/* 22  */ }
/* 23  */ 
/* 24  */ .wpcf7 form.init .wpcf7-response-output,
/* 25  */ .wpcf7 form.resetting .wpcf7-response-output,
/* 26  */ .wpcf7 form.submitting .wpcf7-response-output {
/* 27  */ 	display: none;
/* 28  */ }
/* 29  */ 
/* 30  */ .wpcf7 form.sent .wpcf7-response-output {
/* 31  */ 	border-color: #46b450; /* Green */
/* 32  */ }
/* 33  */ 
/* 34  */ .wpcf7 form.failed .wpcf7-response-output,
/* 35  */ .wpcf7 form.aborted .wpcf7-response-output {
/* 36  */ 	border-color: #dc3232; /* Red */
/* 37  */ }
/* 38  */ 
/* 39  */ .wpcf7 form.spam .wpcf7-response-output {
/* 40  */ 	border-color: #f56e28; /* Orange */
/* 41  */ }
/* 42  */ 
/* 43  */ .wpcf7 form.invalid .wpcf7-response-output,
/* 44  */ .wpcf7 form.unaccepted .wpcf7-response-output,
/* 45  */ .wpcf7 form.payment-required .wpcf7-response-output {
/* 46  */ 	border-color: #ffb900; /* Yellow */
/* 47  */ }
/* 48  */ 
/* 49  */ .wpcf7-form-control-wrap {
/* 50  */ 	position: relative;

/* styles.css */

/* 51  */ }
/* 52  */ 
/* 53  */ .wpcf7-not-valid-tip {
/* 54  */ 	color: #dc3232; /* Red */
/* 55  */ 	font-size: 1em;
/* 56  */ 	font-weight: normal;
/* 57  */ 	display: block;
/* 58  */ }
/* 59  */ 
/* 60  */ .use-floating-validation-tip .wpcf7-not-valid-tip {
/* 61  */ 	position: relative;
/* 62  */ 	top: -2ex;
/* 63  */ 	left: 1em;
/* 64  */ 	z-index: 100;
/* 65  */ 	border: 1px solid #dc3232;
/* 66  */ 	background: #fff;
/* 67  */ 	padding: .2em .8em;
/* 68  */ 	width: 24em;
/* 69  */ }
/* 70  */ 
/* 71  */ .wpcf7-list-item {
/* 72  */ 	display: inline-block;
/* 73  */ 	margin: 0 0 0 1em;
/* 74  */ }
/* 75  */ 
/* 76  */ .wpcf7-list-item-label::before,
/* 77  */ .wpcf7-list-item-label::after {
/* 78  */ 	content: " ";
/* 79  */ }
/* 80  */ 
/* 81  */ .wpcf7-spinner {
/* 82  */ 	visibility: hidden;
/* 83  */ 	display: inline-block;
/* 84  */ 	background-color: #23282d; /* Dark Gray 800 */
/* 85  */ 	opacity: 0.75;
/* 86  */ 	width: 24px;
/* 87  */ 	height: 24px;
/* 88  */ 	border: none;
/* 89  */ 	border-radius: 100%;
/* 90  */ 	padding: 0;
/* 91  */ 	margin: 0 24px;
/* 92  */ 	position: relative;
/* 93  */ }
/* 94  */ 
/* 95  */ form.submitting .wpcf7-spinner {
/* 96  */ 	visibility: visible;
/* 97  */ }
/* 98  */ 
/* 99  */ .wpcf7-spinner::before {
/* 100 */ 	content: '';

/* styles.css */

/* 101 */ 	position: absolute;
/* 102 */ 	background-color: #fbfbfc; /* Light Gray 100 */
/* 103 */ 	top: 4px;
/* 104 */ 	left: 4px;
/* 105 */ 	width: 6px;
/* 106 */ 	height: 6px;
/* 107 */ 	border: none;
/* 108 */ 	border-radius: 100%;
/* 109 */ 	transform-origin: 8px 8px;
/* 110 */ 	animation-name: spin;
/* 111 */ 	animation-duration: 1000ms;
/* 112 */ 	animation-timing-function: linear;
/* 113 */ 	animation-iteration-count: infinite;
/* 114 */ }
/* 115 */ 
/* 116 */ @media (prefers-reduced-motion: reduce) {
/* 117 */ 	.wpcf7-spinner::before {
/* 118 */ 		animation-name: blink;
/* 119 */ 		animation-duration: 2000ms;
/* 120 */ 	}
/* 121 */ }
/* 122 */ 
/* 123 */ @keyframes spin {
/* 124 */ 	from {
/* 125 */ 		transform: rotate(0deg);
/* 126 */ 	}
/* 127 */ 
/* 128 */ 	to {
/* 129 */ 		transform: rotate(360deg);
/* 130 */ 	}
/* 131 */ }
/* 132 */ 
/* 133 */ @keyframes blink {
/* 134 */ 	from {
/* 135 */ 		opacity: 0;
/* 136 */ 	}
/* 137 */ 
/* 138 */ 	50% {
/* 139 */ 		opacity: 1;
/* 140 */ 	}
/* 141 */ 
/* 142 */ 	to {
/* 143 */ 		opacity: 0;
/* 144 */ 	}
/* 145 */ }
/* 146 */ 
/* 147 */ .wpcf7 [inert] {
/* 148 */ 	opacity: 0.5;
/* 149 */ }
/* 150 */ 

/* styles.css */

/* 151 */ .wpcf7 input[type="file"] {
/* 152 */ 	cursor: pointer;
/* 153 */ }
/* 154 */ 
/* 155 */ .wpcf7 input[type="file"]:disabled {
/* 156 */ 	cursor: default;
/* 157 */ }
/* 158 */ 
/* 159 */ .wpcf7 .wpcf7-submit:disabled {
/* 160 */ 	cursor: not-allowed;
/* 161 */ }
/* 162 */ 
/* 163 */ .wpcf7 input[type="url"],
/* 164 */ .wpcf7 input[type="email"],
/* 165 */ .wpcf7 input[type="tel"] {
/* 166 */ 	direction: ltr;
/* 167 */ }
/* 168 */ 
/* 169 */ .wpcf7-reflection > output {
/* 170 */ 	display: list-item;
/* 171 */ 	list-style: none;
/* 172 */ }
/* 173 */ 
/* 174 */ .wpcf7-reflection > output[hidden] {
/* 175 */ 	display: none;
/* 176 */ }
/* 177 */ 

/* screen.min.css */

/* 1 */ #ez-toc-container{background:#f9f9f9;border:1px solid #aaa;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05);display:table;margin-bottom:1em;padding:10px 20px 10px 10px;position:relative;width:auto}div.ez-toc-widget-container{padding:0;position:relative}#ez-toc-container.ez-toc-light-blue{background:#edf6ff}#ez-toc-container.ez-toc-white{background:#fff}#ez-toc-container.ez-toc-black{background:#000}#ez-toc-container.ez-toc-transparent{background:none transparent}div.ez-toc-widget-container ul{display:block}div.ez-toc-widget-container li{border:none;padding:0}div.ez-toc-widget-container ul.ez-toc-list{padding:10px}#ez-toc-container ul ul,.ez-toc div.ez-toc-widget-container ul ul{margin-left:1.5em}#ez-toc-container li,#ez-toc-container ul{margin:0;padding:0}#ez-toc-container li,#ez-toc-container ul,#ez-toc-container ul li,div.ez-toc-widget-container,div.ez-toc-widget-container li{background:none;list-style:none none;line-height:1.6;margin:0;overflow:hidden;z-index:1}#ez-toc-container .ez-toc-title{text-align:left;line-height:1.45;margin:0;padding:0}.ez-toc-title-container{display:table;width:100%}.ez-toc-title,.ez-toc-title-toggle{display:inline;text-align:left;vertical-align:middle}#ez-toc-container.ez-toc-black p.ez-toc-title{color:#fff}#ez-toc-container div.ez-toc-title-container+ul.ez-toc-list{margin-top:1em}.ez-toc-wrap-left{margin:0 auto 1em 0!important}.ez-toc-wrap-left-text{float:left}.ez-toc-wrap-right{margin:0 0 1em auto!important}.ez-toc-wrap-right-text{float:right}#ez-toc-container a{color:#444;box-shadow:none;text-decoration:none;text-shadow:none;display:inline-flex;align-items:stretch;flex-wrap:nowrap}#ez-toc-container a:visited{color:#9f9f9f}#ez-toc-container a:hover{text-decoration:underline}#ez-toc-container.ez-toc-black a,#ez-toc-container.ez-toc-black a:visited{color:#fff}#ez-toc-container a.ez-toc-toggle{display:flex;align-items:center}.ez-toc-widget-container ul.ez-toc-list li:before{content:" ";position:absolute;left:0;right:0;height:30px;line-height:30px;z-index:-1}.ez-toc-widget-container ul.ez-toc-list li.active{background-color:#ededed}.ez-toc-widget-container li.active>a{font-weight:900}.ez-toc-btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.ez-toc-btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.ez-toc-btn:focus,.ez-toc-btn:hover{color:#333;text-decoration:none}.ez-toc-btn.active,.ez-toc-btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.ez-toc-btn-default{color:#333;background-color:#fff}.ez-toc-btn-default.active,.ez-toc-btn-default:active,.ez-toc-btn-default:focus,.ez-toc-btn-default:hover{color:#333;background-color:#ebebeb;border-color:#adadad}.ez-toc-btn-default.active,.ez-toc-btn-default:active{background-image:none}.ez-toc-btn-sm,.ez-toc-btn-xs{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.ez-toc-btn-xs{padding:1px 5px}.ez-toc-btn-default{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075)}.ez-toc-btn-default:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.active,.ez-toc-btn:active{background-image:none}.ez-toc-btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-gradient(linear,left 0,left 100%,from(#fff),to(#e0e0e0));background-image:-webkit-linear-gradient(top,#fff,#e0e0e0);background-image:-moz-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(180deg,#fff 0,#e0e0e0);background-repeat:repeat-x;border-color:#ccc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffffff",endColorstr="#ffe0e0e0",GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.ez-toc-btn-default:focus,.ez-toc-btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.ez-toc-btn-default.active,.ez-toc-btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.ez-toc-pull-right{float:right!important;margin-left:10px}#ez-toc-container label.cssicon,#ez-toc-widget-container label.cssicon{height:30px}.ez-toc-glyphicon{position:relative;top:1px;display:inline-block;font-family:Glyphicons Halflings;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;line-height:1;-moz-osx-font-smoothing:grayscale}.ez-toc-glyphicon:empty{width:1em}.ez-toc-toggle i.ez-toc-glyphicon{font-size:16px;margin-left:2px}#ez-toc-container input{position:absolute;left:-999em}#ez-toc-container input[type=checkbox]:checked+nav,#ez-toc-widget-container input[type=checkbox]:checked+nav{opacity:0;max-height:0;border:none;display:none}#ez-toc-container label{position:relative;cursor:pointer;display:initial}#ez-toc-container .ez-toc-js-icon-con{display:initial}#ez-toc-container .ez-toc-js-icon-con,#ez-toc-container .ez-toc-toggle label{float:right;position:relative;font-size:16px;padding:0;border:1px solid #999191;border-radius:5px;cursor:pointer;left:10px;width:35px}div#ez-toc-container .ez-toc-title{display:initial}.ez-toc-wrap-center{margin:0 auto 1em!important}#ez-toc-container a.ez-toc-toggle{color:#444;background:inherit;border:inherit}.ez-toc-toggle #item{position:absolute;left:-999em}label.cssicon .ez-toc-glyphicon:empty{font-size:16px;margin-left:2px}label.cssiconcheckbox{display:none}.ez-toc-widget-container ul li a{padding-left:10px;display:inline-flex;align-items:stretch;flex-wrap:nowrap}.ez-toc-widget-container ul.ez-toc-list li{height:auto!important}.ez-toc-cssicon{float:right;position:relative;font-size:16px;padding:0;border:1px solid #999191;border-radius:5px;cursor:pointer;left:10px;width:35px}.ez-toc-icon-toggle-span{display:flex;align-items:center;width:35px;height:30px;justify-content:center;direction:ltr}#ez-toc-container .eztoc-toggle-hide-by-default{display:none}.eztoc_no_heading_found{background-color:#ff0;padding-left:10px}.eztoc-hide{display:none}.term-description .ez-toc-title-container p:nth-child(2){width:50px;float:right;margin:0}.ez-toc-list.ez-toc-columns-2{column-count:2;column-gap:20px;column-fill:balance}.ez-toc-list.ez-toc-columns-2>li{display:block;break-inside:avoid;margin-bottom:8px;page-break-inside:avoid}.ez-toc-list.ez-toc-columns-3{column-count:3;column-gap:20px;column-fill:balance}.ez-toc-list.ez-toc-columns-3>li{display:block;break-inside:avoid;margin-bottom:8px;page-break-inside:avoid}.ez-toc-list.ez-toc-columns-4{column-count:4;column-gap:20px;column-fill:balance}.ez-toc-list.ez-toc-columns-4>li{display:block;break-inside:avoid;margin-bottom:8px;page-break-inside:avoid}.ez-toc-list.ez-toc-columns-optimized{column-fill:balance;orphans:2;widows:2}.ez-toc-list.ez-toc-columns-optimized>li{display:block;break-inside:avoid;page-break-inside:avoid}@media (max-width:768px){.ez-toc-list.ez-toc-columns-2,.ez-toc-list.ez-toc-columns-3,.ez-toc-list.ez-toc-columns-4{column-count:1;column-gap:0}}@media (max-width:1024px) and (min-width:769px){.ez-toc-list.ez-toc-columns-3,.ez-toc-list.ez-toc-columns-4{column-count:2}}

/* style.css */

/* 1   */ /*
/* 2   *| Theme Name: Writee
/* 3   *| Theme URI: https://www.scissorthemes.com/theme/writee
/* 4   *| Author: Scissor Themes
/* 5   *| Author URI: https://www.scissorthemes.com
/* 6   *| Description: Writee is an elegant free personal WordPress blog theme and well suited for personal, food, travel, fashion, corporate, or any other amazing blog. Writee is fully responsive and mobile friendly. The theme features pixel perfect design and includes 3 custom widgets, Customizer Options, full-width/boxed slider to showcase your content with style. Writee is translation ready and supports the following languages AR_ARABIC, DE_GERMAN, ES_spanish, FR_french, IT_itnalian, RU_Russian, ZH_CHINES.
/* 7   *| Version: 2.0.5
/* 8   *| Tested up to:5.9
/* 9   *| Requires PHP: 7.0
/* 10  *| License: GNU General Public License v2 or later
/* 11  *| License URI: http://www.gnu.org/licenses/gpl-2.0.html
/* 12  *| Text Domain: writee
/* 13  *| Tags:  two-columns,one-column, left-sidebar,right-sidebar,grid-layout, custom-logo, custom-colors, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, theme-options,Blog, News, e-commerce
/* 14  *| */
/* 15  */ 
/* 16  */ /* =WordPress Core
/* 17  *| -------------------------------------------------------------- */
/* 18  */ .gallery-caption{
/* 19  */ 
/* 20  */ }
/* 21  */ 
/* 22  */ .alignnone {
/* 23  */     margin: 5px 20px 20px 0;
/* 24  */ }
/* 25  */ 
/* 26  */ .aligncenter, div.aligncenter {
/* 27  */     display: block;
/* 28  */     margin: 5px auto 5px auto;
/* 29  */ }
/* 30  */ 
/* 31  */ .alignright {
/* 32  */     float:right;
/* 33  */     margin: 5px 0 20px 20px;
/* 34  */ }
/* 35  */ 
/* 36  */ .alignleft {
/* 37  */     float: left;
/* 38  */     margin: 5px 20px 20px 0;
/* 39  */ }
/* 40  */ 
/* 41  */ a img.alignright {
/* 42  */     float: right;
/* 43  */     margin: 5px 0 20px 20px;
/* 44  */ }
/* 45  */ 
/* 46  */ a img.alignnone {
/* 47  */     margin: 5px 20px 20px 0;
/* 48  */ }
/* 49  */ 
/* 50  */ a img.alignleft {

/* style.css */

/* 51  */     float: left;
/* 52  */     margin: 5px 20px 20px 0;
/* 53  */ }
/* 54  */ 
/* 55  */ a img.aligncenter {
/* 56  */     display: block;
/* 57  */     margin-left: auto;
/* 58  */     margin-right: auto
/* 59  */ }
/* 60  */ 
/* 61  */ .wp-caption {
/* 62  */     background: #fff;
/* 63  */     border: 1px solid #f0f0f0;
/* 64  */     max-width: 96%; /* Image does not overflow the content area */
/* 65  */     padding: 5px 3px 10px;
/* 66  */     text-align: center;
/* 67  */ }
/* 68  */ 
/* 69  */ .wp-caption.alignnone {
/* 70  */     margin: 5px 20px 20px 0;
/* 71  */ }
/* 72  */ 
/* 73  */ .wp-caption.alignleft {
/* 74  */     margin: 5px 20px 20px 0;
/* 75  */ }
/* 76  */ 
/* 77  */ .wp-caption.alignright {
/* 78  */     margin: 5px 0 20px 20px;
/* 79  */ }
/* 80  */ 
/* 81  */ .wp-caption img {
/* 82  */     border: 0 none;
/* 83  */     height: auto;
/* 84  */     margin: 0;
/* 85  */     max-width: 98.5%;
/* 86  */     padding: 0;
/* 87  */     width: auto;
/* 88  */ }
/* 89  */ 
/* 90  */ .wp-caption p.wp-caption-text {
/* 91  */     font-size: 11px;
/* 92  */     line-height: 17px;
/* 93  */     margin: 0;
/* 94  */     padding: 0 4px 5px;
/* 95  */ }
/* 96  */ 
/* 97  */ /* Text meant only for screen readers. */
/* 98  */ .screen-reader-text {
/* 99  */ 	clip: rect(1px, 1px, 1px, 1px);
/* 100 */ 	position: absolute !important;

/* style.css */

/* 101 */ 	height: 1px;
/* 102 */ 	width: 1px;
/* 103 */ 	overflow: hidden;
/* 104 */ }
/* 105 */ 
/* 106 */ .screen-reader-text:focus {
/* 107 */ 	background-color: #f1f1f1;
/* 108 */ 	border-radius: 3px;
/* 109 */ 	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
/* 110 */ 	clip: auto !important;
/* 111 */ 	color: #21759b;
/* 112 */ 	display: block;
/* 113 */ 	font-size: 14px;
/* 114 */ 	font-size: 0.875rem;
/* 115 */ 	font-weight: bold;
/* 116 */ 	height: auto;
/* 117 */ 	left: 5px;
/* 118 */ 	line-height: normal;
/* 119 */ 	padding: 15px 23px 14px;
/* 120 */ 	text-decoration: none;
/* 121 */ 	top: 5px;
/* 122 */ 	width: auto;
/* 123 */ 	z-index: 100000; /* Above WP toolbar. */
/* 124 */ }
/* 125 */ /* wordpress mailchimp plugin widget css conflict */
/* 126 */ .widget.widget-line .mc4wp-form{
/* 127 */ 	position:relative;
/* 128 */ }
/* 129 */ 

/* style-ltr.css */

/* 1    */ @charset "UTF-8";
/* 2    */ /*
/* 3    *| Theme Name: Writee
/* 4    *| Author: Scissor Themes
/* 5    *| Author URI: http://www.scissorthemes.com
/* 6    *| Description: Personal Blog Theme
/* 7    *| Version: 1.0
/* 8    *| License: GNU General Public License v2 or later
/* 9    *| License URI: http://www.gnu.org/licenses/gpl-2.0.html
/* 10   *| Text Domain: infinity
/* 11   *| Tags: black, dark, light, two-columns, left-sidebar, fixed-layout, responsive-layout, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
/* 12   *| */
/* 13   */ body {
/* 14   */   direction: ltr;
/* 15   */   text-align: left;
/* 16   */   unicode-bidi: embed; }
/* 17   */ 
/* 18   */ /*--------------------------------------------------------------
/* 19   *| >>> TABLE OF CONTENTS:
/* 20   *| ----------------------------------------------------------------
/* 21   *| ----------------------------------------------------------------*/
/* 22   */ html {
/* 23   */   box-sizing: border-box; }
/* 24   */ 
/* 25   */ *, *::after, *::before {
/* 26   */   box-sizing: inherit; }
/* 27   */ 
/* 28   */ /*--------------------------------------------------------------
/* 29   *| 3.0 - Reset
/* 30   *| --------------------------------------------------------------*/
/* 31   */ /*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/* 32   */ /* ==========================================================================
/* 33   *|    HTML5 display definitions
/* 34   *|    ========================================================================== */
/* 35   */ /**
/* 36   *|  * Correct `block` display not defined in IE 8/9.
/* 37   *|  */
/* 38   */ article,
/* 39   */ aside,
/* 40   */ details,
/* 41   */ figcaption,
/* 42   */ figure,
/* 43   */ footer,
/* 44   */ header,
/* 45   */ hgroup,
/* 46   */ main,
/* 47   */ nav,
/* 48   */ section,
/* 49   */ summary {
/* 50   */   display: block; }

/* style-ltr.css */

/* 51   */ 
/* 52   */ /**
/* 53   *|  * Correct `inline-block` display not defined in IE 8/9.
/* 54   *|  */
/* 55   */ audio,
/* 56   */ canvas,
/* 57   */ video {
/* 58   */   display: inline-block; }
/* 59   */ 
/* 60   */ /**
/* 61   *|  * Prevent modern browsers from displaying `audio` without controls.
/* 62   *|  * Remove excess height in iOS 5 devices.
/* 63   *|  */
/* 64   */ audio:not([controls]) {
/* 65   */   display: none;
/* 66   */   height: 0; }
/* 67   */ 
/* 68   */ /**
/* 69   *|  * Address `[hidden]` styling not present in IE 8/9.
/* 70   *|  * Hide the `template` element in IE, Safari, and Firefox < 22.
/* 71   *|  */
/* 72   */ [hidden],
/* 73   */ template {
/* 74   */   display: none; }
/* 75   */ 
/* 76   */ /* ==========================================================================
/* 77   *|    Base
/* 78   *|    ========================================================================== */
/* 79   */ /**
/* 80   *|  * 1. Set default font family to sans-serif.
/* 81   *|  * 2. Prevent iOS text size adjust after orientation change, without disabling
/* 82   *|  *    user zoom.
/* 83   *|  */
/* 84   */ html {
/* 85   */   font-family: sans-serif;
/* 86   */   /* 1 */
/* 87   */   -ms-text-size-adjust: 100%;
/* 88   */   /* 2 */
/* 89   */   -webkit-text-size-adjust: 100%;
/* 90   */   /* 2 */ }
/* 91   */ 
/* 92   */ /**
/* 93   *|  * Remove default margin.
/* 94   *|  */
/* 95   */ body {
/* 96   */   margin: 0; }
/* 97   */ 
/* 98   */ /* ==========================================================================
/* 99   *|    Links
/* 100  *|    ========================================================================== */

/* style-ltr.css */

/* 101  */ /**
/* 102  *|  * Remove the gray background color from active links in IE 10.
/* 103  *|  */
/* 104  */ a {
/* 105  */   background: transparent; }
/* 106  */ 
/* 107  */ /**
/* 108  *|  * Address `outline` inconsistency between Chrome and other browsers.
/* 109  *|  */
/* 110  */ a:focus {
/* 111  */   outline: thin dotted; }
/* 112  */ 
/* 113  */ /**
/* 114  *|  * Improve readability when focused and also mouse hovered in all browsers.
/* 115  *|  */
/* 116  */ a:active,
/* 117  */ a:hover {
/* 118  */   outline: 0; }
/* 119  */ 
/* 120  */ /* ==========================================================================
/* 121  *|    Typography
/* 122  *|    ========================================================================== */
/* 123  */ /**
/* 124  *|  * Address variable `h1` font-size and margin within `section` and `article`
/* 125  *|  * contexts in Firefox 4+, Safari 5, and Chrome.
/* 126  *|  */
/* 127  */ h1 {
/* 128  */   font-size: 2em;
/* 129  */   margin: 0.67em 0; }
/* 130  */ 
/* 131  */ /**
/* 132  *|  * Address styling not present in IE 8/9, Safari 5, and Chrome.
/* 133  *|  */
/* 134  */ abbr[title] {
/* 135  */   border-bottom: 1px dotted; }
/* 136  */ 
/* 137  */ /**
/* 138  *|  * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
/* 139  *|  */
/* 140  */ b,
/* 141  */ strong {
/* 142  */   font-weight: bold; }
/* 143  */ 
/* 144  */ /**
/* 145  *|  * Address styling not present in Safari 5 and Chrome.
/* 146  *|  */
/* 147  */ dfn {
/* 148  */   font-style: italic; }
/* 149  */ 
/* 150  */ /**

/* style-ltr.css */

/* 151  *|  * Address differences between Firefox and other browsers.
/* 152  *|  */
/* 153  */ hr {
/* 154  */   -moz-box-sizing: content-box;
/* 155  */   box-sizing: content-box;
/* 156  */   height: 0; }
/* 157  */ 
/* 158  */ /**
/* 159  *|  * Address styling not present in IE 8/9.
/* 160  *|  */
/* 161  */ mark {
/* 162  */   background: #ff0;
/* 163  */   color: #000; }
/* 164  */ 
/* 165  */ /**
/* 166  *|  * Correct font family set oddly in Safari 5 and Chrome.
/* 167  *|  */
/* 168  */ code,
/* 169  */ kbd,
/* 170  */ pre,
/* 171  */ samp {
/* 172  */   font-family: monospace, serif;
/* 173  */   font-size: 1em; }
/* 174  */ 
/* 175  */ /**
/* 176  *|  * Improve readability of pre-formatted text in all browsers.
/* 177  *|  */
/* 178  */ pre {
/* 179  */   white-space: pre-wrap; }
/* 180  */ 
/* 181  */ /**
/* 182  *|  * Set consistent quote types.
/* 183  *|  */
/* 184  */ q {
/* 185  */   quotes: "\201C" "\201D" "\2018" "\2019"; }
/* 186  */ 
/* 187  */ /**
/* 188  *|  * Address inconsistent and variable font size in all browsers.
/* 189  *|  */
/* 190  */ small {
/* 191  */   font-size: 80%; }
/* 192  */ 
/* 193  */ /**
/* 194  *|  * Prevent `sub` and `sup` affecting `line-height` in all browsers.
/* 195  *|  */
/* 196  */ sub,
/* 197  */ sup {
/* 198  */   font-size: 75%;
/* 199  */   line-height: 0;
/* 200  */   position: relative;

/* style-ltr.css */

/* 201  */   vertical-align: baseline; }
/* 202  */ 
/* 203  */ sup {
/* 204  */   top: -0.5em; }
/* 205  */ 
/* 206  */ sub {
/* 207  */   bottom: -0.25em; }
/* 208  */ 
/* 209  */ /* ==========================================================================
/* 210  *|    Embedded content
/* 211  *|    ========================================================================== */
/* 212  */ /**
/* 213  *|  * Remove border when inside `a` element in IE 8/9.
/* 214  *|  */
/* 215  */ img {
/* 216  */   border: 0;
/* 217  */   height: auto;
/* 218  */   max-height: 100%;
/* 219  */   max-width: 100%; }
/* 220  */ 
/* 221  */ /**
/* 222  *|  * Correct overflow displayed oddly in IE 9.
/* 223  *|  */
/* 224  */ svg:not(:root) {
/* 225  */   overflow: hidden; }
/* 226  */ 
/* 227  */ /* ==========================================================================
/* 228  *|    Figures
/* 229  *|    ========================================================================== */
/* 230  */ /**
/* 231  *|  * Address margin not present in IE 8/9 and Safari 5.
/* 232  *|  */
/* 233  */ figure {
/* 234  */   margin: 0; }
/* 235  */ 
/* 236  */ /* ==========================================================================
/* 237  *|    Forms
/* 238  *|    ========================================================================== */
/* 239  */ /**
/* 240  *|  * Define consistent border, margin, and padding.
/* 241  *|  */
/* 242  */ fieldset {
/* 243  */   border: 1px solid #c0c0c0;
/* 244  */   margin: 0 2px;
/* 245  */   padding: 0.35em 0.625em 0.75em; }
/* 246  */ 
/* 247  */ /**
/* 248  *|  * 1. Correct `color` not being inherited in IE 8/9.
/* 249  *|  * 2. Remove padding so people aren't caught out if they zero out fieldsets.
/* 250  *|  */

/* style-ltr.css */

/* 251  */ legend {
/* 252  */   border: 0;
/* 253  */   /* 1 */
/* 254  */   padding: 0;
/* 255  */   /* 2 */ }
/* 256  */ 
/* 257  */ /**
/* 258  *|  * 1. Correct font family not being inherited in all browsers.
/* 259  *|  * 2. Correct font size not being inherited in all browsers.
/* 260  *|  * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
/* 261  *|  */
/* 262  */ button, .banner-text .banner-button, .comment-respond .comment-form button, .comment-respond .comment-form input[type="button"], .comment-respond .comment-form input[type="reset"], .comment-respond .comment-form input[type="submit"], .widget_wrt_shop .product .product-button,
/* 263  */ input,
/* 264  */ select,
/* 265  */ textarea {
/* 266  */   font-family: inherit;
/* 267  */   /* 1 */
/* 268  */   font-size: 100%;
/* 269  */   /* 2 */
/* 270  */   margin: 0;
/* 271  */   /* 3 */ }
/* 272  */ 
/* 273  */ /**
/* 274  *|  * Address Firefox 4+ setting `line-height` on `input` using `!important` in
/* 275  *|  * the UA stylesheet.
/* 276  *|  */
/* 277  */ button, .banner-text .banner-button, .comment-respond .comment-form button, .comment-respond .comment-form input[type="button"], .comment-respond .comment-form input[type="reset"], .comment-respond .comment-form input[type="submit"], .widget_wrt_shop .product .product-button,
/* 278  */ input {
/* 279  */   line-height: normal; }
/* 280  */ 
/* 281  */ /**
/* 282  *|  * Address inconsistent `text-transform` inheritance for `button` and `select`.
/* 283  *|  * All other form control elements do not inherit `text-transform` values.
/* 284  *|  * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
/* 285  *|  * Correct `select` style inheritance in Firefox 4+ and Opera.
/* 286  *|  */
/* 287  */ button, .banner-text .banner-button, .comment-respond .comment-form button, .comment-respond .comment-form input[type="button"], .comment-respond .comment-form input[type="reset"], .comment-respond .comment-form input[type="submit"], .widget_wrt_shop .product .product-button,
/* 288  */ select {
/* 289  */   text-transform: none; }
/* 290  */ 
/* 291  */ /**
/* 292  *|  * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
/* 293  *|  *    and `video` controls.
/* 294  *|  * 2. Correct inability to style clickable `input` types in iOS.
/* 295  *|  * 3. Improve usability and consistency of cursor style between image-type
/* 296  *|  *    `input` and others.
/* 297  *|  */
/* 298  */ button, .banner-text .banner-button, .comment-respond .comment-form button, .comment-respond .comment-form input[type="button"], .comment-respond .comment-form input[type="reset"], .comment-respond .comment-form input[type="submit"], .widget_wrt_shop .product .product-button,
/* 299  */ html input[type="button"],
/* 300  */ input[type="reset"],

/* style-ltr.css */

/* 301  */ input[type="submit"] {
/* 302  */   -webkit-appearance: button;
/* 303  */   /* 2 */
/* 304  */   cursor: pointer;
/* 305  */   /* 3 */ }
/* 306  */ 
/* 307  */ /**
/* 308  *|  * Re-set default cursor for disabled elements.
/* 309  *|  */
/* 310  */ button[disabled], .banner-text [disabled].banner-button, .comment-respond .comment-form button[disabled], .comment-respond .comment-form input[disabled][type="button"], .comment-respond .comment-form input[disabled][type="reset"], .comment-respond .comment-form input[disabled][type="submit"], .widget_wrt_shop .product [disabled].product-button,
/* 311  */ html input[disabled] {
/* 312  */   cursor: default; }
/* 313  */ 
/* 314  */ /**
/* 315  *|  * 1. Address box sizing set to `content-box` in IE 8/9/10.
/* 316  *|  * 2. Remove excess padding in IE 8/9/10.
/* 317  *|  */
/* 318  */ input[type="checkbox"],
/* 319  */ input[type="radio"] {
/* 320  */   box-sizing: border-box;
/* 321  */   /* 1 */
/* 322  */   padding: 0;
/* 323  */   /* 2 */ }
/* 324  */ 
/* 325  */ /**
/* 326  *|  * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
/* 327  *|  * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
/* 328  *|  *    (include `-moz` to future-proof).
/* 329  *|  */
/* 330  */ input[type="search"] {
/* 331  */   -webkit-appearance: textfield;
/* 332  */   /* 1 */
/* 333  */   -moz-box-sizing: content-box;
/* 334  */   -webkit-box-sizing: content-box;
/* 335  */   /* 2 */
/* 336  */   box-sizing: content-box; }
/* 337  */ 
/* 338  */ /**
/* 339  *|  * Remove inner padding and search cancel button in Safari 5 and Chrome
/* 340  *|  * on OS X.
/* 341  *|  */
/* 342  */ input[type="search"]::-webkit-search-cancel-button,
/* 343  */ input[type="search"]::-webkit-search-decoration {
/* 344  */   -webkit-appearance: none; }
/* 345  */ 
/* 346  */ /**
/* 347  *|  * Remove inner padding and border in Firefox 4+.
/* 348  *|  */
/* 349  */ button::-moz-focus-inner, .banner-text .banner-button::-moz-focus-inner, .comment-respond .comment-form button::-moz-focus-inner, .comment-respond .comment-form input[type="button"]::-moz-focus-inner, .comment-respond .comment-form input[type="reset"]::-moz-focus-inner, .comment-respond .comment-form input[type="submit"]::-moz-focus-inner, .widget_wrt_shop .product .product-button::-moz-focus-inner,
/* 350  */ input::-moz-focus-inner {

/* style-ltr.css */

/* 351  */   border: 0;
/* 352  */   padding: 0; }
/* 353  */ 
/* 354  */ /**
/* 355  *|  * 1. Remove default vertical scrollbar in IE 8/9.
/* 356  *|  * 2. Improve readability and alignment in all browsers.
/* 357  *|  */
/* 358  */ textarea {
/* 359  */   overflow: auto;
/* 360  */   /* 1 */
/* 361  */   vertical-align: top;
/* 362  */   /* 2 */ }
/* 363  */ 
/* 364  */ /* ==========================================================================
/* 365  *|    Tables
/* 366  *|    ========================================================================== */
/* 367  */ /**
/* 368  *|  * Remove most spacing between table cells.
/* 369  *|  */
/* 370  */ table {
/* 371  */   border-collapse: collapse;
/* 372  */   border-spacing: 0; }
/* 373  */ 
/* 374  */ button, .banner-text .banner-button, .comment-respond .comment-form button, .comment-respond .comment-form input[type="button"], .comment-respond .comment-form input[type="reset"], .comment-respond .comment-form input[type="submit"], .widget_wrt_shop .product .product-button, input[type="button"], input[type="reset"], input[type="submit"],
/* 375  */ button,
/* 376  */ .banner-text .banner-button,
/* 377  */ .comment-respond .comment-form button,
/* 378  */ .comment-respond .comment-form input[type="button"],
/* 379  */ .comment-respond .comment-form input[type="reset"],
/* 380  */ .comment-respond .comment-form input[type="submit"],
/* 381  */ .widget_wrt_shop .product .product-button {
/* 382  */   position: relative;
/* 383  */   z-index: 1;
/* 384  */   -webkit-appearance: none;
/* 385  */   -moz-appearance: none;
/* 386  */   -ms-appearance: none;
/* 387  */   -o-appearance: none;
/* 388  */   appearance: none;
/* 389  */   -webkit-font-smoothing: antialiased;
/* 390  */   border-radius: 0;
/* 391  */   background-color: #000000;
/* 392  */   border: 1px solid #000000;
/* 393  */   color: #ffffff;
/* 394  */   cursor: pointer;
/* 395  */   display: inline-block;
/* 396  */   font-family: "Lato", "Lora", serif;
/* 397  */   font-size: 1rem;
/* 398  */   font-weight: 400;
/* 399  */   letter-spacing: 0;
/* 400  */   padding: 0.75em 1.5em;

/* style-ltr.css */

/* 401  */   text-decoration: none;
/* 402  */   user-select: none;
/* 403  */   vertical-align: middle;
/* 404  */   white-space: nowrap;
/* 405  */   -webkit-transition: all 0.3s ease-in-out;
/* 406  */   -moz-transition: all 0.3s ease-in-out;
/* 407  */   transition: all 0.3s ease-in-out; }
/* 408  */   button:disabled, .banner-text .banner-button:disabled, .comment-respond .comment-form button:disabled, .comment-respond .comment-form input[type="button"]:disabled, .comment-respond .comment-form input[type="reset"]:disabled, .comment-respond .comment-form input[type="submit"]:disabled, .widget_wrt_shop .product .product-button:disabled, input[type="button"]:disabled, input[type="reset"]:disabled, input[type="submit"]:disabled,
/* 409  */   button:disabled,
/* 410  */   .banner-text .banner-button:disabled,
/* 411  */   .comment-respond .comment-form button:disabled,
/* 412  */   .comment-respond .comment-form input[type="button"]:disabled,
/* 413  */   .comment-respond .comment-form input[type="reset"]:disabled,
/* 414  */   .comment-respond .comment-form input[type="submit"]:disabled,
/* 415  */   .widget_wrt_shop .product .product-button:disabled {
/* 416  */     cursor: not-allowed;
/* 417  */     opacity: 0.5; }
/* 418  */ 
/* 419  */ fieldset {
/* 420  */   margin: 0 0 0.75em;
/* 421  */   padding: 1.5em; }
/* 422  */ 
/* 423  */ input,
/* 424  */ label,
/* 425  */ select {
/* 426  */   display: block;
/* 427  */   font-family: "Lato", "Lora", serif;
/* 428  */   font-size: 1rem; }
/* 429  */ 
/* 430  */ label {
/* 431  */   font-weight: 600;
/* 432  */   margin-bottom: 0.375em; }
/* 433  */   label.required::after {
/* 434  */     content: "*"; }
/* 435  */   label abbr {
/* 436  */     display: none; }
/* 437  */ 
/* 438  */ input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="name"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], textarea,
/* 439  */ select,
/* 440  */ textarea {
/* 441  */   background-color: #ffffff;
/* 442  */   border: 1px solid #000000;
/* 443  */   border-radius: 0px;
/* 444  */   box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.01);
/* 445  */   box-sizing: border-box;
/* 446  */   font-family: "Lato", "Lora", serif;
/* 447  */   font-size: 1rem;
/* 448  */   margin-bottom: 0.75em;
/* 449  */   padding: 0.75em;
/* 450  */   transition: border-color;

/* style-ltr.css */

/* 451  */   width: 100%; }
/* 452  */   input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="name"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, textarea:hover,
/* 453  */   select:hover,
/* 454  */   textarea:hover {
/* 455  */     border-color: #000000; }
/* 456  */   input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="name"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, textarea:focus,
/* 457  */   select:focus,
/* 458  */   textarea:focus {
/* 459  */     border-color: #bf9e3b;
/* 460  */     box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.01), 0 0 5px rgba(254, 253, 251, 0.7);
/* 461  */     outline: none; }
/* 462  */ 
/* 463  */ textarea {
/* 464  */   resize: vertical; }
/* 465  */ 
/* 466  */ input[type="search"] {
/* 467  */   -webkit-appearance: none;
/* 468  */   -moz-appearance: none;
/* 469  */   -ms-appearance: none;
/* 470  */   -o-appearance: none;
/* 471  */   appearance: none; }
/* 472  */ 
/* 473  */ input[type="checkbox"],
/* 474  */ input[type="radio"] {
/* 475  */   display: inline;
/* 476  */   margin-right: 0.375em; }
/* 477  */ 
/* 478  */ input[type="file"] {
/* 479  */   padding-bottom: 0.75em;
/* 480  */   width: 100%; }
/* 481  */ 
/* 482  */ select {
/* 483  */   margin-bottom: 1.5em;
/* 484  */   max-width: 100%;
/* 485  */   width: 100%; }
/* 486  */ 
/* 487  */ ul,
/* 488  */ ol {
/* 489  */   list-style-type: none;
/* 490  */   margin: 0;
/* 491  */   padding: 0; }
/* 492  */ dl {
/* 493  */   margin-bottom: 0.75em; }
/* 494  */   dl dt {
/* 495  */     font-weight: bold;
/* 496  */     margin-top: 0.75em; }
/* 497  */   dl dd {
/* 498  */     margin: 0; }
/* 499  */ 
/* 500  */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figure {

/* style-ltr.css */

/* 501  */   border: 0;
/* 502  */   font-family: inherit;
/* 503  */   font-size: 100%;
/* 504  */   font-style: inherit;
/* 505  */   font-weight: inherit;
/* 506  */   margin: 0;
/* 507  */   outline: 0;
/* 508  */   padding: 0;
/* 509  */   vertical-align: baseline; }
/* 510  */ 
/* 511  */ code, kbd, pre, samp {
/* 512  */   font-family: monospace, monospace;
/* 513  */   font-size: 1em; }
/* 514  */ 
/* 515  */ body {
/* 516  */   -webkit-font-feature-settings: "kern", "liga", "pnum";
/* 517  */   -moz-font-feature-settings: "kern", "liga", "pnum";
/* 518  */   -ms-font-feature-settings: "kern", "liga", "pnum";
/* 519  */   font-feature-settings: "kern", "liga", "pnum";
/* 520  */   -webkit-font-smoothing: antialiased;
/* 521  */   color: #000000;
/* 522  */   font-family: "Lato", "Lora", serif;
/* 523  */   font-size: 16px;
/* 524  */   line-height: 1.5; }
/* 525  */ 
/* 526  */ h1,
/* 527  */ h2,
/* 528  */ h3,
/* 529  */ h4,
/* 530  */ h5,
/* 531  */ h6 {
/* 532  */   font-family: inherit;
/* 533  */   line-height: 1.2;
/* 534  */   margin: 0 0 0.75em; }
/* 535  */ 
/* 536  */ h1 {
/* 537  */   font-size: 2.25em; }
/* 538  */ 
/* 539  */ h2 {
/* 540  */   font-size: 2em; }
/* 541  */ 
/* 542  */ h3 {
/* 543  */   font-size: 1.75em; }
/* 544  */ 
/* 545  */ h4 {
/* 546  */   font-size: 1.5em; }
/* 547  */ 
/* 548  */ h5 {
/* 549  */   font-size: 1.25em; }
/* 550  */ 

/* style-ltr.css */

/* 551  */ h6 {
/* 552  */   font-size: 1em; }
/* 553  */ 
/* 554  */ p {
/* 555  */   margin: 0 0 0.75em;
/* 556  */   line-height: 2; }
/* 557  */ 
/* 558  */ a {
/* 559  */   color: inherit;
/* 560  */   text-decoration: none;
/* 561  */   transition: color 0.1s linear; }
/* 562  */   a:active, a:focus, a:hover {
/* 563  */     color: #bf9e3b; }
/* 564  */   a:active, a:focus {
/* 565  */     outline: none; }
/* 566  */ 
/* 567  */ hr {
/* 568  */   border-bottom: 1px solid #000000;
/* 569  */   border-left: none;
/* 570  */   border-right: none;
/* 571  */   border-top: none;
/* 572  */   margin: 1.5em 0; }
/* 573  */ 
/* 574  */ img,
/* 575  */ picture {
/* 576  */   margin: 0;
/* 577  */   max-width: 100%;
/* 578  */   vertical-align: middle; }
/* 579  */ 
/* 580  */ blockquote {
/* 581  */   position: relative;
/* 582  */   z-index: 1;
/* 583  */   display: block;
/* 584  */   font-family: inherit;
/* 585  */   font-size: 1.4em;
/* 586  */   line-height: 1.5;
/* 587  */   font-weight: 700;
/* 588  */   text-align: center;
/* 589  */   padding: 0.75em;
/* 590  */   margin: 0; }
/* 591  */ 
/* 592  */ pre {
/* 593  */   text-align: left;
/* 594  */   background: #eee;
/* 595  */   font-family: "Courier 10 Pitch", Courier, monospace;
/* 596  */   font-size: 15px;
/* 597  */   font-size: 0.9375rem;
/* 598  */   line-height: 1.6;
/* 599  */   margin-bottom: 1.6em;
/* 600  */   max-width: 100%;

/* style-ltr.css */

/* 601  */   overflow: auto;
/* 602  */   padding: 1.6em; }
/* 603  */ 
/* 604  */ table {
/* 605  */   -webkit-font-feature-settings: "kern", "liga", "tnum";
/* 606  */   -moz-font-feature-settings: "kern", "liga", "tnum";
/* 607  */   -ms-font-feature-settings: "kern", "liga", "tnum";
/* 608  */   font-feature-settings: "kern", "liga", "tnum";
/* 609  */   border-collapse: collapse;
/* 610  */   margin: 0.75em 0;
/* 611  */   table-layout: fixed;
/* 612  */   width: 100%; }
/* 613  */   table th {
/* 614  */     border-bottom: 1px solid black;
/* 615  */     font-weight: 600;
/* 616  */     padding: 0.75em 0;
/* 617  */     text-align: left; }
/* 618  */   table td {
/* 619  */     border-bottom: 1px solid black;
/* 620  */     padding: 0.75em 0; }
/* 621  */   table tr:first-child th {
/* 622  */     color: #222222; }
/* 623  */   table tr,
/* 624  */   table td,
/* 625  */   table th {
/* 626  */     vertical-align: middle; }
/* 627  */ 
/* 628  */ /*--------------------------------------------------------------
/* 629  *| # Accessibility
/* 630  *| --------------------------------------------------------------*/
/* 631  */ /* Text meant only for screen readers. */
/* 632  */ .screen-reader-text {
/* 633  */   clip: rect(1px, 1px, 1px, 1px);
/* 634  */   position: absolute !important;
/* 635  */   height: 1px;
/* 636  */   width: 1px;
/* 637  */   overflow: hidden; }
/* 638  */ 
/* 639  */ .screen-reader-text:focus {
/* 640  */   background-color: #f1f1f1;
/* 641  */   border-radius: 3px;
/* 642  */   box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
/* 643  */   clip: auto !important;
/* 644  */   color: #21759b;
/* 645  */   display: block;
/* 646  */   font-size: 14px;
/* 647  */   font-size: 0.875rem;
/* 648  */   font-weight: bold;
/* 649  */   height: auto;
/* 650  */   left: 0.3125em;

/* style-ltr.css */

/* 651  */   line-height: normal;
/* 652  */   padding: 0.9375em 1.4375em 0.875em;
/* 653  */   text-decoration: none;
/* 654  */   top: 0.3125em;
/* 655  */   width: auto;
/* 656  */   z-index: 100000;
/* 657  */   /* Above WP toolbar. */ }
/* 658  */ 
/* 659  */ /*--------------------------------------------------------------
/* 660  *| # Alignments
/* 661  *| --------------------------------------------------------------*/
/* 662  */ .alignleft {
/* 663  */   display: inline;
/* 664  */   float: left;
/* 665  */   margin-right: 1.5em; }
/* 666  */ 
/* 667  */ .alignright {
/* 668  */   display: inline;
/* 669  */   float: right;
/* 670  */   margin-left: 1.5em; }
/* 671  */ 
/* 672  */ .aligncenter {
/* 673  */   clear: both;
/* 674  */   display: block;
/* 675  */   margin-left: auto;
/* 676  */   margin-right: auto; }
/* 677  */ 
/* 678  */ @media screen and (max-width: 767px) {
/* 679  */   .alignleft, .alignright {
/* 680  */     float: none;
/* 681  */     margin: 0; } }
/* 682  */ /*--------------------------------------------------------------
/* 683  *| # Widgets
/* 684  *| --------------------------------------------------------------*/
/* 685  */ /* Make sure select elements fit in widgets. */
/* 686  */ .widget select {
/* 687  */   max-width: 100%; }
/* 688  */ 
/* 689  */ /* Search widget. */
/* 690  */ .widget_search .search-submit {
/* 691  */   display: none; }
/* 692  */ 
/* 693  */ /*--------------------------------------------------------------
/* 694  *| # Content
/* 695  *| --------------------------------------------------------------*/
/* 696  */ /*--------------------------------------------------------------
/* 697  *| ## Posts and pages
/* 698  *| --------------------------------------------------------------*/
/* 699  */ .byline,
/* 700  */ .updated:not(.published) {

/* style-ltr.css */

/* 701  */   display: none; }
/* 702  */ 
/* 703  */ .single .byline,
/* 704  */ .group-blog .byline {
/* 705  */   display: inline; }
/* 706  */ 
/* 707  */ .page-content:not(:first-child),
/* 708  */ .entry-content:not(:first-child),
/* 709  */ .entry-summary:not(:first-child) {
/* 710  */   margin: 1.5em 0 0; }
/* 711  */ 
/* 712  */ .page-links {
/* 713  */   clear: both;
/* 714  */   margin: 0 0 1.5em; }
/* 715  */ 
/* 716  */ /*--------------------------------------------------------------
/* 717  *| ## Asides
/* 718  *| --------------------------------------------------------------*/
/* 719  */ .blog .format-aside .entry-title,
/* 720  */ .archive .format-aside .entry-title {
/* 721  */   display: none; }
/* 722  */ 
/* 723  */ /*--------------------------------------------------------------
/* 724  *| ## Comments
/* 725  *| --------------------------------------------------------------*/
/* 726  */ .comment-content a {
/* 727  */   word-wrap: break-word; }
/* 728  */ 
/* 729  */ .bypostauthor {
/* 730  */   display: block; }
/* 731  */ 
/* 732  */ /*--------------------------------------------------------------
/* 733  *| # Infinite scroll
/* 734  *| --------------------------------------------------------------*/
/* 735  */ /* Globally hidden elements when Infinite Scroll is supported and in use. */
/* 736  */ .infinite-scroll .posts-navigation,
/* 737  */ .infinite-scroll.neverending .site-footer {
/* 738  */   /* Theme Footer (when set to scrolling) */
/* 739  */   display: none; }
/* 740  */ 
/* 741  */ /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
/* 742  */ .infinity-end.neverending .site-footer {
/* 743  */   display: block; }
/* 744  */ 
/* 745  */ /*--------------------------------------------------------------
/* 746  *| # Media
/* 747  *| --------------------------------------------------------------*/
/* 748  */ .page-content .wp-smiley,
/* 749  */ .entry-content .wp-smiley,
/* 750  */ .comment-content .wp-smiley {

/* style-ltr.css */

/* 751  */   border: none;
/* 752  */   margin-bottom: 0;
/* 753  */   margin-top: 0;
/* 754  */   padding: 0; }
/* 755  */ 
/* 756  */ /* Make sure embeds and iframes fit their containers. */
/* 757  */ embed,
/* 758  */ iframe,
/* 759  */ object {
/* 760  */   max-width: 100%; }
/* 761  */ 
/* 762  */ /*--------------------------------------------------------------
/* 763  *| ## Captions
/* 764  *| --------------------------------------------------------------*/
/* 765  */ .wp-caption {
/* 766  */   max-width: 100%; }
/* 767  */   .wp-caption img[class*="wp-image-"] {
/* 768  */     display: block;
/* 769  */     margin: 0 auto; }
/* 770  */   .wp-caption .wp-caption-text {
/* 771  */     margin: 0.8075em 0; }
/* 772  */ 
/* 773  */ .wp-caption-text {
/* 774  */   text-align: center; }
/* 775  */ 
/* 776  */ /*--------------------------------------------------------------
/* 777  *| ## Gallery
/* 778  *| --------------------------------------------------------------*/
/* 779  */ .gallery-caption {
/* 780  */   color: currentColor; }
/* 781  */ 
/* 782  */ .gallery:after {
/* 783  */   display: table;
/* 784  */   clear: both;
/* 785  */   content: " "; }
/* 786  */ .gallery .gallery-item {
/* 787  */   position: relative;
/* 788  */   display: block;
/* 789  */   margin-bottom: 1.5%;
/* 790  */   min-height: 1px;
/* 791  */   text-align: center; }
/* 792  */ @media screen and (min-width: 768px) {
/* 793  */   .gallery.gallery-columns-1 .gallery-item {
/* 794  */     float: left;
/* 795  */     display: block;
/* 796  */     margin-right: 1.6129%;
/* 797  */     width: 100%; }
/* 798  */     .gallery.gallery-columns-1 .gallery-item:last-child {
/* 799  */       margin-right: 0; }
/* 800  */     .gallery.gallery-columns-1 .gallery-item:nth-child(n) {

/* style-ltr.css */

/* 801  */       margin-right: 0; }
/* 802  */   .gallery.gallery-columns-2 .gallery-item {
/* 803  */     float: left;
/* 804  */     display: block;
/* 805  */     margin-right: 1.6129%;
/* 806  */     width: 49.19355%; }
/* 807  */     .gallery.gallery-columns-2 .gallery-item:last-child {
/* 808  */       margin-right: 0; }
/* 809  */     .gallery.gallery-columns-2 .gallery-item:nth-child(2n) {
/* 810  */       margin-right: 0; }
/* 811  */     .gallery.gallery-columns-2 .gallery-item:nth-child(2n+1) {
/* 812  */       clear: left; }
/* 813  */   .gallery.gallery-columns-3 .gallery-item {
/* 814  */     float: left;
/* 815  */     display: block;
/* 816  */     margin-right: 1.6129%;
/* 817  */     width: 32.25806%; }
/* 818  */     .gallery.gallery-columns-3 .gallery-item:last-child {
/* 819  */       margin-right: 0; }
/* 820  */     .gallery.gallery-columns-3 .gallery-item:nth-child(3n) {
/* 821  */       margin-right: 0; }
/* 822  */     .gallery.gallery-columns-3 .gallery-item:nth-child(3n+1) {
/* 823  */       clear: left; }
/* 824  */   .gallery.gallery-columns-4 .gallery-item {
/* 825  */     float: left;
/* 826  */     display: block;
/* 827  */     margin-right: 1.6129%;
/* 828  */     width: 23.79032%; }
/* 829  */     .gallery.gallery-columns-4 .gallery-item:last-child {
/* 830  */       margin-right: 0; }
/* 831  */     .gallery.gallery-columns-4 .gallery-item:nth-child(4n) {
/* 832  */       margin-right: 0; }
/* 833  */     .gallery.gallery-columns-4 .gallery-item:nth-child(4n+1) {
/* 834  */       clear: left; }
/* 835  */   .gallery.gallery-columns-5 .gallery-item {
/* 836  */     float: left;
/* 837  */     display: block;
/* 838  */     margin-right: 1.44928%;
/* 839  */     width: 18.84058%; }
/* 840  */     .gallery.gallery-columns-5 .gallery-item:last-child {
/* 841  */       margin-right: 0; }
/* 842  */     .gallery.gallery-columns-5 .gallery-item:nth-child(5n) {
/* 843  */       margin-right: 0; }
/* 844  */     .gallery.gallery-columns-5 .gallery-item:nth-child(5n+1) {
/* 845  */       clear: left; }
/* 846  */   .gallery.gallery-columns-6 .gallery-item {
/* 847  */     float: left;
/* 848  */     display: block;
/* 849  */     margin-right: 1.6129%;
/* 850  */     width: 15.32258%; }

/* style-ltr.css */

/* 851  */     .gallery.gallery-columns-6 .gallery-item:last-child {
/* 852  */       margin-right: 0; }
/* 853  */     .gallery.gallery-columns-6 .gallery-item:nth-child(6n) {
/* 854  */       margin-right: 0; }
/* 855  */     .gallery.gallery-columns-6 .gallery-item:nth-child(6n+1) {
/* 856  */       clear: left; }
/* 857  */   .gallery.gallery-columns-7 .gallery-item {
/* 858  */     float: left;
/* 859  */     display: block;
/* 860  */     margin-right: 1.37931%;
/* 861  */     width: 13.10345%; }
/* 862  */     .gallery.gallery-columns-7 .gallery-item:last-child {
/* 863  */       margin-right: 0; }
/* 864  */     .gallery.gallery-columns-7 .gallery-item:nth-child(7n) {
/* 865  */       margin-right: 0; }
/* 866  */     .gallery.gallery-columns-7 .gallery-item:nth-child(7n+1) {
/* 867  */       clear: left; }
/* 868  */   .gallery.gallery-columns-8 .gallery-item {
/* 869  */     float: left;
/* 870  */     display: block;
/* 871  */     margin-right: 1.81818%;
/* 872  */     width: 10.90909%; }
/* 873  */     .gallery.gallery-columns-8 .gallery-item:last-child {
/* 874  */       margin-right: 0; }
/* 875  */     .gallery.gallery-columns-8 .gallery-item:nth-child(8n) {
/* 876  */       margin-right: 0; }
/* 877  */     .gallery.gallery-columns-8 .gallery-item:nth-child(8n+1) {
/* 878  */       clear: left; }
/* 879  */   .gallery.gallery-columns-9 .gallery-item {
/* 880  */     float: left;
/* 881  */     display: block;
/* 882  */     margin-right: 1.6129%;
/* 883  */     width: 9.67742%; }
/* 884  */     .gallery.gallery-columns-9 .gallery-item:last-child {
/* 885  */       margin-right: 0; }
/* 886  */     .gallery.gallery-columns-9 .gallery-item:nth-child(9n) {
/* 887  */       margin-right: 0; }
/* 888  */     .gallery.gallery-columns-9 .gallery-item:nth-child(9n+1) {
/* 889  */       clear: left; } }
/* 890  */ 
/* 891  */ /*--------------------------------------------------------------
/* 892  *| Essentials
/* 893  *| --------------------------------------------------------------*/
/* 894  */ .fl-left {
/* 895  */   float: left; }
/* 896  */ 
/* 897  */ .fl-right {
/* 898  */   float: right; }
/* 899  */ 
/* 900  */ .fl-center {

/* style-ltr.css */

/* 901  */   float: none;
/* 902  */   margin: 0 auto; }
/* 903  */ 
/* 904  */ .clear {
/* 905  */   clear: both; }
/* 906  */ 
/* 907  */ .clearfix:after {
/* 908  */   display: table;
/* 909  */   clear: both;
/* 910  */   content: " "; }
/* 911  */ 
/* 912  */ .text-left {
/* 913  */   text-align: left !important; }
/* 914  */ 
/* 915  */ .text-right {
/* 916  */   text-align: right !important; }
/* 917  */ 
/* 918  */ .text-center {
/* 919  */   text-align: center !important; }
/* 920  */ 
/* 921  */ .no-margin {
/* 922  */   margin: 0 !important; }
/* 923  */ 
/* 924  */ .no-margin-top {
/* 925  */   margin-top: 0 !important; }
/* 926  */ 
/* 927  */ .no-margin-bottom {
/* 928  */   margin-bottom: 0 !important; }
/* 929  */ 
/* 930  */ .no-padding {
/* 931  */   padding: 0 !important; }
/* 932  */ 
/* 933  */ .no-padding-top {
/* 934  */   padding-top: 0 !important; }
/* 935  */ 
/* 936  */ .no-padding-bottom {
/* 937  */   padding-bottom: 0 !important; }
/* 938  */ 
/* 939  */ .none-transition {
/* 940  */   -webkit-transition: none;
/* 941  */   -moz-transition: none;
/* 942  */   -o-transition: none;
/* 943  */   transition: none; }
/* 944  */ 
/* 945  */ .inline-ist {
/* 946  */   list-style: none;
/* 947  */   margin: 0;
/* 948  */   padding: 0;
/* 949  */   display: inline-block; }
/* 950  */   .inline-ist:before, .inline-ist:after {

/* style-ltr.css */

/* 951  */     display: table;
/* 952  */     clear: left;
/* 953  */     content: ""; }
/* 954  */   .inline-ist li {
/* 955  */     display: block;
/* 956  */     float: left; }
/* 957  */     .inline-ist li:not(:last-child) {
/* 958  */       margin-left: 0.3125em;
/* 959  */       margin-left: 0.3125em; }
/* 960  */ 
/* 961  */ .unstyle-list {
/* 962  */   list-style: none;
/* 963  */   margin: 0;
/* 964  */   padding: 0;
/* 965  */   display: inline-block; }
/* 966  */   .unstyle-list li {
/* 967  */     display: block; }
/* 968  */ 
/* 969  */ /*--------------------------------------------------------------
/* 970  *| 4.0 - Plugins
/* 971  *| --------------------------------------------------------------*/
/* 972  */ /*
/* 973  *| $slick-dot-color: $medium-gray !default;
/* 974  *| $slick-dot-color-active: $slick-dot-color !default;
/* 975  *| */
/* 976  */ /* Slider */
/* 977  */ .slick-loading .slick-list {
/* 978  */   background: #fff url("/wp-content/themes/writee/assets/css/ajax-loader.gif?ad48a8") center center no-repeat; }
/* 979  */ 
/* 980  */ /* Icons */
/* 981  */ /* Arrows */
/* 982  */ .slick-prev,
/* 983  */ .slick-next {
/* 984  */   position: absolute;
/* 985  */   z-index: 10;
/* 986  */   display: block;
/* 987  */   height: 2.5em;
/* 988  */   width: 2.5em;
/* 989  */   line-height: 1.25em;
/* 990  */   font-size: 1em;
/* 991  */   text-align: center;
/* 992  */   cursor: pointer;
/* 993  */   background: #f5f5f5;
/* 994  */   color: transparent;
/* 995  */   top: 50%;
/* 996  */   margin-top: -0.625em \9;
/* 997  */   /*lte IE 8*/
/* 998  */   -webkit-transform: translate(0, -50%);
/* 999  */   -ms-transform: translate(0, -50%);
/* 1000 */   transform: translate(0, -50%);

/* style-ltr.css */

/* 1001 */   padding: 0.625em;
/* 1002 */   border: 2px solid #000000;
/* 1003 */   outline: none;
/* 1004 */   opacity: 1;
/* 1005 */   -webkit-transition: all 0.4s ease-in-out;
/* 1006 */   transition: all 0.4s ease-in-out; }
/* 1007 */   .slick-prev:hover, .slick-prev:focus,
/* 1008 */   .slick-next:hover,
/* 1009 */   .slick-next:focus {
/* 1010 */     outline: none;
/* 1011 */     color: transparent;
/* 1012 */     opacity: 1; }
/* 1013 */     .slick-prev:hover:before, .slick-prev:focus:before,
/* 1014 */     .slick-next:hover:before,
/* 1015 */     .slick-next:focus:before {
/* 1016 */       opacity: 1; }
/* 1017 */   .slick-prev.slick-disabled:before,
/* 1018 */   .slick-next.slick-disabled:before {
/* 1019 */     opacity: 0.1; }
/* 1020 */ 
/* 1021 */ .slick-prev:before, .slick-next:before {
/* 1022 */   font-family: "FontAwesome";
/* 1023 */   color: #000000;
/* 1024 */   opacity: 1;
/* 1025 */   -webkit-font-smoothing: antialiased;
/* 1026 */   -moz-osx-font-smoothing: grayscale; }
/* 1027 */ 
/* 1028 */ .slick-prev {
/* 1029 */   left: -3.125em; }
/* 1030 */   [dir="rtl"] .slick-prev {
/* 1031 */     left: auto;
/* 1032 */     right: -3.125em; }
/* 1033 */   .slick-prev:before {
/* 1034 */     content: ""; }
/* 1035 */     [dir="rtl"] .slick-prev:before {
/* 1036 */       content: ""; }
/* 1037 */ 
/* 1038 */ .slick-next {
/* 1039 */   right: -3.125em; }
/* 1040 */   [dir="rtl"] .slick-next {
/* 1041 */     left: -3.125em;
/* 1042 */     right: auto; }
/* 1043 */   .slick-next:before {
/* 1044 */     content: ""; }
/* 1045 */     [dir="rtl"] .slick-next:before {
/* 1046 */       content: ""; }
/* 1047 */ 
/* 1048 */ .slick-slider:hover .slick-prev {
/* 1049 */   left: 0.9375em; }
/* 1050 */   [dir="rtl"] .slick-slider:hover .slick-prev {

/* style-ltr.css */

/* 1051 */     left: auto;
/* 1052 */     right: 0.9375em; }
/* 1053 */ 
/* 1054 */ .slick-slider:hover .slick-next {
/* 1055 */   right: 0.9375em; }
/* 1056 */   [dir="rtl"] .slick-slider:hover .slick-next {
/* 1057 */     right: auto;
/* 1058 */     left: 0.9375em; }
/* 1059 */ 
/* 1060 */ /* Dots */
/* 1061 */ .slick-dots {
/* 1062 */   position: relative;
/* 1063 */   z-index: 99;
/* 1064 */   list-style: none;
/* 1065 */   display: block;
/* 1066 */   text-align: center;
/* 1067 */   padding: 0;
/* 1068 */   width: 100%; }
/* 1069 */   .slick-dots li {
/* 1070 */     position: relative;
/* 1071 */     display: inline-block;
/* 1072 */     height: 15px;
/* 1073 */     width: 15px;
/* 1074 */     margin: 0 3px;
/* 1075 */     padding: 0;
/* 1076 */     cursor: pointer; }
/* 1077 */     .slick-dots li span {
/* 1078 */       border: 0;
/* 1079 */       background: transparent;
/* 1080 */       display: block;
/* 1081 */       height: 15px;
/* 1082 */       width: 15px;
/* 1083 */       padding: 0;
/* 1084 */       outline: none;
/* 1085 */       line-height: 0px;
/* 1086 */       font-size: 0px;
/* 1087 */       color: transparent;
/* 1088 */       cursor: pointer; }
/* 1089 */       .slick-dots li span:hover, .slick-dots li span:focus {
/* 1090 */         outline: none; }
/* 1091 */         .slick-dots li span:hover:before, .slick-dots li span:focus:before {
/* 1092 */           opacity: 1; }
/* 1093 */       .slick-dots li span:before {
/* 1094 */         position: absolute;
/* 1095 */         top: 0;
/* 1096 */         left: 0;
/* 1097 */         content: "";
/* 1098 */         width: 15px;
/* 1099 */         height: 15px;
/* 1100 */         font-family: "FontAwesome";

/* style-ltr.css */

/* 1101 */         font-size: 16px;
/* 1102 */         line-height: 10px;
/* 1103 */         text-align: center;
/* 1104 */         color: #000000;
/* 1105 */         opacity: 0.1;
/* 1106 */         -webkit-font-smoothing: antialiased;
/* 1107 */         -moz-osx-font-smoothing: grayscale; }
/* 1108 */     .slick-dots li.slick-active span:before {
/* 1109 */       color: #000000;
/* 1110 */       opacity: 1;
/* 1111 */       content: ""; }
/* 1112 */ 
/* 1113 */ .wrapper-light .slick-dots li span:before {
/* 1114 */   color: #000000; }
/* 1115 */ .wrapper-light .slick-dots li.slick-active span:before {
/* 1116 */   color: #000000; }
/* 1117 */ 
/* 1118 */ .wrapper-dark .slick-dots li span:before {
/* 1119 */   color: #ffffff; }
/* 1120 */ .wrapper-dark .slick-dots li.slick-active span:before {
/* 1121 */   color: #ffffff; }
/* 1122 */ 
/* 1123 */ /* Slider */
/* 1124 */ .slick-slider {
/* 1125 */   position: relative;
/* 1126 */   display: block;
/* 1127 */   overflow: hidden;
/* 1128 */   -moz-box-sizing: border-box;
/* 1129 */   box-sizing: border-box;
/* 1130 */   -webkit-touch-callout: none;
/* 1131 */   -webkit-user-select: none;
/* 1132 */   -khtml-user-select: none;
/* 1133 */   -moz-user-select: none;
/* 1134 */   -ms-user-select: none;
/* 1135 */   user-select: none;
/* 1136 */   -ms-touch-action: pan-y;
/* 1137 */   touch-action: pan-y;
/* 1138 */   -webkit-tap-highlight-color: transparent; }
/* 1139 */ 
/* 1140 */ .slick-list {
/* 1141 */   position: relative;
/* 1142 */   overflow: hidden;
/* 1143 */   display: block;
/* 1144 */   margin: 0;
/* 1145 */   padding: 0; }
/* 1146 */   .slick-list:focus {
/* 1147 */     outline: none; }
/* 1148 */   .slick-list.dragging {
/* 1149 */     cursor: pointer;
/* 1150 */     cursor: hand; }

/* style-ltr.css */

/* 1151 */ 
/* 1152 */ .slick-slider .slick-track,
/* 1153 */ .slick-slider .slick-list {
/* 1154 */   -webkit-transform: translate3d(0, 0, 0);
/* 1155 */   -moz-transform: translate3d(0, 0, 0);
/* 1156 */   -ms-transform: translate3d(0, 0, 0);
/* 1157 */   -o-transform: translate3d(0, 0, 0);
/* 1158 */   transform: translate3d(0, 0, 0); }
/* 1159 */ 
/* 1160 */ .slick-track {
/* 1161 */   position: relative;
/* 1162 */   left: 0;
/* 1163 */   top: 0;
/* 1164 */   display: block; }
/* 1165 */   .slick-track:before, .slick-track:after {
/* 1166 */     content: "";
/* 1167 */     display: table; }
/* 1168 */   .slick-track:after {
/* 1169 */     clear: both; }
/* 1170 */   .slick-loading .slick-track {
/* 1171 */     visibility: hidden; }
/* 1172 */ 
/* 1173 */ .slick-slide {
/* 1174 */   float: left;
/* 1175 */   height: 100%;
/* 1176 */   min-height: 1px;
/* 1177 */   display: none; }
/* 1178 */   [dir="rtl"] .slick-slide {
/* 1179 */     float: right; }
/* 1180 */   .slick-slide img {
/* 1181 */     display: inline-block; }
/* 1182 */   .slick-slide.slick-loading img {
/* 1183 */     display: none; }
/* 1184 */   .slick-slide.dragging img {
/* 1185 */     pointer-events: none; }
/* 1186 */   .slick-initialized .slick-slide {
/* 1187 */     display: block; }
/* 1188 */   .slick-loading .slick-slide {
/* 1189 */     visibility: hidden; }
/* 1190 */   .slick-vertical .slick-slide {
/* 1191 */     display: block;
/* 1192 */     height: auto;
/* 1193 */     border: 1px solid transparent; }
/* 1194 */ 
/* 1195 */ .slick-arrow.slick-hidden {
/* 1196 */   display: none; }
/* 1197 */ 
/* 1198 */ #scrollUp {
/* 1199 */   bottom: 0.625em;
/* 1200 */   right: 0.625em;

/* style-ltr.css */

/* 1201 */   width: 2.5em;
/* 1202 */   height: 2.5em;
/* 1203 */   text-align: center;
/* 1204 */   font-family: FontAwesome;
/* 1205 */   font-size: 1.2rem;
/* 1206 */   line-height: 2.25em;
/* 1207 */   border: 2px solid currentColor;
/* 1208 */   background-color: #ffffff;
/* 1209 */   color: #000000; }
/* 1210 */   [dir="rtl"] #scrollUp {
/* 1211 */     left: 0.625em;
/* 1212 */     right: auto; }
/* 1213 */ 
/* 1214 */ #scrollUp-active {
/* 1215 */   display: none; }
/* 1216 */ 
/* 1217 */ .pace-running .pace {
/* 1218 */   background-color: #ffffff; }
/* 1219 */ 
/* 1220 */ .pace-done .pace {
/* 1221 */   background-color: transparent; }
/* 1222 */ 
/* 1223 */ .pace {
/* 1224 */   -webkit-pointer-events: none;
/* 1225 */   pointer-events: none;
/* 1226 */   -webkit-user-select: none;
/* 1227 */   -moz-user-select: none;
/* 1228 */   user-select: none;
/* 1229 */   position: fixed;
/* 1230 */   top: 0;
/* 1231 */   left: 0;
/* 1232 */   width: 100%;
/* 1233 */   z-index: 9999;
/* 1234 */   -webkit-transform: translate3d(0, -3.125em, 0);
/* 1235 */   -ms-transform: translate3d(0, -3.125em, 0);
/* 1236 */   transform: translate3d(0, -3.125em, 0);
/* 1237 */   -webkit-transition: -webkit-transform .5s ease-out;
/* 1238 */   -ms-transition: -webkit-transform .5s ease-out;
/* 1239 */   transition: transform .5s ease-out; }
/* 1240 */   .pace.pace-active {
/* 1241 */     -webkit-transform: translate3d(0, 0, 0);
/* 1242 */     -ms-transform: translate3d(0, 0, 0);
/* 1243 */     transform: translate3d(0, 0, 0); }
/* 1244 */   .pace .pace-progress {
/* 1245 */     display: block;
/* 1246 */     position: fixed;
/* 1247 */     z-index: 2000;
/* 1248 */     top: 0;
/* 1249 */     right: 100%;
/* 1250 */     width: 100%;

/* style-ltr.css */

/* 1251 */     height: 5px;
/* 1252 */     background: #bf9e3b;
/* 1253 */     pointer-events: none; }
/* 1254 */ 
/* 1255 */ /*!
/* 1256 *|  *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
/* 1257 *|  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
/* 1258 *|  */
/* 1259 */ /* FONT PATH
/* 1260 *|  * -------------------------- */
/* 1261 */ @font-face {
/* 1262 */   font-family: 'FontAwesome';
/* 1263 */   src: url("/wp-content/themes/writee/assets/fonts/fontawesome-webfont.eot?ad48a8");
/* 1264 */   src: url("/wp-content/themes/writee/assets/fonts/fontawesome-webfont.eot?ad48a8") format("embedded-opentype"), url("/wp-content/themes/writee/assets/fonts/fontawesome-webfont.woff2") format("woff2"), url("/wp-content/themes/writee/assets/fonts/fontawesome-webfont.woff?ad48a8") format("woff"), url("/wp-content/themes/writee/assets/fonts/fontawesome-webfont.ttf?ad48a8") format("truetype"), url("/wp-content/themes/writee/assets/fonts/fontawesome-webfont.svg?ad48a8") format("svg");
/* 1265 */   font-weight: normal;
/* 1266 */   font-style: normal; }
/* 1267 */ .fa {
/* 1268 */   display: inline-block;
/* 1269 */   font: normal normal normal 14px/1 FontAwesome;
/* 1270 */   font-size: inherit;
/* 1271 */   text-rendering: auto;
/* 1272 */   -webkit-font-smoothing: antialiased;
/* 1273 */   -moz-osx-font-smoothing: grayscale; }
/* 1274 */ 
/* 1275 */ /* makes the font 33% larger relative to the icon container */
/* 1276 */ .fa-lg {
/* 1277 */   font-size: 1.33333em;
/* 1278 */   line-height: 0.75em;
/* 1279 */   vertical-align: -15%; }
/* 1280 */ 
/* 1281 */ .fa-2x {
/* 1282 */   font-size: 2em; }
/* 1283 */ 
/* 1284 */ .fa-3x {
/* 1285 */   font-size: 3em; }
/* 1286 */ 
/* 1287 */ .fa-4x {
/* 1288 */   font-size: 4em; }
/* 1289 */ 
/* 1290 */ .fa-5x {
/* 1291 */   font-size: 5em; }
/* 1292 */ 
/* 1293 */ .fa-fw {
/* 1294 */   width: 1.28571em;
/* 1295 */   text-align: center; }
/* 1296 */ 
/* 1297 */ .fa-ul {
/* 1298 */   padding-left: 0;
/* 1299 */   margin-left: 2.14286em;
/* 1300 */   list-style-type: none; }

/* style-ltr.css */

/* 1301 */   .fa-ul > li {
/* 1302 */     position: relative; }
/* 1303 */ 
/* 1304 */ .fa-li {
/* 1305 */   position: absolute;
/* 1306 */   left: -2.14286em;
/* 1307 */   width: 2.14286em;
/* 1308 */   top: 0.14286em;
/* 1309 */   text-align: center; }
/* 1310 */   .fa-li.fa-lg {
/* 1311 */     left: -1.85714em; }
/* 1312 */ 
/* 1313 */ .fa-border {
/* 1314 */   padding: .2em .25em .15em;
/* 1315 */   border: solid 0.08em #eee;
/* 1316 */   border-radius: .1em; }
/* 1317 */ 
/* 1318 */ .fa-pull-left {
/* 1319 */   float: left; }
/* 1320 */ 
/* 1321 */ .fa-pull-right {
/* 1322 */   float: right; }
/* 1323 */ 
/* 1324 */ .fa.fa-pull-left {
/* 1325 */   margin-right: .3em; }
/* 1326 */ .fa.fa-pull-right {
/* 1327 */   margin-left: .3em; }
/* 1328 */ 
/* 1329 */ /* Deprecated as of 4.4.0 */
/* 1330 */ .pull-right {
/* 1331 */   float: right; }
/* 1332 */ 
/* 1333 */ .pull-left {
/* 1334 */   float: left; }
/* 1335 */ 
/* 1336 */ .fa.pull-left {
/* 1337 */   margin-right: .3em; }
/* 1338 */ .fa.pull-right {
/* 1339 */   margin-left: .3em; }
/* 1340 */ 
/* 1341 */ .fa-spin {
/* 1342 */   -webkit-animation: fa-spin 2s infinite linear;
/* 1343 */   animation: fa-spin 2s infinite linear; }
/* 1344 */ 
/* 1345 */ .fa-pulse {
/* 1346 */   -webkit-animation: fa-spin 1s infinite steps(8);
/* 1347 */   animation: fa-spin 1s infinite steps(8); }
/* 1348 */ 
/* 1349 */ @-webkit-keyframes fa-spin {
/* 1350 */   0% {

/* style-ltr.css */

/* 1351 */     -webkit-transform: rotate(0deg);
/* 1352 */     transform: rotate(0deg); }
/* 1353 */   100% {
/* 1354 */     -webkit-transform: rotate(359deg);
/* 1355 */     transform: rotate(359deg); } }
/* 1356 */ @keyframes fa-spin {
/* 1357 */   0% {
/* 1358 */     -webkit-transform: rotate(0deg);
/* 1359 */     transform: rotate(0deg); }
/* 1360 */   100% {
/* 1361 */     -webkit-transform: rotate(359deg);
/* 1362 */     transform: rotate(359deg); } }
/* 1363 */ .fa-rotate-90 {
/* 1364 */   -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
/* 1365 */   -webkit-transform: rotate(90deg);
/* 1366 */   -ms-transform: rotate(90deg);
/* 1367 */   transform: rotate(90deg); }
/* 1368 */ 
/* 1369 */ .fa-rotate-180 {
/* 1370 */   -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
/* 1371 */   -webkit-transform: rotate(180deg);
/* 1372 */   -ms-transform: rotate(180deg);
/* 1373 */   transform: rotate(180deg); }
/* 1374 */ 
/* 1375 */ .fa-rotate-270 {
/* 1376 */   -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
/* 1377 */   -webkit-transform: rotate(270deg);
/* 1378 */   -ms-transform: rotate(270deg);
/* 1379 */   transform: rotate(270deg); }
/* 1380 */ 
/* 1381 */ .fa-flip-horizontal {
/* 1382 */   -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
/* 1383 */   -webkit-transform: scale(-1, 1);
/* 1384 */   -ms-transform: scale(-1, 1);
/* 1385 */   transform: scale(-1, 1); }
/* 1386 */ 
/* 1387 */ .fa-flip-vertical {
/* 1388 */   -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
/* 1389 */   -webkit-transform: scale(1, -1);
/* 1390 */   -ms-transform: scale(1, -1);
/* 1391 */   transform: scale(1, -1); }
/* 1392 */ 
/* 1393 */ :root .fa-rotate-90,
/* 1394 */ :root .fa-rotate-180,
/* 1395 */ :root .fa-rotate-270,
/* 1396 */ :root .fa-flip-horizontal,
/* 1397 */ :root .fa-flip-vertical {
/* 1398 */   filter: none; }
/* 1399 */ 
/* 1400 */ .fa-stack {

/* style-ltr.css */

/* 1401 */   position: relative;
/* 1402 */   display: inline-block;
/* 1403 */   width: 2em;
/* 1404 */   height: 2em;
/* 1405 */   line-height: 2em;
/* 1406 */   vertical-align: middle; }
/* 1407 */ 
/* 1408 */ .fa-stack-1x, .fa-stack-2x {
/* 1409 */   position: absolute;
/* 1410 */   left: 0;
/* 1411 */   width: 100%;
/* 1412 */   text-align: center; }
/* 1413 */ 
/* 1414 */ .fa-stack-1x {
/* 1415 */   line-height: inherit; }
/* 1416 */ 
/* 1417 */ .fa-stack-2x {
/* 1418 */   font-size: 2em; }
/* 1419 */ 
/* 1420 */ .fa-inverse {
/* 1421 */   color: #fff; }
/* 1422 */ 
/* 1423 */ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
/* 1424 *|    readers do not read off random characters that represent icons */
/* 1425 */ .fa-glass:before {
/* 1426 */   content: ""; }
/* 1427 */ 
/* 1428 */ .fa-music:before {
/* 1429 */   content: ""; }
/* 1430 */ 
/* 1431 */ .fa-search:before {
/* 1432 */   content: ""; }
/* 1433 */ 
/* 1434 */ .fa-envelope-o:before {
/* 1435 */   content: ""; }
/* 1436 */ 
/* 1437 */ .fa-heart:before {
/* 1438 */   content: ""; }
/* 1439 */ 
/* 1440 */ .fa-star:before {
/* 1441 */   content: ""; }
/* 1442 */ 
/* 1443 */ .fa-star-o:before {
/* 1444 */   content: ""; }
/* 1445 */ 
/* 1446 */ .fa-user:before {
/* 1447 */   content: ""; }
/* 1448 */ 
/* 1449 */ .fa-film:before {
/* 1450 */   content: ""; }

/* style-ltr.css */

/* 1451 */ 
/* 1452 */ .fa-th-large:before {
/* 1453 */   content: ""; }
/* 1454 */ 
/* 1455 */ .fa-th:before {
/* 1456 */   content: ""; }
/* 1457 */ 
/* 1458 */ .fa-th-list:before {
/* 1459 */   content: ""; }
/* 1460 */ 
/* 1461 */ .fa-check:before {
/* 1462 */   content: ""; }
/* 1463 */ 
/* 1464 */ .fa-remove:before,
/* 1465 */ .fa-close:before,
/* 1466 */ .fa-times:before {
/* 1467 */   content: ""; }
/* 1468 */ 
/* 1469 */ .fa-search-plus:before {
/* 1470 */   content: ""; }
/* 1471 */ 
/* 1472 */ .fa-search-minus:before {
/* 1473 */   content: ""; }
/* 1474 */ 
/* 1475 */ .fa-power-off:before {
/* 1476 */   content: ""; }
/* 1477 */ 
/* 1478 */ .fa-signal:before {
/* 1479 */   content: ""; }
/* 1480 */ 
/* 1481 */ .fa-gear:before,
/* 1482 */ .fa-cog:before {
/* 1483 */   content: ""; }
/* 1484 */ 
/* 1485 */ .fa-trash-o:before {
/* 1486 */   content: ""; }
/* 1487 */ 
/* 1488 */ .fa-home:before {
/* 1489 */   content: ""; }
/* 1490 */ 
/* 1491 */ .fa-file-o:before {
/* 1492 */   content: ""; }
/* 1493 */ 
/* 1494 */ .fa-clock-o:before {
/* 1495 */   content: ""; }
/* 1496 */ 
/* 1497 */ .fa-road:before {
/* 1498 */   content: ""; }
/* 1499 */ 
/* 1500 */ .fa-download:before {

/* style-ltr.css */

/* 1501 */   content: ""; }
/* 1502 */ 
/* 1503 */ .fa-arrow-circle-o-down:before {
/* 1504 */   content: ""; }
/* 1505 */ 
/* 1506 */ .fa-arrow-circle-o-up:before {
/* 1507 */   content: ""; }
/* 1508 */ 
/* 1509 */ .fa-inbox:before {
/* 1510 */   content: ""; }
/* 1511 */ 
/* 1512 */ .fa-play-circle-o:before {
/* 1513 */   content: ""; }
/* 1514 */ 
/* 1515 */ .fa-rotate-right:before,
/* 1516 */ .fa-repeat:before {
/* 1517 */   content: ""; }
/* 1518 */ 
/* 1519 */ .fa-refresh:before {
/* 1520 */   content: ""; }
/* 1521 */ 
/* 1522 */ .fa-list-alt:before {
/* 1523 */   content: ""; }
/* 1524 */ 
/* 1525 */ .fa-lock:before {
/* 1526 */   content: ""; }
/* 1527 */ 
/* 1528 */ .fa-flag:before {
/* 1529 */   content: ""; }
/* 1530 */ 
/* 1531 */ .fa-headphones:before {
/* 1532 */   content: ""; }
/* 1533 */ 
/* 1534 */ .fa-volume-off:before {
/* 1535 */   content: ""; }
/* 1536 */ 
/* 1537 */ .fa-volume-down:before {
/* 1538 */   content: ""; }
/* 1539 */ 
/* 1540 */ .fa-volume-up:before {
/* 1541 */   content: ""; }
/* 1542 */ 
/* 1543 */ .fa-qrcode:before {
/* 1544 */   content: ""; }
/* 1545 */ 
/* 1546 */ .fa-barcode:before {
/* 1547 */   content: ""; }
/* 1548 */ 
/* 1549 */ .fa-tag:before {
/* 1550 */   content: ""; }

/* style-ltr.css */

/* 1551 */ 
/* 1552 */ .fa-tags:before {
/* 1553 */   content: ""; }
/* 1554 */ 
/* 1555 */ .fa-book:before {
/* 1556 */   content: ""; }
/* 1557 */ 
/* 1558 */ .fa-bookmark:before {
/* 1559 */   content: ""; }
/* 1560 */ 
/* 1561 */ .fa-print:before {
/* 1562 */   content: ""; }
/* 1563 */ 
/* 1564 */ .fa-camera:before {
/* 1565 */   content: ""; }
/* 1566 */ 
/* 1567 */ .fa-font:before {
/* 1568 */   content: ""; }
/* 1569 */ 
/* 1570 */ .fa-bold:before {
/* 1571 */   content: ""; }
/* 1572 */ 
/* 1573 */ .fa-italic:before {
/* 1574 */   content: ""; }
/* 1575 */ 
/* 1576 */ .fa-text-height:before {
/* 1577 */   content: ""; }
/* 1578 */ 
/* 1579 */ .fa-text-width:before {
/* 1580 */   content: ""; }
/* 1581 */ 
/* 1582 */ .fa-align-left:before {
/* 1583 */   content: ""; }
/* 1584 */ 
/* 1585 */ .fa-align-center:before {
/* 1586 */   content: ""; }
/* 1587 */ 
/* 1588 */ .fa-align-right:before {
/* 1589 */   content: ""; }
/* 1590 */ 
/* 1591 */ .fa-align-justify:before {
/* 1592 */   content: ""; }
/* 1593 */ 
/* 1594 */ .fa-list:before {
/* 1595 */   content: ""; }
/* 1596 */ 
/* 1597 */ .fa-dedent:before,
/* 1598 */ .fa-outdent:before {
/* 1599 */   content: ""; }
/* 1600 */ 

/* style-ltr.css */

/* 1601 */ .fa-indent:before {
/* 1602 */   content: ""; }
/* 1603 */ 
/* 1604 */ .fa-video-camera:before {
/* 1605 */   content: ""; }
/* 1606 */ 
/* 1607 */ .fa-photo:before,
/* 1608 */ .fa-image:before,
/* 1609 */ .fa-picture-o:before {
/* 1610 */   content: ""; }
/* 1611 */ 
/* 1612 */ .fa-pencil:before {
/* 1613 */   content: ""; }
/* 1614 */ 
/* 1615 */ .fa-map-marker:before {
/* 1616 */   content: ""; }
/* 1617 */ 
/* 1618 */ .fa-adjust:before {
/* 1619 */   content: ""; }
/* 1620 */ 
/* 1621 */ .fa-tint:before {
/* 1622 */   content: ""; }
/* 1623 */ 
/* 1624 */ .fa-edit:before,
/* 1625 */ .fa-pencil-square-o:before {
/* 1626 */   content: ""; }
/* 1627 */ 
/* 1628 */ .fa-share-square-o:before {
/* 1629 */   content: ""; }
/* 1630 */ 
/* 1631 */ .fa-check-square-o:before {
/* 1632 */   content: ""; }
/* 1633 */ 
/* 1634 */ .fa-arrows:before {
/* 1635 */   content: ""; }
/* 1636 */ 
/* 1637 */ .fa-step-backward:before {
/* 1638 */   content: ""; }
/* 1639 */ 
/* 1640 */ .fa-fast-backward:before {
/* 1641 */   content: ""; }
/* 1642 */ 
/* 1643 */ .fa-backward:before {
/* 1644 */   content: ""; }
/* 1645 */ 
/* 1646 */ .fa-play:before {
/* 1647 */   content: ""; }
/* 1648 */ 
/* 1649 */ .fa-pause:before {
/* 1650 */   content: ""; }

/* style-ltr.css */

/* 1651 */ 
/* 1652 */ .fa-stop:before {
/* 1653 */   content: ""; }
/* 1654 */ 
/* 1655 */ .fa-forward:before {
/* 1656 */   content: ""; }
/* 1657 */ 
/* 1658 */ .fa-fast-forward:before {
/* 1659 */   content: ""; }
/* 1660 */ 
/* 1661 */ .fa-step-forward:before {
/* 1662 */   content: ""; }
/* 1663 */ 
/* 1664 */ .fa-eject:before {
/* 1665 */   content: ""; }
/* 1666 */ 
/* 1667 */ .fa-chevron-left:before {
/* 1668 */   content: ""; }
/* 1669 */ 
/* 1670 */ .fa-chevron-right:before {
/* 1671 */   content: ""; }
/* 1672 */ 
/* 1673 */ .fa-plus-circle:before {
/* 1674 */   content: ""; }
/* 1675 */ 
/* 1676 */ .fa-minus-circle:before {
/* 1677 */   content: ""; }
/* 1678 */ 
/* 1679 */ .fa-times-circle:before {
/* 1680 */   content: ""; }
/* 1681 */ 
/* 1682 */ .fa-check-circle:before {
/* 1683 */   content: ""; }
/* 1684 */ 
/* 1685 */ .fa-question-circle:before {
/* 1686 */   content: ""; }
/* 1687 */ 
/* 1688 */ .fa-info-circle:before {
/* 1689 */   content: ""; }
/* 1690 */ 
/* 1691 */ .fa-crosshairs:before {
/* 1692 */   content: ""; }
/* 1693 */ 
/* 1694 */ .fa-times-circle-o:before {
/* 1695 */   content: ""; }
/* 1696 */ 
/* 1697 */ .fa-check-circle-o:before {
/* 1698 */   content: ""; }
/* 1699 */ 
/* 1700 */ .fa-ban:before {

/* style-ltr.css */

/* 1701 */   content: ""; }
/* 1702 */ 
/* 1703 */ .fa-arrow-left:before {
/* 1704 */   content: ""; }
/* 1705 */ 
/* 1706 */ .fa-arrow-right:before {
/* 1707 */   content: ""; }
/* 1708 */ 
/* 1709 */ .fa-arrow-up:before {
/* 1710 */   content: ""; }
/* 1711 */ 
/* 1712 */ .fa-arrow-down:before {
/* 1713 */   content: ""; }
/* 1714 */ 
/* 1715 */ .fa-mail-forward:before,
/* 1716 */ .fa-share:before {
/* 1717 */   content: ""; }
/* 1718 */ 
/* 1719 */ .fa-expand:before {
/* 1720 */   content: ""; }
/* 1721 */ 
/* 1722 */ .fa-compress:before {
/* 1723 */   content: ""; }
/* 1724 */ 
/* 1725 */ .fa-plus:before {
/* 1726 */   content: ""; }
/* 1727 */ 
/* 1728 */ .fa-minus:before {
/* 1729 */   content: ""; }
/* 1730 */ 
/* 1731 */ .fa-asterisk:before {
/* 1732 */   content: ""; }
/* 1733 */ 
/* 1734 */ .fa-exclamation-circle:before {
/* 1735 */   content: ""; }
/* 1736 */ 
/* 1737 */ .fa-gift:before {
/* 1738 */   content: ""; }
/* 1739 */ 
/* 1740 */ .fa-leaf:before {
/* 1741 */   content: ""; }
/* 1742 */ 
/* 1743 */ .fa-fire:before {
/* 1744 */   content: ""; }
/* 1745 */ 
/* 1746 */ .fa-eye:before {
/* 1747 */   content: ""; }
/* 1748 */ 
/* 1749 */ .fa-eye-slash:before {
/* 1750 */   content: ""; }

/* style-ltr.css */

/* 1751 */ 
/* 1752 */ .fa-warning:before,
/* 1753 */ .fa-exclamation-triangle:before {
/* 1754 */   content: ""; }
/* 1755 */ 
/* 1756 */ .fa-plane:before {
/* 1757 */   content: ""; }
/* 1758 */ 
/* 1759 */ .fa-calendar:before {
/* 1760 */   content: ""; }
/* 1761 */ 
/* 1762 */ .fa-random:before {
/* 1763 */   content: ""; }
/* 1764 */ 
/* 1765 */ .fa-comment:before {
/* 1766 */   content: ""; }
/* 1767 */ 
/* 1768 */ .fa-magnet:before {
/* 1769 */   content: ""; }
/* 1770 */ 
/* 1771 */ .fa-chevron-up:before {
/* 1772 */   content: ""; }
/* 1773 */ 
/* 1774 */ .fa-chevron-down:before {
/* 1775 */   content: ""; }
/* 1776 */ 
/* 1777 */ .fa-retweet:before {
/* 1778 */   content: ""; }
/* 1779 */ 
/* 1780 */ .fa-shopping-cart:before {
/* 1781 */   content: ""; }
/* 1782 */ 
/* 1783 */ .fa-folder:before {
/* 1784 */   content: ""; }
/* 1785 */ 
/* 1786 */ .fa-folder-open:before {
/* 1787 */   content: ""; }
/* 1788 */ 
/* 1789 */ .fa-arrows-v:before {
/* 1790 */   content: ""; }
/* 1791 */ 
/* 1792 */ .fa-arrows-h:before {
/* 1793 */   content: ""; }
/* 1794 */ 
/* 1795 */ .fa-bar-chart-o:before,
/* 1796 */ .fa-bar-chart:before {
/* 1797 */   content: ""; }
/* 1798 */ 
/* 1799 */ .fa-twitter-square:before {
/* 1800 */   content: ""; }

/* style-ltr.css */

/* 1801 */ 
/* 1802 */ .fa-facebook-square:before {
/* 1803 */   content: ""; }
/* 1804 */ 
/* 1805 */ .fa-camera-retro:before {
/* 1806 */   content: ""; }
/* 1807 */ 
/* 1808 */ .fa-key:before {
/* 1809 */   content: ""; }
/* 1810 */ 
/* 1811 */ .fa-gears:before,
/* 1812 */ .fa-cogs:before {
/* 1813 */   content: ""; }
/* 1814 */ 
/* 1815 */ .fa-comments:before {
/* 1816 */   content: ""; }
/* 1817 */ 
/* 1818 */ .fa-thumbs-o-up:before {
/* 1819 */   content: ""; }
/* 1820 */ 
/* 1821 */ .fa-thumbs-o-down:before {
/* 1822 */   content: ""; }
/* 1823 */ 
/* 1824 */ .fa-star-half:before {
/* 1825 */   content: ""; }
/* 1826 */ 
/* 1827 */ .fa-heart-o:before {
/* 1828 */   content: ""; }
/* 1829 */ 
/* 1830 */ .fa-sign-out:before {
/* 1831 */   content: ""; }
/* 1832 */ 
/* 1833 */ .fa-linkedin-square:before {
/* 1834 */   content: ""; }
/* 1835 */ 
/* 1836 */ .fa-thumb-tack:before {
/* 1837 */   content: ""; }
/* 1838 */ 
/* 1839 */ .fa-external-link:before {
/* 1840 */   content: ""; }
/* 1841 */ 
/* 1842 */ .fa-sign-in:before {
/* 1843 */   content: ""; }
/* 1844 */ 
/* 1845 */ .fa-trophy:before {
/* 1846 */   content: ""; }
/* 1847 */ 
/* 1848 */ .fa-github-square:before {
/* 1849 */   content: ""; }
/* 1850 */ 

/* style-ltr.css */

/* 1851 */ .fa-upload:before {
/* 1852 */   content: ""; }
/* 1853 */ 
/* 1854 */ .fa-lemon-o:before {
/* 1855 */   content: ""; }
/* 1856 */ 
/* 1857 */ .fa-phone:before {
/* 1858 */   content: ""; }
/* 1859 */ 
/* 1860 */ .fa-square-o:before {
/* 1861 */   content: ""; }
/* 1862 */ 
/* 1863 */ .fa-bookmark-o:before {
/* 1864 */   content: ""; }
/* 1865 */ 
/* 1866 */ .fa-phone-square:before {
/* 1867 */   content: ""; }
/* 1868 */ 
/* 1869 */ .fa-twitter:before {
/* 1870 */   content: ""; }
/* 1871 */ 
/* 1872 */ .fa-facebook-f:before,
/* 1873 */ .fa-facebook:before {
/* 1874 */   content: ""; }
/* 1875 */ 
/* 1876 */ .fa-github:before {
/* 1877 */   content: ""; }
/* 1878 */ 
/* 1879 */ .fa-unlock:before {
/* 1880 */   content: ""; }
/* 1881 */ 
/* 1882 */ .fa-credit-card:before {
/* 1883 */   content: ""; }
/* 1884 */ 
/* 1885 */ .fa-feed:before,
/* 1886 */ .fa-rss:before,
/* 1887 */ .widget_rss .widget-title .rsswidget:before {
/* 1888 */   content: ""; }
/* 1889 */ 
/* 1890 */ .fa-hdd-o:before {
/* 1891 */   content: ""; }
/* 1892 */ 
/* 1893 */ .fa-bullhorn:before {
/* 1894 */   content: ""; }
/* 1895 */ 
/* 1896 */ .fa-bell:before {
/* 1897 */   content: ""; }
/* 1898 */ 
/* 1899 */ .fa-certificate:before {
/* 1900 */   content: ""; }

/* style-ltr.css */

/* 1901 */ 
/* 1902 */ .fa-hand-o-right:before {
/* 1903 */   content: ""; }
/* 1904 */ 
/* 1905 */ .fa-hand-o-left:before {
/* 1906 */   content: ""; }
/* 1907 */ 
/* 1908 */ .fa-hand-o-up:before {
/* 1909 */   content: ""; }
/* 1910 */ 
/* 1911 */ .fa-hand-o-down:before {
/* 1912 */   content: ""; }
/* 1913 */ 
/* 1914 */ .fa-arrow-circle-left:before {
/* 1915 */   content: ""; }
/* 1916 */ 
/* 1917 */ .fa-arrow-circle-right:before {
/* 1918 */   content: ""; }
/* 1919 */ 
/* 1920 */ .fa-arrow-circle-up:before {
/* 1921 */   content: ""; }
/* 1922 */ 
/* 1923 */ .fa-arrow-circle-down:before {
/* 1924 */   content: ""; }
/* 1925 */ 
/* 1926 */ .fa-globe:before {
/* 1927 */   content: ""; }
/* 1928 */ 
/* 1929 */ .fa-wrench:before {
/* 1930 */   content: ""; }
/* 1931 */ 
/* 1932 */ .fa-tasks:before {
/* 1933 */   content: ""; }
/* 1934 */ 
/* 1935 */ .fa-filter:before {
/* 1936 */   content: ""; }
/* 1937 */ 
/* 1938 */ .fa-briefcase:before {
/* 1939 */   content: ""; }
/* 1940 */ 
/* 1941 */ .fa-arrows-alt:before {
/* 1942 */   content: ""; }
/* 1943 */ 
/* 1944 */ .fa-group:before,
/* 1945 */ .fa-users:before {
/* 1946 */   content: ""; }
/* 1947 */ 
/* 1948 */ .fa-chain:before,
/* 1949 */ .fa-link:before {
/* 1950 */   content: ""; }

/* style-ltr.css */

/* 1951 */ 
/* 1952 */ .fa-cloud:before {
/* 1953 */   content: ""; }
/* 1954 */ 
/* 1955 */ .fa-flask:before {
/* 1956 */   content: ""; }
/* 1957 */ 
/* 1958 */ .fa-cut:before,
/* 1959 */ .fa-scissors:before {
/* 1960 */   content: ""; }
/* 1961 */ 
/* 1962 */ .fa-copy:before,
/* 1963 */ .fa-files-o:before {
/* 1964 */   content: ""; }
/* 1965 */ 
/* 1966 */ .fa-paperclip:before {
/* 1967 */   content: ""; }
/* 1968 */ 
/* 1969 */ .fa-save:before,
/* 1970 */ .fa-floppy-o:before {
/* 1971 */   content: ""; }
/* 1972 */ 
/* 1973 */ .fa-square:before {
/* 1974 */   content: ""; }
/* 1975 */ 
/* 1976 */ .fa-navicon:before,
/* 1977 */ .fa-reorder:before,
/* 1978 */ .fa-bars:before {
/* 1979 */   content: ""; }
/* 1980 */ 
/* 1981 */ .fa-list-ul:before {
/* 1982 */   content: ""; }
/* 1983 */ 
/* 1984 */ .fa-list-ol:before {
/* 1985 */   content: ""; }
/* 1986 */ 
/* 1987 */ .fa-strikethrough:before {
/* 1988 */   content: ""; }
/* 1989 */ 
/* 1990 */ .fa-underline:before {
/* 1991 */   content: ""; }
/* 1992 */ 
/* 1993 */ .fa-table:before {
/* 1994 */   content: ""; }
/* 1995 */ 
/* 1996 */ .fa-magic:before {
/* 1997 */   content: ""; }
/* 1998 */ 
/* 1999 */ .fa-truck:before {
/* 2000 */   content: ""; }

/* style-ltr.css */

/* 2001 */ 
/* 2002 */ .fa-pinterest:before {
/* 2003 */   content: ""; }
/* 2004 */ 
/* 2005 */ .fa-pinterest-square:before {
/* 2006 */   content: ""; }
/* 2007 */ 
/* 2008 */ .fa-google-plus-square:before {
/* 2009 */   content: ""; }
/* 2010 */ 
/* 2011 */ .fa-google-plus:before {
/* 2012 */   content: ""; }
/* 2013 */ 
/* 2014 */ .fa-money:before {
/* 2015 */   content: ""; }
/* 2016 */ 
/* 2017 */ .fa-caret-down:before {
/* 2018 */   content: ""; }
/* 2019 */ 
/* 2020 */ .fa-caret-up:before {
/* 2021 */   content: ""; }
/* 2022 */ 
/* 2023 */ .fa-caret-left:before {
/* 2024 */   content: ""; }
/* 2025 */ 
/* 2026 */ .fa-caret-right:before {
/* 2027 */   content: ""; }
/* 2028 */ 
/* 2029 */ .fa-columns:before {
/* 2030 */   content: ""; }
/* 2031 */ 
/* 2032 */ .fa-unsorted:before,
/* 2033 */ .fa-sort:before {
/* 2034 */   content: ""; }
/* 2035 */ 
/* 2036 */ .fa-sort-down:before,
/* 2037 */ .fa-sort-desc:before {
/* 2038 */   content: ""; }
/* 2039 */ 
/* 2040 */ .fa-sort-up:before,
/* 2041 */ .fa-sort-asc:before {
/* 2042 */   content: ""; }
/* 2043 */ 
/* 2044 */ .fa-envelope:before {
/* 2045 */   content: ""; }
/* 2046 */ 
/* 2047 */ .fa-linkedin:before {
/* 2048 */   content: ""; }
/* 2049 */ 
/* 2050 */ .fa-rotate-left:before,

/* style-ltr.css */

/* 2051 */ .fa-undo:before {
/* 2052 */   content: ""; }
/* 2053 */ 
/* 2054 */ .fa-legal:before,
/* 2055 */ .fa-gavel:before {
/* 2056 */   content: ""; }
/* 2057 */ 
/* 2058 */ .fa-dashboard:before,
/* 2059 */ .fa-tachometer:before {
/* 2060 */   content: ""; }
/* 2061 */ 
/* 2062 */ .fa-comment-o:before {
/* 2063 */   content: ""; }
/* 2064 */ 
/* 2065 */ .fa-comments-o:before {
/* 2066 */   content: ""; }
/* 2067 */ 
/* 2068 */ .fa-flash:before,
/* 2069 */ .fa-bolt:before {
/* 2070 */   content: ""; }
/* 2071 */ 
/* 2072 */ .fa-sitemap:before {
/* 2073 */   content: ""; }
/* 2074 */ 
/* 2075 */ .fa-umbrella:before {
/* 2076 */   content: ""; }
/* 2077 */ 
/* 2078 */ .fa-paste:before,
/* 2079 */ .fa-clipboard:before {
/* 2080 */   content: ""; }
/* 2081 */ 
/* 2082 */ .fa-lightbulb-o:before {
/* 2083 */   content: ""; }
/* 2084 */ 
/* 2085 */ .fa-exchange:before {
/* 2086 */   content: ""; }
/* 2087 */ 
/* 2088 */ .fa-cloud-download:before {
/* 2089 */   content: ""; }
/* 2090 */ 
/* 2091 */ .fa-cloud-upload:before {
/* 2092 */   content: ""; }
/* 2093 */ 
/* 2094 */ .fa-user-md:before {
/* 2095 */   content: ""; }
/* 2096 */ 
/* 2097 */ .fa-stethoscope:before {
/* 2098 */   content: ""; }
/* 2099 */ 
/* 2100 */ .fa-suitcase:before {

/* style-ltr.css */

/* 2101 */   content: ""; }
/* 2102 */ 
/* 2103 */ .fa-bell-o:before {
/* 2104 */   content: ""; }
/* 2105 */ 
/* 2106 */ .fa-coffee:before {
/* 2107 */   content: ""; }
/* 2108 */ 
/* 2109 */ .fa-cutlery:before {
/* 2110 */   content: ""; }
/* 2111 */ 
/* 2112 */ .fa-file-text-o:before {
/* 2113 */   content: ""; }
/* 2114 */ 
/* 2115 */ .fa-building-o:before {
/* 2116 */   content: ""; }
/* 2117 */ 
/* 2118 */ .fa-hospital-o:before {
/* 2119 */   content: ""; }
/* 2120 */ 
/* 2121 */ .fa-ambulance:before {
/* 2122 */   content: ""; }
/* 2123 */ 
/* 2124 */ .fa-medkit:before {
/* 2125 */   content: ""; }
/* 2126 */ 
/* 2127 */ .fa-fighter-jet:before {
/* 2128 */   content: ""; }
/* 2129 */ 
/* 2130 */ .fa-beer:before {
/* 2131 */   content: ""; }
/* 2132 */ 
/* 2133 */ .fa-h-square:before {
/* 2134 */   content: ""; }
/* 2135 */ 
/* 2136 */ .fa-plus-square:before {
/* 2137 */   content: ""; }
/* 2138 */ 
/* 2139 */ .fa-angle-double-left:before {
/* 2140 */   content: ""; }
/* 2141 */ 
/* 2142 */ .fa-angle-double-right:before {
/* 2143 */   content: ""; }
/* 2144 */ 
/* 2145 */ .fa-angle-double-up:before {
/* 2146 */   content: ""; }
/* 2147 */ 
/* 2148 */ .fa-angle-double-down:before {
/* 2149 */   content: ""; }
/* 2150 */ 

/* style-ltr.css */

/* 2151 */ .fa-angle-left:before {
/* 2152 */   content: ""; }
/* 2153 */ 
/* 2154 */ .fa-angle-right:before {
/* 2155 */   content: ""; }
/* 2156 */ 
/* 2157 */ .fa-angle-up:before {
/* 2158 */   content: ""; }
/* 2159 */ 
/* 2160 */ .fa-angle-down:before {
/* 2161 */   content: ""; }
/* 2162 */ 
/* 2163 */ .fa-desktop:before {
/* 2164 */   content: ""; }
/* 2165 */ 
/* 2166 */ .fa-laptop:before {
/* 2167 */   content: ""; }
/* 2168 */ 
/* 2169 */ .fa-tablet:before {
/* 2170 */   content: ""; }
/* 2171 */ 
/* 2172 */ .fa-mobile-phone:before,
/* 2173 */ .fa-mobile:before {
/* 2174 */   content: ""; }
/* 2175 */ 
/* 2176 */ .fa-circle-o:before {
/* 2177 */   content: ""; }
/* 2178 */ 
/* 2179 */ .fa-quote-left:before {
/* 2180 */   content: ""; }
/* 2181 */ 
/* 2182 */ .fa-quote-right:before {
/* 2183 */   content: ""; }
/* 2184 */ 
/* 2185 */ .fa-spinner:before {
/* 2186 */   content: ""; }
/* 2187 */ 
/* 2188 */ .fa-circle:before {
/* 2189 */   content: ""; }
/* 2190 */ 
/* 2191 */ .fa-mail-reply:before,
/* 2192 */ .fa-reply:before {
/* 2193 */   content: ""; }
/* 2194 */ 
/* 2195 */ .fa-github-alt:before {
/* 2196 */   content: ""; }
/* 2197 */ 
/* 2198 */ .fa-folder-o:before {
/* 2199 */   content: ""; }
/* 2200 */ 

/* style-ltr.css */

/* 2201 */ .fa-folder-open-o:before {
/* 2202 */   content: ""; }
/* 2203 */ 
/* 2204 */ .fa-smile-o:before {
/* 2205 */   content: ""; }
/* 2206 */ 
/* 2207 */ .fa-frown-o:before {
/* 2208 */   content: ""; }
/* 2209 */ 
/* 2210 */ .fa-meh-o:before {
/* 2211 */   content: ""; }
/* 2212 */ 
/* 2213 */ .fa-gamepad:before {
/* 2214 */   content: ""; }
/* 2215 */ 
/* 2216 */ .fa-keyboard-o:before {
/* 2217 */   content: ""; }
/* 2218 */ 
/* 2219 */ .fa-flag-o:before {
/* 2220 */   content: ""; }
/* 2221 */ 
/* 2222 */ .fa-flag-checkered:before {
/* 2223 */   content: ""; }
/* 2224 */ 
/* 2225 */ .fa-terminal:before {
/* 2226 */   content: ""; }
/* 2227 */ 
/* 2228 */ .fa-code:before {
/* 2229 */   content: ""; }
/* 2230 */ 
/* 2231 */ .fa-mail-reply-all:before,
/* 2232 */ .fa-reply-all:before {
/* 2233 */   content: ""; }
/* 2234 */ 
/* 2235 */ .fa-star-half-empty:before,
/* 2236 */ .fa-star-half-full:before,
/* 2237 */ .fa-star-half-o:before {
/* 2238 */   content: ""; }
/* 2239 */ 
/* 2240 */ .fa-location-arrow:before {
/* 2241 */   content: ""; }
/* 2242 */ 
/* 2243 */ .fa-crop:before {
/* 2244 */   content: ""; }
/* 2245 */ 
/* 2246 */ .fa-code-fork:before {
/* 2247 */   content: ""; }
/* 2248 */ 
/* 2249 */ .fa-unlink:before,
/* 2250 */ .fa-chain-broken:before {

/* style-ltr.css */

/* 2251 */   content: ""; }
/* 2252 */ 
/* 2253 */ .fa-question:before {
/* 2254 */   content: ""; }
/* 2255 */ 
/* 2256 */ .fa-info:before {
/* 2257 */   content: ""; }
/* 2258 */ 
/* 2259 */ .fa-exclamation:before {
/* 2260 */   content: ""; }
/* 2261 */ 
/* 2262 */ .fa-superscript:before {
/* 2263 */   content: ""; }
/* 2264 */ 
/* 2265 */ .fa-subscript:before {
/* 2266 */   content: ""; }
/* 2267 */ 
/* 2268 */ .fa-eraser:before {
/* 2269 */   content: ""; }
/* 2270 */ 
/* 2271 */ .fa-puzzle-piece:before {
/* 2272 */   content: ""; }
/* 2273 */ 
/* 2274 */ .fa-microphone:before {
/* 2275 */   content: ""; }
/* 2276 */ 
/* 2277 */ .fa-microphone-slash:before {
/* 2278 */   content: ""; }
/* 2279 */ 
/* 2280 */ .fa-shield:before {
/* 2281 */   content: ""; }
/* 2282 */ 
/* 2283 */ .fa-calendar-o:before {
/* 2284 */   content: ""; }
/* 2285 */ 
/* 2286 */ .fa-fire-extinguisher:before {
/* 2287 */   content: ""; }
/* 2288 */ 
/* 2289 */ .fa-rocket:before {
/* 2290 */   content: ""; }
/* 2291 */ 
/* 2292 */ .fa-maxcdn:before {
/* 2293 */   content: ""; }
/* 2294 */ 
/* 2295 */ .fa-chevron-circle-left:before {
/* 2296 */   content: ""; }
/* 2297 */ 
/* 2298 */ .fa-chevron-circle-right:before {
/* 2299 */   content: ""; }
/* 2300 */ 

/* style-ltr.css */

/* 2301 */ .fa-chevron-circle-up:before {
/* 2302 */   content: ""; }
/* 2303 */ 
/* 2304 */ .fa-chevron-circle-down:before {
/* 2305 */   content: ""; }
/* 2306 */ 
/* 2307 */ .fa-html5:before {
/* 2308 */   content: ""; }
/* 2309 */ 
/* 2310 */ .fa-css3:before {
/* 2311 */   content: ""; }
/* 2312 */ 
/* 2313 */ .fa-anchor:before {
/* 2314 */   content: ""; }
/* 2315 */ 
/* 2316 */ .fa-unlock-alt:before {
/* 2317 */   content: ""; }
/* 2318 */ 
/* 2319 */ .fa-bullseye:before {
/* 2320 */   content: ""; }
/* 2321 */ 
/* 2322 */ .fa-ellipsis-h:before {
/* 2323 */   content: ""; }
/* 2324 */ 
/* 2325 */ .fa-ellipsis-v:before {
/* 2326 */   content: ""; }
/* 2327 */ 
/* 2328 */ .fa-rss-square:before {
/* 2329 */   content: ""; }
/* 2330 */ 
/* 2331 */ .fa-play-circle:before {
/* 2332 */   content: ""; }
/* 2333 */ 
/* 2334 */ .fa-ticket:before {
/* 2335 */   content: ""; }
/* 2336 */ 
/* 2337 */ .fa-minus-square:before {
/* 2338 */   content: ""; }
/* 2339 */ 
/* 2340 */ .fa-minus-square-o:before {
/* 2341 */   content: ""; }
/* 2342 */ 
/* 2343 */ .fa-level-up:before {
/* 2344 */   content: ""; }
/* 2345 */ 
/* 2346 */ .fa-level-down:before {
/* 2347 */   content: ""; }
/* 2348 */ 
/* 2349 */ .fa-check-square:before {
/* 2350 */   content: ""; }

/* style-ltr.css */

/* 2351 */ 
/* 2352 */ .fa-pencil-square:before {
/* 2353 */   content: ""; }
/* 2354 */ 
/* 2355 */ .fa-external-link-square:before {
/* 2356 */   content: ""; }
/* 2357 */ 
/* 2358 */ .fa-share-square:before {
/* 2359 */   content: ""; }
/* 2360 */ 
/* 2361 */ .fa-compass:before {
/* 2362 */   content: ""; }
/* 2363 */ 
/* 2364 */ .fa-toggle-down:before,
/* 2365 */ .fa-caret-square-o-down:before {
/* 2366 */   content: ""; }
/* 2367 */ 
/* 2368 */ .fa-toggle-up:before,
/* 2369 */ .fa-caret-square-o-up:before {
/* 2370 */   content: ""; }
/* 2371 */ 
/* 2372 */ .fa-toggle-right:before,
/* 2373 */ .fa-caret-square-o-right:before {
/* 2374 */   content: ""; }
/* 2375 */ 
/* 2376 */ .fa-euro:before,
/* 2377 */ .fa-eur:before {
/* 2378 */   content: ""; }
/* 2379 */ 
/* 2380 */ .fa-gbp:before {
/* 2381 */   content: ""; }
/* 2382 */ 
/* 2383 */ .fa-dollar:before,
/* 2384 */ .fa-usd:before {
/* 2385 */   content: ""; }
/* 2386 */ 
/* 2387 */ .fa-rupee:before,
/* 2388 */ .fa-inr:before {
/* 2389 */   content: ""; }
/* 2390 */ 
/* 2391 */ .fa-cny:before,
/* 2392 */ .fa-rmb:before,
/* 2393 */ .fa-yen:before,
/* 2394 */ .fa-jpy:before {
/* 2395 */   content: ""; }
/* 2396 */ 
/* 2397 */ .fa-ruble:before,
/* 2398 */ .fa-rouble:before,
/* 2399 */ .fa-rub:before {
/* 2400 */   content: ""; }

/* style-ltr.css */

/* 2401 */ 
/* 2402 */ .fa-won:before,
/* 2403 */ .fa-krw:before {
/* 2404 */   content: ""; }
/* 2405 */ 
/* 2406 */ .fa-bitcoin:before,
/* 2407 */ .fa-btc:before {
/* 2408 */   content: ""; }
/* 2409 */ 
/* 2410 */ .fa-file:before {
/* 2411 */   content: ""; }
/* 2412 */ 
/* 2413 */ .fa-file-text:before {
/* 2414 */   content: ""; }
/* 2415 */ 
/* 2416 */ .fa-sort-alpha-asc:before {
/* 2417 */   content: ""; }
/* 2418 */ 
/* 2419 */ .fa-sort-alpha-desc:before {
/* 2420 */   content: ""; }
/* 2421 */ 
/* 2422 */ .fa-sort-amount-asc:before {
/* 2423 */   content: ""; }
/* 2424 */ 
/* 2425 */ .fa-sort-amount-desc:before {
/* 2426 */   content: ""; }
/* 2427 */ 
/* 2428 */ .fa-sort-numeric-asc:before {
/* 2429 */   content: ""; }
/* 2430 */ 
/* 2431 */ .fa-sort-numeric-desc:before {
/* 2432 */   content: ""; }
/* 2433 */ 
/* 2434 */ .fa-thumbs-up:before {
/* 2435 */   content: ""; }
/* 2436 */ 
/* 2437 */ .fa-thumbs-down:before {
/* 2438 */   content: ""; }
/* 2439 */ 
/* 2440 */ .fa-youtube-square:before {
/* 2441 */   content: ""; }
/* 2442 */ 
/* 2443 */ .fa-youtube:before {
/* 2444 */   content: ""; }
/* 2445 */ 
/* 2446 */ .fa-xing:before {
/* 2447 */   content: ""; }
/* 2448 */ 
/* 2449 */ .fa-xing-square:before {
/* 2450 */   content: ""; }

/* style-ltr.css */

/* 2451 */ 
/* 2452 */ .fa-youtube-play:before {
/* 2453 */   content: ""; }
/* 2454 */ 
/* 2455 */ .fa-dropbox:before {
/* 2456 */   content: ""; }
/* 2457 */ 
/* 2458 */ .fa-stack-overflow:before {
/* 2459 */   content: ""; }
/* 2460 */ 
/* 2461 */ .fa-instagram:before {
/* 2462 */   content: ""; }
/* 2463 */ 
/* 2464 */ .fa-flickr:before {
/* 2465 */   content: ""; }
/* 2466 */ 
/* 2467 */ .fa-adn:before {
/* 2468 */   content: ""; }
/* 2469 */ 
/* 2470 */ .fa-bitbucket:before {
/* 2471 */   content: ""; }
/* 2472 */ 
/* 2473 */ .fa-bitbucket-square:before {
/* 2474 */   content: ""; }
/* 2475 */ 
/* 2476 */ .fa-tumblr:before {
/* 2477 */   content: ""; }
/* 2478 */ 
/* 2479 */ .fa-tumblr-square:before {
/* 2480 */   content: ""; }
/* 2481 */ 
/* 2482 */ .fa-long-arrow-down:before {
/* 2483 */   content: ""; }
/* 2484 */ 
/* 2485 */ .fa-long-arrow-up:before {
/* 2486 */   content: ""; }
/* 2487 */ 
/* 2488 */ .fa-long-arrow-left:before {
/* 2489 */   content: ""; }
/* 2490 */ 
/* 2491 */ .fa-long-arrow-right:before {
/* 2492 */   content: ""; }
/* 2493 */ 
/* 2494 */ .fa-apple:before {
/* 2495 */   content: ""; }
/* 2496 */ 
/* 2497 */ .fa-windows:before {
/* 2498 */   content: ""; }
/* 2499 */ 
/* 2500 */ .fa-android:before {

/* style-ltr.css */

/* 2501 */   content: ""; }
/* 2502 */ 
/* 2503 */ .fa-linux:before {
/* 2504 */   content: ""; }
/* 2505 */ 
/* 2506 */ .fa-dribbble:before {
/* 2507 */   content: ""; }
/* 2508 */ 
/* 2509 */ .fa-skype:before {
/* 2510 */   content: ""; }
/* 2511 */ 
/* 2512 */ .fa-foursquare:before {
/* 2513 */   content: ""; }
/* 2514 */ 
/* 2515 */ .fa-trello:before {
/* 2516 */   content: ""; }
/* 2517 */ 
/* 2518 */ .fa-female:before {
/* 2519 */   content: ""; }
/* 2520 */ 
/* 2521 */ .fa-male:before {
/* 2522 */   content: ""; }
/* 2523 */ 
/* 2524 */ .fa-gittip:before,
/* 2525 */ .fa-gratipay:before {
/* 2526 */   content: ""; }
/* 2527 */ 
/* 2528 */ .fa-sun-o:before {
/* 2529 */   content: ""; }
/* 2530 */ 
/* 2531 */ .fa-moon-o:before {
/* 2532 */   content: ""; }
/* 2533 */ 
/* 2534 */ .fa-archive:before {
/* 2535 */   content: ""; }
/* 2536 */ 
/* 2537 */ .fa-bug:before {
/* 2538 */   content: ""; }
/* 2539 */ 
/* 2540 */ .fa-vk:before {
/* 2541 */   content: ""; }
/* 2542 */ 
/* 2543 */ .fa-weibo:before {
/* 2544 */   content: ""; }
/* 2545 */ 
/* 2546 */ .fa-renren:before {
/* 2547 */   content: ""; }
/* 2548 */ 
/* 2549 */ .fa-pagelines:before {
/* 2550 */   content: ""; }

/* style-ltr.css */

/* 2551 */ 
/* 2552 */ .fa-stack-exchange:before {
/* 2553 */   content: ""; }
/* 2554 */ 
/* 2555 */ .fa-arrow-circle-o-right:before {
/* 2556 */   content: ""; }
/* 2557 */ 
/* 2558 */ .fa-arrow-circle-o-left:before {
/* 2559 */   content: ""; }
/* 2560 */ 
/* 2561 */ .fa-toggle-left:before,
/* 2562 */ .fa-caret-square-o-left:before {
/* 2563 */   content: ""; }
/* 2564 */ 
/* 2565 */ .fa-dot-circle-o:before {
/* 2566 */   content: ""; }
/* 2567 */ 
/* 2568 */ .fa-wheelchair:before {
/* 2569 */   content: ""; }
/* 2570 */ 
/* 2571 */ .fa-vimeo-square:before {
/* 2572 */   content: ""; }
/* 2573 */ 
/* 2574 */ .fa-turkish-lira:before,
/* 2575 */ .fa-try:before {
/* 2576 */   content: ""; }
/* 2577 */ 
/* 2578 */ .fa-plus-square-o:before {
/* 2579 */   content: ""; }
/* 2580 */ 
/* 2581 */ .fa-space-shuttle:before {
/* 2582 */   content: ""; }
/* 2583 */ 
/* 2584 */ .fa-slack:before {
/* 2585 */   content: ""; }
/* 2586 */ 
/* 2587 */ .fa-envelope-square:before {
/* 2588 */   content: ""; }
/* 2589 */ 
/* 2590 */ .fa-wordpress:before {
/* 2591 */   content: ""; }
/* 2592 */ 
/* 2593 */ .fa-openid:before {
/* 2594 */   content: ""; }
/* 2595 */ 
/* 2596 */ .fa-institution:before,
/* 2597 */ .fa-bank:before,
/* 2598 */ .fa-university:before {
/* 2599 */   content: ""; }
/* 2600 */ 

/* style-ltr.css */

/* 2601 */ .fa-mortar-board:before,
/* 2602 */ .fa-graduation-cap:before {
/* 2603 */   content: ""; }
/* 2604 */ 
/* 2605 */ .fa-yahoo:before {
/* 2606 */   content: ""; }
/* 2607 */ 
/* 2608 */ .fa-google:before {
/* 2609 */   content: ""; }
/* 2610 */ 
/* 2611 */ .fa-reddit:before {
/* 2612 */   content: ""; }
/* 2613 */ 
/* 2614 */ .fa-reddit-square:before {
/* 2615 */   content: ""; }
/* 2616 */ 
/* 2617 */ .fa-stumbleupon-circle:before {
/* 2618 */   content: ""; }
/* 2619 */ 
/* 2620 */ .fa-stumbleupon:before {
/* 2621 */   content: ""; }
/* 2622 */ 
/* 2623 */ .fa-delicious:before {
/* 2624 */   content: ""; }
/* 2625 */ 
/* 2626 */ .fa-digg:before {
/* 2627 */   content: ""; }
/* 2628 */ 
/* 2629 */ .fa-pied-piper-pp:before {
/* 2630 */   content: ""; }
/* 2631 */ 
/* 2632 */ .fa-pied-piper-alt:before {
/* 2633 */   content: ""; }
/* 2634 */ 
/* 2635 */ .fa-drupal:before {
/* 2636 */   content: ""; }
/* 2637 */ 
/* 2638 */ .fa-joomla:before {
/* 2639 */   content: ""; }
/* 2640 */ 
/* 2641 */ .fa-language:before {
/* 2642 */   content: ""; }
/* 2643 */ 
/* 2644 */ .fa-fax:before {
/* 2645 */   content: ""; }
/* 2646 */ 
/* 2647 */ .fa-building:before {
/* 2648 */   content: ""; }
/* 2649 */ 
/* 2650 */ .fa-child:before {

/* style-ltr.css */

/* 2651 */   content: ""; }
/* 2652 */ 
/* 2653 */ .fa-paw:before {
/* 2654 */   content: ""; }
/* 2655 */ 
/* 2656 */ .fa-spoon:before {
/* 2657 */   content: ""; }
/* 2658 */ 
/* 2659 */ .fa-cube:before {
/* 2660 */   content: ""; }
/* 2661 */ 
/* 2662 */ .fa-cubes:before {
/* 2663 */   content: ""; }
/* 2664 */ 
/* 2665 */ .fa-behance:before {
/* 2666 */   content: ""; }
/* 2667 */ 
/* 2668 */ .fa-behance-square:before {
/* 2669 */   content: ""; }
/* 2670 */ 
/* 2671 */ .fa-steam:before {
/* 2672 */   content: ""; }
/* 2673 */ 
/* 2674 */ .fa-steam-square:before {
/* 2675 */   content: ""; }
/* 2676 */ 
/* 2677 */ .fa-recycle:before {
/* 2678 */   content: ""; }
/* 2679 */ 
/* 2680 */ .fa-automobile:before,
/* 2681 */ .fa-car:before {
/* 2682 */   content: ""; }
/* 2683 */ 
/* 2684 */ .fa-cab:before,
/* 2685 */ .fa-taxi:before {
/* 2686 */   content: ""; }
/* 2687 */ 
/* 2688 */ .fa-tree:before {
/* 2689 */   content: ""; }
/* 2690 */ 
/* 2691 */ .fa-spotify:before {
/* 2692 */   content: ""; }
/* 2693 */ 
/* 2694 */ .fa-deviantart:before {
/* 2695 */   content: ""; }
/* 2696 */ 
/* 2697 */ .fa-soundcloud:before {
/* 2698 */   content: ""; }
/* 2699 */ 
/* 2700 */ .fa-database:before {

/* style-ltr.css */

/* 2701 */   content: ""; }
/* 2702 */ 
/* 2703 */ .fa-file-pdf-o:before {
/* 2704 */   content: ""; }
/* 2705 */ 
/* 2706 */ .fa-file-word-o:before {
/* 2707 */   content: ""; }
/* 2708 */ 
/* 2709 */ .fa-file-excel-o:before {
/* 2710 */   content: ""; }
/* 2711 */ 
/* 2712 */ .fa-file-powerpoint-o:before {
/* 2713 */   content: ""; }
/* 2714 */ 
/* 2715 */ .fa-file-photo-o:before,
/* 2716 */ .fa-file-picture-o:before,
/* 2717 */ .fa-file-image-o:before {
/* 2718 */   content: ""; }
/* 2719 */ 
/* 2720 */ .fa-file-zip-o:before,
/* 2721 */ .fa-file-archive-o:before {
/* 2722 */   content: ""; }
/* 2723 */ 
/* 2724 */ .fa-file-sound-o:before,
/* 2725 */ .fa-file-audio-o:before {
/* 2726 */   content: ""; }
/* 2727 */ 
/* 2728 */ .fa-file-movie-o:before,
/* 2729 */ .fa-file-video-o:before {
/* 2730 */   content: ""; }
/* 2731 */ 
/* 2732 */ .fa-file-code-o:before {
/* 2733 */   content: ""; }
/* 2734 */ 
/* 2735 */ .fa-vine:before {
/* 2736 */   content: ""; }
/* 2737 */ 
/* 2738 */ .fa-codepen:before {
/* 2739 */   content: ""; }
/* 2740 */ 
/* 2741 */ .fa-jsfiddle:before {
/* 2742 */   content: ""; }
/* 2743 */ 
/* 2744 */ .fa-life-bouy:before,
/* 2745 */ .fa-life-buoy:before,
/* 2746 */ .fa-life-saver:before,
/* 2747 */ .fa-support:before,
/* 2748 */ .fa-life-ring:before {
/* 2749 */   content: ""; }
/* 2750 */ 

/* style-ltr.css */

/* 2751 */ .fa-circle-o-notch:before {
/* 2752 */   content: ""; }
/* 2753 */ 
/* 2754 */ .fa-ra:before,
/* 2755 */ .fa-resistance:before,
/* 2756 */ .fa-rebel:before {
/* 2757 */   content: ""; }
/* 2758 */ 
/* 2759 */ .fa-ge:before,
/* 2760 */ .fa-empire:before {
/* 2761 */   content: ""; }
/* 2762 */ 
/* 2763 */ .fa-git-square:before {
/* 2764 */   content: ""; }
/* 2765 */ 
/* 2766 */ .fa-git:before {
/* 2767 */   content: ""; }
/* 2768 */ 
/* 2769 */ .fa-y-combinator-square:before,
/* 2770 */ .fa-yc-square:before,
/* 2771 */ .fa-hacker-news:before {
/* 2772 */   content: ""; }
/* 2773 */ 
/* 2774 */ .fa-tencent-weibo:before {
/* 2775 */   content: ""; }
/* 2776 */ 
/* 2777 */ .fa-qq:before {
/* 2778 */   content: ""; }
/* 2779 */ 
/* 2780 */ .fa-wechat:before,
/* 2781 */ .fa-weixin:before {
/* 2782 */   content: ""; }
/* 2783 */ 
/* 2784 */ .fa-send:before,
/* 2785 */ .fa-paper-plane:before {
/* 2786 */   content: ""; }
/* 2787 */ 
/* 2788 */ .fa-send-o:before,
/* 2789 */ .fa-paper-plane-o:before {
/* 2790 */   content: ""; }
/* 2791 */ 
/* 2792 */ .fa-history:before {
/* 2793 */   content: ""; }
/* 2794 */ 
/* 2795 */ .fa-circle-thin:before {
/* 2796 */   content: ""; }
/* 2797 */ 
/* 2798 */ .fa-header:before {
/* 2799 */   content: ""; }
/* 2800 */ 

/* style-ltr.css */

/* 2801 */ .fa-paragraph:before {
/* 2802 */   content: ""; }
/* 2803 */ 
/* 2804 */ .fa-sliders:before {
/* 2805 */   content: ""; }
/* 2806 */ 
/* 2807 */ .fa-share-alt:before {
/* 2808 */   content: ""; }
/* 2809 */ 
/* 2810 */ .fa-share-alt-square:before {
/* 2811 */   content: ""; }
/* 2812 */ 
/* 2813 */ .fa-bomb:before {
/* 2814 */   content: ""; }
/* 2815 */ 
/* 2816 */ .fa-soccer-ball-o:before,
/* 2817 */ .fa-futbol-o:before {
/* 2818 */   content: ""; }
/* 2819 */ 
/* 2820 */ .fa-tty:before {
/* 2821 */   content: ""; }
/* 2822 */ 
/* 2823 */ .fa-binoculars:before {
/* 2824 */   content: ""; }
/* 2825 */ 
/* 2826 */ .fa-plug:before {
/* 2827 */   content: ""; }
/* 2828 */ 
/* 2829 */ .fa-slideshare:before {
/* 2830 */   content: ""; }
/* 2831 */ 
/* 2832 */ .fa-twitch:before {
/* 2833 */   content: ""; }
/* 2834 */ 
/* 2835 */ .fa-yelp:before {
/* 2836 */   content: ""; }
/* 2837 */ 
/* 2838 */ .fa-newspaper-o:before {
/* 2839 */   content: ""; }
/* 2840 */ 
/* 2841 */ .fa-wifi:before {
/* 2842 */   content: ""; }
/* 2843 */ 
/* 2844 */ .fa-calculator:before {
/* 2845 */   content: ""; }
/* 2846 */ 
/* 2847 */ .fa-paypal:before {
/* 2848 */   content: ""; }
/* 2849 */ 
/* 2850 */ .fa-google-wallet:before {

/* style-ltr.css */

/* 2851 */   content: ""; }
/* 2852 */ 
/* 2853 */ .fa-cc-visa:before {
/* 2854 */   content: ""; }
/* 2855 */ 
/* 2856 */ .fa-cc-mastercard:before {
/* 2857 */   content: ""; }
/* 2858 */ 
/* 2859 */ .fa-cc-discover:before {
/* 2860 */   content: ""; }
/* 2861 */ 
/* 2862 */ .fa-cc-amex:before {
/* 2863 */   content: ""; }
/* 2864 */ 
/* 2865 */ .fa-cc-paypal:before {
/* 2866 */   content: ""; }
/* 2867 */ 
/* 2868 */ .fa-cc-stripe:before {
/* 2869 */   content: ""; }
/* 2870 */ 
/* 2871 */ .fa-bell-slash:before {
/* 2872 */   content: ""; }
/* 2873 */ 
/* 2874 */ .fa-bell-slash-o:before {
/* 2875 */   content: ""; }
/* 2876 */ 
/* 2877 */ .fa-trash:before {
/* 2878 */   content: ""; }
/* 2879 */ 
/* 2880 */ .fa-copyright:before {
/* 2881 */   content: ""; }
/* 2882 */ 
/* 2883 */ .fa-at:before {
/* 2884 */   content: ""; }
/* 2885 */ 
/* 2886 */ .fa-eyedropper:before {
/* 2887 */   content: ""; }
/* 2888 */ 
/* 2889 */ .fa-paint-brush:before {
/* 2890 */   content: ""; }
/* 2891 */ 
/* 2892 */ .fa-birthday-cake:before {
/* 2893 */   content: ""; }
/* 2894 */ 
/* 2895 */ .fa-area-chart:before {
/* 2896 */   content: ""; }
/* 2897 */ 
/* 2898 */ .fa-pie-chart:before {
/* 2899 */   content: ""; }
/* 2900 */ 

/* style-ltr.css */

/* 2901 */ .fa-line-chart:before {
/* 2902 */   content: ""; }
/* 2903 */ 
/* 2904 */ .fa-lastfm:before {
/* 2905 */   content: ""; }
/* 2906 */ 
/* 2907 */ .fa-lastfm-square:before {
/* 2908 */   content: ""; }
/* 2909 */ 
/* 2910 */ .fa-toggle-off:before {
/* 2911 */   content: ""; }
/* 2912 */ 
/* 2913 */ .fa-toggle-on:before {
/* 2914 */   content: ""; }
/* 2915 */ 
/* 2916 */ .fa-bicycle:before {
/* 2917 */   content: ""; }
/* 2918 */ 
/* 2919 */ .fa-bus:before {
/* 2920 */   content: ""; }
/* 2921 */ 
/* 2922 */ .fa-ioxhost:before {
/* 2923 */   content: ""; }
/* 2924 */ 
/* 2925 */ .fa-angellist:before {
/* 2926 */   content: ""; }
/* 2927 */ 
/* 2928 */ .fa-cc:before {
/* 2929 */   content: ""; }
/* 2930 */ 
/* 2931 */ .fa-shekel:before,
/* 2932 */ .fa-sheqel:before,
/* 2933 */ .fa-ils:before {
/* 2934 */   content: ""; }
/* 2935 */ 
/* 2936 */ .fa-meanpath:before {
/* 2937 */   content: ""; }
/* 2938 */ 
/* 2939 */ .fa-buysellads:before {
/* 2940 */   content: ""; }
/* 2941 */ 
/* 2942 */ .fa-connectdevelop:before {
/* 2943 */   content: ""; }
/* 2944 */ 
/* 2945 */ .fa-dashcube:before {
/* 2946 */   content: ""; }
/* 2947 */ 
/* 2948 */ .fa-forumbee:before {
/* 2949 */   content: ""; }
/* 2950 */ 

/* style-ltr.css */

/* 2951 */ .fa-leanpub:before {
/* 2952 */   content: ""; }
/* 2953 */ 
/* 2954 */ .fa-sellsy:before {
/* 2955 */   content: ""; }
/* 2956 */ 
/* 2957 */ .fa-shirtsinbulk:before {
/* 2958 */   content: ""; }
/* 2959 */ 
/* 2960 */ .fa-simplybuilt:before {
/* 2961 */   content: ""; }
/* 2962 */ 
/* 2963 */ .fa-skyatlas:before {
/* 2964 */   content: ""; }
/* 2965 */ 
/* 2966 */ .fa-cart-plus:before {
/* 2967 */   content: ""; }
/* 2968 */ 
/* 2969 */ .fa-cart-arrow-down:before {
/* 2970 */   content: ""; }
/* 2971 */ 
/* 2972 */ .fa-diamond:before {
/* 2973 */   content: ""; }
/* 2974 */ 
/* 2975 */ .fa-ship:before {
/* 2976 */   content: ""; }
/* 2977 */ 
/* 2978 */ .fa-user-secret:before {
/* 2979 */   content: ""; }
/* 2980 */ 
/* 2981 */ .fa-motorcycle:before {
/* 2982 */   content: ""; }
/* 2983 */ 
/* 2984 */ .fa-street-view:before {
/* 2985 */   content: ""; }
/* 2986 */ 
/* 2987 */ .fa-heartbeat:before {
/* 2988 */   content: ""; }
/* 2989 */ 
/* 2990 */ .fa-venus:before {
/* 2991 */   content: ""; }
/* 2992 */ 
/* 2993 */ .fa-mars:before {
/* 2994 */   content: ""; }
/* 2995 */ 
/* 2996 */ .fa-mercury:before {
/* 2997 */   content: ""; }
/* 2998 */ 
/* 2999 */ .fa-intersex:before,
/* 3000 */ .fa-transgender:before {

/* style-ltr.css */

/* 3001 */   content: ""; }
/* 3002 */ 
/* 3003 */ .fa-transgender-alt:before {
/* 3004 */   content: ""; }
/* 3005 */ 
/* 3006 */ .fa-venus-double:before {
/* 3007 */   content: ""; }
/* 3008 */ 
/* 3009 */ .fa-mars-double:before {
/* 3010 */   content: ""; }
/* 3011 */ 
/* 3012 */ .fa-venus-mars:before {
/* 3013 */   content: ""; }
/* 3014 */ 
/* 3015 */ .fa-mars-stroke:before {
/* 3016 */   content: ""; }
/* 3017 */ 
/* 3018 */ .fa-mars-stroke-v:before {
/* 3019 */   content: ""; }
/* 3020 */ 
/* 3021 */ .fa-mars-stroke-h:before {
/* 3022 */   content: ""; }
/* 3023 */ 
/* 3024 */ .fa-neuter:before {
/* 3025 */   content: ""; }
/* 3026 */ 
/* 3027 */ .fa-genderless:before {
/* 3028 */   content: ""; }
/* 3029 */ 
/* 3030 */ .fa-facebook-official:before {
/* 3031 */   content: ""; }
/* 3032 */ 
/* 3033 */ .fa-pinterest-p:before {
/* 3034 */   content: ""; }
/* 3035 */ 
/* 3036 */ .fa-whatsapp:before {
/* 3037 */   content: ""; }
/* 3038 */ 
/* 3039 */ .fa-server:before {
/* 3040 */   content: ""; }
/* 3041 */ 
/* 3042 */ .fa-user-plus:before {
/* 3043 */   content: ""; }
/* 3044 */ 
/* 3045 */ .fa-user-times:before {
/* 3046 */   content: ""; }
/* 3047 */ 
/* 3048 */ .fa-hotel:before,
/* 3049 */ .fa-bed:before {
/* 3050 */   content: ""; }

/* style-ltr.css */

/* 3051 */ 
/* 3052 */ .fa-viacoin:before {
/* 3053 */   content: ""; }
/* 3054 */ 
/* 3055 */ .fa-train:before {
/* 3056 */   content: ""; }
/* 3057 */ 
/* 3058 */ .fa-subway:before {
/* 3059 */   content: ""; }
/* 3060 */ 
/* 3061 */ .fa-medium:before {
/* 3062 */   content: ""; }
/* 3063 */ 
/* 3064 */ .fa-yc:before,
/* 3065 */ .fa-y-combinator:before {
/* 3066 */   content: ""; }
/* 3067 */ 
/* 3068 */ .fa-optin-monster:before {
/* 3069 */   content: ""; }
/* 3070 */ 
/* 3071 */ .fa-opencart:before {
/* 3072 */   content: ""; }
/* 3073 */ 
/* 3074 */ .fa-expeditedssl:before {
/* 3075 */   content: ""; }
/* 3076 */ 
/* 3077 */ .fa-battery-4:before,
/* 3078 */ .fa-battery:before,
/* 3079 */ .fa-battery-full:before {
/* 3080 */   content: ""; }
/* 3081 */ 
/* 3082 */ .fa-battery-3:before,
/* 3083 */ .fa-battery-three-quarters:before {
/* 3084 */   content: ""; }
/* 3085 */ 
/* 3086 */ .fa-battery-2:before,
/* 3087 */ .fa-battery-half:before {
/* 3088 */   content: ""; }
/* 3089 */ 
/* 3090 */ .fa-battery-1:before,
/* 3091 */ .fa-battery-quarter:before {
/* 3092 */   content: ""; }
/* 3093 */ 
/* 3094 */ .fa-battery-0:before,
/* 3095 */ .fa-battery-empty:before {
/* 3096 */   content: ""; }
/* 3097 */ 
/* 3098 */ .fa-mouse-pointer:before {
/* 3099 */   content: ""; }
/* 3100 */ 

/* style-ltr.css */

/* 3101 */ .fa-i-cursor:before {
/* 3102 */   content: ""; }
/* 3103 */ 
/* 3104 */ .fa-object-group:before {
/* 3105 */   content: ""; }
/* 3106 */ 
/* 3107 */ .fa-object-ungroup:before {
/* 3108 */   content: ""; }
/* 3109 */ 
/* 3110 */ .fa-sticky-note:before {
/* 3111 */   content: ""; }
/* 3112 */ 
/* 3113 */ .fa-sticky-note-o:before {
/* 3114 */   content: ""; }
/* 3115 */ 
/* 3116 */ .fa-cc-jcb:before {
/* 3117 */   content: ""; }
/* 3118 */ 
/* 3119 */ .fa-cc-diners-club:before {
/* 3120 */   content: ""; }
/* 3121 */ 
/* 3122 */ .fa-clone:before {
/* 3123 */   content: ""; }
/* 3124 */ 
/* 3125 */ .fa-balance-scale:before {
/* 3126 */   content: ""; }
/* 3127 */ 
/* 3128 */ .fa-hourglass-o:before {
/* 3129 */   content: ""; }
/* 3130 */ 
/* 3131 */ .fa-hourglass-1:before,
/* 3132 */ .fa-hourglass-start:before {
/* 3133 */   content: ""; }
/* 3134 */ 
/* 3135 */ .fa-hourglass-2:before,
/* 3136 */ .fa-hourglass-half:before {
/* 3137 */   content: ""; }
/* 3138 */ 
/* 3139 */ .fa-hourglass-3:before,
/* 3140 */ .fa-hourglass-end:before {
/* 3141 */   content: ""; }
/* 3142 */ 
/* 3143 */ .fa-hourglass:before {
/* 3144 */   content: ""; }
/* 3145 */ 
/* 3146 */ .fa-hand-grab-o:before,
/* 3147 */ .fa-hand-rock-o:before {
/* 3148 */   content: ""; }
/* 3149 */ 
/* 3150 */ .fa-hand-stop-o:before,

/* style-ltr.css */

/* 3151 */ .fa-hand-paper-o:before {
/* 3152 */   content: ""; }
/* 3153 */ 
/* 3154 */ .fa-hand-scissors-o:before {
/* 3155 */   content: ""; }
/* 3156 */ 
/* 3157 */ .fa-hand-lizard-o:before {
/* 3158 */   content: ""; }
/* 3159 */ 
/* 3160 */ .fa-hand-spock-o:before {
/* 3161 */   content: ""; }
/* 3162 */ 
/* 3163 */ .fa-hand-pointer-o:before {
/* 3164 */   content: ""; }
/* 3165 */ 
/* 3166 */ .fa-hand-peace-o:before {
/* 3167 */   content: ""; }
/* 3168 */ 
/* 3169 */ .fa-trademark:before {
/* 3170 */   content: ""; }
/* 3171 */ 
/* 3172 */ .fa-registered:before {
/* 3173 */   content: ""; }
/* 3174 */ 
/* 3175 */ .fa-creative-commons:before {
/* 3176 */   content: ""; }
/* 3177 */ 
/* 3178 */ .fa-gg:before {
/* 3179 */   content: ""; }
/* 3180 */ 
/* 3181 */ .fa-gg-circle:before {
/* 3182 */   content: ""; }
/* 3183 */ 
/* 3184 */ .fa-tripadvisor:before {
/* 3185 */   content: ""; }
/* 3186 */ 
/* 3187 */ .fa-odnoklassniki:before {
/* 3188 */   content: ""; }
/* 3189 */ 
/* 3190 */ .fa-odnoklassniki-square:before {
/* 3191 */   content: ""; }
/* 3192 */ 
/* 3193 */ .fa-get-pocket:before {
/* 3194 */   content: ""; }
/* 3195 */ 
/* 3196 */ .fa-wikipedia-w:before {
/* 3197 */   content: ""; }
/* 3198 */ 
/* 3199 */ .fa-safari:before {
/* 3200 */   content: ""; }

/* style-ltr.css */

/* 3201 */ 
/* 3202 */ .fa-chrome:before {
/* 3203 */   content: ""; }
/* 3204 */ 
/* 3205 */ .fa-firefox:before {
/* 3206 */   content: ""; }
/* 3207 */ 
/* 3208 */ .fa-opera:before {
/* 3209 */   content: ""; }
/* 3210 */ 
/* 3211 */ .fa-internet-explorer:before {
/* 3212 */   content: ""; }
/* 3213 */ 
/* 3214 */ .fa-tv:before,
/* 3215 */ .fa-television:before {
/* 3216 */   content: ""; }
/* 3217 */ 
/* 3218 */ .fa-contao:before {
/* 3219 */   content: ""; }
/* 3220 */ 
/* 3221 */ .fa-500px:before {
/* 3222 */   content: ""; }
/* 3223 */ 
/* 3224 */ .fa-amazon:before {
/* 3225 */   content: ""; }
/* 3226 */ 
/* 3227 */ .fa-calendar-plus-o:before {
/* 3228 */   content: ""; }
/* 3229 */ 
/* 3230 */ .fa-calendar-minus-o:before {
/* 3231 */   content: ""; }
/* 3232 */ 
/* 3233 */ .fa-calendar-times-o:before {
/* 3234 */   content: ""; }
/* 3235 */ 
/* 3236 */ .fa-calendar-check-o:before {
/* 3237 */   content: ""; }
/* 3238 */ 
/* 3239 */ .fa-industry:before {
/* 3240 */   content: ""; }
/* 3241 */ 
/* 3242 */ .fa-map-pin:before {
/* 3243 */   content: ""; }
/* 3244 */ 
/* 3245 */ .fa-map-signs:before {
/* 3246 */   content: ""; }
/* 3247 */ 
/* 3248 */ .fa-map-o:before {
/* 3249 */   content: ""; }
/* 3250 */ 

/* style-ltr.css */

/* 3251 */ .fa-map:before {
/* 3252 */   content: ""; }
/* 3253 */ 
/* 3254 */ .fa-commenting:before {
/* 3255 */   content: ""; }
/* 3256 */ 
/* 3257 */ .fa-commenting-o:before {
/* 3258 */   content: ""; }
/* 3259 */ 
/* 3260 */ .fa-houzz:before {
/* 3261 */   content: ""; }
/* 3262 */ 
/* 3263 */ .fa-vimeo:before {
/* 3264 */   content: ""; }
/* 3265 */ 
/* 3266 */ .fa-black-tie:before {
/* 3267 */   content: ""; }
/* 3268 */ 
/* 3269 */ .fa-fonticons:before {
/* 3270 */   content: ""; }
/* 3271 */ 
/* 3272 */ .fa-reddit-alien:before {
/* 3273 */   content: ""; }
/* 3274 */ 
/* 3275 */ .fa-edge:before {
/* 3276 */   content: ""; }
/* 3277 */ 
/* 3278 */ .fa-credit-card-alt:before {
/* 3279 */   content: ""; }
/* 3280 */ 
/* 3281 */ .fa-codiepie:before {
/* 3282 */   content: ""; }
/* 3283 */ 
/* 3284 */ .fa-modx:before {
/* 3285 */   content: ""; }
/* 3286 */ 
/* 3287 */ .fa-fort-awesome:before {
/* 3288 */   content: ""; }
/* 3289 */ 
/* 3290 */ .fa-usb:before {
/* 3291 */   content: ""; }
/* 3292 */ 
/* 3293 */ .fa-product-hunt:before {
/* 3294 */   content: ""; }
/* 3295 */ 
/* 3296 */ .fa-mixcloud:before {
/* 3297 */   content: ""; }
/* 3298 */ 
/* 3299 */ .fa-scribd:before {
/* 3300 */   content: ""; }

/* style-ltr.css */

/* 3301 */ 
/* 3302 */ .fa-pause-circle:before {
/* 3303 */   content: ""; }
/* 3304 */ 
/* 3305 */ .fa-pause-circle-o:before {
/* 3306 */   content: ""; }
/* 3307 */ 
/* 3308 */ .fa-stop-circle:before {
/* 3309 */   content: ""; }
/* 3310 */ 
/* 3311 */ .fa-stop-circle-o:before {
/* 3312 */   content: ""; }
/* 3313 */ 
/* 3314 */ .fa-shopping-bag:before {
/* 3315 */   content: ""; }
/* 3316 */ 
/* 3317 */ .fa-shopping-basket:before {
/* 3318 */   content: ""; }
/* 3319 */ 
/* 3320 */ .fa-hashtag:before {
/* 3321 */   content: ""; }
/* 3322 */ 
/* 3323 */ .fa-bluetooth:before {
/* 3324 */   content: ""; }
/* 3325 */ 
/* 3326 */ .fa-bluetooth-b:before {
/* 3327 */   content: ""; }
/* 3328 */ 
/* 3329 */ .fa-percent:before {
/* 3330 */   content: ""; }
/* 3331 */ 
/* 3332 */ .fa-gitlab:before {
/* 3333 */   content: ""; }
/* 3334 */ 
/* 3335 */ .fa-wpbeginner:before {
/* 3336 */   content: ""; }
/* 3337 */ 
/* 3338 */ .fa-wpforms:before {
/* 3339 */   content: ""; }
/* 3340 */ 
/* 3341 */ .fa-envira:before {
/* 3342 */   content: ""; }
/* 3343 */ 
/* 3344 */ .fa-universal-access:before {
/* 3345 */   content: ""; }
/* 3346 */ 
/* 3347 */ .fa-wheelchair-alt:before {
/* 3348 */   content: ""; }
/* 3349 */ 
/* 3350 */ .fa-question-circle-o:before {

/* style-ltr.css */

/* 3351 */   content: ""; }
/* 3352 */ 
/* 3353 */ .fa-blind:before {
/* 3354 */   content: ""; }
/* 3355 */ 
/* 3356 */ .fa-audio-description:before {
/* 3357 */   content: ""; }
/* 3358 */ 
/* 3359 */ .fa-volume-control-phone:before {
/* 3360 */   content: ""; }
/* 3361 */ 
/* 3362 */ .fa-braille:before {
/* 3363 */   content: ""; }
/* 3364 */ 
/* 3365 */ .fa-assistive-listening-systems:before {
/* 3366 */   content: ""; }
/* 3367 */ 
/* 3368 */ .fa-asl-interpreting:before,
/* 3369 */ .fa-american-sign-language-interpreting:before {
/* 3370 */   content: ""; }
/* 3371 */ 
/* 3372 */ .fa-deafness:before,
/* 3373 */ .fa-hard-of-hearing:before,
/* 3374 */ .fa-deaf:before {
/* 3375 */   content: ""; }
/* 3376 */ 
/* 3377 */ .fa-glide:before {
/* 3378 */   content: ""; }
/* 3379 */ 
/* 3380 */ .fa-glide-g:before {
/* 3381 */   content: ""; }
/* 3382 */ 
/* 3383 */ .fa-signing:before,
/* 3384 */ .fa-sign-language:before {
/* 3385 */   content: ""; }
/* 3386 */ 
/* 3387 */ .fa-low-vision:before {
/* 3388 */   content: ""; }
/* 3389 */ 
/* 3390 */ .fa-viadeo:before {
/* 3391 */   content: ""; }
/* 3392 */ 
/* 3393 */ .fa-viadeo-square:before {
/* 3394 */   content: ""; }
/* 3395 */ 
/* 3396 */ .fa-snapchat:before {
/* 3397 */   content: ""; }
/* 3398 */ 
/* 3399 */ .fa-snapchat-ghost:before {
/* 3400 */   content: ""; }

/* style-ltr.css */

/* 3401 */ 
/* 3402 */ .fa-snapchat-square:before {
/* 3403 */   content: ""; }
/* 3404 */ 
/* 3405 */ .fa-pied-piper:before {
/* 3406 */   content: ""; }
/* 3407 */ 
/* 3408 */ .fa-first-order:before {
/* 3409 */   content: ""; }
/* 3410 */ 
/* 3411 */ .fa-yoast:before {
/* 3412 */   content: ""; }
/* 3413 */ 
/* 3414 */ .fa-themeisle:before {
/* 3415 */   content: ""; }
/* 3416 */ 
/* 3417 */ .fa-google-plus-circle:before,
/* 3418 */ .fa-google-plus-official:before {
/* 3419 */   content: ""; }
/* 3420 */ 
/* 3421 */ .fa-fa:before,
/* 3422 */ .fa-font-awesome:before {
/* 3423 */   content: ""; }
/* 3424 */ 
/* 3425 */ .fa-handshake-o:before {
/* 3426 */   content: ""; }
/* 3427 */ 
/* 3428 */ .fa-envelope-open:before {
/* 3429 */   content: ""; }
/* 3430 */ 
/* 3431 */ .fa-envelope-open-o:before {
/* 3432 */   content: ""; }
/* 3433 */ 
/* 3434 */ .fa-linode:before {
/* 3435 */   content: ""; }
/* 3436 */ 
/* 3437 */ .fa-address-book:before {
/* 3438 */   content: ""; }
/* 3439 */ 
/* 3440 */ .fa-address-book-o:before {
/* 3441 */   content: ""; }
/* 3442 */ 
/* 3443 */ .fa-vcard:before,
/* 3444 */ .fa-address-card:before {
/* 3445 */   content: ""; }
/* 3446 */ 
/* 3447 */ .fa-vcard-o:before,
/* 3448 */ .fa-address-card-o:before {
/* 3449 */   content: ""; }
/* 3450 */ 

/* style-ltr.css */

/* 3451 */ .fa-user-circle:before {
/* 3452 */   content: ""; }
/* 3453 */ 
/* 3454 */ .fa-user-circle-o:before {
/* 3455 */   content: ""; }
/* 3456 */ 
/* 3457 */ .fa-user-o:before {
/* 3458 */   content: ""; }
/* 3459 */ 
/* 3460 */ .fa-id-badge:before {
/* 3461 */   content: ""; }
/* 3462 */ 
/* 3463 */ .fa-drivers-license:before,
/* 3464 */ .fa-id-card:before {
/* 3465 */   content: ""; }
/* 3466 */ 
/* 3467 */ .fa-drivers-license-o:before,
/* 3468 */ .fa-id-card-o:before {
/* 3469 */   content: ""; }
/* 3470 */ 
/* 3471 */ .fa-quora:before {
/* 3472 */   content: ""; }
/* 3473 */ 
/* 3474 */ .fa-free-code-camp:before {
/* 3475 */   content: ""; }
/* 3476 */ 
/* 3477 */ .fa-telegram:before {
/* 3478 */   content: ""; }
/* 3479 */ 
/* 3480 */ .fa-thermometer-4:before,
/* 3481 */ .fa-thermometer:before,
/* 3482 */ .fa-thermometer-full:before {
/* 3483 */   content: ""; }
/* 3484 */ 
/* 3485 */ .fa-thermometer-3:before,
/* 3486 */ .fa-thermometer-three-quarters:before {
/* 3487 */   content: ""; }
/* 3488 */ 
/* 3489 */ .fa-thermometer-2:before,
/* 3490 */ .fa-thermometer-half:before {
/* 3491 */   content: ""; }
/* 3492 */ 
/* 3493 */ .fa-thermometer-1:before,
/* 3494 */ .fa-thermometer-quarter:before {
/* 3495 */   content: ""; }
/* 3496 */ 
/* 3497 */ .fa-thermometer-0:before,
/* 3498 */ .fa-thermometer-empty:before {
/* 3499 */   content: ""; }
/* 3500 */ 

/* style-ltr.css */

/* 3501 */ .fa-shower:before {
/* 3502 */   content: ""; }
/* 3503 */ 
/* 3504 */ .fa-bathtub:before,
/* 3505 */ .fa-s15:before,
/* 3506 */ .fa-bath:before {
/* 3507 */   content: ""; }
/* 3508 */ 
/* 3509 */ .fa-podcast:before {
/* 3510 */   content: ""; }
/* 3511 */ 
/* 3512 */ .fa-window-maximize:before {
/* 3513 */   content: ""; }
/* 3514 */ 
/* 3515 */ .fa-window-minimize:before {
/* 3516 */   content: ""; }
/* 3517 */ 
/* 3518 */ .fa-window-restore:before {
/* 3519 */   content: ""; }
/* 3520 */ 
/* 3521 */ .fa-times-rectangle:before,
/* 3522 */ .fa-window-close:before {
/* 3523 */   content: ""; }
/* 3524 */ 
/* 3525 */ .fa-times-rectangle-o:before,
/* 3526 */ .fa-window-close-o:before {
/* 3527 */   content: ""; }
/* 3528 */ 
/* 3529 */ .fa-bandcamp:before {
/* 3530 */   content: ""; }
/* 3531 */ 
/* 3532 */ .fa-grav:before {
/* 3533 */   content: ""; }
/* 3534 */ 
/* 3535 */ .fa-etsy:before {
/* 3536 */   content: ""; }
/* 3537 */ 
/* 3538 */ .fa-imdb:before {
/* 3539 */   content: ""; }
/* 3540 */ 
/* 3541 */ .fa-ravelry:before {
/* 3542 */   content: ""; }
/* 3543 */ 
/* 3544 */ .fa-eercast:before {
/* 3545 */   content: ""; }
/* 3546 */ 
/* 3547 */ .fa-microchip:before {
/* 3548 */   content: ""; }
/* 3549 */ 
/* 3550 */ .fa-snowflake-o:before {

/* style-ltr.css */

/* 3551 */   content: ""; }
/* 3552 */ 
/* 3553 */ .fa-superpowers:before {
/* 3554 */   content: ""; }
/* 3555 */ 
/* 3556 */ .fa-wpexplorer:before {
/* 3557 */   content: ""; }
/* 3558 */ 
/* 3559 */ .fa-meetup:before {
/* 3560 */   content: ""; }
/* 3561 */ 
/* 3562 */ .sr-only {
/* 3563 */   position: absolute;
/* 3564 */   width: 1px;
/* 3565 */   height: 1px;
/* 3566 */   padding: 0;
/* 3567 */   margin: -1px;
/* 3568 */   overflow: hidden;
/* 3569 */   clip: rect(0, 0, 0, 0);
/* 3570 */   border: 0; }
/* 3571 */ 
/* 3572 */ .sr-only-focusable:active, .sr-only-focusable:focus {
/* 3573 */   position: static;
/* 3574 */   width: auto;
/* 3575 */   height: auto;
/* 3576 */   margin: 0;
/* 3577 */   overflow: visible;
/* 3578 */   clip: auto; }
/* 3579 */ 
/* 3580 */ /*--------------------------------------------------------------
/* 3581 *| 5.0 - Modules or Components
/* 3582 *| --------------------------------------------------------------*/
/* 3583 */ /*----------------------------------------
/* 3584 *| Modules
/* 3585 *| -----------------------------------------*/
/* 3586 */ .site-brand {
/* 3587 */   position: relative; }
/* 3588 */   .site-brand:after {
/* 3589 */     display: table;
/* 3590 */     clear: both;
/* 3591 */     content: " "; }
/* 3592 */   .site-brand h1, .site-brand h2, .site-brand h3, .site-brand h4, .site-brand h5, .site-brand h6 {
/* 3593 */     font-size: 2.25rem;
/* 3594 */     padding: 0;
/* 3595 */     margin: 0; }
/* 3596 */   @media screen and (min-width: 768px) {
/* 3597 */     .site-brand {
/* 3598 */       padding: 40px 0; } }
/* 3599 */ 
/* 3600 */ .site-logo, .site-heading {

/* style-ltr.css */

/* 3601 */   display: block;
/* 3602 */   text-align: inherit; }
/* 3603 */   .site-logo img, .site-heading img {
/* 3604 */     display: inline-block;
/* 3605 */     -webkit-transition: all 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
/* 3606 */     -moz-transition: all 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
/* 3607 */     transition: all 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955); }
/* 3608 */   @media screen and (max-width: 767px) {
/* 3609 */     .site-logo, .site-heading {
/* 3610 */       display: inline-block;
/* 3611 */       vertical-align: middle;
/* 3612 */       vertical-align: -webkit-baseline-middle;
/* 3613 */       padding-top: 0 !important;
/* 3614 */       padding-bottom: 0 !important;
/* 3615 */       float: left; }
/* 3616 */       .site-logo + p, .site-heading + p {
/* 3617 */         float: left;
/* 3618 */         clear: left;
/* 3619 */         margin-bottom: 0; }
/* 3620 */       .site-logo + a, .site-logo + p + a, .site-heading + a, .site-heading + p + a {
/* 3621 */         position: absolute;
/* 3622 */         top: 50%;
/* 3623 */         right: 10px;
/* 3624 */         transform: translate(0, -50%);
/* 3625 */         -webkit-transform: translate(0, -50%); }
/* 3626 */       .site-logo img, .site-heading img {
/* 3627 */         max-width: 200px;
/* 3628 */         max-height: 30px;
/* 3629 */         width: auto;
/* 3630 */         height: auto; } }
/* 3631 */ 
/* 3632 */ /*--------------------------------------------------------------
/* 3633 *| Primary. Secondary, Social and Mobile Navigation
/* 3634 *| --------------------------------------------------------------*/
/* 3635 */ .primary-navigation {
/* 3636 */   display: block;
/* 3637 */   z-index: 100;
/* 3638 */   background-color: #000000;
/* 3639 */   color: #ffffff; }
/* 3640 */   .primary-navigation a {
/* 3641 */     position: relative;
/* 3642 */     display: block;
/* 3643 */     vertical-align: middle;
/* 3644 */     font-family: inherit;
/* 3645 */     font-size: 0.9375rem;
/* 3646 */     line-height: 3.33333em;
/* 3647 */     font-weight: inherit;
/* 3648 */     color: currentColor;
/* 3649 */     text-align: inherit;
/* 3650 */     text-decoration: none;

/* style-ltr.css */

/* 3651 */     white-space: nowrap;
/* 3652 */     text-align: left;
/* 3653 */     padding: 0 1.33333em;
/* 3654 */     cursor: pointer;
/* 3655 */     -webkit-transition: all 0.3s ease-in-out;
/* 3656 */     -moz-transition: all 0.3s ease-in-out;
/* 3657 */     transition: all 0.3s ease-in-out; }
/* 3658 */     .primary-navigation a:hover {
/* 3659 */       opacity: 0.8;
/* 3660 */       color: currentColor; }
/* 3661 */   .primary-navigation > ul > li > a, .primary-navigation > ul > li > a:before {
/* 3662 */     line-height: 3.33333em; }
/* 3663 */   .primary-navigation ul {
/* 3664 */     list-style: none;
/* 3665 */     display: block;
/* 3666 */     margin: 0;
/* 3667 */     padding: 0;
/* 3668 */     background-color: inherit; }
/* 3669 */     .primary-navigation ul li {
/* 3670 */       display: block;
/* 3671 */       background-color: inherit; }
/* 3672 */       .primary-navigation ul li ul li a {
/* 3673 */         min-width: 11.25em; }
/* 3674 */       .primary-navigation ul li ul {
/* 3675 */         display: none; }
/* 3676 */   @media screen and (min-width: 768px) {
/* 3677 */     .primary-navigation {
/* 3678 */       display: inline-block; }
/* 3679 */       .primary-navigation .menu-item-has-children > a {
/* 3680 */         padding-right: 3.33333em; }
/* 3681 */         .primary-navigation .menu-item-has-children > a:before {
/* 3682 */           position: absolute;
/* 3683 */           top: 0;
/* 3684 */           right: 3px;
/* 3685 */           display: inline-block;
/* 3686 */           padding: 0 0.66667em;
/* 3687 */           font-family: FontAwesome;
/* 3688 */           font-size: 0.9375rem;
/* 3689 */           line-height: 3.33333em;
/* 3690 */           content: "\f107"; }
/* 3691 */       .primary-navigation .menu-item-has-children > .menu-item-arrow {
/* 3692 */         display: none; }
/* 3693 */       .primary-navigation > ul > li.menu-item-has-children > a:before {
/* 3694 */         line-height: 3.33333em; }
/* 3695 */       .primary-navigation ul {
/* 3696 */         list-style: none;
/* 3697 */         margin: 0;
/* 3698 */         padding: 0; }
/* 3699 */         .primary-navigation ul li {
/* 3700 */           position: relative;

/* style-ltr.css */

/* 3701 */           display: inline-block; }
/* 3702 */           .primary-navigation ul li:not(.mega-menu):hover > ul {
/* 3703 */             display: block; }
/* 3704 */       .primary-navigation .sub-menu {
/* 3705 */         position: absolute;
/* 3706 */         left: 0;
/* 3707 */         top: calc(100% - 0px);
/* 3708 */         z-index: 1;
/* 3709 */         display: none;
/* 3710 */         -webkit-animation-name: fadeInUp;
/* 3711 */         -moz-animation-name: fadeInUp;
/* 3712 */         animation-name: fadeInUp;
/* 3713 */         -webkit-animation-duration: 0.3s;
/* 3714 */         -moz-animation-duration: 0.3s;
/* 3715 */         animation-duration: 0.3s; }
/* 3716 */         .primary-navigation .sub-menu li {
/* 3717 */           position: relative;
/* 3718 */           display: block; }
/* 3719 */           .primary-navigation .sub-menu li a:not(.mega-menu-link):hover {
/* 3720 */             background-color: rgba(255, 255, 255, 0.12); }
/* 3721 */           .primary-navigation .sub-menu li:not(:last-child) a {
/* 3722 */             border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
/* 3723 */           .primary-navigation .sub-menu li.menu-item-has-children > a:before {
/* 3724 */             content: "\f105"; }
/* 3725 */         .primary-navigation .sub-menu li:last-child > a {
/* 3726 */           border-bottom-width: 0; }
/* 3727 */         .primary-navigation .sub-menu .sub-menu {
/* 3728 */           top: -1px;
/* 3729 */           left: 100%;
/* 3730 */           right: auto; }
/* 3731 */       .primary-navigation > ul > li:nth-child(-n+50):nth-child(n+5):not(.mega-menu) .sub-menu {
/* 3732 */         position: absolute;
/* 3733 */         top: 100%;
/* 3734 */         right: 0;
/* 3735 */         left: auto; }
/* 3736 */         .primary-navigation > ul > li:nth-child(-n+50):nth-child(n+5):not(.mega-menu) .sub-menu .sub-menu {
/* 3737 */           top: -1px;
/* 3738 */           left: auto;
/* 3739 */           right: 100%; } }
/* 3740 */   @media screen and (max-width: 767px) {
/* 3741 */     .primary-navigation .menu-item-has-children {
/* 3742 */       position: relative; }
/* 3743 */       .primary-navigation .menu-item-has-children > .menu-item-arrow {
/* 3744 */         position: absolute;
/* 3745 */         top: 3px;
/* 3746 */         right: 3px;
/* 3747 */         display: inline-block;
/* 3748 */         padding: 0 0.625em;
/* 3749 */         font-family: FontAwesome;
/* 3750 */         font-size: 1rem;

/* style-ltr.css */

/* 3751 */         line-height: 3.125em;
/* 3752 */         cursor: pointer;
/* 3753 */         text-rendering: auto;
/* 3754 */         -webkit-font-smoothing: antialiased;
/* 3755 */         -moz-osx-font-smoothing: grayscale; }
/* 3756 */         .primary-navigation .menu-item-has-children > .menu-item-arrow:before {
/* 3757 */           content: "\f107"; } }
/* 3758 */ 
/* 3759 */ .social-navigation, .author-navigation {
/* 3760 */   display: inline-block; }
/* 3761 */   .social-navigation a, .author-navigation a {
/* 3762 */     position: relative;
/* 3763 */     display: block;
/* 3764 */     font-family: inherit;
/* 3765 */     font-size: 0.875rem;
/* 3766 */     line-height: 3.57143em;
/* 3767 */     font-weight: 400;
/* 3768 */     color: inherit;
/* 3769 */     text-transform: uppercase;
/* 3770 */     text-decoration: none;
/* 3771 */     text-align: inherit;
/* 3772 */     white-space: nowrap;
/* 3773 */     text-align: left;
/* 3774 */     padding: 0 1.42857em;
/* 3775 */     -webkit-transition: all 0.3s ease-in-out;
/* 3776 */     -moz-transition: all 0.3s ease-in-out;
/* 3777 */     transition: all 0.3s ease-in-out; }
/* 3778 */   .social-navigation a:hover, .author-navigation a:hover, .social-navigation a:focus, .author-navigation a:focus, .social-navigation a:active, .author-navigation a:active {
/* 3779 */     color: inherit; }
/* 3780 */   .social-navigation ul, .author-navigation ul {
/* 3781 */     display: block;
/* 3782 */     list-style: none;
/* 3783 */     margin: 0;
/* 3784 */     padding: 0; }
/* 3785 */     .social-navigation ul li, .author-navigation ul li {
/* 3786 */       position: relative;
/* 3787 */       display: block; }
/* 3788 */   @media screen and (min-width: 768px) {
/* 3789 */     .social-navigation a, .author-navigation a {
/* 3790 */       padding: 0 5px; }
/* 3791 */     .social-navigation ul, .author-navigation ul {
/* 3792 */       display: inline-block; }
/* 3793 */       .social-navigation ul li, .author-navigation ul li {
/* 3794 */         display: inline-block;
/* 3795 */         padding-left: 1px;
/* 3796 */         padding-right: 1px; } }
/* 3797 */   .social-navigation.default-colors, .default-colors.author-navigation {
/* 3798 */     color: inherit; }
/* 3799 */   .social-navigation.theme-colors, .theme-colors.author-navigation {
/* 3800 */     color: #bf9e3b; }

/* style-ltr.css */

/* 3801 */   .social-navigation.original-colors .fa-facebook, .original-colors.author-navigation .fa-facebook {
/* 3802 */     color: #3b5998; }
/* 3803 */   .social-navigation.original-colors .fa-twitter, .original-colors.author-navigation .fa-twitter {
/* 3804 */     color: #00aced; }
/* 3805 */   .social-navigation.original-colors .fa-instagram, .original-colors.author-navigation .fa-instagram {
/* 3806 */     color: #125688; }
/* 3807 */   .social-navigation.original-colors .fa-pinterest-p, .original-colors.author-navigation .fa-pinterest-p {
/* 3808 */     color: #cb2027; }
/* 3809 */   .social-navigation.original-colors .fa-google-plus, .original-colors.author-navigation .fa-google-plus {
/* 3810 */     color: #dd4b39; }
/* 3811 */   .social-navigation.original-colors .fa-linkedin, .original-colors.author-navigation .fa-linkedin {
/* 3812 */     color: #007bb5; }
/* 3813 */   .social-navigation.original-colors .fa-youtube, .original-colors.author-navigation .fa-youtube {
/* 3814 */     color: #bb0000; }
/* 3815 */   .social-navigation.original-colors .fa-vimeo, .original-colors.author-navigation .fa-vimeo {
/* 3816 */     color: #17B3E8; }
/* 3817 */   .social-navigation.original-colors .fa-skype, .original-colors.author-navigation .fa-skype {
/* 3818 */     color: #0BBFF2; }
/* 3819 */   .social-navigation.original-colors .fa-dribbble, .original-colors.author-navigation .fa-dribbble {
/* 3820 */     color: #EA4C89; }
/* 3821 */   .social-navigation.original-colors .fa-tumblr, .original-colors.author-navigation .fa-tumblr {
/* 3822 */     color: #32506d; }
/* 3823 */   .social-navigation.original-colors .fa-vk, .original-colors.author-navigation .fa-vk {
/* 3824 */     color: #527498; }
/* 3825 */   .social-navigation.original-colors .fa-buffer, .original-colors.author-navigation .fa-buffer {
/* 3826 */     color: #000000; }
/* 3827 */   .social-navigation.original-colors .fa-rss, .original-colors.author-navigation .fa-rss, .social-navigation.original-colors .widget_rss .widget-title .rsswidget, .widget_rss .widget-title .social-navigation.original-colors .rsswidget, .original-colors.author-navigation .widget_rss .widget-title .rsswidget, .widget_rss .widget-title .original-colors.author-navigation .rsswidget {
/* 3828 */     color: #FF9900; }
/* 3829 */   @media screen and (max-width: 767px) {
/* 3830 */     .social-navigation ul, .author-navigation ul {
/* 3831 */       display: inline-block; }
/* 3832 */       .social-navigation ul li, .author-navigation ul li {
/* 3833 */         display: inline-block; } }
/* 3834 */ 
/* 3835 */ .mobile-navigation-toggle {
/* 3836 */   display: none;
/* 3837 */   vertical-align: middle;
/* 3838 */   width: 1.875rem;
/* 3839 */   height: 30px;
/* 3840 */   background-color: transparent;
/* 3841 */   border-top: 6px solid #000000;
/* 3842 */   border-bottom: 18px double #000000; }
/* 3843 */   @media screen and (max-width: 767px) {
/* 3844 */     .mobile-navigation-toggle {
/* 3845 */       display: inline-block;
/* 3846 */       vertical-align: middle;
/* 3847 */       vertical-align: -webkit-baseline-middle; } }
/* 3848 */ 
/* 3849 */ .site-mobile-navigation {
/* 3850 */   position: fixed;

/* style-ltr.css */

/* 3851 */   top: 0;
/* 3852 */   right: 0;
/* 3853 */   bottom: 0;
/* 3854 */   z-index: 9999;
/* 3855 */   display: block;
/* 3856 */   width: 100%;
/* 3857 */   overflow-y: scroll !important;
/* 3858 */   max-width: 18.75em;
/* 3859 */   background-color: #000000;
/* 3860 */   color: #ffffff;
/* 3861 */   -webkit-transform: translateX(100%);
/* 3862 */   -moz-transform: translateX(100%);
/* 3863 */   -ms-transform: translateX(100%);
/* 3864 */   -o-transform: translateX(100%);
/* 3865 */   transform: translateX(100%);
/* 3866 */   -webkit-transition: all 0.3s ease;
/* 3867 */   -moz-transition: all 0.3s ease;
/* 3868 */   transition: all 0.3s ease; }
/* 3869 */   .site-mobile-navigation ul li {
/* 3870 */     display: block; }
/* 3871 */     .site-mobile-navigation ul li a {
/* 3872 */       border-bottom: 1px solid #e5e5e5; }
/* 3873 */     .site-mobile-navigation ul li ul {
/* 3874 */       position: relative;
/* 3875 */       top: inherit;
/* 3876 */       left: inherit;
/* 3877 */       bottom: inherit;
/* 3878 */       right: inherit; }
/* 3879 */       .site-mobile-navigation ul li ul li {
/* 3880 */         border-left: 0.625em solid #e5e5e5; }
/* 3881 */ 
/* 3882 */ .site-navigation-overlay {
/* 3883 */   position: fixed;
/* 3884 */   top: 0;
/* 3885 */   right: 0;
/* 3886 */   bottom: 0;
/* 3887 */   left: 0;
/* 3888 */   z-index: 9990;
/* 3889 */   display: block;
/* 3890 */   background-color: rgba(0, 0, 0, 0.7);
/* 3891 */   visibility: hidden;
/* 3892 */   opacity: 0;
/* 3893 */   -webkit-transition: all 0.5s ease-in-out;
/* 3894 */   -moz-transition: all 0.5s ease-in-out;
/* 3895 */   transition: all 0.5s ease-in-out; }
/* 3896 */ 
/* 3897 */ .opened-site-navigation {
/* 3898 */   overflow: hidden; }
/* 3899 */   .opened-site-navigation .site-mobile-navigation {
/* 3900 */     -webkit-transform: translateX(0);

/* style-ltr.css */

/* 3901 */     -moz-transform: translateX(0);
/* 3902 */     -ms-transform: translateX(0);
/* 3903 */     -o-transform: translateX(0);
/* 3904 */     transform: translateX(0); }
/* 3905 */   .opened-site-navigation .site-navigation-overlay {
/* 3906 */     visibility: visible;
/* 3907 */     opacity: 1; }
/* 3908 */ 
/* 3909 */ .primary-navigation .site-search-toggle,
/* 3910 */ .secondary-navigation .site-search-toggle,
/* 3911 */ .social-navigation .site-search-toggle,
/* 3912 */ .author-navigation .site-search-toggle {
/* 3913 */   display: inline-block;
/* 3914 */   vertical-align: middle;
/* 3915 */   padding: 0 1.875em;
/* 3916 */   font-family: inherit;
/* 3917 */   font-size: 1rem;
/* 3918 */   line-height: 0.19531em;
/* 3919 */   font-weight: 400;
/* 3920 */   text-transform: uppercase; }
/* 3921 */ 
/* 3922 */ .site-search {
/* 3923 */   position: relative; }
/* 3924 */   .site-search-toggle {
/* 3925 */     position: relative;
/* 3926 */     display: inline-block;
/* 3927 */     vertical-align: middle;
/* 3928 */     font-size: 0.9375rem;
/* 3929 */     line-height: 3.33333em;
/* 3930 */     font-weight: inherit;
/* 3931 */     color: inherit;
/* 3932 */     text-align: inherit;
/* 3933 */     text-decoration: none;
/* 3934 */     white-space: nowrap;
/* 3935 */     text-align: left;
/* 3936 */     padding: 0 1.33333em;
/* 3937 */     cursor: pointer; }
/* 3938 */     .secondary-navigation + .site-search-toggle, .social-navigation + .site-search-toggle, .author-navigation + .site-search-toggle {
/* 3939 */       font-size: 0.875rem;
/* 3940 */       line-height: 3.57143em; }
/* 3941 */     .primary-navigation + .site-search-toggle {
/* 3942 */       font-size: 0.9375rem;
/* 3943 */       line-height: 3.33333em; }
/* 3944 */     .site-header .site-header-three .primary-navigation + .site-search-toggle {
/* 3945 */       padding: 1.33333em 0.66667em; }
/* 3946 */   .site-search input[type="search"], .site-search input[type="text"] {
/* 3947 */     position: relative;
/* 3948 */     display: block;
/* 3949 */     width: 100%;
/* 3950 */     height: 4.28571em;

/* style-ltr.css */

/* 3951 */     font-family: inherit;
/* 3952 */     font-size: 1.75rem;
/* 3953 */     line-height: 4.28571em;
/* 3954 */     margin: 0;
/* 3955 */     padding: 1.07143em;
/* 3956 */     background-color: transparent;
/* 3957 */     border-color: transparent;
/* 3958 */     color: currentColor; }
/* 3959 */   .site-search input[type="search"]:active, .site-search input[type="text"]:active,
/* 3960 */   .site-search input[type="search"]:focus, .site-search input[type="text"]:focus {
/* 3961 */     box-shadow: 0 0 0 0 transparent;
/* 3962 */     box-shadow: 0 0 0 0 transparent; }
/* 3963 */   .site-search .site-search-close {
/* 3964 */     position: absolute;
/* 3965 */     top: 50%;
/* 3966 */     right: 1.25em;
/* 3967 */     bottom: 0;
/* 3968 */     left: auto;
/* 3969 */     -webkit-transform: translate(0, -50%);
/* 3970 */     -moz-transform: translate(0, -50%);
/* 3971 */     -ms-transform: translate(0, -50%);
/* 3972 */     -o-transform: translate(0, -50%);
/* 3973 */     transform: translate(0, -50%);
/* 3974 */     display: block;
/* 3975 */     width: 1.875em;
/* 3976 */     height: 1.875em; }
/* 3977 */     .site-search .site-search-close:before, .site-search .site-search-close:after {
/* 3978 */       position: absolute;
/* 3979 */       top: 0.8125em;
/* 3980 */       right: 0;
/* 3981 */       bottom: 0;
/* 3982 */       left: 0;
/* 3983 */       display: block;
/* 3984 */       width: 100%;
/* 3985 */       height: 4px;
/* 3986 */       background-color: currentColor;
/* 3987 */       content: "";
/* 3988 */       -webkit-transform: rotate(45deg);
/* 3989 */       -moz-transform: rotate(45deg);
/* 3990 */       -ms-transform: rotate(45deg);
/* 3991 */       -o-transform: rotate(45deg);
/* 3992 */       transform: rotate(45deg); }
/* 3993 */     .site-search .site-search-close:after {
/* 3994 */       -webkit-transform: rotate(135deg);
/* 3995 */       -moz-transform: rotate(135deg);
/* 3996 */       -ms-transform: rotate(135deg);
/* 3997 */       -o-transform: rotate(135deg);
/* 3998 */       transform: rotate(135deg); }
/* 3999 */ 
/* 4000 */ /*-----------------------------------------------------------

/* style-ltr.css */

/* 4001 *| Slider
/* 4002 *| -----------------------------------------------------------*/
/* 4003 */ .site-banner a, .site-banner a:hover, .site-banner a:active {
/* 4004 */   color: inherit; }
/* 4005 */ .site-banner .banner-item {
/* 4006 */   position: relative;
/* 4007 */   display: block;
/* 4008 */   text-align: left;
/* 4009 */   color: #ffffff;
/* 4010 */   padding: 3px; }
/* 4011 */ @media screen and (max-width: 991px) {
/* 4012 */   .site-banner .banner-item {
/* 4013 */     height: auto; } }
/* 4014 */ 
/* 4015 */ .banner-media {
/* 4016 */   position: relative;
/* 4017 */   display: block;
/* 4018 */   width: 100%;
/* 4019 */   height: 31.25em;
/* 4020 */   overflow: hidden;
/* 4021 */   background-size: cover;
/* 4022 */   background-position: 50% 50%; }
/* 4023 */   .banner-media:before {
/* 4024 */     -webkit-transition: all 0.3s ease;
/* 4025 */     -moz-transition: all 0.3s ease;
/* 4026 */     transition: all 0.3s ease;
/* 4027 */     position: absolute;
/* 4028 */     top: 0;
/* 4029 */     right: 0;
/* 4030 */     bottom: 0;
/* 4031 */     left: 0;
/* 4032 */     width: 100%;
/* 4033 */     height: 100%;
/* 4034 */     content: "";
/* 4035 */     background-color: transparent; }
/* 4036 */ 
/* 4037 */ .banner-item:hover .banner-media:before, .banner-item.stop .banner-media:before {
/* 4038 */   background-color: rgba(0, 0, 0, 0.4); }
/* 4039 */ 
/* 4040 */ .banner-text {
/* 4041 */   position: absolute;
/* 4042 */   top: 50%;
/* 4043 */   right: 50%;
/* 4044 */   -webkit-transform: translate(50%, -50%);
/* 4045 */   -moz-transform: translate(50%, -50%);
/* 4046 */   -ms-transform: translate(50%, -50%);
/* 4047 */   -o-transform: translate(50%, -50%);
/* 4048 */   transform: translate(50%, -50%);
/* 4049 */   width: 100%;
/* 4050 */   max-width: 37.5em;

/* style-ltr.css */

/* 4051 */   padding: 2.5em;
/* 4052 */   background-color: transparent !important;
/* 4053 */   -webkit-transition: all 0.3s linear;
/* 4054 */   -moz-transition: all 0.3s linear;
/* 4055 */   transition: all 0.3s linear;
/* 4056 */   text-align: center; }
/* 4057 */   .banner-text .banner-text-cat {
/* 4058 */     font-size: 1rem;
/* 4059 */     line-height: 1.2;
/* 4060 */     text-transform: uppercase;
/* 4061 */     letter-spacing: 5px;
/* 4062 */     font-weight: 700; }
/* 4063 */   .banner-text .banner-text-date, .banner-text .banner-text-author {
/* 4064 */     position: relative;
/* 4065 */     font-size: 0.875rem; }
/* 4066 */   .banner-text .banner-text-title {
/* 4067 */     font-family: inherit;
/* 4068 */     font-size: 1.75rem;
/* 4069 */     line-height: 1.2;
/* 4070 */     font-weight: 700;
/* 4071 */     margin: 0;
/* 4072 */     padding: 0; }
/* 4073 */ 
/* 4074 */ @media screen and (max-width: 991px) {
/* 4075 */   .banner-media {
/* 4076 */     height: 23.4375em; }
/* 4077 */     .banner-media img {
/* 4078 */       max-width: 100%; } }
/* 4079 */ @media screen and (max-width: 767px) {
/* 4080 */   .banner-media {
/* 4081 */     height: 15.625em; }
/* 4082 */ 
/* 4083 */   .banner-text {
/* 4084 */     padding: 0.625em; }
/* 4085 */     .banner-text .banner-text-cat {
/* 4086 */       font-size: 1rem;
/* 4087 */       line-height: 1.2; }
/* 4088 */     .banner-text .banner-text-title {
/* 4089 */       font-size: 1.25rem;
/* 4090 */       line-height: 1.3; } }
/* 4091 */ @media screen and (min-width: 768px) {
/* 4092 */   .banner-item {
/* 4093 */     display: block;
/* 4094 */     float: left; } }
/* 4095 */ /*--------------------------------------------------------------
/* 4096 *| Authors
/* 4097 *| --------------------------------------------------------------*/
/* 4098 */ .author:after {
/* 4099 */   display: table;
/* 4100 */   clear: both;

/* style-ltr.css */

/* 4101 */   content: " "; }
/* 4102 */ 
/* 4103 */ .author-image {
/* 4104 */   position: relative;
/* 4105 */   display: block;
/* 4106 */   text-align: center;
/* 4107 */   margin-bottom: 1.875em; }
/* 4108 */   .author-image img {
/* 4109 */     position: relative;
/* 4110 */     z-index: 1;
/* 4111 */     width: 10.625em;
/* 4112 */     height: 10.625em;
/* 4113 */     padding: 3px;
/* 4114 */     background-color: transparent;
/* 4115 */     -webkit-border-radius: 50%;
/* 4116 */     border-radius: 50%; }
/* 4117 */ 
/* 4118 */ .author-name {
/* 4119 */   font-family: inherit;
/* 4120 */   font-size: 1.25rem;
/* 4121 */   line-height: 1.2;
/* 4122 */   text-transform: uppercase;
/* 4123 */   margin: 0;
/* 4124 */   padding: 0; }
/* 4125 */ 
/* 4126 */ .author-desc {
/* 4127 */   margin: 1.42857em 0 0;
/* 4128 */   padding: 0; }
/* 4129 */ 
/* 4130 */ /*--------------------------------------------------------------
/* 4131 *| Comments
/* 4132 *| --------------------------------------------------------------*/
/* 4133 */ .comments-area:not(:first-child) {
/* 4134 */   margin-top: 1.875em; }
/* 4135 */ .comments-area .comments-title, .comments-area .comment-reply-title {
/* 4136 */   font-size: 1.375rem;
/* 4137 */   line-height: 1.2; }
/* 4138 */   .comments-area .comments-title:not(:first-child), .comments-area .comment-reply-title:not(:first-child) {
/* 4139 */     margin-top: 1.25em; }
/* 4140 */ 
/* 4141 */ .comment {
/* 4142 */   padding: 1.25em 0;
/* 4143 */   border-top: 2px solid #000000;
/* 4144 */   margin-top: 1.25em; }
/* 4145 */   .comment:after {
/* 4146 */     display: table;
/* 4147 */     clear: both;
/* 4148 */     content: " "; }
/* 4149 */   .comment .comment-img {
/* 4150 */     float: left;

/* style-ltr.css */

/* 4151 */     margin-right: 1.25em; }
/* 4152 */     .comment .comment-img img {
/* 4153 */       width: 4em;
/* 4154 */       height: 4em; }
/* 4155 */   .comment .comment-meta {
/* 4156 */     padding: 0;
/* 4157 */     margin-left: 5.3125em; }
/* 4158 */     .comment .comment-meta .comment-header {
/* 4159 */       margin-bottom: 1.25em; }
/* 4160 */       .comment .comment-meta .comment-header > * {
/* 4161 */         display: inline; }
/* 4162 */     .comment .comment-meta .comment-author {
/* 4163 */       font-weight: bold; }
/* 4164 */     .comment .comment-meta .comment-reply {
/* 4165 */       margin-left: 0.625em;
/* 4166 */       color: #bf9e3b; }
/* 4167 */       .comment .comment-meta .comment-reply:before {
/* 4168 */         content: "- "; }
/* 4169 */ 
/* 4170 */ .comments-list:not(:first-child) {
/* 4171 */   margin-top: 1.25em; }
/* 4172 */ .comments-list .children {
/* 4173 */   padding: 0 0 0 1.875em; }
/* 4174 */   .comments-list .children .comment {
/* 4175 */     border-top: 1px solid #000000;
/* 4176 */     margin-top: 1.25em;
/* 4177 */     padding-top: 1.25em; }
/* 4178 */ 
/* 4179 */ .comment-respond {
/* 4180 */   margin-top: 4.6875em;
/* 4181 */   padding: 1.875em;
/* 4182 */   border: 2px solid #000000; }
/* 4183 */   .comment-respond:not(:first-child) {
/* 4184 */     margin-top: 1.25em; }
/* 4185 */   .comment-respond .comment-reply-title {
/* 4186 */     display: block;
/* 4187 */     margin-top: -2.04545em;
/* 4188 */     padding-left: 1.36364em;
/* 4189 */     padding-right: 1.36364em;
/* 4190 */     background-color: #ffffff; }
/* 4191 */   .comment-respond .comment-form input[type="color"], .comment-respond .comment-form input[type="date"], .comment-respond .comment-form input[type="datetime"], .comment-respond .comment-form input[type="datetime-local"], .comment-respond .comment-form input[type="email"], .comment-respond .comment-form input[type="month"], .comment-respond .comment-form input[type="name"], .comment-respond .comment-form input[type="number"], .comment-respond .comment-form input[type="password"], .comment-respond .comment-form input[type="search"], .comment-respond .comment-form input[type="tel"], .comment-respond .comment-form input[type="text"], .comment-respond .comment-form input[type="time"], .comment-respond .comment-form input[type="url"], .comment-respond .comment-form input[type="week"], .comment-respond .comment-form textarea {
/* 4192 */     background-color: #ffffff;
/* 4193 */     color: #000000;
/* 4194 */     border-color: #000000; }
/* 4195 */   .comment-respond .comment-form .banner-text .banner-button, .banner-text .comment-respond .comment-form .banner-button, .comment-respond .comment-form button, .comment-respond .comment-form input[type="button"], .comment-respond .comment-form input[type="reset"], .comment-respond .comment-form input[type="submit"], .comment-respond .comment-form .widget_wrt_shop .product .product-button, .widget_wrt_shop .product .comment-respond .comment-form .product-button, .comment-respond .comment-form input[type="button"], .comment-respond .comment-form input[type="reset"], .comment-respond .comment-form input[type="submit"] {
/* 4196 */     margin-top: 2.14286em;
/* 4197 */     background-color: #000000;
/* 4198 */     color: #ffffff;
/* 4199 */     border: 3px solid #000000; }
/* 4200 */     .comment-respond .comment-form .banner-text .banner-button:hover, .banner-text .comment-respond .comment-form .banner-button:hover, .comment-respond .comment-form button:hover, .comment-respond .comment-form input[type="button"]:hover, .comment-respond .comment-form input[type="reset"]:hover, .comment-respond .comment-form input[type="submit"]:hover, .comment-respond .comment-form .widget_wrt_shop .product .product-button:hover, .widget_wrt_shop .product .comment-respond .comment-form .product-button:hover, .comment-respond .comment-form .banner-text .banner-button:focus, .banner-text .comment-respond .comment-form .banner-button:focus, .comment-respond .comment-form button:focus, .comment-respond .comment-form input[type="button"]:focus, .comment-respond .comment-form input[type="reset"]:focus, .comment-respond .comment-form input[type="submit"]:focus, .comment-respond .comment-form .widget_wrt_shop .product .product-button:focus, .widget_wrt_shop .product .comment-respond .comment-form .product-button:focus, .comment-respond .comment-form .banner-text .added.banner-button, .banner-text .comment-respond .comment-form .added.banner-button, .comment-respond .comment-form button.added, .comment-respond .comment-form input.added[type="button"], .comment-respond .comment-form input.added[type="reset"], .comment-respond .comment-form input.added[type="submit"], .comment-respond .comment-form .widget_wrt_shop .product .added.product-button, .widget_wrt_shop .product .comment-respond .comment-form .added.product-button, .comment-respond .comment-form input[type="button"]:hover, .comment-respond .comment-form input[type="button"]:focus, .comment-respond .comment-form input[type="button"].added, .comment-respond .comment-form input[type="reset"]:hover, .comment-respond .comment-form input[type="reset"]:focus, .comment-respond .comment-form input[type="reset"].added, .comment-respond .comment-form input[type="submit"]:hover, .comment-respond .comment-form input[type="submit"]:focus, .comment-respond .comment-form input[type="submit"].added {

/* style-ltr.css */

/* 4201 */       background-color: #ffffff;
/* 4202 */       color: #000000; }
/* 4203 */   .comment-respond .comment-form textarea {
/* 4204 */     min-height: 12.5em; }
/* 4205 */ 
/* 4206 */ /*--------------------------------------------------------------
/* 4207 *| Search Form
/* 4208 *| --------------------------------------------------------------*/
/* 4209 */ .search-form {
/* 4210 */   position: relative;
/* 4211 */   display: block; }
/* 4212 */   .search-form .search-input {
/* 4213 */     height: 2.5em;
/* 4214 */     padding-right: 3.75em; }
/* 4215 */   .search-form .search-submit-icon {
/* 4216 */     position: absolute;
/* 4217 */     padding: 0.625em 1.25em;
/* 4218 */     font-size: 1rem;
/* 4219 */     top: 50%;
/* 4220 */     right: 0;
/* 4221 */     -webkit-transform: translateY(-50%);
/* 4222 */     -moz-transform: translateY(-50%);
/* 4223 */     -ms-transform: translateY(-50%);
/* 4224 */     -o-transform: translateY(-50%);
/* 4225 */     transform: translateY(-50%);
/* 4226 */     height: 2.5em;
/* 4227 */     line-height: 1.25em;
/* 4228 */     background-color: #000000;
/* 4229 */     color: #ffffff;
/* 4230 */     cursor: pointer;
/* 4231 */     -webkit-transition: all 0.2s ease-in-out;
/* 4232 */     -moz-transition: all 0.2s ease-in-out;
/* 4233 */     transition: all 0.2s ease-in-out; }
/* 4234 */   .search-form .search-submit {
/* 4235 */     display: none; }
/* 4236 */ 
/* 4237 */ /*---------------------------------------------------------------
/* 4238 *| Pagination
/* 4239 *| ----------------------------------------------------------------*/
/* 4240 */ .pagination {
/* 4241 */   margin-top: 1.875em; }
/* 4242 */   .pagination .nav-links {
/* 4243 */     text-align: center; }
/* 4244 */   .pagination ul {
/* 4245 */     display: inline-block;
/* 4246 */     list-style: none;
/* 4247 */     padding: 0;
/* 4248 */     margin: 0; }
/* 4249 */     .pagination ul li {
/* 4250 */       display: inline-block;

/* style-ltr.css */

/* 4251 */       margin: 0 2px; }
/* 4252 */   .pagination a, .pagination span {
/* 4253 */     display: inline-block;
/* 4254 */     padding: 0.3125em 0.625em; }
/* 4255 */   .pagination span {
/* 4256 */     background-color: #000000;
/* 4257 */     color: #ffffff; }
/* 4258 */   .pagination a {
/* 4259 */     background-color: transparent; }
/* 4260 */     .pagination a:hover {
/* 4261 */       background-color: #000000;
/* 4262 */       color: #ffffff; }
/* 4263 */   @media screen and (max-width: 767px) {
/* 4264 */     .pagination {
/* 4265 */       text-align: center; } }
/* 4266 */ 
/* 4267 */ body {
/* 4268 */   background-color: #f5f5f5; }
/* 4269 */ 
/* 4270 */ /*--------------------------------------------------------------
/* 4271 *| 6.0 - Layouts
/* 4272 *| --------------------------------------------------------------*/
/* 4273 */ /*---------------------------
/* 4274 *| Layouts
/* 4275 *| ----------------------------*/
/* 4276 */ /*--------------------------------------------------------------
/* 4277 *| Grids
/* 4278 *| --------------------------------------------------------------*/
/* 4279 */ .site-container, .site-container-fluid {
/* 4280 */   max-width: 100%;
/* 4281 */   margin-left: auto;
/* 4282 */   margin-right: auto; }
/* 4283 */   .site-container:after, .site-container-fluid:after {
/* 4284 */     display: table;
/* 4285 */     clear: both;
/* 4286 */     content: " "; }
/* 4287 */   .site-container:after, .site-container-fluid:after {
/* 4288 */     display: table;
/* 4289 */     clear: both;
/* 4290 */     content: " "; }
/* 4291 */ 
/* 4292 */ .site-container {
/* 4293 */   padding: 0 0.625em; }
/* 4294 */ 
/* 4295 */ @media screen and (min-width: 768px) {
/* 4296 */   .site-container {
/* 4297 */     max-width: 48em; } }
/* 4298 */ @media screen and (min-width: 992px) {
/* 4299 */   .site-container {
/* 4300 */     max-width: 61.875em; } }

/* style-ltr.css */

/* 4301 */ @media screen and (min-width: 1200px) {
/* 4302 */   .site-container {
/* 4303 */     max-width: 75em; } }
/* 4304 */ 
/* 4305 */ .site-row {
/* 4306 */   display: block; }
/* 4307 */   .site-row:after {
/* 4308 */     display: table;
/* 4309 */     clear: both;
/* 4310 */     content: " "; }
/* 4311 */   .site-row:after {
/* 4312 */     display: table;
/* 4313 */     clear: both;
/* 4314 */     content: " "; }
/* 4315 */   .site-row .site-column-1 {
/* 4316 */     position: relative;
/* 4317 */     min-height: 1px; }
/* 4318 */   @media screen and (min-width: 768px) {
/* 4319 */     .site-row .site-column-1 {
/* 4320 */       float: left;
/* 4321 */       display: block;
/* 4322 */       margin-right: 2.43902%;
/* 4323 */       width: 6.09756%; }
/* 4324 */       .site-row .site-column-1:last-child {
/* 4325 */         margin-right: 0; } }
/* 4326 */   .site-row .site-column-2 {
/* 4327 */     position: relative;
/* 4328 */     min-height: 1px; }
/* 4329 */   @media screen and (min-width: 768px) {
/* 4330 */     .site-row .site-column-2 {
/* 4331 */       float: left;
/* 4332 */       display: block;
/* 4333 */       margin-right: 2.43902%;
/* 4334 */       width: 14.63415%; }
/* 4335 */       .site-row .site-column-2:last-child {
/* 4336 */         margin-right: 0; } }
/* 4337 */   .site-row .site-column-3 {
/* 4338 */     position: relative;
/* 4339 */     min-height: 1px; }
/* 4340 */   @media screen and (min-width: 768px) {
/* 4341 */     .site-row .site-column-3 {
/* 4342 */       float: left;
/* 4343 */       display: block;
/* 4344 */       margin-right: 2.43902%;
/* 4345 */       width: 23.17073%; }
/* 4346 */       .site-row .site-column-3:last-child {
/* 4347 */         margin-right: 0; } }
/* 4348 */   .site-row .site-column-4 {
/* 4349 */     position: relative;
/* 4350 */     min-height: 1px; }

/* style-ltr.css */

/* 4351 */   @media screen and (min-width: 768px) {
/* 4352 */     .site-row .site-column-4 {
/* 4353 */       float: left;
/* 4354 */       display: block;
/* 4355 */       margin-right: 2.43902%;
/* 4356 */       width: 31.70732%; }
/* 4357 */       .site-row .site-column-4:last-child {
/* 4358 */         margin-right: 0; } }
/* 4359 */   .site-row .site-column-5 {
/* 4360 */     position: relative;
/* 4361 */     min-height: 1px; }
/* 4362 */   @media screen and (min-width: 768px) {
/* 4363 */     .site-row .site-column-5 {
/* 4364 */       float: left;
/* 4365 */       display: block;
/* 4366 */       margin-right: 2.43902%;
/* 4367 */       width: 40.2439%; }
/* 4368 */       .site-row .site-column-5:last-child {
/* 4369 */         margin-right: 0; } }
/* 4370 */   .site-row .site-column-6 {
/* 4371 */     position: relative;
/* 4372 */     min-height: 1px; }
/* 4373 */   @media screen and (min-width: 768px) {
/* 4374 */     .site-row .site-column-6 {
/* 4375 */       float: left;
/* 4376 */       display: block;
/* 4377 */       margin-right: 2.43902%;
/* 4378 */       width: 48.78049%; }
/* 4379 */       .site-row .site-column-6:last-child {
/* 4380 */         margin-right: 0; } }
/* 4381 */   .site-row .site-column-7 {
/* 4382 */     position: relative;
/* 4383 */     min-height: 1px; }
/* 4384 */   @media screen and (min-width: 768px) {
/* 4385 */     .site-row .site-column-7 {
/* 4386 */       float: left;
/* 4387 */       display: block;
/* 4388 */       margin-right: 2.43902%;
/* 4389 */       width: 57.31707%; }
/* 4390 */       .site-row .site-column-7:last-child {
/* 4391 */         margin-right: 0; } }
/* 4392 */   .site-row .site-column-8 {
/* 4393 */     position: relative;
/* 4394 */     min-height: 1px; }
/* 4395 */   @media screen and (min-width: 768px) {
/* 4396 */     .site-row .site-column-8 {
/* 4397 */       float: left;
/* 4398 */       display: block;
/* 4399 */       margin-right: 2.43902%;
/* 4400 */       width: 65.85366%; }

/* style-ltr.css */

/* 4401 */       .site-row .site-column-8:last-child {
/* 4402 */         margin-right: 0; } }
/* 4403 */   .site-row .site-column-9 {
/* 4404 */     position: relative;
/* 4405 */     min-height: 1px; }
/* 4406 */   @media screen and (min-width: 768px) {
/* 4407 */     .site-row .site-column-9 {
/* 4408 */       float: left;
/* 4409 */       display: block;
/* 4410 */       margin-right: 2.43902%;
/* 4411 */       width: 74.39024%; }
/* 4412 */       .site-row .site-column-9:last-child {
/* 4413 */         margin-right: 0; } }
/* 4414 */   .site-row .site-column-10 {
/* 4415 */     position: relative;
/* 4416 */     min-height: 1px; }
/* 4417 */   @media screen and (min-width: 768px) {
/* 4418 */     .site-row .site-column-10 {
/* 4419 */       float: left;
/* 4420 */       display: block;
/* 4421 */       margin-right: 2.43902%;
/* 4422 */       width: 82.92683%; }
/* 4423 */       .site-row .site-column-10:last-child {
/* 4424 */         margin-right: 0; } }
/* 4425 */   .site-row .site-column-11 {
/* 4426 */     position: relative;
/* 4427 */     min-height: 1px; }
/* 4428 */   @media screen and (min-width: 768px) {
/* 4429 */     .site-row .site-column-11 {
/* 4430 */       float: left;
/* 4431 */       display: block;
/* 4432 */       margin-right: 2.43902%;
/* 4433 */       width: 91.46341%; }
/* 4434 */       .site-row .site-column-11:last-child {
/* 4435 */         margin-right: 0; } }
/* 4436 */   .site-row .site-column-12 {
/* 4437 */     position: relative;
/* 4438 */     min-height: 1px; }
/* 4439 */   @media screen and (min-width: 768px) {
/* 4440 */     .site-row .site-column-12 {
/* 4441 */       float: left;
/* 4442 */       display: block;
/* 4443 */       margin-right: 2.43902%;
/* 4444 */       width: 100%; }
/* 4445 */       .site-row .site-column-12:last-child {
/* 4446 */         margin-right: 0; } }
/* 4447 */ 
/* 4448 */ .site-table-row {
/* 4449 */   display: block; }
/* 4450 */   .site-table-row:after {

/* style-ltr.css */

/* 4451 */     display: table;
/* 4452 */     clear: both;
/* 4453 */     content: " "; }
/* 4454 */   .site-table-row .site-column-1 {
/* 4455 */     position: relative;
/* 4456 */     min-height: 1px; }
/* 4457 */   .site-table-row .site-column-2 {
/* 4458 */     position: relative;
/* 4459 */     min-height: 1px; }
/* 4460 */   .site-table-row .site-column-3 {
/* 4461 */     position: relative;
/* 4462 */     min-height: 1px; }
/* 4463 */   .site-table-row .site-column-4 {
/* 4464 */     position: relative;
/* 4465 */     min-height: 1px; }
/* 4466 */   .site-table-row .site-column-5 {
/* 4467 */     position: relative;
/* 4468 */     min-height: 1px; }
/* 4469 */   .site-table-row .site-column-6 {
/* 4470 */     position: relative;
/* 4471 */     min-height: 1px; }
/* 4472 */   .site-table-row .site-column-7 {
/* 4473 */     position: relative;
/* 4474 */     min-height: 1px; }
/* 4475 */   .site-table-row .site-column-8 {
/* 4476 */     position: relative;
/* 4477 */     min-height: 1px; }
/* 4478 */   .site-table-row .site-column-9 {
/* 4479 */     position: relative;
/* 4480 */     min-height: 1px; }
/* 4481 */   .site-table-row .site-column-10 {
/* 4482 */     position: relative;
/* 4483 */     min-height: 1px; }
/* 4484 */   .site-table-row .site-column-11 {
/* 4485 */     position: relative;
/* 4486 */     min-height: 1px; }
/* 4487 */   .site-table-row .site-column-12 {
/* 4488 */     position: relative;
/* 4489 */     min-height: 1px; }
/* 4490 */   @media screen and (min-width: 768px) {
/* 4491 */     .site-table-row {
/* 4492 */       display: table;
/* 4493 */       width: 100%;
/* 4494 */       table-layout: fixed; }
/* 4495 */       .site-table-row > * {
/* 4496 */         vertical-align: middle; }
/* 4497 */       .site-table-row .site-column-1 {
/* 4498 */         float: none;
/* 4499 */         display: table-cell;
/* 4500 */         width: 8.33333%; }

/* style-ltr.css */

/* 4501 */       .site-table-row .site-column-2 {
/* 4502 */         float: none;
/* 4503 */         display: table-cell;
/* 4504 */         width: 16.66667%; }
/* 4505 */       .site-table-row .site-column-3 {
/* 4506 */         float: none;
/* 4507 */         display: table-cell;
/* 4508 */         width: 25%; }
/* 4509 */       .site-table-row .site-column-4 {
/* 4510 */         float: none;
/* 4511 */         display: table-cell;
/* 4512 */         width: 33.33333%; }
/* 4513 */       .site-table-row .site-column-5 {
/* 4514 */         float: none;
/* 4515 */         display: table-cell;
/* 4516 */         width: 41.66667%; }
/* 4517 */       .site-table-row .site-column-6 {
/* 4518 */         float: none;
/* 4519 */         display: table-cell;
/* 4520 */         width: 50%; }
/* 4521 */       .site-table-row .site-column-7 {
/* 4522 */         float: none;
/* 4523 */         display: table-cell;
/* 4524 */         width: 58.33333%; }
/* 4525 */       .site-table-row .site-column-8 {
/* 4526 */         float: none;
/* 4527 */         display: table-cell;
/* 4528 */         width: 66.66667%; }
/* 4529 */       .site-table-row .site-column-9 {
/* 4530 */         float: none;
/* 4531 */         display: table-cell;
/* 4532 */         width: 75%; }
/* 4533 */       .site-table-row .site-column-10 {
/* 4534 */         float: none;
/* 4535 */         display: table-cell;
/* 4536 */         width: 83.33333%; }
/* 4537 */       .site-table-row .site-column-11 {
/* 4538 */         float: none;
/* 4539 */         display: table-cell;
/* 4540 */         width: 91.66667%; }
/* 4541 */       .site-table-row .site-column-12 {
/* 4542 */         float: none;
/* 4543 */         display: table-cell;
/* 4544 */         width: 100%; } }
/* 4545 */ 
/* 4546 */ .site-col-center {
/* 4547 */   float: none !important;
/* 4548 */   margin: auto !important; }
/* 4549 */ 
/* 4550 */ .site-wrapper {

/* style-ltr.css */

/* 4551 */   background-color: #ffffff;
/* 4552 */   -webkit-transition: all 0.5s ease-in-out;
/* 4553 */   -moz-transition: all 0.5s ease-in-out;
/* 4554 */   transition: all 0.5s ease-in-out; }
/* 4555 */   
/* 4556 */ 
/* 4557 */   .site-wrapper.shadow-wrapper {
/* 4558 */ 
/* 4559 */     -webkit-box-shadow: 0 0 1.25em 0 rgba(0, 0, 0, 0.2);
/* 4560 */ 
/* 4561 */     box-shadow: 0 0 1.25em 0 rgba(0, 0, 0, 0.2); }
/* 4562 */ 
/* 4563 */   @media screen and (min-width: 992px) {
/* 4564 */ 
/* 4565 */     .site-wrapper.boxed-wrapper {
/* 4566 */ 
/* 4567 */       margin: 0 auto;
/* 4568 */ 
/* 4569 */       max-width: 80em; }
/* 4570 */ 
/* 4571 */       .site-wrapper.boxed-wrapper .site-container {
/* 4572 */ 
/* 4573 */         padding: 0 1.25em; }
/* 4574 */ 
/* 4575 */     .site-wrapper.full-wrapper {
/* 4576 */ 
/* 4577 */       margin: 0;
/* 4578 */ 
/* 4579 */       max-width: 100%; } }   
/* 4580 */ 
/* 4581 */ /*--------------------------------------------------------------
/* 4582 *| Headers
/* 4583 *| --------------------------------------------------------------*/
/* 4584 */ .site-header {
/* 4585 */   position: relative;
/* 4586 */   z-index: 101;
/* 4587 */   background-color: #ffffff;
/* 4588 */   background-repeat: repeat;
/* 4589 */   background-repeat: repeat;
/* 4590 */   background-size: cover;
/* 4591 */   background-position: center center;
/* 4592 */   /**Sticky Effect**/ }
/* 4593 */   .site-header .site-container {
/* 4594 */     position: relative; }
/* 4595 */   .site-header [class*="-column"] {
/* 4596 */     position: static; }
/* 4597 */   .site-header > div {
/* 4598 */     background-position: center center;
/* 4599 */     background-repeat: no-repeat; }
/* 4600 */   .site-header .site-header-top {

/* style-ltr.css */

/* 4601 */     position: relative;
/* 4602 */     background-color: #000000;
/* 4603 */     color: #ffffff;
/* 4604 */     transition: background 0.3s ease;
/* 4605 */     -webkit-transition: background 0.3s ease; }
/* 4606 */     .site-header .site-header-top .site-header-top-left {
/* 4607 */       text-align: left; }
/* 4608 */     .site-header .site-header-top .site-header-top-center {
/* 4609 */       text-align: center; }
/* 4610 */     .site-header .site-header-top .site-header-top-right {
/* 4611 */       text-align: right; }
/* 4612 */   .site-header .site-header-bottom {
/* 4613 */     position: relative;
/* 4614 */     background-color: #ffffff;
/* 4615 */     color: #000000;
/* 4616 */     text-align: center;
/* 4617 */     transition: background 0.3s ease;
/* 4618 */     -webkit-transition: background 0.3s ease; }
/* 4619 */   .site-header .sticky, .site-header .sticky-wrapper {
/* 4620 */     position: relative; }
/* 4621 */   @media screen and (max-width: 767px) {
/* 4622 */     .site-header {
/* 4623 */       padding-top: 0.625em;
/* 4624 */       padding-bottom: 0.625em;
/* 4625 */       border-bottom: 1px solid #000000; }
/* 4626 */       .site-header .site-header-top {
/* 4627 */         display: none; } }
/* 4628 */ 
/* 4629 */ .site-content {
/* 4630 */   display: block;
/* 4631 */   width: 100%;
/* 4632 */   padding: 1.25em 0; }
/* 4633 */   @media screen and (min-width: 768px) {
/* 4634 */     .site-content {
/* 4635 */       padding: 1.875em 0; }
/* 4636 */       .site-content.with-sidebar {
/* 4637 */         width: 65.85366%;
/* 4638 */         width: calc(97.56098% - 25rem); }
/* 4639 */       .site-content.with-no-sidebar {
/* 4640 */         float: none;
/* 4641 */         margin: 0 auto; }
/* 4642 */         .site-content.with-no-sidebar.compact-view {
/* 4643 */           width: 65.85366%; } }
/* 4644 */   @media screen and (min-width: 992px) {
/* 4645 */     .site-content {
/* 4646 */       padding: 3.75em 0; } }
/* 4647 */ 
/* 4648 */ .site-breadcrumbs .delimiter, .site-breadcrumbs .current, .breadcrumbs .delimiter, .breadcrumbs .current {
/* 4649 */   color: #bf9e3b; }
/* 4650 */ 

/* style-ltr.css */

/* 4651 */ .site-content-header {
/* 4652 */   padding-bottom: 1.875em;
/* 4653 */   margin-bottom: 1.875em;
/* 4654 */   border-bottom: 1px solid #000000; }
/* 4655 */   .site-content-header h1, .site-content-header h2, .site-content-header h3 {
/* 4656 */     margin: 0;
/* 4657 */     padding: 0; }
/* 4658 */     .site-content-header h1 a, .site-content-header h2 a, .site-content-header h3 a {
/* 4659 */       color: inherit; }
/* 4660 */ 
/* 4661 */ /*--------------------------------------------------------------
/* 4662 *| Posts
/* 4663 *| --------------------------------------------------------------*/
/* 4664 */ .entry {
/* 4665 */   position: relative;
/* 4666 */   display: block; }
/* 4667 */   .entry:after {
/* 4668 */     display: table;
/* 4669 */     clear: both;
/* 4670 */     content: " "; }
/* 4671 */   .entry.sticky {
/* 4672 */     margin-top: 1.25em;
/* 4673 */     padding: 1.875em;
/* 4674 */     background-color: #f5f5f5; }
/* 4675 */ 
/* 4676 */ .entry-header {
/* 4677 */   position: relative;
/* 4678 */   display: block;
/* 4679 */   overflow: hidden; }
/* 4680 */   .entry-header:not(:first-child) {
/* 4681 */     margin-top: 1.875em; }
/* 4682 */   .entry-header > * {
/* 4683 */     position: relative; }
/* 4684 */ 
/* 4685 */ .entry-footer {
/* 4686 */   position: relative;
/* 4687 */   margin-top: 1.25em; }
/* 4688 */   .entry-footer:after {
/* 4689 */     display: table;
/* 4690 */     clear: both;
/* 4691 */     content: " "; }
/* 4692 */   .entry-footer:before {
/* 4693 */     position: absolute;
/* 4694 */     right: 0;
/* 4695 */     bottom: calc(50% - 1px);
/* 4696 */     left: 0;
/* 4697 */     display: block;
/* 4698 */     content: " ";
/* 4699 */     height: 2px;
/* 4700 */     background-color: #000000; }

/* style-ltr.css */

/* 4701 */   .entry-footer > * {
/* 4702 */     position: relative;
/* 4703 */     z-index: 2; }
/* 4704 */   .entry-footer > div {
/* 4705 */     position: relative;
/* 4706 */     z-index: 2;
/* 4707 */     background-color: #ffffff; }
/* 4708 */     .entry-footer > div:first-child {
/* 4709 */       float: left;
/* 4710 */       text-align: left;
/* 4711 */       border-right: 1.25em solid #ffffff; }
/* 4712 */     .entry-footer > div:last-child {
/* 4713 */       float: right;
/* 4714 */       text-align: right;
/* 4715 */       border-left: 1.25em solid #ffffff; }
/* 4716 */     .sticky .entry-footer > div {
/* 4717 */       background-color: #f5f5f5; }
/* 4718 */       .sticky .entry-footer > div:first-child, .sticky .entry-footer > div:last-child {
/* 4719 */         border-color: #f5f5f5; }
/* 4720 */ 
/* 4721 */ .entry-title {
/* 4722 */   font-family: inherit;
/* 4723 */   font-size: 1.75rem;
/* 4724 */   line-height: 1.2;
/* 4725 */   font-weight: 400; }
/* 4726 */   .entry-title:not(:last-child) {
/* 4727 */     margin-bottom: 0.53571em; }
/* 4728 */ 
/* 4729 */ .entry-meta:not(:last-child) {
/* 4730 */   margin-bottom: 0.9375em; }
/* 4731 */ 
/* 4732 */ .entry-cat {
/* 4733 */   font-size: 0.93rem;
/* 4734 */   line-height: 1.2;
/* 4735 */   color: #bf9e3b;
/* 4736 */   text-transform: uppercase;
/* 4737 */   display: block; }
/* 4738 */   .entry-cat a:not(:first-child) {
/* 4739 */     margin-left: 0.33333em; }
/* 4740 */     .entry-cat a:not(:first-child):before {
/* 4741 */       display: inline-block;
/* 4742 */       vertical-align: middle;
/* 4743 */       content: "/";
/* 4744 */       margin-right: 0.33333em; }
/* 4745 */ 
/* 4746 */ .entry-date, .entry-author {
/* 4747 */   position: relative;
/* 4748 */   font-size: 0.93rem; }
/* 4749 */ 
/* 4750 */ .entry-author a {

/* style-ltr.css */

/* 4751 */   text-transform: capitalize; }
/* 4752 */ 
/* 4753 */ .entry-media {
/* 4754 */   overflow: hidden; }
/* 4755 */   .entry-media:not(:first-child) {
/* 4756 */     margin-top: 1.875em; }
/* 4757 */   .entry-media.justified-gallery {
/* 4758 */     margin-left: -0.625em;
/* 4759 */     margin-right: -0.625em; }
/* 4760 */   .entry-media img {
/* 4761 */     max-width: 100%;
/* 4762 */     vertical-align: middle;
/* 4763 */     display: inline-block; }
/* 4764 */   .entry-media iframe {
/* 4765 */     width: 100%;
/* 4766 */     height: 100%; }
/* 4767 */ 
/* 4768 */ .entry-share, .entry-comments {
/* 4769 */   display: inline-block;
/* 4770 */   padding: 0.75em;
/* 4771 */   text-align: right;
/* 4772 */   font-size: 1rem;
/* 4773 */   line-height: 1.2;
/* 4774 */   text-transform: uppercase; }
/* 4775 */   .entry-share ul, .entry-comments ul {
/* 4776 */     list-style: none;
/* 4777 */     margin: 0;
/* 4778 */     padding: 0; }
/* 4779 */     .entry-share ul li, .entry-comments ul li {
/* 4780 */       display: inline-block; }
/* 4781 */       .entry-share ul li:not(:last-child), .entry-comments ul li:not(:last-child) {
/* 4782 */         padding-right: 0.58824em; }
/* 4783 */       .entry-share ul li a, .entry-comments ul li a {
/* 4784 */         display: block;
/* 4785 */         text-decoration: none;
/* 4786 */         color: inherit; }
/* 4787 */ 
/* 4788 */ .entry-quote {
/* 4789 */   position: relative;
/* 4790 */   display: block;
/* 4791 */   background-position: center center;
/* 4792 */   background-size: cover;
/* 4793 */   background-repeat: no-repeat; }
/* 4794 */   .entry-quote a, .entry-quote div {
/* 4795 */     display: block;
/* 4796 */     padding: 1.875em;
/* 4797 */     text-align: center;
/* 4798 */     background-color: rgba(0, 0, 0, 0.2);
/* 4799 */     color: #ffffff; }
/* 4800 */   .entry-quote > * {

/* style-ltr.css */

/* 4801 */     position: relative;
/* 4802 */     z-index: 2; }
/* 4803 */ 
/* 4804 */ .entry-quote-author {
/* 4805 */   display: block;
/* 4806 */   padding-bottom: 1.17647em;
/* 4807 */   font-size: 1.2rem;
/* 4808 */   text-align: center;
/* 4809 */   color: #bf9e3b; }
/* 4810 */ 
/* 4811 */ .entry-link {
/* 4812 */   position: relative;
/* 4813 */   overflow: hidden; }
/* 4814 */   .entry-link a {
/* 4815 */     position: absolute;
/* 4816 */     top: 0;
/* 4817 */     right: 0;
/* 4818 */     bottom: 0;
/* 4819 */     left: 0;
/* 4820 */     width: 100%;
/* 4821 */     height: 100%;
/* 4822 */     font-size: 1.5rem;
/* 4823 */     color: #ffffff; }
/* 4824 */   .entry-link span {
/* 4825 */     position: absolute;
/* 4826 */     top: 50%;
/* 4827 */     left: 50%;
/* 4828 */     -webkit-transform: translate(-50%, -50%);
/* 4829 */     -moz-transform: translate(-50%, -50%);
/* 4830 */     -ms-transform: translate(-50%, -50%);
/* 4831 */     -o-transform: translate(-50%, -50%);
/* 4832 */     transform: translate(-50%, -50%);
/* 4833 */     display: inline-block;
/* 4834 */     max-width: 80%;
/* 4835 */     white-space: nowrap;
/* 4836 */     text-overflow: ellipsis;
/* 4837 */     overflow: hidden; }
/* 4838 */ 
/* 4839 */ .entry-button {
/* 4840 */   position: relative;
/* 4841 */   display: inline-block;
/* 4842 */   padding: 0.75em 1.5em;
/* 4843 */   font-size: 1rem;
/* 4844 */   font-weight: 400;
/* 4845 */   line-height: 1.2;
/* 4846 */   letter-spacing: 1px;
/* 4847 */   transition: all 0.3s ease;
/* 4848 */   -webkit-transition: all 0.3s ease;
/* 4849 */   background-color: #000000;
/* 4850 */   color: #ffffff; }

/* style-ltr.css */

/* 4851 */   @media screen and (max-width: 767px) {
/* 4852 */     .entry-button {
/* 4853 */       width: 100%;
/* 4854 */       border-width: 0; } }
/* 4855 */ 
/* 4856 */ /*-----------------------------------------------------------------
/* 4857 *| Single Page and Post Elements
/* 4858 *| --------------------------------------------------------------*/
/* 4859 */ .entry-content {
/* 4860 */   text-align: left; }
/* 4861 */   .entry-content:after {
/* 4862 */     display: table;
/* 4863 */     clear: both;
/* 4864 */     content: " "; }
/* 4865 */   .entry-content:not(:first-child) {
/* 4866 */     margin-top: 1.875em; }
/* 4867 */   .entry-content * > p {
/* 4868 */     font-size: inherit;
/* 4869 */     line-height: inherit; }
/* 4870 */   .entry-content em {
/* 4871 */     font-style: italic; }
/* 4872 */   .entry-content h1 {
/* 4873 */     font-size: 2.25rem; }
/* 4874 */   .entry-content h2 {
/* 4875 */     font-size: 2rem; }
/* 4876 */   .entry-content h3 {
/* 4877 */     font-size: 1.75rem; }
/* 4878 */   .entry-content h4 {
/* 4879 */     font-size: 1.5rem; }
/* 4880 */   .entry-content h5 {
/* 4881 */     font-size: 1.25rem; }
/* 4882 */   .entry-content h6 {
/* 4883 */     font-size: 1rem; }
/* 4884 */   .entry-content ul:not(.entry-unordered-list) {
/* 4885 */     list-style-type: disc;
/* 4886 */     list-style-position: inside;
/* 4887 */     padding-left: 1.25em; }
/* 4888 */   .entry-content ol:not(.entry-ordered-list) {
/* 4889 */     list-style-type: decimal;
/* 4890 */     list-style-position: inside;
/* 4891 */     padding-left: 1.25em; }
/* 4892 */   .entry-content .entry-link {
/* 4893 */     padding: 1.25em; }
/* 4894 */     .entry-content .entry-link a, .entry-content .entry-link span {
/* 4895 */       position: relative;
/* 4896 */       top: 0;
/* 4897 */       right: 0;
/* 4898 */       bottom: 0;
/* 4899 */       left: 0;
/* 4900 */       -webkit-transform: translate(0, 0);

/* style-ltr.css */

/* 4901 */       transform: translate(0, 0);
/* 4902 */       color: inherit; }
/* 4903 */   .entry-content .entry-quote:after {
/* 4904 */     font-size: 8.5rem;
/* 4905 */     line-height: 1;
/* 4906 */     content: '\201C' !important;
/* 4907 */     position: absolute;
/* 4908 */     top: 50%;
/* 4909 */     left: 50%;
/* 4910 */     -webkit-transform: translate(-50%, -50%);
/* 4911 */     -moz-transform: translate(-50%, -50%);
/* 4912 */     -ms-transform: translate(-50%, -50%);
/* 4913 */     -o-transform: translate(-50%, -50%);
/* 4914 */     transform: translate(-50%, -50%);
/* 4915 */     z-index: 1;
/* 4916 */     opacity: 0.1; }
/* 4917 */ 
/* 4918 */ .entry-navigation {
/* 4919 */   display: table;
/* 4920 */   table-layout: fixed;
/* 4921 */   width: 100%;
/* 4922 */   -webkit-box-sizing: border-box;
/* 4923 */   box-sizing: border-box;
/* 4924 */   border: 1px solid #000000; }
/* 4925 */   .entry-navigation:not(:first-child) {
/* 4926 */     margin-top: 1.875em; }
/* 4927 */   .entry-navigation a {
/* 4928 */     display: block;
/* 4929 */     font-family: inherit;
/* 4930 */     font-size: 1.05rem;
/* 4931 */     padding: 0.59524em;
/* 4932 */     background-color: #ffffff;
/* 4933 */     -webkit-transition: all 0.2s ease-in-out;
/* 4934 */     -moz-transition: all 0.2s ease-in-out;
/* 4935 */     transition: all 0.2s ease-in-out; }
/* 4936 */     .entry-navigation a small {
/* 4937 */       display: block;
/* 4938 */       font-family: "Lato", "Lora", serif;
/* 4939 */       font-size: 1rem; }
/* 4940 */     .entry-navigation a:hover {
/* 4941 */       background-color: #000000;
/* 4942 */       color: #ffffff; }
/* 4943 */     .entry-navigation a:before, .entry-navigation a:after {
/* 4944 */       display: inline;
/* 4945 */       font-family: 'FontAwesome';
/* 4946 */       font-size: inherit;
/* 4947 */       line-height: 1;
/* 4948 */       text-rendering: auto;
/* 4949 */       -webkit-font-smoothing: antialiased;
/* 4950 */       -moz-osx-font-smoothing: grayscale;

/* style-ltr.css */

/* 4951 */       -webkit-transition: all 0.3s ease-in-out;
/* 4952 */       -moz-transition: all 0.3s ease-in-out;
/* 4953 */       transition: all 0.3s ease-in-out; }
/* 4954 */ 
/* 4955 */ .entry-previous, .entry-next {
/* 4956 */   position: relative;
/* 4957 */   display: table-cell;
/* 4958 */   vertical-align: middle;
/* 4959 */   overflow: hidden;
/* 4960 */   width: 50%; }
/* 4961 */ 
/* 4962 */ .entry-previous {
/* 4963 */   text-align: left; }
/* 4964 */   .entry-previous:only-child {
/* 4965 */     padding-right: 50%; }
/* 4966 */   .entry-previous a:before {
/* 4967 */     content: "\f053";
/* 4968 */     margin-right: 10px; }
/* 4969 */ 
/* 4970 */ .entry-next {
/* 4971 */   text-align: right; }
/* 4972 */   .entry-next:only-child {
/* 4973 */     padding-left: 50%; }
/* 4974 */   .entry-next a:after {
/* 4975 */     content: "\f054";
/* 4976 */     margin-left: 10px; }
/* 4977 */ 
/* 4978 */ .entry-author:not(:first-child) {
/* 4979 */   margin-top: 1.875em; }
/* 4980 */ .entry-author .author {
/* 4981 */   text-align: left; }
/* 4982 */   .entry-author .author .author-image {
/* 4983 */     float: left;
/* 4984 */     margin-bottom: 0; }
/* 4985 */     .entry-author .author .author-image img {
/* 4986 */       width: 8.75em;
/* 4987 */       height: 8.75em;
/* 4988 */       -webkit-box-shadow: 0 0 0 0 #ffffff;
/* 4989 */       box-shadow: 0 0 0 0 #ffffff; }
/* 4990 */   .entry-author .author .author-meta {
/* 4991 */     margin-left: 10.625em; }
/* 4992 */ 
/* 4993 */ .entry-tags a, .entry-tags a:hover {
/* 4994 */   display: inline-block;
/* 4995 */   padding: 0.3125em 0.5em;
/* 4996 */   margin-top: 0.3125em;
/* 4997 */   margin-bottom: 0.3125em;
/* 4998 */   background-color: #000000;
/* 4999 */   color: #ffffff; }
/* 5000 */   .entry-tags a:not(:last-child), .entry-tags a:hover:not(:last-child) {

/* style-ltr.css */

/* 5001 */     margin-right: 0.375em; }
/* 5002 */ 
/* 5003 */ @media screen and (max-width: 991px) {
/* 5004 */   .entry-footer {
/* 5005 */     text-align: center;
/* 5006 */     padding-bottom: 1.25em; }
/* 5007 */     .entry-footer:before {
/* 5008 */       position: absolute;
/* 5009 */       right: 0;
/* 5010 */       bottom: 0;
/* 5011 */       left: 0;
/* 5012 */       height: 1px; }
/* 5013 */     .entry-footer > div:first-child {
/* 5014 */       float: none;
/* 5015 */        display: inline-block; }
/* 5016 */     .entry-footer > div:last-child:not(:first-child) {
/* 5017 */       display: inline-block;
/* 5018 */       float: none;
/* 5019 */       margin-left: auto;
/* 5020 */       margin-right: auto;
/* 5021 */       margin-top: 0;
/* 5022 */       border-left-width: 0; }
/* 5023 */ 
/* 5024 */   .entry-share, .entry-comments {
/* 5025 */     padding: 0.75em; }
/* 5026 */     .entry-share:last-child, .entry-comments:last-child {
/* 5027 */       padding-left: 0; } }
/* 5028 */ @media screen and (max-width: 767px) {
/* 5029 */   .entry-title {
/* 5030 */     font-size: 1.25rem; }
/* 5031 */ 
/* 5032 */   .entry-author .author {
/* 5033 */     text-align: center; }
/* 5034 */     .entry-author .author .author-image {
/* 5035 */       float: none;
/* 5036 */       margin: 0 0 1.25em 0; }
/* 5037 */     .entry-author .author .author-meta {
/* 5038 */       margin-left: 0; } }
/* 5039 */ /*-----------------------------------------------------------------
/* 5040 *| Layout Post Elements
/* 5041 *| --------------------------------------------------------------*/
/* 5042 */ .standard-container {
/* 5043 */   margin-top: -2.5em; }
/* 5044 */   .standard-container .entry {
/* 5045 */     padding-top: 2.5em; }
/* 5046 */     .standard-container .entry.sticky {
/* 5047 */       margin-top: 1.25em;
/* 5048 */       padding-top: 1.875em; }
/* 5049 */   .standard-container .entry-title {
/* 5050 */     font-size: 1.75rem; }

/* style-ltr.css */

/* 5051 */   @media screen and (max-width: 767px) {
/* 5052 */     .standard-container .entry-header {
/* 5053 */       padding-right: 0;
/* 5054 */       padding-left: 0; }
/* 5055 */     .standard-container .entry-title {
/* 5056 */       font-size: 1.25rem; }
/* 5057 */     .standard-container .entry-content {
/* 5058 */       padding: 0; }
/* 5059 */     .standard-container .entry-footer-bottom {
/* 5060 */       margin-top: 1.25em; } }
/* 5061 */ 
/* 5062 */ .site-sidebar {
/* 5063 */   position: relative;
/* 5064 */   display: block;
/* 5065 */   width: 100%;
/* 5066 */   padding: 1.25em 0; }
/* 5067 */   .site-sidebar:before {
/* 5068 */     content: "";
/* 5069 */     display: block;
/* 5070 */     padding-top: 1.25em; }
/* 5071 */   @media screen and (min-width: 768px) {
/* 5072 */     .site-sidebar {
/* 5073 */       padding: 0 0 1.875em 0;
/* 5074 */       width: 31.70732%;
/* 5075 */       width: 25rem; } }
/* 5076 */ 
/* 5077 */ .with-left-sidebar .site-content, .with-left-sidebar .site-sidebar {
/* 5078 */   float: right;
/* 5079 */   margin-left: 2.43902%; }
/* 5080 */   .with-left-sidebar .site-content:last-child, .with-left-sidebar .site-sidebar:last-child {
/* 5081 */     margin-left: 0; }
/* 5082 */ @media screen and (min-width: 768px) {
/* 5083 */   .with-left-sidebar .site-sidebar {
/* 5084 */     padding: 3.75em 2.5em 3.75em 0; } }
/* 5085 */ 
/* 5086 */ .with-right-sidebar .site-content, .with-right-sidebar .site-sidebar {
/* 5087 */   float: left;
/* 5088 */   margin-right: 2.43902%; }
/* 5089 */   .with-right-sidebar .site-content:last-child, .with-right-sidebar .site-sidebar:last-child {
/* 5090 */     margin-right: 0; }
/* 5091 */ @media screen and (min-width: 768px) {
/* 5092 */   .with-right-sidebar .site-sidebar {
/* 5093 */     padding: 3.75em 0 3.75em 2.5em; } }
/* 5094 */ 
/* 5095 */ .grid-container {
/* 5096 */   display: block;
/* 5097 */   margin-top: -2.5em; }
/* 5098 */   .grid-container:after {
/* 5099 */     display: table;
/* 5100 */     clear: both;

/* style-ltr.css */

/* 5101 */     content: " "; }
/* 5102 */   @media screen and (min-width: 768px) {
/* 5103 */     .grid-container .entry {
/* 5104 */       padding-top: 2.5em; }
/* 5105 */     .grid-container .entry-footer {
/* 5106 */       text-align: center; }
/* 5107 */       .grid-container .entry-footer > div:first-child {
/* 5108 */         float: none;
/* 5109 */         display: none; }
/* 5110 */       .grid-container .entry-footer > div:last-child:not(:first-child) {
/* 5111 */         display: inline-block;
/* 5112 */         float: none;
/* 5113 */         margin-left: auto;
/* 5114 */         margin-right: auto; }
/* 5115 */     .grid-container.grid-no-sidebar .entry {
/* 5116 */       float: left;
/* 5117 */       display: block;
/* 5118 */       margin-right: 2.43902%;
/* 5119 */       width: 48.78049%; }
/* 5120 */       .grid-container.grid-no-sidebar .entry:last-child {
/* 5121 */         margin-right: 0; }
/* 5122 */       .grid-container.grid-no-sidebar .entry.entry-first {
/* 5123 */         width: 100%;
/* 5124 */         margin-right: 0; }
/* 5125 */     .grid-container.grid-no-sidebar.grid-no-first .entry:nth-child(2n) {
/* 5126 */       margin-right: 0; }
/* 5127 */     .grid-container.grid-no-sidebar.grid-no-first .entry:nth-child(2n+1) {
/* 5128 */       clear: left; }
/* 5129 */     .grid-container.grid-no-sidebar.grid-with-first .entry:nth-child(2n+1) {
/* 5130 */       margin-right: 0; }
/* 5131 */     .grid-container.grid-no-sidebar.grid-with-first .entry:nth-child(2n) {
/* 5132 */       clear: left; } }
/* 5133 */   @media screen and (min-width: 992px) {
/* 5134 */     .grid-container.grid-with-sidebar .entry {
/* 5135 */       float: left;
/* 5136 */       display: block;
/* 5137 */       margin-right: 2.43902%;
/* 5138 */       width: 48.78049%; }
/* 5139 */       .grid-container.grid-with-sidebar .entry:last-child {
/* 5140 */         margin-right: 0; }
/* 5141 */       .grid-container.grid-with-sidebar .entry.entry-first {
/* 5142 */         width: 100%;
/* 5143 */         margin-right: 0; }
/* 5144 */     .grid-container.grid-with-sidebar.grid-no-first .entry:nth-child(2n) {
/* 5145 */       margin-right: 0; }
/* 5146 */     .grid-container.grid-with-sidebar.grid-no-first .entry:nth-child(2n+1) {
/* 5147 */       clear: left; }
/* 5148 */     .grid-container.grid-with-sidebar.grid-with-first .entry:nth-child(2n+1) {
/* 5149 */       margin-right: 0; }
/* 5150 */     .grid-container.grid-with-sidebar.grid-with-first .entry:nth-child(2n) {

/* style-ltr.css */

/* 5151 */       clear: left; }
/* 5152 */     .grid-container.grid-no-sidebar .entry {
/* 5153 */       float: left;
/* 5154 */       display: block;
/* 5155 */       margin-right: 2.43902%;
/* 5156 */       width: 31.70732%; }
/* 5157 */       .grid-container.grid-no-sidebar .entry:last-child {
/* 5158 */         margin-right: 0; }
/* 5159 */       .grid-container.grid-no-sidebar .entry.entry-first {
/* 5160 */         width: 100%;
/* 5161 */         margin-right: 0; }
/* 5162 */     .grid-container.grid-no-sidebar.grid-no-first .entry:nth-child(2n) {
/* 5163 */       margin-right: 2.43902%; }
/* 5164 */     .grid-container.grid-no-sidebar.grid-no-first .entry:nth-child(2n+1) {
/* 5165 */       clear: none; }
/* 5166 */     .grid-container.grid-no-sidebar.grid-no-first .entry:nth-child(3n) {
/* 5167 */       margin-right: 0; }
/* 5168 */     .grid-container.grid-no-sidebar.grid-no-first .entry:nth-child(3n+1) {
/* 5169 */       clear: left; }
/* 5170 */     .grid-container.grid-no-sidebar.grid-with-first .entry:nth-child(2n+1) {
/* 5171 */       margin-right: 2.43902%; }
/* 5172 */     .grid-container.grid-no-sidebar.grid-with-first .entry:nth-child(2n) {
/* 5173 */       clear: none; }
/* 5174 */     .grid-container.grid-no-sidebar.grid-with-first .entry:nth-child(3n+1) {
/* 5175 */       margin-right: 0; }
/* 5176 */     .grid-container.grid-no-sidebar.grid-with-first .entry:nth-child(3n+2) {
/* 5177 */       clear: left; } }
/* 5178 */ 
/* 5179 */ /*--------------------------------------------------------------
/* 5180 *| Widgets
/* 5181 *| --------------------------------------------------------------*/
/* 5182 */ .widget {
/* 5183 */   position: relative;
/* 5184 */   display: block;
/* 5185 */   background-color: #ffffff;
/* 5186 */   width: 100%;
/* 5187 */   padding: 1.25em;
/* 5188 */   border: 2px solid #000000; }
/* 5189 */   .widget:after {
/* 5190 */     display: table;
/* 5191 */     clear: both;
/* 5192 */     content: " "; }
/* 5193 */   .widget .widget-title {
/* 5194 */     position: relative;
/* 5195 */     display: block;
/* 5196 */     height: 40px;
/* 5197 */     text-align: center;
/* 5198 */     margin: 0;
/* 5199 */     padding: 0;
/* 5200 */     text-align: center;

/* style-ltr.css */

/* 5201 */     font-size: 1rem;
/* 5202 */     line-height: 40px;
/* 5203 */     font-weight: 400;
/* 5204 */     margin-bottom: 1.25em;
/* 5205 */     background-color: inherit; }
/* 5206 */     .widget .widget-title span {
/* 5207 */       position: relative;
/* 5208 */       display: inline-block;
/* 5209 */       z-index: 1;
/* 5210 */       background-color: #000000;
/* 5211 */       color: #ffffff;
/* 5212 */       border-left: 20px solid #000000;
/* 5213 */       border-right: 20px solid #000000; }
/* 5214 */   .widget:not(:first-child) {
/* 5215 */     margin-top: 3.75em; }
/* 5216 */   .widget .widget-title {
/* 5217 */     margin-top: -35px;
/* 5218 */     margin-top: calc(-20px - 1.875em); }
/* 5219 */ 
/* 5220 */ /*******************/
/* 5221 */ .widget_wrt_about {
/* 5222 */   text-align: center; }
/* 5223 */ 
/* 5224 */ .widget_posts .entry-list:after, .widget_related_posts .entry-list:after,
/* 5225 */ .widget_wrt_recent_posts .entry-list:after {
/* 5226 */   display: table;
/* 5227 */   clear: both;
/* 5228 */   content: " "; }
/* 5229 */ .widget_posts .entry, .widget_related_posts .entry,
/* 5230 */ .widget_wrt_recent_posts .entry {
/* 5231 */   padding-bottom: 1.25em; }
/* 5232 */   .widget_posts .entry:not(:first-child), .widget_related_posts .entry:not(:first-child),
/* 5233 */   .widget_wrt_recent_posts .entry:not(:first-child) {
/* 5234 */     margin-top: 1.25em; }
/* 5235 */   .widget_posts .entry:before, .widget_related_posts .entry:before,
/* 5236 */   .widget_wrt_recent_posts .entry:before {
/* 5237 */     height: 1px; }
/* 5238 */   .widget_posts .entry .entry-meta, .widget_related_posts .entry .entry-meta,
/* 5239 */   .widget_wrt_recent_posts .entry .entry-meta {
/* 5240 */     font-size: 0.8125rem;
/* 5241 */     margin: 0;
/* 5242 */     padding: 0; }
/* 5243 */     .widget_posts .entry .entry-meta .entry-cat, .widget_related_posts .entry .entry-meta .entry-cat,
/* 5244 */     .widget_wrt_recent_posts .entry .entry-meta .entry-cat {
/* 5245 */       color: #bf9e3b;
/* 5246 */       text-transform: uppercase;
/* 5247 */       letter-spacing: 1px;
/* 5248 */       font-weight: 400;
/* 5249 */       display: block; }
/* 5250 */       .widget_posts .entry .entry-meta .entry-cat a:not(:first-child), .widget_related_posts .entry .entry-meta .entry-cat a:not(:first-child),

/* style-ltr.css */

/* 5251 */       .widget_wrt_recent_posts .entry .entry-meta .entry-cat a:not(:first-child) {
/* 5252 */         margin-left: 0.3125em; }
/* 5253 */         .widget_posts .entry .entry-meta .entry-cat a:not(:first-child):before, .widget_related_posts .entry .entry-meta .entry-cat a:not(:first-child):before,
/* 5254 */         .widget_wrt_recent_posts .entry .entry-meta .entry-cat a:not(:first-child):before {
/* 5255 */           display: inline-block;
/* 5256 */           vertical-align: middle;
/* 5257 */           content: "/";
/* 5258 */           margin-right: 0.3125em; }
/* 5259 */   .widget_posts .entry .entry-title, .widget_related_posts .entry .entry-title,
/* 5260 */   .widget_wrt_recent_posts .entry .entry-title {
/* 5261 */     font-family: inherit;
/* 5262 */     font-size: 1.375rem;
/* 5263 */     line-height: 1.4;
/* 5264 */     font-weight: 400;
/* 5265 */     margin: 0.59524em 0;
/* 5266 */     padding: 0; }
/* 5267 */ .widget_posts .entry-small-thumb .entry > *:not(.entry-media), .widget_related_posts .entry-small-thumb .entry > *:not(.entry-media),
/* 5268 */ .widget_wrt_recent_posts .entry-small-thumb .entry > *:not(.entry-media) {
/* 5269 */   margin-left: 7.5rem; }
/* 5270 */ .widget_posts .entry-small-thumb .entry .entry-media, .widget_related_posts .entry-small-thumb .entry .entry-media,
/* 5271 */ .widget_wrt_recent_posts .entry-small-thumb .entry .entry-media {
/* 5272 */   max-width: 6.25rem;
/* 5273 */   float: left; }
/* 5274 */ .widget_posts .entry-small-thumb .entry .entry-title, .widget_related_posts .entry-small-thumb .entry .entry-title,
/* 5275 */ .widget_wrt_recent_posts .entry-small-thumb .entry .entry-title {
/* 5276 */   font-size: 1.125rem; }
/* 5277 */ .widget_posts .entry-big-thumb, .widget_related_posts .entry-big-thumb,
/* 5278 */ .widget_wrt_recent_posts .entry-big-thumb {
/* 5279 */   display: block; }
/* 5280 */   .widget_posts .entry-big-thumb:after, .widget_related_posts .entry-big-thumb:after,
/* 5281 */   .widget_wrt_recent_posts .entry-big-thumb:after {
/* 5282 */     display: table;
/* 5283 */     clear: both;
/* 5284 */     content: " "; }
/* 5285 */   @media screen and (min-width: 992px) {
/* 5286 */     .widget_posts .entry-big-thumb .entry, .widget_related_posts .entry-big-thumb .entry,
/* 5287 */     .widget_wrt_recent_posts .entry-big-thumb .entry {
/* 5288 */       float: left;
/* 5289 */       display: block;
/* 5290 */       margin-right: 2.43902%;
/* 5291 */       width: 31.70732%;
/* 5292 */       margin-top: 0; }
/* 5293 */       .widget_posts .entry-big-thumb .entry:last-child, .widget_related_posts .entry-big-thumb .entry:last-child,
/* 5294 */       .widget_wrt_recent_posts .entry-big-thumb .entry:last-child {
/* 5295 */         margin-right: 0; } }
/* 5296 */   .widget_posts .entry-big-thumb .entry, .widget_related_posts .entry-big-thumb .entry,
/* 5297 */   .widget_wrt_recent_posts .entry-big-thumb .entry {
/* 5298 */     text-align: center; }
/* 5299 */     .widget_posts .entry-big-thumb .entry .entry-media .entry-thumb, .widget_related_posts .entry-big-thumb .entry .entry-media .entry-thumb,
/* 5300 */     .widget_wrt_recent_posts .entry-big-thumb .entry .entry-media .entry-thumb {

/* style-ltr.css */

/* 5301 */       position: relative;
/* 5302 */       display: block;
/* 5303 */       padding-bottom: 56.25%;
/* 5304 */       margin-bottom: 1.5em;
/* 5305 */       overflow: hidden;
/* 5306 */       float: none; }
/* 5307 */     .widget_posts .entry-big-thumb .entry .entry-media img, .widget_related_posts .entry-big-thumb .entry .entry-media img,
/* 5308 */     .widget_wrt_recent_posts .entry-big-thumb .entry .entry-media img {
/* 5309 */       position: absolute;
/* 5310 */       top: 0;
/* 5311 */       right: 0;
/* 5312 */       bottom: 0;
/* 5313 */       left: 0;
/* 5314 */       max-width: 100%;
/* 5315 */       max-height: none;
/* 5316 */       margin: auto; }
/* 5317 */ .widget_posts.widget-ver .entry, .widget-ver.widget_related_posts .entry,
/* 5318 */ .widget-ver.widget_wrt_recent_posts .entry {
/* 5319 */   float: left;
/* 5320 */   display: block;
/* 5321 */   margin-right: 5%;
/* 5322 */   width: 100%;
/* 5323 */   margin-right: 0; }
/* 5324 */   .widget_posts.widget-ver .entry:last-child, .widget-ver.widget_related_posts .entry:last-child,
/* 5325 */   .widget-ver.widget_wrt_recent_posts .entry:last-child {
/* 5326 */     margin-right: 0; }
/* 5327 */ .widget_posts.widget-hor .entry, .widget-hor.widget_related_posts .entry,
/* 5328 */ .widget-hor.widget_wrt_recent_posts .entry {
/* 5329 */   width: 100%;
/* 5330 */   padding: 0 0.3125em;
/* 5331 */   margin: 0; }
/* 5332 */   .widget_posts.widget-hor .entry:before, .widget-hor.widget_related_posts .entry:before,
/* 5333 */   .widget-hor.widget_wrt_recent_posts .entry:before {
/* 5334 */     display: none; }
/* 5335 */   .widget_posts.widget-hor .entry:nth-child(n), .widget-hor.widget_related_posts .entry:nth-child(n),
/* 5336 */   .widget-hor.widget_wrt_recent_posts .entry:nth-child(n) {
/* 5337 */     clear: none !important; }
/* 5338 */ .widget_posts.widget-hor .entry-big-thumb .entry, .widget-hor.widget_related_posts .entry-big-thumb .entry,
/* 5339 */ .widget-hor.widget_wrt_recent_posts .entry-big-thumb .entry, .widget_posts.widget-hor .entry-small-thumb .entry, .widget-hor.widget_related_posts .entry-small-thumb .entry,
/* 5340 */ .widget-hor.widget_wrt_recent_posts .entry-small-thumb .entry {
/* 5341 */   text-align: center; }
/* 5342 */   .widget_posts.widget-hor .entry-big-thumb .entry > *, .widget-hor.widget_related_posts .entry-big-thumb .entry > *,
/* 5343 */   .widget-hor.widget_wrt_recent_posts .entry-big-thumb .entry > *, .widget_posts.widget-hor .entry-small-thumb .entry > *, .widget-hor.widget_related_posts .entry-small-thumb .entry > *,
/* 5344 */   .widget-hor.widget_wrt_recent_posts .entry-small-thumb .entry > * {
/* 5345 */     margin-left: 0; }
/* 5346 */   .widget_posts.widget-hor .entry-big-thumb .entry .entry-media, .widget-hor.widget_related_posts .entry-big-thumb .entry .entry-media,
/* 5347 */   .widget-hor.widget_wrt_recent_posts .entry-big-thumb .entry .entry-media, .widget_posts.widget-hor .entry-small-thumb .entry .entry-media, .widget-hor.widget_related_posts .entry-small-thumb .entry .entry-media,
/* 5348 */   .widget-hor.widget_wrt_recent_posts .entry-small-thumb .entry .entry-media {
/* 5349 */     float: none;
/* 5350 */     max-width: 100%;

/* style-ltr.css */

/* 5351 */     margin: 0 0 1.25em 0; }
/* 5352 */ .widget_posts.widget-hor.entry-small-thumb .entry .entry-media, .widget-hor.entry-small-thumb.widget_related_posts .entry .entry-media,
/* 5353 */ .widget-hor.entry-small-thumb.widget_wrt_recent_posts .entry .entry-media {
/* 5354 */   max-width: 6.25em; }
/* 5355 */ 
/* 5356 */ .widget_recent_entries ul li {
/* 5357 */   margin-bottom: 0.9375em; }
/* 5358 */   .widget_recent_entries ul li a {
/* 5359 */     font-family: inherit;
/* 5360 */     font-size: 1.125rem;
/* 5361 */     line-height: 1.2;
/* 5362 */     font-weight: 400;
/* 5363 */     display: block; }
/* 5364 */   .widget_recent_entries ul li span {
/* 5365 */     font-size: 1rem; }
/* 5366 */ 
/* 5367 */ .widget_categories ul,
/* 5368 */ .widget_nav_menu ul,
/* 5369 */ .widget_pages ul,
/* 5370 */ .widget_meta ul,
/* 5371 */ .widget_archive ul,
/* 5372 */ .widget_archives ul {
/* 5373 */   display: block;
/* 5374 */   list-style: none;
/* 5375 */   margin: 0;
/* 5376 */   padding: 0; }
/* 5377 */   .widget_categories ul li,
/* 5378 */   .widget_nav_menu ul li,
/* 5379 */   .widget_pages ul li,
/* 5380 */   .widget_meta ul li,
/* 5381 */   .widget_archive ul li,
/* 5382 */   .widget_archives ul li {
/* 5383 */     display: block; }
/* 5384 */     .widget_categories ul li ul,
/* 5385 */     .widget_nav_menu ul li ul,
/* 5386 */     .widget_pages ul li ul,
/* 5387 */     .widget_meta ul li ul,
/* 5388 */     .widget_archive ul li ul,
/* 5389 */     .widget_archives ul li ul {
/* 5390 */       padding-left: 1.25em; }
/* 5391 */     .widget_categories ul li a,
/* 5392 */     .widget_nav_menu ul li a,
/* 5393 */     .widget_pages ul li a,
/* 5394 */     .widget_meta ul li a,
/* 5395 */     .widget_archive ul li a,
/* 5396 */     .widget_archives ul li a {
/* 5397 */       position: relative;
/* 5398 */       display: block;
/* 5399 */       padding: 0.625em 0;
/* 5400 */       color: inherit; }

/* style-ltr.css */

/* 5401 */       .widget_categories ul li a:after,
/* 5402 */       .widget_nav_menu ul li a:after,
/* 5403 */       .widget_pages ul li a:after,
/* 5404 */       .widget_meta ul li a:after,
/* 5405 */       .widget_archive ul li a:after,
/* 5406 */       .widget_archives ul li a:after {
/* 5407 */         display: table;
/* 5408 */         clear: both;
/* 5409 */         content: " "; }
/* 5410 */       .widget_categories ul li a:hover,
/* 5411 */       .widget_nav_menu ul li a:hover,
/* 5412 */       .widget_pages ul li a:hover,
/* 5413 */       .widget_meta ul li a:hover,
/* 5414 */       .widget_archive ul li a:hover,
/* 5415 */       .widget_archives ul li a:hover {
/* 5416 */         color: #bf9e3b; }
/* 5417 */       .widget_categories ul li a:before,
/* 5418 */       .widget_nav_menu ul li a:before,
/* 5419 */       .widget_pages ul li a:before,
/* 5420 */       .widget_meta ul li a:before,
/* 5421 */       .widget_archive ul li a:before,
/* 5422 */       .widget_archives ul li a:before {
/* 5423 */         position: absolute;
/* 5424 */         right: 0;
/* 5425 */         bottom: -1px;
/* 5426 */         display: block;
/* 5427 */         content: "";
/* 5428 */         width: 0;
/* 5429 */         height: 1px;
/* 5430 */         background-color: #bf9e3b;
/* 5431 */         -webkit-transition: all 0.3s ease-in-out;
/* 5432 */         -moz-transition: all 0.3s ease-in-out;
/* 5433 */         transition: all 0.3s ease-in-out; }
/* 5434 */       .widget_categories ul li a:hover:before,
/* 5435 */       .widget_nav_menu ul li a:hover:before,
/* 5436 */       .widget_pages ul li a:hover:before,
/* 5437 */       .widget_meta ul li a:hover:before,
/* 5438 */       .widget_archive ul li a:hover:before,
/* 5439 */       .widget_archives ul li a:hover:before {
/* 5440 */         width: 100%; }
/* 5441 */     .widget_categories ul li span,
/* 5442 */     .widget_nav_menu ul li span,
/* 5443 */     .widget_pages ul li span,
/* 5444 */     .widget_meta ul li span,
/* 5445 */     .widget_archive ul li span,
/* 5446 */     .widget_archives ul li span {
/* 5447 */       float: right; }
/* 5448 */     .widget_categories ul li:not(:last-child) a,
/* 5449 */     .widget_nav_menu ul li:not(:last-child) a,
/* 5450 */     .widget_pages ul li:not(:last-child) a,

/* style-ltr.css */

/* 5451 */     .widget_meta ul li:not(:last-child) a,
/* 5452 */     .widget_archive ul li:not(:last-child) a,
/* 5453 */     .widget_archives ul li:not(:last-child) a {
/* 5454 */       border-bottom: 1px solid #000000; }
/* 5455 */ 
/* 5456 */ .widget_tag_cloud .tagcloud:after {
/* 5457 */   display: table;
/* 5458 */   clear: both;
/* 5459 */   content: " "; }
/* 5460 */ .widget_tag_cloud .tagcloud a {
/* 5461 */   font-size: 1rem !important;
/* 5462 */   line-height: 1.2;
/* 5463 */   display: block;
/* 5464 */   float: left;
/* 5465 */   padding: 0.3125em 0.625em;
/* 5466 */   border: 1px solid #000000;
/* 5467 */   margin-left: 0.3125em;
/* 5468 */   margin-bottom: 0.3125em;
/* 5469 */   -webkit-transition: all 0.3s linear;
/* 5470 */   -moz-transition: all 0.3s linear;
/* 5471 */   transition: all 0.3s linear; }
/* 5472 */   .widget_tag_cloud .tagcloud a:hover {
/* 5473 */     color: #bf9e3b;
/* 5474 */     border-color: #bf9e3b; }
/* 5475 */ 
/* 5476 */ .widget_calendar table th, .widget_calendar table td {
/* 5477 */   text-align: center; }
/* 5478 */ .widget_calendar a {
/* 5479 */   display: block;
/* 5480 */   padding: 3px;
/* 5481 */   background-color: #000000;
/* 5482 */   color: #ffffff; }
/* 5483 */ 
/* 5484 */ .widget_recent_comments .recentcomments {
/* 5485 */   padding: 0.625em 0; }
/* 5486 */   .widget_recent_comments .recentcomments:not(:last-child) {
/* 5487 */     border-bottom: 1px solid #000000; }
/* 5488 */   .widget_recent_comments .recentcomments span a {
/* 5489 */     font-size: 1rem;
/* 5490 */     font-weight: bold;
/* 5491 */     margin-right: 0.625em;
/* 5492 */     color: #bf9e3b; }
/* 5493 */     .widget_recent_comments .recentcomments span a:before {
/* 5494 */       position: absolute;
/* 5495 */       right: 0;
/* 5496 */       bottom: -2px;
/* 5497 */       display: block;
/* 5498 */       content: "";
/* 5499 */       width: 0;
/* 5500 */       height: 1px;

/* style-ltr.css */

/* 5501 */       background-color: currentColor;
/* 5502 */       -webkit-transition: all 0.3s ease-in-out;
/* 5503 */       -moz-transition: all 0.3s ease-in-out;
/* 5504 */       transition: all 0.3s ease-in-out; }
/* 5505 */     .widget_recent_comments .recentcomments span a:hover:before {
/* 5506 */       width: 100%; }
/* 5507 */ 
/* 5508 */ .widget_wrt_social .social-navigation, .widget_wrt_social .author-navigation {
/* 5509 */   display: block;
/* 5510 */   text-align: center; }
/* 5511 */   .widget_wrt_social .social-navigation ul, .widget_wrt_social .author-navigation ul {
/* 5512 */     width: 100%; }
/* 5513 */     .widget_wrt_social .social-navigation ul:after, .widget_wrt_social .author-navigation ul:after {
/* 5514 */       display: table;
/* 5515 */       clear: both;
/* 5516 */       content: " "; }
/* 5517 */     .widget_wrt_social .social-navigation ul li, .widget_wrt_social .author-navigation ul li {
/* 5518 */       float: left;
/* 5519 */       display: block;
/* 5520 */       margin-right: 2.43902%;
/* 5521 */       width: 23.17073%; }
/* 5522 */       .widget_wrt_social .social-navigation ul li:last-child, .widget_wrt_social .author-navigation ul li:last-child {
/* 5523 */         margin-right: 0; }
/* 5524 */       .widget_wrt_social .social-navigation ul li:nth-child(4n), .widget_wrt_social .author-navigation ul li:nth-child(4n) {
/* 5525 */         clear: right;
/* 5526 */         margin-right: 0; }
/* 5527 */       .widget_wrt_social .social-navigation ul li a, .widget_wrt_social .author-navigation ul li a {
/* 5528 */         font-size: 1.5rem;
/* 5529 */         text-align: center;
/* 5530 */         padding: 0.3125em; }
/* 5531 */       .widget_wrt_social .social-navigation ul li span, .widget_wrt_social .author-navigation ul li span, .widget_wrt_social .social-navigation ul li small, .widget_wrt_social .author-navigation ul li small {
/* 5532 */         display: block; }
/* 5533 */       .widget_wrt_social .social-navigation ul li small, .widget_wrt_social .author-navigation ul li small {
/* 5534 */         font-size: 0.75rem;
/* 5535 */         line-height: 2.33333em; }
/* 5536 */       @media screen and (max-width: 1199px) {
/* 5537 */         .widget_wrt_social .social-navigation ul li small, .widget_wrt_social .author-navigation ul li small {
/* 5538 */           display: none; } }
/* 5539 */ 
/* 5540 */ .widget_wrt_shop {
/* 5541 */   text-align: center; }
/* 5542 */   .widget_wrt_shop .products-list:after {
/* 5543 */     display: table;
/* 5544 */     clear: both;
/* 5545 */     content: " "; }
/* 5546 */   .widget_wrt_shop .product .product-image {
/* 5547 */     display: block; }
/* 5548 */   .widget_wrt_shop .product .product-title {
/* 5549 */     font-family: inherit;
/* 5550 */     font-size: 0.875rem;

/* style-ltr.css */

/* 5551 */     line-height: 1.2;
/* 5552 */     font-weight: 400;
/* 5553 */     margin: 0;
/* 5554 */     padding: 0; }
/* 5555 */   .widget_wrt_shop .product .product-price {
/* 5556 */     font-size: 1rem;
/* 5557 */     line-height: 1.2;
/* 5558 */     margin: 0;
/* 5559 */     padding: 0; }
/* 5560 */   .widget_wrt_shop .product .product-button {
/* 5561 */     font-size: 0.875rem; }
/* 5562 */   .widget_wrt_shop .product > *:not(:last-child) {
/* 5563 */     margin-bottom: 0.625em; }
/* 5564 */   .widget_wrt_shop.widget-ver .product:not(:last-child) {
/* 5565 */     margin-bottom: 1.25em; }
/* 5566 */   .widget_wrt_shop.widget-hor .product {
/* 5567 */     padding: 0 0.3125em; }
/* 5568 */ 
/* 5569 */ .widget_ad {
/* 5570 */   padding: 0.625em 0;
/* 5571 */   text-align: center; }
/* 5572 */   .widget_ad img {
/* 5573 */     display: inline-block;
/* 5574 */     max-width: 100%; }
/* 5575 */ 
/* 5576 */ .widget_wrt_instagram .instagram-pics > div a {
/* 5577 */   position: relative;
/* 5578 */   display: block;
/* 5579 */   overflow: hidden;
/* 5580 */   background-color: #000000;
/* 5581 */   padding-bottom: 99%;
/* 5582 */   height: 0; }
/* 5583 */   .widget_wrt_instagram .instagram-pics > div a:before {
/* 5584 */     position: absolute;
/* 5585 */     top: 0;
/* 5586 */     right: 0;
/* 5587 */     bottom: 0;
/* 5588 */     left: 0;
/* 5589 */     z-index: 1;
/* 5590 */     content: " ";
/* 5591 */     width: 100%;
/* 5592 */     height: 100%;
/* 5593 */     background-color: #000000;
/* 5594 */     -webkit-transition: all 0.3s ease-in-out;
/* 5595 */     -moz-transition: all 0.3s ease-in-out;
/* 5596 */     transition: all 0.3s ease-in-out;
/* 5597 */     opacity: 0; }
/* 5598 */   .widget_wrt_instagram .instagram-pics > div a img {
/* 5599 */     position: absolute;
/* 5600 */     top: 0;

/* style-ltr.css */

/* 5601 */     right: 0;
/* 5602 */     bottom: 0;
/* 5603 */     left: 0;
/* 5604 */     height: auto;
/* 5605 */     width: 100%;
/* 5606 */     max-width: 100%;
/* 5607 */     max-height: none; }
/* 5608 */   .widget_wrt_instagram .instagram-pics > div a:hover:before {
/* 5609 */     opacity: 0.2; }
/* 5610 */ .widget_wrt_instagram.widget-hor .instagram-pics {
/* 5611 */   overflow: hidden;
/* 5612 */   max-height: 19.6875em; }
/* 5613 */ .widget_wrt_instagram.widget-ver {
/* 5614 */   text-align: center; }
/* 5615 */   .widget_wrt_instagram.widget-ver .instagram-pics {
/* 5616 */     display: block; }
/* 5617 */     .widget_wrt_instagram.widget-ver .instagram-pics:after {
/* 5618 */       display: table;
/* 5619 */       clear: both;
/* 5620 */       content: " "; }
/* 5621 */     .widget_wrt_instagram.widget-ver .instagram-pics li {
/* 5622 */       margin-bottom: 2.43902%;
/* 5623 */       float: left;
/* 5624 */       display: block;
/* 5625 */       margin-right: 2.43902%;
/* 5626 */       width: 48.78049%; }
/* 5627 */       .widget_wrt_instagram.widget-ver .instagram-pics li:last-child {
/* 5628 */         margin-right: 0; }
/* 5629 */       .widget_wrt_instagram.widget-ver .instagram-pics li:nth-child(2n) {
/* 5630 */         clear: right;
/* 5631 */         margin-right: 0; }
/* 5632 */ 
/* 5633 */ .widget_newsletter {
/* 5634 */   text-align: center;
/* 5635 */   display: block; }
/* 5636 */   .widget_newsletter .newsletter-text .newsletter-title {
/* 5637 */     font-family: inherit;
/* 5638 */     font-size: 1.225rem; }
/* 5639 */   .widget_newsletter .newsletter-text .newsletter-content {
/* 5640 */     font-size: 1rem;
/* 5641 */     line-height: 1.2; }
/* 5642 */   .widget_newsletter .newsletter-form {
/* 5643 */     position: relative; }
/* 5644 */     .widget_newsletter .newsletter-form input[type="color"], .widget_newsletter .newsletter-form input[type="date"], .widget_newsletter .newsletter-form input[type="datetime"], .widget_newsletter .newsletter-form input[type="datetime-local"], .widget_newsletter .newsletter-form input[type="email"], .widget_newsletter .newsletter-form input[type="month"], .widget_newsletter .newsletter-form input[type="name"], .widget_newsletter .newsletter-form input[type="number"], .widget_newsletter .newsletter-form input[type="password"], .widget_newsletter .newsletter-form input[type="search"], .widget_newsletter .newsletter-form input[type="tel"], .widget_newsletter .newsletter-form input[type="text"], .widget_newsletter .newsletter-form input[type="time"], .widget_newsletter .newsletter-form input[type="url"], .widget_newsletter .newsletter-form input[type="week"], .widget_newsletter .newsletter-form textarea {
/* 5645 */       display: inline-block;
/* 5646 */       vertical-align: middle;
/* 5647 */       -webkit-border-radius: 0;
/* 5648 */       height: 3.125em;
/* 5649 */       line-height: 3.125em; }
/* 5650 */     .widget_newsletter .newsletter-form .button {

/* style-ltr.css */

/* 5651 */       padding: 0 0.5em;
/* 5652 */       height: 2.5em;
/* 5653 */       line-height: 2.5em;
/* 5654 */       border-width: 0;
/* 5655 */       font-size: 1.25rem; }
/* 5656 */       .widget_newsletter .newsletter-form .button:before {
/* 5657 */         display: none; }
/* 5658 */   .widget_newsletter.widget-hor .newsletter-container {
/* 5659 */     display: table;
/* 5660 */     width: 100%;
/* 5661 */     table-layout: fixed; }
/* 5662 */     @media screen and (min-width: 768px) {
/* 5663 */       .widget_newsletter.widget-hor .newsletter-container .newsletter-text, .widget_newsletter.widget-hor .newsletter-container .newsletter-form {
/* 5664 */         display: table-cell;
/* 5665 */         width: 50%;
/* 5666 */         vertical-align: middle; } }
/* 5667 */     .widget_newsletter.widget-hor .newsletter-container .newsletter-form {
/* 5668 */       position: relative; }
/* 5669 */       .widget_newsletter.widget-hor .newsletter-container .newsletter-form .site-row:not(:last-child) [class*='site-column'] {
/* 5670 */         position: relative;
/* 5671 */         margin-bottom: 2.43902%; }
/* 5672 */       .widget_newsletter.widget-hor .newsletter-container .newsletter-form .button {
/* 5673 */         position: absolute;
/* 5674 */         top: 0;
/* 5675 */         right: 0;
/* 5676 */         display: inline-block;
/* 5677 */         width: 0.5em;
/* 5678 */         height: 2.5em;
/* 5679 */         line-height: 2.5em;
/* 5680 */         -webkit-appearance: none;
/* 5681 */         -moz-appearance: none;
/* 5682 */         -ms-appearance: none;
/* 5683 */         -o-appearance: none;
/* 5684 */         appearance: none;
/* 5685 */         background: none;
/* 5686 */         background: none;
/* 5687 */         -webkit-box-shadow: 0 0 0 0 #000000;
/* 5688 */         box-shadow: 0 0 0 0 #000000;
/* 5689 */         font-size: 1.25rem;
/* 5690 */         color: #ffffff;
/* 5691 */         color: transparent;
/* 5692 */         color: rgba(255, 255, 255, 0);
/* 5693 */         overflow: hidden; }
/* 5694 */         .widget_newsletter.widget-hor .newsletter-container .newsletter-form .button:after {
/* 5695 */           position: absolute;
/* 5696 */           right: 0.35714em;
/* 5697 */           color: #000000;
/* 5698 */           font-size: 28px;
/* 5699 */           height: 1.78571em;
/* 5700 */           line-height: 1.78571em;

/* style-ltr.css */

/* 5701 */           content: "\f0da"; }
/* 5702 */   .widget_newsletter.widget-ver .newsletter-container .newsletter-form [class*='site-column'] {
/* 5703 */     position: relative;
/* 5704 */     width: 100%;
/* 5705 */     padding: 2px; }
/* 5706 */   .widget_newsletter.widget-ver .newsletter-container .newsletter-form .site-table-row {
/* 5707 */     display: block; }
/* 5708 */     .widget_newsletter.widget-ver .newsletter-container .newsletter-form .site-table-row:after {
/* 5709 */       display: table;
/* 5710 */       clear: both;
/* 5711 */       content: " "; }
/* 5712 */   .widget_newsletter.widget-ver .newsletter-container .newsletter-form .site-column-6, .widget_newsletter.widget-ver .newsletter-container .newsletter-form .site-column-12 {
/* 5713 */     float: left;
/* 5714 */     display: block;
/* 5715 */     margin-right: 2.43902%;
/* 5716 */     width: 100%; }
/* 5717 */     .widget_newsletter.widget-ver .newsletter-container .newsletter-form .site-column-6:last-child, .widget_newsletter.widget-ver .newsletter-container .newsletter-form .site-column-12:last-child {
/* 5718 */       margin-right: 0; }
/* 5719 */     .widget_newsletter.widget-ver .newsletter-container .newsletter-form .site-column-6:nth-child(n), .widget_newsletter.widget-ver .newsletter-container .newsletter-form .site-column-12:nth-child(n) {
/* 5720 */       margin-right: 0; }
/* 5721 */   .widget_newsletter.widget-ver .newsletter-container .newsletter-form .button {
/* 5722 */     display: block;
/* 5723 */     width: 100%; }
/* 5724 */   .widget_newsletter.widget-non-line .widget-newsletter-light {
/* 5725 */     padding: 1.25em;
/* 5726 */     background-color: #ffffff;
/* 5727 */     color: #000000; }
/* 5728 */   .widget_newsletter.widget-non-line .widget-newsletter-dark {
/* 5729 */     padding: 1.25em;
/* 5730 */     background-color: #000000;
/* 5731 */     color: #ffffff; }
/* 5732 */   .widget_newsletter.widget-non-line.widget-ver .widget-newsletter-light .button {
/* 5733 */     background-color: #000000;
/* 5734 */     color: #ffffff; }
/* 5735 */   .widget_newsletter.widget-non-line.widget-ver .widget-newsletter-dark .button {
/* 5736 */     background-color: #ffffff;
/* 5737 */     color: #000000; }
/* 5738 */   .widget_newsletter.widget-non-line input[type="color"], .widget_newsletter.widget-non-line input[type="date"], .widget_newsletter.widget-non-line input[type="datetime"], .widget_newsletter.widget-non-line input[type="datetime-local"], .widget_newsletter.widget-non-line input[type="email"], .widget_newsletter.widget-non-line input[type="month"], .widget_newsletter.widget-non-line input[type="name"], .widget_newsletter.widget-non-line input[type="number"], .widget_newsletter.widget-non-line input[type="password"], .widget_newsletter.widget-non-line input[type="search"], .widget_newsletter.widget-non-line input[type="tel"], .widget_newsletter.widget-non-line input[type="text"], .widget_newsletter.widget-non-line input[type="time"], .widget_newsletter.widget-non-line input[type="url"], .widget_newsletter.widget-non-line input[type="week"], .widget_newsletter.widget-non-line textarea {
/* 5739 */     border-color: transparent; }
/* 5740 */ 
/* 5741 */ .widget_wrt_twitter .tweets-list .tweet a {
/* 5742 */   color: #bf9e3b; }
/* 5743 */ .widget_wrt_twitter .tweets-list .tweet .tweet-text {
/* 5744 */   font-size: 0.875rem;
/* 5745 */   line-height: 1.4; }
/* 5746 */ .widget_wrt_twitter .tweets-list .tweet .username {
/* 5747 */   margin-right: 1.25em; }
/* 5748 */ .widget_wrt_twitter.widget-ver .tweets-list .tweet:not(:last-child) {
/* 5749 */   padding-bottom: 1.25em;
/* 5750 */   margin-bottom: 1.25em;

/* style-ltr.css */

/* 5751 */   border-bottom: 1px solid #000000; }
/* 5752 */ .widget_wrt_twitter.widget-hor .tweets-list .tweet {
/* 5753 */   padding-left: 0.625em;
/* 5754 */   padding-right: 0.625em; }
/* 5755 */ 
/* 5756 */ .widget_rss .widget-title .rsswidget + .rsswidget:before {
/* 5757 */   display: none; }
/* 5758 */ .widget_rss .widget-title .rsswidget img {
/* 5759 */   display: none; }
/* 5760 */ .widget_rss ul li {
/* 5761 */   margin-bottom: 0.9375em; }
/* 5762 */   .widget_rss ul li .rsswidget {
/* 5763 */     display: block;
/* 5764 */     font-family: inherit;
/* 5765 */     font-size: 0.875rem;
/* 5766 */     line-height: 1.2;
/* 5767 */     font-weight: 400; }
/* 5768 */   .widget_rss ul li .rss-date {
/* 5769 */     font-size: 0.8125rem; }
/* 5770 */   .widget_rss ul li .rssSummary {
/* 5771 */     font-size: 0.875rem;
/* 5772 */     line-height: 2; }
/* 5773 */ 
/* 5774 */ .widget_wrt_cta_content {
/* 5775 */   text-align: center; }
/* 5776 */   .widget_wrt_cta_content a {
/* 5777 */     position: relative;
/* 5778 */     display: inline-block; }
/* 5779 */     .widget_wrt_cta_content a h1, .widget_wrt_cta_content a h2, .widget_wrt_cta_content a h3, .widget_wrt_cta_content a h4, .widget_wrt_cta_content a h5, .widget_wrt_cta_content a h6 {
/* 5780 */       position: absolute;
/* 5781 */       top: 50%;
/* 5782 */       left: 50%;
/* 5783 */       -webkit-transform: translate(-50%, -50%);
/* 5784 */       transform: translate(-50%, -50%);
/* 5785 */       max-width: 80%;
/* 5786 */       display: block;
/* 5787 */       padding: 0.625em 1.25em;
/* 5788 */       background-color: #000000;
/* 5789 */       color: #ffffff; }
/* 5790 */ 
/* 5791 */ /*--------------------------------------------------------------
/* 5792 *| Footers
/* 5793 *| --------------------------------------------------------------*/
/* 5794 */ 
/* 5795 */ .site-footer .site-footer-top {
/* 5796 */   background-color: #ffffff;
/* 5797 */   color: #000000;
/* 5798 */   padding: 3.75em 0; }
/* 5799 */ .site-footer .site-footer-bottom {
/* 5800 */   background-color: #ffffff;

/* style-ltr.css */

/* 5801 */   color: #000000;
/* 5802 */   padding: 1.875em 0;  }
/* 5803 */ .site-footer .widget {
/* 5804 */   padding: 0;
/* 5805 */   margin: 0;
/* 5806 */   border-width: 0;
/* 5807 */   background-color: #f5f5f5; }
/* 5808 */   @media screen and (max-width: 991px) {
/* 5809 */     .site-footer .widget {
/* 5810 */       margin-bottom: 1.25em; } }
/* 5811 */   .site-footer .widget .widget-title {
/* 5812 */     margin-top: 0;
/* 5813 */     background-color: #000000; }
/* 5814 */ .site-footer .site-footer-top {
/* 5815 */   background-color: #f5f5f5; }
/* 5816 */ 
/* 5817 */ /*# sourceMappingURL=style-ltr.css.map */
/* 5818 */ 

/* addtoany.min.css */

/* 1 */ .addtoany_content{clear:both;margin:16px auto}.addtoany_header{margin:0 0 16px}.addtoany_list{display:inline;line-height:16px}.a2a_kit a:empty,.a2a_kit a[class^="a2a_button_"]:has(.a2a_s_undefined){display:none}.addtoany_list a,.widget .addtoany_list a{border:0;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle}.addtoany_list a img{border:0;display:inline-block;opacity:1;overflow:hidden;vertical-align:baseline}.addtoany_list a span{display:inline-block;float:none}.addtoany_list.a2a_kit_size_32 a{font-size:32px}.addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service)>span{height:32px;line-height:32px;width:32px}.addtoany_list a:not(.addtoany_special_service)>span{border-radius:4px;display:inline-block;opacity:1}.addtoany_list a .a2a_count{position:relative;vertical-align:top}.site .a2a_kit.addtoany_list a:focus,.addtoany_list a:hover,.widget .addtoany_list a:hover{background:none;border:0;box-shadow:none}.addtoany_list a:hover img,.addtoany_list a:hover span{opacity:.7}.addtoany_list a.addtoany_special_service:hover img,.addtoany_list a.addtoany_special_service:hover span{opacity:1}.addtoany_special_service{display:inline-block;vertical-align:middle}.addtoany_special_service a,.addtoany_special_service div,.addtoany_special_service div.fb_iframe_widget,.addtoany_special_service iframe,.addtoany_special_service span{margin:0;vertical-align:baseline!important}.addtoany_special_service iframe{display:inline;max-width:none}a.addtoany_share.addtoany_no_icon span.a2a_img_text{display:none}a.addtoany_share img{border:0;width:auto;height:auto}

/* cv.css */

/* 1 */ /*!
/* 2 *|  * Bootstrap v3.3.5 (http://getbootstrap.com)
/* 3 *|  * Copyright 2011-2015 Twitter, Inc.
/* 4 *|  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
/* 5 *|  *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.pt-cv-wrapper article,.pt-cv-wrapper aside,.pt-cv-wrapper details,.pt-cv-wrapper figcaption,.pt-cv-wrapper footer,.pt-cv-wrapper header,.pt-cv-wrapper hgroup,.pt-cv-wrapper main,.pt-cv-wrapper menu,.pt-cv-wrapper nav,.pt-cv-wrapper section,.pt-cv-wrapper summary{display:block}.pt-cv-wrapper audio,.pt-cv-wrapper canvas,.pt-cv-wrapper progress,.pt-cv-wrapper video{display:inline-block;vertical-align:baseline}.pt-cv-wrapper audio:not([controls]){display:none;height:0}.pt-cv-wrapper [hidden],.pt-cv-wrapper template{display:none}.pt-cv-wrapper a{background-color:transparent}.pt-cv-wrapper a:active,.pt-cv-wrapper a:hover{outline:0}.pt-cv-wrapper abbr[title]{border-bottom:1px dotted}.pt-cv-wrapper b,.pt-cv-wrapper strong{font-weight:700}.pt-cv-wrapper dfn{font-style:italic}.pt-cv-wrapper h1{margin:.67em 0}.pt-cv-wrapper mark{background:#ff0;color:#000}.pt-cv-wrapper small{font-size:80%}.pt-cv-wrapper sub,.pt-cv-wrapper sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.pt-cv-wrapper sup{top:-.5em}.pt-cv-wrapper sub{bottom:-.25em}.pt-cv-wrapper img{border:0}.pt-cv-wrapper svg:not(:root){overflow:hidden}.pt-cv-wrapper hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}.pt-cv-wrapper pre{overflow:auto}.pt-cv-wrapper code,.pt-cv-wrapper kbd,.pt-cv-wrapper pre,.pt-cv-wrapper samp{font-family:monospace,monospace;font-size:1em}.pt-cv-wrapper button,.pt-cv-wrapper input,.pt-cv-wrapper optgroup,.pt-cv-wrapper select,.pt-cv-wrapper textarea{color:inherit;font:inherit;margin:0}.pt-cv-wrapper button{overflow:visible}.pt-cv-wrapper button,.pt-cv-wrapper select{text-transform:none}.pt-cv-wrapper button,.pt-cv-wrapper html input[type=button],.pt-cv-wrapper input[type=reset],.pt-cv-wrapper input[type=submit]{-webkit-appearance:button;cursor:pointer}.pt-cv-wrapper button[disabled],.pt-cv-wrapper html input[disabled]{cursor:default}.pt-cv-wrapper button::-moz-focus-inner,.pt-cv-wrapper input::-moz-focus-inner{border:0;padding:0}.pt-cv-wrapper input{line-height:normal}.pt-cv-wrapper input[type=checkbox],.pt-cv-wrapper input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}.pt-cv-wrapper input[type=number]::-webkit-inner-spin-button,.pt-cv-wrapper input[type=number]::-webkit-outer-spin-button{height:auto}.pt-cv-wrapper input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.pt-cv-wrapper input[type=search]::-webkit-search-cancel-button,.pt-cv-wrapper input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.pt-cv-wrapper fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.pt-cv-wrapper legend{border:0;padding:0}.pt-cv-wrapper textarea{overflow:auto}.pt-cv-wrapper optgroup{font-weight:700}.pt-cv-wrapper table{border-collapse:collapse;border-spacing:0}.pt-cv-wrapper td,.pt-cv-wrapper th{padding:0}@media print{.pt-cv-wrapper *,.pt-cv-wrapper :after,.pt-cv-wrapper :before{background:0 0!important;color:#000!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}.pt-cv-wrapper a,.pt-cv-wrapper a:visited{text-decoration:underline}.pt-cv-wrapper a[href]:after{content:" (" attr(href) ")"}.pt-cv-wrapper abbr[title]:after{content:" (" attr(title) ")"}.pt-cv-wrapper a[href^="javascript:"]:after,.pt-cv-wrapper a[href^="#"]:after{content:""}.pt-cv-wrapper blockquote,.pt-cv-wrapper pre{border:1px solid #999;page-break-inside:avoid}.pt-cv-wrapper thead{display:table-header-group}.pt-cv-wrapper img,.pt-cv-wrapper tr{page-break-inside:avoid}.pt-cv-wrapper img{max-width:100%!important}.pt-cv-wrapper h2,.pt-cv-wrapper h3,.pt-cv-wrapper p{orphans:3;widows:3}.pt-cv-wrapper h2,.pt-cv-wrapper h3{page-break-after:avoid}.pt-cv-wrapper .navbar{display:none}.pt-cv-wrapper .btn>.caret,.pt-cv-wrapper .dropup>.btn>.caret{border-top-color:#000!important}.pt-cv-wrapper .label{border:1px solid #000}.pt-cv-wrapper .table{border-collapse:collapse!important}.pt-cv-wrapper .table td,.pt-cv-wrapper .table th{background-color:#fff!important}.pt-cv-wrapper .table-bordered td,.pt-cv-wrapper .table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(/wp-content/plugins/content-views-query-and-display-post-page/public/assets/fonts/glyphicons-halflings-regular.eot?ad48a8);src:url(/wp-content/plugins/content-views-query-and-display-post-page/public/assets/fonts/glyphicons-halflings-regular.eot?#iefix&ad48a8) format('embedded-opentype'),url(/wp-content/plugins/content-views-query-and-display-post-page/public/assets/fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(/wp-content/plugins/content-views-query-and-display-post-page/public/assets/fonts/glyphicons-halflings-regular.woff?ad48a8) format('woff'),url(/wp-content/plugins/content-views-query-and-display-post-page/public/assets/fonts/glyphicons-halflings-regular.ttf?ad48a8) format('truetype'),url(/wp-content/plugins/content-views-query-and-display-post-page/public/assets/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.pt-cv-wrapper .glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.pt-cv-wrapper .glyphicon-asterisk:before{content:"\2a"}.pt-cv-wrapper .glyphicon-plus:before{content:"\2b"}.pt-cv-wrapper .glyphicon-eur:before,.pt-cv-wrapper .glyphicon-euro:before{content:"\20ac"}.pt-cv-wrapper .glyphicon-minus:before{content:"\2212"}.pt-cv-wrapper .glyphicon-cloud:before{content:"\2601"}.pt-cv-wrapper .glyphicon-envelope:before{content:"\2709"}.pt-cv-wrapper .glyphicon-pencil:before{content:"\270f"}.pt-cv-wrapper .glyphicon-glass:before{content:"\e001"}.pt-cv-wrapper .glyphicon-music:before{content:"\e002"}.pt-cv-wrapper .glyphicon-search:before{content:"\e003"}.pt-cv-wrapper .glyphicon-heart:before{content:"\e005"}.pt-cv-wrapper .glyphicon-star:before{content:"\e006"}.pt-cv-wrapper .glyphicon-star-empty:before{content:"\e007"}.pt-cv-wrapper .glyphicon-user:before{content:"\e008"}.pt-cv-wrapper .glyphicon-film:before{content:"\e009"}.pt-cv-wrapper .glyphicon-th-large:before{content:"\e010"}.pt-cv-wrapper .glyphicon-th:before{content:"\e011"}.pt-cv-wrapper .glyphicon-th-list:before{content:"\e012"}.pt-cv-wrapper .glyphicon-ok:before{content:"\e013"}.pt-cv-wrapper .glyphicon-remove:before{content:"\e014"}.pt-cv-wrapper .glyphicon-zoom-in:before{content:"\e015"}.pt-cv-wrapper .glyphicon-zoom-out:before{content:"\e016"}.pt-cv-wrapper .glyphicon-off:before{content:"\e017"}.pt-cv-wrapper .glyphicon-signal:before{content:"\e018"}.pt-cv-wrapper .glyphicon-cog:before{content:"\e019"}.pt-cv-wrapper .glyphicon-trash:before{content:"\e020"}.pt-cv-wrapper .glyphicon-home:before{content:"\e021"}.pt-cv-wrapper .glyphicon-file:before{content:"\e022"}.pt-cv-wrapper .glyphicon-time:before{content:"\e023"}.pt-cv-wrapper .glyphicon-road:before{content:"\e024"}.pt-cv-wrapper .glyphicon-download-alt:before{content:"\e025"}.pt-cv-wrapper .glyphicon-download:before{content:"\e026"}.pt-cv-wrapper .glyphicon-upload:before{content:"\e027"}.pt-cv-wrapper .glyphicon-inbox:before{content:"\e028"}.pt-cv-wrapper .glyphicon-play-circle:before{content:"\e029"}.pt-cv-wrapper .glyphicon-repeat:before{content:"\e030"}.pt-cv-wrapper .glyphicon-refresh:before{content:"\e031"}.pt-cv-wrapper .glyphicon-list-alt:before{content:"\e032"}.pt-cv-wrapper .glyphicon-lock:before{content:"\e033"}.pt-cv-wrapper .glyphicon-flag:before{content:"\e034"}.pt-cv-wrapper .glyphicon-headphones:before{content:"\e035"}.pt-cv-wrapper .glyphicon-volume-off:before{content:"\e036"}.pt-cv-wrapper .glyphicon-volume-down:before{content:"\e037"}.pt-cv-wrapper .glyphicon-volume-up:before{content:"\e038"}.pt-cv-wrapper .glyphicon-qrcode:before{content:"\e039"}.pt-cv-wrapper .glyphicon-barcode:before{content:"\e040"}.pt-cv-wrapper .glyphicon-tag:before{content:"\e041"}.pt-cv-wrapper .glyphicon-tags:before{content:"\e042"}.pt-cv-wrapper .glyphicon-book:before{content:"\e043"}.pt-cv-wrapper .glyphicon-bookmark:before{content:"\e044"}.pt-cv-wrapper .glyphicon-print:before{content:"\e045"}.pt-cv-wrapper .glyphicon-camera:before{content:"\e046"}.pt-cv-wrapper .glyphicon-font:before{content:"\e047"}.pt-cv-wrapper .glyphicon-bold:before{content:"\e048"}.pt-cv-wrapper .glyphicon-italic:before{content:"\e049"}.pt-cv-wrapper .glyphicon-text-height:before{content:"\e050"}.pt-cv-wrapper .glyphicon-text-width:before{content:"\e051"}.pt-cv-wrapper .glyphicon-align-left:before{content:"\e052"}.pt-cv-wrapper .glyphicon-align-center:before{content:"\e053"}.pt-cv-wrapper .glyphicon-align-right:before{content:"\e054"}.pt-cv-wrapper .glyphicon-align-justify:before{content:"\e055"}.pt-cv-wrapper .glyphicon-list:before{content:"\e056"}.pt-cv-wrapper .glyphicon-indent-left:before{content:"\e057"}.pt-cv-wrapper .glyphicon-indent-right:before{content:"\e058"}.pt-cv-wrapper .glyphicon-facetime-video:before{content:"\e059"}.pt-cv-wrapper .glyphicon-picture:before{content:"\e060"}.pt-cv-wrapper .glyphicon-map-marker:before{content:"\e062"}.pt-cv-wrapper .glyphicon-adjust:before{content:"\e063"}.pt-cv-wrapper .glyphicon-tint:before{content:"\e064"}.pt-cv-wrapper .glyphicon-edit:before{content:"\e065"}.pt-cv-wrapper .glyphicon-share:before{content:"\e066"}.pt-cv-wrapper .glyphicon-check:before{content:"\e067"}.pt-cv-wrapper .glyphicon-move:before{content:"\e068"}.pt-cv-wrapper .glyphicon-step-backward:before{content:"\e069"}.pt-cv-wrapper .glyphicon-fast-backward:before{content:"\e070"}.pt-cv-wrapper .glyphicon-backward:before{content:"\e071"}.pt-cv-wrapper .glyphicon-play:before{content:"\e072"}.pt-cv-wrapper .glyphicon-pause:before{content:"\e073"}.pt-cv-wrapper .glyphicon-stop:before{content:"\e074"}.pt-cv-wrapper .glyphicon-forward:before{content:"\e075"}.pt-cv-wrapper .glyphicon-fast-forward:before{content:"\e076"}.pt-cv-wrapper .glyphicon-step-forward:before{content:"\e077"}.pt-cv-wrapper .glyphicon-eject:before{content:"\e078"}.pt-cv-wrapper .glyphicon-chevron-left:before{content:"\e079"}.pt-cv-wrapper .glyphicon-chevron-right:before{content:"\e080"}.pt-cv-wrapper .glyphicon-plus-sign:before{content:"\e081"}.pt-cv-wrapper .glyphicon-minus-sign:before{content:"\e082"}.pt-cv-wrapper .glyphicon-remove-sign:before{content:"\e083"}.pt-cv-wrapper .glyphicon-ok-sign:before{content:"\e084"}.pt-cv-wrapper .glyphicon-question-sign:before{content:"\e085"}.pt-cv-wrapper .glyphicon-info-sign:before{content:"\e086"}.pt-cv-wrapper .glyphicon-screenshot:before{content:"\e087"}.pt-cv-wrapper .glyphicon-remove-circle:before{content:"\e088"}.pt-cv-wrapper .glyphicon-ok-circle:before{content:"\e089"}.pt-cv-wrapper .glyphicon-ban-circle:before{content:"\e090"}.pt-cv-wrapper .glyphicon-arrow-left:before{content:"\e091"}.pt-cv-wrapper .glyphicon-arrow-right:before{content:"\e092"}.pt-cv-wrapper .glyphicon-arrow-up:before{content:"\e093"}.pt-cv-wrapper .glyphicon-arrow-down:before{content:"\e094"}.pt-cv-wrapper .glyphicon-share-alt:before{content:"\e095"}.pt-cv-wrapper .glyphicon-resize-full:before{content:"\e096"}.pt-cv-wrapper .glyphicon-resize-small:before{content:"\e097"}.pt-cv-wrapper .glyphicon-exclamation-sign:before{content:"\e101"}.pt-cv-wrapper .glyphicon-gift:before{content:"\e102"}.pt-cv-wrapper .glyphicon-leaf:before{content:"\e103"}.pt-cv-wrapper .glyphicon-fire:before{content:"\e104"}.pt-cv-wrapper .glyphicon-eye-open:before{content:"\e105"}.pt-cv-wrapper .glyphicon-eye-close:before{content:"\e106"}.pt-cv-wrapper .glyphicon-warning-sign:before{content:"\e107"}.pt-cv-wrapper .glyphicon-plane:before{content:"\e108"}.pt-cv-wrapper .glyphicon-calendar:before{content:"\e109"}.pt-cv-wrapper .glyphicon-random:before{content:"\e110"}.pt-cv-wrapper .glyphicon-comment:before{content:"\e111"}.pt-cv-wrapper .glyphicon-magnet:before{content:"\e112"}.pt-cv-wrapper .glyphicon-chevron-up:before{content:"\e113"}.pt-cv-wrapper .glyphicon-chevron-down:before{content:"\e114"}.pt-cv-wrapper .glyphicon-retweet:before{content:"\e115"}.pt-cv-wrapper .glyphicon-shopping-cart:before{content:"\e116"}.pt-cv-wrapper .glyphicon-folder-close:before{content:"\e117"}.pt-cv-wrapper .glyphicon-folder-open:before{content:"\e118"}.pt-cv-wrapper .glyphicon-resize-vertical:before{content:"\e119"}.pt-cv-wrapper .glyphicon-resize-horizontal:before{content:"\e120"}.pt-cv-wrapper .glyphicon-hdd:before{content:"\e121"}.pt-cv-wrapper .glyphicon-bullhorn:before{content:"\e122"}.pt-cv-wrapper .glyphicon-bell:before{content:"\e123"}.pt-cv-wrapper .glyphicon-certificate:before{content:"\e124"}.pt-cv-wrapper .glyphicon-thumbs-up:before{content:"\e125"}.pt-cv-wrapper .glyphicon-thumbs-down:before{content:"\e126"}.pt-cv-wrapper .glyphicon-hand-right:before{content:"\e127"}.pt-cv-wrapper .glyphicon-hand-left:before{content:"\e128"}.pt-cv-wrapper .glyphicon-hand-up:before{content:"\e129"}.pt-cv-wrapper .glyphicon-hand-down:before{content:"\e130"}.pt-cv-wrapper .glyphicon-circle-arrow-right:before{content:"\e131"}.pt-cv-wrapper .glyphicon-circle-arrow-left:before{content:"\e132"}.pt-cv-wrapper .glyphicon-circle-arrow-up:before{content:"\e133"}.pt-cv-wrapper .glyphicon-circle-arrow-down:before{content:"\e134"}.pt-cv-wrapper .glyphicon-globe:before{content:"\e135"}.pt-cv-wrapper .glyphicon-wrench:before{content:"\e136"}.pt-cv-wrapper .glyphicon-tasks:before{content:"\e137"}.pt-cv-wrapper .glyphicon-filter:before{content:"\e138"}.pt-cv-wrapper .glyphicon-briefcase:before{content:"\e139"}.pt-cv-wrapper .glyphicon-fullscreen:before{content:"\e140"}.pt-cv-wrapper .glyphicon-dashboard:before{content:"\e141"}.pt-cv-wrapper .glyphicon-paperclip:before{content:"\e142"}.pt-cv-wrapper .glyphicon-heart-empty:before{content:"\e143"}.pt-cv-wrapper .glyphicon-link:before{content:"\e144"}.pt-cv-wrapper .glyphicon-phone:before{content:"\e145"}.pt-cv-wrapper .glyphicon-pushpin:before{content:"\e146"}.pt-cv-wrapper .glyphicon-usd:before{content:"\e148"}.pt-cv-wrapper .glyphicon-gbp:before{content:"\e149"}.pt-cv-wrapper .glyphicon-sort:before{content:"\e150"}.pt-cv-wrapper .glyphicon-sort-by-alphabet:before{content:"\e151"}.pt-cv-wrapper .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.pt-cv-wrapper .glyphicon-sort-by-order:before{content:"\e153"}.pt-cv-wrapper .glyphicon-sort-by-order-alt:before{content:"\e154"}.pt-cv-wrapper .glyphicon-sort-by-attributes:before{content:"\e155"}.pt-cv-wrapper .glyphicon-sort-by-attributes-alt:before{content:"\e156"}.pt-cv-wrapper .glyphicon-unchecked:before{content:"\e157"}.pt-cv-wrapper .glyphicon-expand:before{content:"\e158"}.pt-cv-wrapper .glyphicon-collapse-down:before{content:"\e159"}.pt-cv-wrapper .glyphicon-collapse-up:before{content:"\e160"}.pt-cv-wrapper .glyphicon-log-in:before{content:"\e161"}.pt-cv-wrapper .glyphicon-flash:before{content:"\e162"}.pt-cv-wrapper .glyphicon-log-out:before{content:"\e163"}.pt-cv-wrapper .glyphicon-new-window:before{content:"\e164"}.pt-cv-wrapper .glyphicon-record:before{content:"\e165"}.pt-cv-wrapper .glyphicon-save:before{content:"\e166"}.pt-cv-wrapper .glyphicon-open:before{content:"\e167"}.pt-cv-wrapper .glyphicon-saved:before{content:"\e168"}.pt-cv-wrapper .glyphicon-import:before{content:"\e169"}.pt-cv-wrapper .glyphicon-export:before{content:"\e170"}.pt-cv-wrapper .glyphicon-send:before{content:"\e171"}.pt-cv-wrapper .glyphicon-floppy-disk:before{content:"\e172"}.pt-cv-wrapper .glyphicon-floppy-saved:before{content:"\e173"}.pt-cv-wrapper .glyphicon-floppy-remove:before{content:"\e174"}.pt-cv-wrapper .glyphicon-floppy-save:before{content:"\e175"}.pt-cv-wrapper .glyphicon-floppy-open:before{content:"\e176"}.pt-cv-wrapper .glyphicon-credit-card:before{content:"\e177"}.pt-cv-wrapper .glyphicon-transfer:before{content:"\e178"}.pt-cv-wrapper .glyphicon-cutlery:before{content:"\e179"}.pt-cv-wrapper .glyphicon-header:before{content:"\e180"}.pt-cv-wrapper .glyphicon-compressed:before{content:"\e181"}.pt-cv-wrapper .glyphicon-earphone:before{content:"\e182"}.pt-cv-wrapper .glyphicon-phone-alt:before{content:"\e183"}.pt-cv-wrapper .glyphicon-tower:before{content:"\e184"}.pt-cv-wrapper .glyphicon-stats:before{content:"\e185"}.pt-cv-wrapper .glyphicon-sd-video:before{content:"\e186"}.pt-cv-wrapper .glyphicon-hd-video:before{content:"\e187"}.pt-cv-wrapper .glyphicon-subtitles:before{content:"\e188"}.pt-cv-wrapper .glyphicon-sound-stereo:before{content:"\e189"}.pt-cv-wrapper .glyphicon-sound-dolby:before{content:"\e190"}.pt-cv-wrapper .glyphicon-sound-5-1:before{content:"\e191"}.pt-cv-wrapper .glyphicon-sound-6-1:before{content:"\e192"}.pt-cv-wrapper .glyphicon-sound-7-1:before{content:"\e193"}.pt-cv-wrapper .glyphicon-copyright-mark:before{content:"\e194"}.pt-cv-wrapper .glyphicon-registration-mark:before{content:"\e195"}.pt-cv-wrapper .glyphicon-cloud-download:before{content:"\e197"}.pt-cv-wrapper .glyphicon-cloud-upload:before{content:"\e198"}.pt-cv-wrapper .glyphicon-tree-conifer:before{content:"\e199"}.pt-cv-wrapper .glyphicon-tree-deciduous:before{content:"\e200"}.pt-cv-wrapper .glyphicon-cd:before{content:"\e201"}.pt-cv-wrapper .glyphicon-save-file:before{content:"\e202"}.pt-cv-wrapper .glyphicon-open-file:before{content:"\e203"}.pt-cv-wrapper .glyphicon-level-up:before{content:"\e204"}.pt-cv-wrapper .glyphicon-copy:before{content:"\e205"}.pt-cv-wrapper .glyphicon-paste:before{content:"\e206"}.pt-cv-wrapper .glyphicon-alert:before{content:"\e209"}.pt-cv-wrapper .glyphicon-equalizer:before{content:"\e210"}.pt-cv-wrapper .glyphicon-king:before{content:"\e211"}.pt-cv-wrapper .glyphicon-queen:before{content:"\e212"}.pt-cv-wrapper .glyphicon-pawn:before{content:"\e213"}.pt-cv-wrapper .glyphicon-bishop:before{content:"\e214"}.pt-cv-wrapper .glyphicon-knight:before{content:"\e215"}.pt-cv-wrapper .glyphicon-baby-formula:before{content:"\e216"}.pt-cv-wrapper .glyphicon-tent:before{content:"\26fa"}.pt-cv-wrapper .glyphicon-blackboard:before{content:"\e218"}.pt-cv-wrapper .glyphicon-bed:before{content:"\e219"}.pt-cv-wrapper .glyphicon-apple:before{content:"\f8ff"}.pt-cv-wrapper .glyphicon-erase:before{content:"\e221"}.pt-cv-wrapper .glyphicon-hourglass:before{content:"\231b"}.pt-cv-wrapper .glyphicon-lamp:before{content:"\e223"}.pt-cv-wrapper .glyphicon-duplicate:before{content:"\e224"}.pt-cv-wrapper .glyphicon-piggy-bank:before{content:"\e225"}.pt-cv-wrapper .glyphicon-scissors:before{content:"\e226"}.pt-cv-wrapper .glyphicon-bitcoin:before,.pt-cv-wrapper .glyphicon-btc:before,.pt-cv-wrapper .glyphicon-xbt:before{content:"\e227"}.pt-cv-wrapper .glyphicon-jpy:before,.pt-cv-wrapper .glyphicon-yen:before{content:"\00a5"}.pt-cv-wrapper .glyphicon-rub:before,.pt-cv-wrapper .glyphicon-ruble:before{content:"\20bd"}.pt-cv-wrapper .glyphicon-scale:before{content:"\e230"}.pt-cv-wrapper .glyphicon-ice-lolly:before{content:"\e231"}.pt-cv-wrapper .glyphicon-ice-lolly-tasted:before{content:"\e232"}.pt-cv-wrapper .glyphicon-education:before{content:"\e233"}.pt-cv-wrapper .glyphicon-option-horizontal:before{content:"\e234"}.pt-cv-wrapper .glyphicon-option-vertical:before{content:"\e235"}.pt-cv-wrapper .glyphicon-menu-hamburger:before{content:"\e236"}.pt-cv-wrapper .glyphicon-modal-window:before{content:"\e237"}.pt-cv-wrapper .glyphicon-oil:before{content:"\e238"}.pt-cv-wrapper .glyphicon-grain:before{content:"\e239"}.pt-cv-wrapper .glyphicon-sunglasses:before{content:"\e240"}.pt-cv-wrapper .glyphicon-text-size:before{content:"\e241"}.pt-cv-wrapper .glyphicon-text-color:before{content:"\e242"}.pt-cv-wrapper .glyphicon-text-background:before{content:"\e243"}.pt-cv-wrapper .glyphicon-object-align-top:before{content:"\e244"}.pt-cv-wrapper .glyphicon-object-align-bottom:before{content:"\e245"}.pt-cv-wrapper .glyphicon-object-align-horizontal:before{content:"\e246"}.pt-cv-wrapper .glyphicon-object-align-left:before{content:"\e247"}.pt-cv-wrapper .glyphicon-object-align-vertical:before{content:"\e248"}.pt-cv-wrapper .glyphicon-object-align-right:before{content:"\e249"}.pt-cv-wrapper .glyphicon-triangle-right:before{content:"\e250"}.pt-cv-wrapper .glyphicon-triangle-left:before{content:"\e251"}.pt-cv-wrapper .glyphicon-triangle-bottom:before{content:"\e252"}.pt-cv-wrapper .glyphicon-triangle-top:before{content:"\e253"}.pt-cv-wrapper .glyphicon-console:before{content:"\e254"}.pt-cv-wrapper .glyphicon-superscript:before{content:"\e255"}.pt-cv-wrapper .glyphicon-subscript:before{content:"\e256"}.pt-cv-wrapper .glyphicon-menu-left:before{content:"\e257"}.pt-cv-wrapper .glyphicon-menu-right:before{content:"\e258"}.pt-cv-wrapper .glyphicon-menu-down:before{content:"\e259"}.pt-cv-wrapper .glyphicon-menu-up:before{content:"\e260"}.pt-cv-wrapper img{vertical-align:middle}.pt-cv-wrapper .carousel-inner>.item>a>img,.pt-cv-wrapper .carousel-inner>.item>img,.pt-cv-wrapper .img-responsive,.pt-cv-wrapper .thumbnail a>img,.pt-cv-wrapper .thumbnail>img{display:block;max-width:100%;height:auto}.pt-cv-wrapper .img-rounded{border-radius:6px}.pt-cv-wrapper .img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.pt-cv-wrapper .img-circle{border-radius:50%}.pt-cv-wrapper hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.pt-cv-wrapper .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.pt-cv-wrapper .sr-only-focusable:active,.pt-cv-wrapper .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.pt-cv-wrapper [role=button]{cursor:pointer}.pt-cv-wrapper .container,.pt-cv-wrapper .container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media(min-width:768px){.pt-cv-wrapper .container{width:750px}}@media(min-width:992px){.pt-cv-wrapper .container{width:970px}}@media(min-width:1200px){.pt-cv-wrapper .container{width:1170px}}.pt-cv-wrapper .row{margin-left:-15px;margin-right:-15px}.pt-cv-wrapper .col-lg-1,.pt-cv-wrapper .col-lg-10,.pt-cv-wrapper .col-lg-11,.pt-cv-wrapper .col-lg-12,.pt-cv-wrapper .col-lg-2,.pt-cv-wrapper .col-lg-3,.pt-cv-wrapper .col-lg-4,.pt-cv-wrapper .col-lg-5,.pt-cv-wrapper .col-lg-6,.pt-cv-wrapper .col-lg-7,.pt-cv-wrapper .col-lg-8,.pt-cv-wrapper .col-lg-9,.pt-cv-wrapper .col-md-1,.pt-cv-wrapper .col-md-10,.pt-cv-wrapper .col-md-11,.pt-cv-wrapper .col-md-12,.pt-cv-wrapper .col-md-2,.pt-cv-wrapper .col-md-3,.pt-cv-wrapper .col-md-4,.pt-cv-wrapper .col-md-5,.pt-cv-wrapper .col-md-6,.pt-cv-wrapper .col-md-7,.pt-cv-wrapper .col-md-8,.pt-cv-wrapper .col-md-9,.pt-cv-wrapper .col-sm-1,.pt-cv-wrapper .col-sm-10,.pt-cv-wrapper .col-sm-11,.pt-cv-wrapper .col-sm-12,.pt-cv-wrapper .col-sm-2,.pt-cv-wrapper .col-sm-3,.pt-cv-wrapper .col-sm-4,.pt-cv-wrapper .col-sm-5,.pt-cv-wrapper .col-sm-6,.pt-cv-wrapper .col-sm-7,.pt-cv-wrapper .col-sm-8,.pt-cv-wrapper .col-sm-9,.pt-cv-wrapper .col-xs-1,.pt-cv-wrapper .col-xs-10,.pt-cv-wrapper .col-xs-11,.pt-cv-wrapper .col-xs-12,.pt-cv-wrapper .col-xs-2,.pt-cv-wrapper .col-xs-3,.pt-cv-wrapper .col-xs-4,.pt-cv-wrapper .col-xs-5,.pt-cv-wrapper .col-xs-6,.pt-cv-wrapper .col-xs-7,.pt-cv-wrapper .col-xs-8,.pt-cv-wrapper .col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.pt-cv-wrapper .col-xs-1,.pt-cv-wrapper .col-xs-10,.pt-cv-wrapper .col-xs-11,.pt-cv-wrapper .col-xs-12,.pt-cv-wrapper .col-xs-2,.pt-cv-wrapper .col-xs-3,.pt-cv-wrapper .col-xs-4,.pt-cv-wrapper .col-xs-5,.pt-cv-wrapper .col-xs-6,.pt-cv-wrapper .col-xs-7,.pt-cv-wrapper .col-xs-8,.pt-cv-wrapper .col-xs-9{float:left}.pt-cv-wrapper .col-xs-12{width:100%}.pt-cv-wrapper .col-xs-11{width:91.66666667%}.pt-cv-wrapper .col-xs-10{width:83.33333333%}.pt-cv-wrapper .col-xs-9{width:75%}.pt-cv-wrapper .col-xs-8{width:66.66666667%}.pt-cv-wrapper .col-xs-7{width:58.33333333%}.pt-cv-wrapper .col-xs-6{width:50%}.pt-cv-wrapper .col-xs-5{width:41.66666667%}.pt-cv-wrapper .col-xs-4{width:33.33333333%}.pt-cv-wrapper .col-xs-3{width:25%}.pt-cv-wrapper .col-xs-2{width:16.66666667%}.pt-cv-wrapper .col-xs-1{width:8.33333333%}.pt-cv-wrapper .col-xs-pull-12{right:100%}.pt-cv-wrapper .col-xs-pull-11{right:91.66666667%}.pt-cv-wrapper .col-xs-pull-10{right:83.33333333%}.pt-cv-wrapper .col-xs-pull-9{right:75%}.pt-cv-wrapper .col-xs-pull-8{right:66.66666667%}.pt-cv-wrapper .col-xs-pull-7{right:58.33333333%}.pt-cv-wrapper .col-xs-pull-6{right:50%}.pt-cv-wrapper .col-xs-pull-5{right:41.66666667%}.pt-cv-wrapper .col-xs-pull-4{right:33.33333333%}.pt-cv-wrapper .col-xs-pull-3{right:25%}.pt-cv-wrapper .col-xs-pull-2{right:16.66666667%}.pt-cv-wrapper .col-xs-pull-1{right:8.33333333%}.pt-cv-wrapper .col-xs-pull-0{right:auto}.pt-cv-wrapper .col-xs-push-12{left:100%}.pt-cv-wrapper .col-xs-push-11{left:91.66666667%}.pt-cv-wrapper .col-xs-push-10{left:83.33333333%}.pt-cv-wrapper .col-xs-push-9{left:75%}.pt-cv-wrapper .col-xs-push-8{left:66.66666667%}.pt-cv-wrapper .col-xs-push-7{left:58.33333333%}.pt-cv-wrapper .col-xs-push-6{left:50%}.pt-cv-wrapper .col-xs-push-5{left:41.66666667%}.pt-cv-wrapper .col-xs-push-4{left:33.33333333%}.pt-cv-wrapper .col-xs-push-3{left:25%}.pt-cv-wrapper .col-xs-push-2{left:16.66666667%}.pt-cv-wrapper .col-xs-push-1{left:8.33333333%}.pt-cv-wrapper .col-xs-push-0{left:auto}.pt-cv-wrapper .col-xs-offset-12{margin-left:100%}.pt-cv-wrapper .col-xs-offset-11{margin-left:91.66666667%}.pt-cv-wrapper .col-xs-offset-10{margin-left:83.33333333%}.pt-cv-wrapper .col-xs-offset-9{margin-left:75%}.pt-cv-wrapper .col-xs-offset-8{margin-left:66.66666667%}.pt-cv-wrapper .col-xs-offset-7{margin-left:58.33333333%}.pt-cv-wrapper .col-xs-offset-6{margin-left:50%}.pt-cv-wrapper .col-xs-offset-5{margin-left:41.66666667%}.pt-cv-wrapper .col-xs-offset-4{margin-left:33.33333333%}.pt-cv-wrapper .col-xs-offset-3{margin-left:25%}.pt-cv-wrapper .col-xs-offset-2{margin-left:16.66666667%}.pt-cv-wrapper .col-xs-offset-1{margin-left:8.33333333%}.pt-cv-wrapper .col-xs-offset-0{margin-left:0}@media(min-width:768px){.pt-cv-wrapper .col-sm-1,.pt-cv-wrapper .col-sm-10,.pt-cv-wrapper .col-sm-11,.pt-cv-wrapper .col-sm-12,.pt-cv-wrapper .col-sm-2,.pt-cv-wrapper .col-sm-3,.pt-cv-wrapper .col-sm-4,.pt-cv-wrapper .col-sm-5,.pt-cv-wrapper .col-sm-6,.pt-cv-wrapper .col-sm-7,.pt-cv-wrapper .col-sm-8,.pt-cv-wrapper .col-sm-9{float:left}.pt-cv-wrapper .col-sm-12{width:100%}.pt-cv-wrapper .col-sm-11{width:91.66666667%}.pt-cv-wrapper .col-sm-10{width:83.33333333%}.pt-cv-wrapper .col-sm-9{width:75%}.pt-cv-wrapper .col-sm-8{width:66.66666667%}.pt-cv-wrapper .col-sm-7{width:58.33333333%}.pt-cv-wrapper .col-sm-6{width:50%}.pt-cv-wrapper .col-sm-5{width:41.66666667%}.pt-cv-wrapper .col-sm-4{width:33.33333333%}.pt-cv-wrapper .col-sm-3{width:25%}.pt-cv-wrapper .col-sm-2{width:16.66666667%}.pt-cv-wrapper .col-sm-1{width:8.33333333%}.pt-cv-wrapper .col-sm-pull-12{right:100%}.pt-cv-wrapper .col-sm-pull-11{right:91.66666667%}.pt-cv-wrapper .col-sm-pull-10{right:83.33333333%}.pt-cv-wrapper .col-sm-pull-9{right:75%}.pt-cv-wrapper .col-sm-pull-8{right:66.66666667%}.pt-cv-wrapper .col-sm-pull-7{right:58.33333333%}.pt-cv-wrapper .col-sm-pull-6{right:50%}.pt-cv-wrapper .col-sm-pull-5{right:41.66666667%}.pt-cv-wrapper .col-sm-pull-4{right:33.33333333%}.pt-cv-wrapper .col-sm-pull-3{right:25%}.pt-cv-wrapper .col-sm-pull-2{right:16.66666667%}.pt-cv-wrapper .col-sm-pull-1{right:8.33333333%}.pt-cv-wrapper .col-sm-pull-0{right:auto}.pt-cv-wrapper .col-sm-push-12{left:100%}.pt-cv-wrapper .col-sm-push-11{left:91.66666667%}.pt-cv-wrapper .col-sm-push-10{left:83.33333333%}.pt-cv-wrapper .col-sm-push-9{left:75%}.pt-cv-wrapper .col-sm-push-8{left:66.66666667%}.pt-cv-wrapper .col-sm-push-7{left:58.33333333%}.pt-cv-wrapper .col-sm-push-6{left:50%}.pt-cv-wrapper .col-sm-push-5{left:41.66666667%}.pt-cv-wrapper .col-sm-push-4{left:33.33333333%}.pt-cv-wrapper .col-sm-push-3{left:25%}.pt-cv-wrapper .col-sm-push-2{left:16.66666667%}.pt-cv-wrapper .col-sm-push-1{left:8.33333333%}.pt-cv-wrapper .col-sm-push-0{left:auto}.pt-cv-wrapper .col-sm-offset-12{margin-left:100%}.pt-cv-wrapper .col-sm-offset-11{margin-left:91.66666667%}.pt-cv-wrapper .col-sm-offset-10{margin-left:83.33333333%}.pt-cv-wrapper .col-sm-offset-9{margin-left:75%}.pt-cv-wrapper .col-sm-offset-8{margin-left:66.66666667%}.pt-cv-wrapper .col-sm-offset-7{margin-left:58.33333333%}.pt-cv-wrapper .col-sm-offset-6{margin-left:50%}.pt-cv-wrapper .col-sm-offset-5{margin-left:41.66666667%}.pt-cv-wrapper .col-sm-offset-4{margin-left:33.33333333%}.pt-cv-wrapper .col-sm-offset-3{margin-left:25%}.pt-cv-wrapper .col-sm-offset-2{margin-left:16.66666667%}.pt-cv-wrapper .col-sm-offset-1{margin-left:8.33333333%}.pt-cv-wrapper .col-sm-offset-0{margin-left:0}}@media(min-width:992px){.pt-cv-wrapper .col-md-1,.pt-cv-wrapper .col-md-10,.pt-cv-wrapper .col-md-11,.pt-cv-wrapper .col-md-12,.pt-cv-wrapper .col-md-2,.pt-cv-wrapper .col-md-3,.pt-cv-wrapper .col-md-4,.pt-cv-wrapper .col-md-5,.pt-cv-wrapper .col-md-6,.pt-cv-wrapper .col-md-7,.pt-cv-wrapper .col-md-8,.pt-cv-wrapper .col-md-9{float:left}.pt-cv-wrapper .col-md-12{width:100%}.pt-cv-wrapper .col-md-11{width:91.66666667%}.pt-cv-wrapper .col-md-10{width:83.33333333%}.pt-cv-wrapper .col-md-9{width:75%}.pt-cv-wrapper .col-md-8{width:66.66666667%}.pt-cv-wrapper .col-md-7{width:58.33333333%}.pt-cv-wrapper .col-md-6{width:50%}.pt-cv-wrapper .col-md-5{width:41.66666667%}.pt-cv-wrapper .col-md-4{width:33.33333333%}.pt-cv-wrapper .col-md-3{width:25%}.pt-cv-wrapper .col-md-2{width:16.66666667%}.pt-cv-wrapper .col-md-1{width:8.33333333%}.pt-cv-wrapper .col-md-pull-12{right:100%}.pt-cv-wrapper .col-md-pull-11{right:91.66666667%}.pt-cv-wrapper .col-md-pull-10{right:83.33333333%}.pt-cv-wrapper .col-md-pull-9{right:75%}.pt-cv-wrapper .col-md-pull-8{right:66.66666667%}.pt-cv-wrapper .col-md-pull-7{right:58.33333333%}.pt-cv-wrapper .col-md-pull-6{right:50%}.pt-cv-wrapper .col-md-pull-5{right:41.66666667%}.pt-cv-wrapper .col-md-pull-4{right:33.33333333%}.pt-cv-wrapper .col-md-pull-3{right:25%}.pt-cv-wrapper .col-md-pull-2{right:16.66666667%}.pt-cv-wrapper .col-md-pull-1{right:8.33333333%}.pt-cv-wrapper .col-md-pull-0{right:auto}.pt-cv-wrapper .col-md-push-12{left:100%}.pt-cv-wrapper .col-md-push-11{left:91.66666667%}.pt-cv-wrapper .col-md-push-10{left:83.33333333%}.pt-cv-wrapper .col-md-push-9{left:75%}.pt-cv-wrapper .col-md-push-8{left:66.66666667%}.pt-cv-wrapper .col-md-push-7{left:58.33333333%}.pt-cv-wrapper .col-md-push-6{left:50%}.pt-cv-wrapper .col-md-push-5{left:41.66666667%}.pt-cv-wrapper .col-md-push-4{left:33.33333333%}.pt-cv-wrapper .col-md-push-3{left:25%}.pt-cv-wrapper .col-md-push-2{left:16.66666667%}.pt-cv-wrapper .col-md-push-1{left:8.33333333%}.pt-cv-wrapper .col-md-push-0{left:auto}.pt-cv-wrapper .col-md-offset-12{margin-left:100%}.pt-cv-wrapper .col-md-offset-11{margin-left:91.66666667%}.pt-cv-wrapper .col-md-offset-10{margin-left:83.33333333%}.pt-cv-wrapper .col-md-offset-9{margin-left:75%}.pt-cv-wrapper .col-md-offset-8{margin-left:66.66666667%}.pt-cv-wrapper .col-md-offset-7{margin-left:58.33333333%}.pt-cv-wrapper .col-md-offset-6{margin-left:50%}.pt-cv-wrapper .col-md-offset-5{margin-left:41.66666667%}.pt-cv-wrapper .col-md-offset-4{margin-left:33.33333333%}.pt-cv-wrapper .col-md-offset-3{margin-left:25%}.pt-cv-wrapper .col-md-offset-2{margin-left:16.66666667%}.pt-cv-wrapper .col-md-offset-1{margin-left:8.33333333%}.pt-cv-wrapper .col-md-offset-0{margin-left:0}}@media(min-width:1200px){.pt-cv-wrapper .col-lg-1,.pt-cv-wrapper .col-lg-10,.pt-cv-wrapper .col-lg-11,.pt-cv-wrapper .col-lg-12,.pt-cv-wrapper .col-lg-2,.pt-cv-wrapper .col-lg-3,.pt-cv-wrapper .col-lg-4,.pt-cv-wrapper .col-lg-5,.pt-cv-wrapper .col-lg-6,.pt-cv-wrapper .col-lg-7,.pt-cv-wrapper .col-lg-8,.pt-cv-wrapper .col-lg-9{float:left}.pt-cv-wrapper .col-lg-12{width:100%}.pt-cv-wrapper .col-lg-11{width:91.66666667%}.pt-cv-wrapper .col-lg-10{width:83.33333333%}.pt-cv-wrapper .col-lg-9{width:75%}.pt-cv-wrapper .col-lg-8{width:66.66666667%}.pt-cv-wrapper .col-lg-7{width:58.33333333%}.pt-cv-wrapper .col-lg-6{width:50%}.pt-cv-wrapper .col-lg-5{width:41.66666667%}.pt-cv-wrapper .col-lg-4{width:33.33333333%}.pt-cv-wrapper .col-lg-3{width:25%}.pt-cv-wrapper .col-lg-2{width:16.66666667%}.pt-cv-wrapper .col-lg-1{width:8.33333333%}.pt-cv-wrapper .col-lg-pull-12{right:100%}.pt-cv-wrapper .col-lg-pull-11{right:91.66666667%}.pt-cv-wrapper .col-lg-pull-10{right:83.33333333%}.pt-cv-wrapper .col-lg-pull-9{right:75%}.pt-cv-wrapper .col-lg-pull-8{right:66.66666667%}.pt-cv-wrapper .col-lg-pull-7{right:58.33333333%}.pt-cv-wrapper .col-lg-pull-6{right:50%}.pt-cv-wrapper .col-lg-pull-5{right:41.66666667%}.pt-cv-wrapper .col-lg-pull-4{right:33.33333333%}.pt-cv-wrapper .col-lg-pull-3{right:25%}.pt-cv-wrapper .col-lg-pull-2{right:16.66666667%}.pt-cv-wrapper .col-lg-pull-1{right:8.33333333%}.pt-cv-wrapper .col-lg-pull-0{right:auto}.pt-cv-wrapper .col-lg-push-12{left:100%}.pt-cv-wrapper .col-lg-push-11{left:91.66666667%}.pt-cv-wrapper .col-lg-push-10{left:83.33333333%}.pt-cv-wrapper .col-lg-push-9{left:75%}.pt-cv-wrapper .col-lg-push-8{left:66.66666667%}.pt-cv-wrapper .col-lg-push-7{left:58.33333333%}.pt-cv-wrapper .col-lg-push-6{left:50%}.pt-cv-wrapper .col-lg-push-5{left:41.66666667%}.pt-cv-wrapper .col-lg-push-4{left:33.33333333%}.pt-cv-wrapper .col-lg-push-3{left:25%}.pt-cv-wrapper .col-lg-push-2{left:16.66666667%}.pt-cv-wrapper .col-lg-push-1{left:8.33333333%}.pt-cv-wrapper .col-lg-push-0{left:auto}.pt-cv-wrapper .col-lg-offset-12{margin-left:100%}.pt-cv-wrapper .col-lg-offset-11{margin-left:91.66666667%}.pt-cv-wrapper .col-lg-offset-10{margin-left:83.33333333%}.pt-cv-wrapper .col-lg-offset-9{margin-left:75%}.pt-cv-wrapper .col-lg-offset-8{margin-left:66.66666667%}.pt-cv-wrapper .col-lg-offset-7{margin-left:58.33333333%}.pt-cv-wrapper .col-lg-offset-6{margin-left:50%}.pt-cv-wrapper .col-lg-offset-5{margin-left:41.66666667%}.pt-cv-wrapper .col-lg-offset-4{margin-left:33.33333333%}.pt-cv-wrapper .col-lg-offset-3{margin-left:25%}.pt-cv-wrapper .col-lg-offset-2{margin-left:16.66666667%}.pt-cv-wrapper .col-lg-offset-1{margin-left:8.33333333%}.pt-cv-wrapper .col-lg-offset-0{margin-left:0}}.pt-cv-wrapper .btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.pt-cv-wrapper .btn.active.focus,.pt-cv-wrapper .btn.active:focus,.pt-cv-wrapper .btn.focus,.pt-cv-wrapper .btn:active.focus,.pt-cv-wrapper .btn:active:focus,.pt-cv-wrapper .btn:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.pt-cv-wrapper .btn.focus,.pt-cv-wrapper .btn:focus,.pt-cv-wrapper .btn:hover{color:#333;text-decoration:none}.pt-cv-wrapper .btn.active,.pt-cv-wrapper .btn:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.pt-cv-wrapper .btn.disabled,.pt-cv-wrapper .btn[disabled],.pt-cv-wrapper fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.pt-cv-wrapper a.btn.disabled,.pt-cv-wrapper fieldset[disabled] a.btn{pointer-events:none}.pt-cv-wrapper .btn-default{color:#333;background-color:#fff;border-color:#ccc}.pt-cv-wrapper .btn-default.focus,.pt-cv-wrapper .btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.pt-cv-wrapper .btn-default.active,.pt-cv-wrapper .btn-default:active,.pt-cv-wrapper .btn-default:hover,.pt-cv-wrapper .open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.pt-cv-wrapper .btn-default.active.focus,.pt-cv-wrapper .btn-default.active:focus,.pt-cv-wrapper .btn-default.active:hover,.pt-cv-wrapper .btn-default:active.focus,.pt-cv-wrapper .btn-default:active:focus,.pt-cv-wrapper .btn-default:active:hover,.pt-cv-wrapper .open>.dropdown-toggle.btn-default.focus,.pt-cv-wrapper .open>.dropdown-toggle.btn-default:focus,.pt-cv-wrapper .open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.pt-cv-wrapper .btn-default.active,.pt-cv-wrapper .btn-default:active,.pt-cv-wrapper .open>.dropdown-toggle.btn-default{background-image:none}.pt-cv-wrapper .btn-default.disabled,.pt-cv-wrapper .btn-default.disabled.active,.pt-cv-wrapper .btn-default.disabled.focus,.pt-cv-wrapper .btn-default.disabled:active,.pt-cv-wrapper .btn-default.disabled:focus,.pt-cv-wrapper .btn-default.disabled:hover,.pt-cv-wrapper .btn-default[disabled],.pt-cv-wrapper .btn-default[disabled].active,.pt-cv-wrapper .btn-default[disabled].focus,.pt-cv-wrapper .btn-default[disabled]:active,.pt-cv-wrapper .btn-default[disabled]:focus,.pt-cv-wrapper .btn-default[disabled]:hover,.pt-cv-wrapper fieldset[disabled] .btn-default,.pt-cv-wrapper fieldset[disabled] .btn-default.active,.pt-cv-wrapper fieldset[disabled] .btn-default.focus,.pt-cv-wrapper fieldset[disabled] .btn-default:active,.pt-cv-wrapper fieldset[disabled] .btn-default:focus,.pt-cv-wrapper fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.pt-cv-wrapper .btn-default .badge{color:#fff;background-color:#333}.pt-cv-wrapper .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.pt-cv-wrapper .btn-primary.focus,.pt-cv-wrapper .btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.pt-cv-wrapper .btn-primary.active,.pt-cv-wrapper .btn-primary:active,.pt-cv-wrapper .btn-primary:hover,.pt-cv-wrapper .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.pt-cv-wrapper .btn-primary.active.focus,.pt-cv-wrapper .btn-primary.active:focus,.pt-cv-wrapper .btn-primary.active:hover,.pt-cv-wrapper .btn-primary:active.focus,.pt-cv-wrapper .btn-primary:active:focus,.pt-cv-wrapper .btn-primary:active:hover,.pt-cv-wrapper .open>.dropdown-toggle.btn-primary.focus,.pt-cv-wrapper .open>.dropdown-toggle.btn-primary:focus,.pt-cv-wrapper .open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.pt-cv-wrapper .btn-primary.active,.pt-cv-wrapper .btn-primary:active,.pt-cv-wrapper .open>.dropdown-toggle.btn-primary{background-image:none}.pt-cv-wrapper .btn-primary.disabled,.pt-cv-wrapper .btn-primary.disabled.active,.pt-cv-wrapper .btn-primary.disabled.focus,.pt-cv-wrapper .btn-primary.disabled:active,.pt-cv-wrapper .btn-primary.disabled:focus,.pt-cv-wrapper .btn-primary.disabled:hover,.pt-cv-wrapper .btn-primary[disabled],.pt-cv-wrapper .btn-primary[disabled].active,.pt-cv-wrapper .btn-primary[disabled].focus,.pt-cv-wrapper .btn-primary[disabled]:active,.pt-cv-wrapper .btn-primary[disabled]:focus,.pt-cv-wrapper .btn-primary[disabled]:hover,.pt-cv-wrapper fieldset[disabled] .btn-primary,.pt-cv-wrapper fieldset[disabled] .btn-primary.active,.pt-cv-wrapper fieldset[disabled] .btn-primary.focus,.pt-cv-wrapper fieldset[disabled] .btn-primary:active,.pt-cv-wrapper fieldset[disabled] .btn-primary:focus,.pt-cv-wrapper fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.pt-cv-wrapper .btn-primary .badge{color:#337ab7;background-color:#fff}.pt-cv-wrapper .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.pt-cv-wrapper .btn-success.focus,.pt-cv-wrapper .btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.pt-cv-wrapper .btn-success.active,.pt-cv-wrapper .btn-success:active,.pt-cv-wrapper .btn-success:hover,.pt-cv-wrapper .open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.pt-cv-wrapper .btn-success.active.focus,.pt-cv-wrapper .btn-success.active:focus,.pt-cv-wrapper .btn-success.active:hover,.pt-cv-wrapper .btn-success:active.focus,.pt-cv-wrapper .btn-success:active:focus,.pt-cv-wrapper .btn-success:active:hover,.pt-cv-wrapper .open>.dropdown-toggle.btn-success.focus,.pt-cv-wrapper .open>.dropdown-toggle.btn-success:focus,.pt-cv-wrapper .open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.pt-cv-wrapper .btn-success.active,.pt-cv-wrapper .btn-success:active,.pt-cv-wrapper .open>.dropdown-toggle.btn-success{background-image:none}.pt-cv-wrapper .btn-success.disabled,.pt-cv-wrapper .btn-success.disabled.active,.pt-cv-wrapper .btn-success.disabled.focus,.pt-cv-wrapper .btn-success.disabled:active,.pt-cv-wrapper .btn-success.disabled:focus,.pt-cv-wrapper .btn-success.disabled:hover,.pt-cv-wrapper .btn-success[disabled],.pt-cv-wrapper .btn-success[disabled].active,.pt-cv-wrapper .btn-success[disabled].focus,.pt-cv-wrapper .btn-success[disabled]:active,.pt-cv-wrapper .btn-success[disabled]:focus,.pt-cv-wrapper .btn-success[disabled]:hover,.pt-cv-wrapper fieldset[disabled] .btn-success,.pt-cv-wrapper fieldset[disabled] .btn-success.active,.pt-cv-wrapper fieldset[disabled] .btn-success.focus,.pt-cv-wrapper fieldset[disabled] .btn-success:active,.pt-cv-wrapper fieldset[disabled] .btn-success:focus,.pt-cv-wrapper fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.pt-cv-wrapper .btn-success .badge{color:#5cb85c;background-color:#fff}.pt-cv-wrapper .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.pt-cv-wrapper .btn-info.focus,.pt-cv-wrapper .btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.pt-cv-wrapper .btn-info.active,.pt-cv-wrapper .btn-info:active,.pt-cv-wrapper .btn-info:hover,.pt-cv-wrapper .open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.pt-cv-wrapper .btn-info.active.focus,.pt-cv-wrapper .btn-info.active:focus,.pt-cv-wrapper .btn-info.active:hover,.pt-cv-wrapper .btn-info:active.focus,.pt-cv-wrapper .btn-info:active:focus,.pt-cv-wrapper .btn-info:active:hover,.pt-cv-wrapper .open>.dropdown-toggle.btn-info.focus,.pt-cv-wrapper .open>.dropdown-toggle.btn-info:focus,.pt-cv-wrapper .open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.pt-cv-wrapper .btn-info.active,.pt-cv-wrapper .btn-info:active,.pt-cv-wrapper .open>.dropdown-toggle.btn-info{background-image:none}.pt-cv-wrapper .btn-info.disabled,.pt-cv-wrapper .btn-info.disabled.active,.pt-cv-wrapper .btn-info.disabled.focus,.pt-cv-wrapper .btn-info.disabled:active,.pt-cv-wrapper .btn-info.disabled:focus,.pt-cv-wrapper .btn-info.disabled:hover,.pt-cv-wrapper .btn-info[disabled],.pt-cv-wrapper .btn-info[disabled].active,.pt-cv-wrapper .btn-info[disabled].focus,.pt-cv-wrapper .btn-info[disabled]:active,.pt-cv-wrapper .btn-info[disabled]:focus,.pt-cv-wrapper .btn-info[disabled]:hover,.pt-cv-wrapper fieldset[disabled] .btn-info,.pt-cv-wrapper fieldset[disabled] .btn-info.active,.pt-cv-wrapper fieldset[disabled] .btn-info.focus,.pt-cv-wrapper fieldset[disabled] .btn-info:active,.pt-cv-wrapper fieldset[disabled] .btn-info:focus,.pt-cv-wrapper fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.pt-cv-wrapper .btn-info .badge{color:#5bc0de;background-color:#fff}.pt-cv-wrapper .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.pt-cv-wrapper .btn-warning.focus,.pt-cv-wrapper .btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.pt-cv-wrapper .btn-warning.active,.pt-cv-wrapper .btn-warning:active,.pt-cv-wrapper .btn-warning:hover,.pt-cv-wrapper .open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.pt-cv-wrapper .btn-warning.active.focus,.pt-cv-wrapper .btn-warning.active:focus,.pt-cv-wrapper .btn-warning.active:hover,.pt-cv-wrapper .btn-warning:active.focus,.pt-cv-wrapper .btn-warning:active:focus,.pt-cv-wrapper .btn-warning:active:hover,.pt-cv-wrapper .open>.dropdown-toggle.btn-warning.focus,.pt-cv-wrapper .open>.dropdown-toggle.btn-warning:focus,.pt-cv-wrapper .open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.pt-cv-wrapper .btn-warning.active,.pt-cv-wrapper .btn-warning:active,.pt-cv-wrapper .open>.dropdown-toggle.btn-warning{background-image:none}.pt-cv-wrapper .btn-warning.disabled,.pt-cv-wrapper .btn-warning.disabled.active,.pt-cv-wrapper .btn-warning.disabled.focus,.pt-cv-wrapper .btn-warning.disabled:active,.pt-cv-wrapper .btn-warning.disabled:focus,.pt-cv-wrapper .btn-warning.disabled:hover,.pt-cv-wrapper .btn-warning[disabled],.pt-cv-wrapper .btn-warning[disabled].active,.pt-cv-wrapper .btn-warning[disabled].focus,.pt-cv-wrapper .btn-warning[disabled]:active,.pt-cv-wrapper .btn-warning[disabled]:focus,.pt-cv-wrapper .btn-warning[disabled]:hover,.pt-cv-wrapper fieldset[disabled] .btn-warning,.pt-cv-wrapper fieldset[disabled] .btn-warning.active,.pt-cv-wrapper fieldset[disabled] .btn-warning.focus,.pt-cv-wrapper fieldset[disabled] .btn-warning:active,.pt-cv-wrapper fieldset[disabled] .btn-warning:focus,.pt-cv-wrapper fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.pt-cv-wrapper .btn-warning .badge{color:#f0ad4e;background-color:#fff}.pt-cv-wrapper .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.pt-cv-wrapper .btn-danger.focus,.pt-cv-wrapper .btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.pt-cv-wrapper .btn-danger.active,.pt-cv-wrapper .btn-danger:active,.pt-cv-wrapper .btn-danger:hover,.pt-cv-wrapper .open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.pt-cv-wrapper .btn-danger.active.focus,.pt-cv-wrapper .btn-danger.active:focus,.pt-cv-wrapper .btn-danger.active:hover,.pt-cv-wrapper .btn-danger:active.focus,.pt-cv-wrapper .btn-danger:active:focus,.pt-cv-wrapper .btn-danger:active:hover,.pt-cv-wrapper .open>.dropdown-toggle.btn-danger.focus,.pt-cv-wrapper .open>.dropdown-toggle.btn-danger:focus,.pt-cv-wrapper .open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.pt-cv-wrapper .btn-danger.active,.pt-cv-wrapper .btn-danger:active,.pt-cv-wrapper .open>.dropdown-toggle.btn-danger{background-image:none}.pt-cv-wrapper .btn-danger.disabled,.pt-cv-wrapper .btn-danger.disabled.active,.pt-cv-wrapper .btn-danger.disabled.focus,.pt-cv-wrapper .btn-danger.disabled:active,.pt-cv-wrapper .btn-danger.disabled:focus,.pt-cv-wrapper .btn-danger.disabled:hover,.pt-cv-wrapper .btn-danger[disabled],.pt-cv-wrapper .btn-danger[disabled].active,.pt-cv-wrapper .btn-danger[disabled].focus,.pt-cv-wrapper .btn-danger[disabled]:active,.pt-cv-wrapper .btn-danger[disabled]:focus,.pt-cv-wrapper .btn-danger[disabled]:hover,.pt-cv-wrapper fieldset[disabled] .btn-danger,.pt-cv-wrapper fieldset[disabled] .btn-danger.active,.pt-cv-wrapper fieldset[disabled] .btn-danger.focus,.pt-cv-wrapper fieldset[disabled] .btn-danger:active,.pt-cv-wrapper fieldset[disabled] .btn-danger:focus,.pt-cv-wrapper fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.pt-cv-wrapper .btn-danger .badge{color:#d9534f;background-color:#fff}.pt-cv-wrapper .btn-link{color:#337ab7;font-weight:400;border-radius:0}.pt-cv-wrapper .btn-link,.pt-cv-wrapper .btn-link.active,.pt-cv-wrapper .btn-link:active,.pt-cv-wrapper .btn-link[disabled],.pt-cv-wrapper fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.pt-cv-wrapper .btn-link,.pt-cv-wrapper .btn-link:active,.pt-cv-wrapper .btn-link:focus,.pt-cv-wrapper .btn-link:hover{border-color:transparent}.pt-cv-wrapper .btn-link:focus,.pt-cv-wrapper .btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.pt-cv-wrapper .btn-link[disabled]:focus,.pt-cv-wrapper .btn-link[disabled]:hover,.pt-cv-wrapper fieldset[disabled] .btn-link:focus,.pt-cv-wrapper fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.pt-cv-wrapper .btn-group-lg>.btn,.pt-cv-wrapper .btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.pt-cv-wrapper .btn-group-sm>.btn,.pt-cv-wrapper .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.pt-cv-wrapper .btn-group-xs>.btn,.pt-cv-wrapper .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.pt-cv-wrapper .btn-block{display:block;width:100%}.pt-cv-wrapper .btn-block+.btn-block{margin-top:5px}.pt-cv-wrapper input[type=button].btn-block,.pt-cv-wrapper input[type=reset].btn-block,.pt-cv-wrapper input[type=submit].btn-block{width:100%}.pt-cv-wrapper .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.pt-cv-wrapper .fade.in{opacity:1}.pt-cv-wrapper .collapse{display:none}.pt-cv-wrapper .collapse.in{display:block}.pt-cv-wrapper tr.collapse.in{display:table-row}.pt-cv-wrapper tbody.collapse.in{display:table-row-group}.pt-cv-wrapper .collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.pt-cv-wrapper .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}.pt-cv-wrapper .dropdown,.pt-cv-wrapper .dropup{position:relative}.pt-cv-wrapper .dropdown-toggle:focus{outline:0}.pt-cv-wrapper .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,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);-webkit-background-clip:padding-box;background-clip:padding-box}.pt-cv-wrapper .dropdown-menu.pull-right{right:0;left:auto}.pt-cv-wrapper .dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.pt-cv-wrapper .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.pt-cv-wrapper .dropdown-menu>li>a:focus,.pt-cv-wrapper .dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.pt-cv-wrapper .dropdown-menu>.active>a,.pt-cv-wrapper .dropdown-menu>.active>a:focus,.pt-cv-wrapper .dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.pt-cv-wrapper .dropdown-menu>.disabled>a,.pt-cv-wrapper .dropdown-menu>.disabled>a:focus,.pt-cv-wrapper .dropdown-menu>.disabled>a:hover{color:#777}.pt-cv-wrapper .dropdown-menu>.disabled>a:focus,.pt-cv-wrapper .dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.pt-cv-wrapper .open>.dropdown-menu{display:block}.pt-cv-wrapper .open>a{outline:0}.pt-cv-wrapper .dropdown-menu-right{left:auto;right:0}.pt-cv-wrapper .dropdown-menu-left{left:0;right:auto}.pt-cv-wrapper .dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.pt-cv-wrapper .dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pt-cv-wrapper .pull-right>.dropdown-menu{right:0;left:auto}.pt-cv-wrapper .dropup .caret,.pt-cv-wrapper .navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;content:""}.pt-cv-wrapper .dropup .dropdown-menu,.pt-cv-wrapper .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media(min-width:768px){.pt-cv-wrapper .navbar-right .dropdown-menu{left:auto;right:0}.pt-cv-wrapper .navbar-right .dropdown-menu-left{left:0;right:auto}}.pt-cv-wrapper .btn-group,.pt-cv-wrapper .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.pt-cv-wrapper .btn-group-vertical>.btn,.pt-cv-wrapper .btn-group>.btn{position:relative;float:left}.pt-cv-wrapper .btn-group-vertical>.btn.active,.pt-cv-wrapper .btn-group-vertical>.btn:active,.pt-cv-wrapper .btn-group-vertical>.btn:focus,.pt-cv-wrapper .btn-group-vertical>.btn:hover,.pt-cv-wrapper .btn-group>.btn.active,.pt-cv-wrapper .btn-group>.btn:active,.pt-cv-wrapper .btn-group>.btn:focus,.pt-cv-wrapper .btn-group>.btn:hover{z-index:2}.pt-cv-wrapper .btn-group .btn+.btn,.pt-cv-wrapper .btn-group .btn+.btn-group,.pt-cv-wrapper .btn-group .btn-group+.btn,.pt-cv-wrapper .btn-group .btn-group+.btn-group{margin-left:-1px}.pt-cv-wrapper .btn-toolbar{margin-left:-5px}.pt-cv-wrapper .btn-toolbar .btn,.pt-cv-wrapper .btn-toolbar .btn-group,.pt-cv-wrapper .btn-toolbar .input-group{float:left}.pt-cv-wrapper .btn-toolbar>.btn,.pt-cv-wrapper .btn-toolbar>.btn-group,.pt-cv-wrapper .btn-toolbar>.input-group{margin-left:5px}.pt-cv-wrapper .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.pt-cv-wrapper .btn-group>.btn:first-child{margin-left:0}.pt-cv-wrapper .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.pt-cv-wrapper .btn-group>.btn:last-child:not(:first-child),.pt-cv-wrapper .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.pt-cv-wrapper .btn-group>.btn-group{float:left}.pt-cv-wrapper .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.pt-cv-wrapper .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.pt-cv-wrapper .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.pt-cv-wrapper .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.pt-cv-wrapper .btn-group .dropdown-toggle:active,.pt-cv-wrapper .btn-group.open .dropdown-toggle{outline:0}.pt-cv-wrapper .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.pt-cv-wrapper .btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.pt-cv-wrapper .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.pt-cv-wrapper .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.pt-cv-wrapper .btn .caret{margin-left:0}.pt-cv-wrapper .btn-lg .caret{border-width:5px 5px 0}.pt-cv-wrapper .dropup .btn-lg .caret{border-width:0 5px 5px}.pt-cv-wrapper .btn-group-vertical>.btn,.pt-cv-wrapper .btn-group-vertical>.btn-group,.pt-cv-wrapper .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.pt-cv-wrapper .btn-group-vertical>.btn-group>.btn{float:none}.pt-cv-wrapper .btn-group-vertical>.btn+.btn,.pt-cv-wrapper .btn-group-vertical>.btn+.btn-group,.pt-cv-wrapper .btn-group-vertical>.btn-group+.btn,.pt-cv-wrapper .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.pt-cv-wrapper .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.pt-cv-wrapper .btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.pt-cv-wrapper .btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.pt-cv-wrapper .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.pt-cv-wrapper .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.pt-cv-wrapper .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.pt-cv-wrapper .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.pt-cv-wrapper .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.pt-cv-wrapper .btn-group-justified>.btn,.pt-cv-wrapper .btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.pt-cv-wrapper .btn-group-justified>.btn-group .btn{width:100%}.pt-cv-wrapper .btn-group-justified>.btn-group .dropdown-menu{left:auto}.pt-cv-wrapper [data-toggle=buttons]>.btn input[type=checkbox],.pt-cv-wrapper [data-toggle=buttons]>.btn input[type=radio],.pt-cv-wrapper [data-toggle=buttons]>.btn-group>.btn input[type=checkbox],.pt-cv-wrapper [data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.pt-cv-wrapper .nav{margin-bottom:0;padding-left:0;list-style:none}.pt-cv-wrapper .nav>li{position:relative;display:block}.pt-cv-wrapper .nav>li>a{position:relative;display:block;padding:10px 15px}.pt-cv-wrapper .nav>li>a:focus,.pt-cv-wrapper .nav>li>a:hover{text-decoration:none;background-color:#eee}.pt-cv-wrapper .nav>li.disabled>a{color:#777}.pt-cv-wrapper .nav>li.disabled>a:focus,.pt-cv-wrapper .nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.pt-cv-wrapper .nav .open>a,.pt-cv-wrapper .nav .open>a:focus,.pt-cv-wrapper .nav .open>a:hover{background-color:#eee;border-color:#337ab7}.pt-cv-wrapper .nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.pt-cv-wrapper .nav>li>a>img{max-width:none}.pt-cv-wrapper .nav-tabs{border-bottom:1px solid #ddd}.pt-cv-wrapper .nav-tabs>li{float:left;margin-bottom:-1px}.pt-cv-wrapper .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.pt-cv-wrapper .nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.pt-cv-wrapper .nav-tabs>li.active>a,.pt-cv-wrapper .nav-tabs>li.active>a:focus,.pt-cv-wrapper .nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.pt-cv-wrapper .nav-tabs.nav-justified{width:100%;border-bottom:0}.pt-cv-wrapper .nav-tabs.nav-justified>li{float:none}.pt-cv-wrapper .nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.pt-cv-wrapper .nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.pt-cv-wrapper .nav-tabs.nav-justified>li{display:table-cell;width:1%}.pt-cv-wrapper .nav-tabs.nav-justified>li>a{margin-bottom:0}}.pt-cv-wrapper .nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.pt-cv-wrapper .nav-tabs.nav-justified>.active>a,.pt-cv-wrapper .nav-tabs.nav-justified>.active>a:focus,.pt-cv-wrapper .nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media(min-width:768px){.pt-cv-wrapper .nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.pt-cv-wrapper .nav-tabs.nav-justified>.active>a,.pt-cv-wrapper .nav-tabs.nav-justified>.active>a:focus,.pt-cv-wrapper .nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.pt-cv-wrapper .nav-pills>li{float:left}.pt-cv-wrapper .nav-pills>li>a{border-radius:4px}.pt-cv-wrapper .nav-pills>li+li{margin-left:2px}.pt-cv-wrapper .nav-pills>li.active>a,.pt-cv-wrapper .nav-pills>li.active>a:focus,.pt-cv-wrapper .nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.pt-cv-wrapper .nav-stacked>li{float:none}.pt-cv-wrapper .nav-stacked>li+li{margin-top:2px;margin-left:0}.pt-cv-wrapper .nav-justified{width:100%}.pt-cv-wrapper .nav-justified>li{float:none}.pt-cv-wrapper .nav-justified>li>a{text-align:center;margin-bottom:5px}.pt-cv-wrapper .nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.pt-cv-wrapper .nav-justified>li{display:table-cell;width:1%}.pt-cv-wrapper .nav-justified>li>a{margin-bottom:0}}.pt-cv-wrapper .nav-tabs-justified{border-bottom:0}.pt-cv-wrapper .nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.pt-cv-wrapper .nav-tabs-justified>.active>a,.pt-cv-wrapper .nav-tabs-justified>.active>a:focus,.pt-cv-wrapper .nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media(min-width:768px){.pt-cv-wrapper .nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.pt-cv-wrapper .nav-tabs-justified>.active>a,.pt-cv-wrapper .nav-tabs-justified>.active>a:focus,.pt-cv-wrapper .nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.pt-cv-wrapper .tab-content>.tab-pane{display:none}.pt-cv-wrapper .tab-content>.active{display:block}.pt-cv-wrapper .nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.pt-cv-wrapper .pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pt-cv-wrapper .pagination>li{display:inline}.pt-cv-wrapper .pagination>li>a,.pt-cv-wrapper .pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pt-cv-wrapper .pagination>li:first-child>a,.pt-cv-wrapper .pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pt-cv-wrapper .pagination>li:last-child>a,.pt-cv-wrapper .pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pt-cv-wrapper .pagination>li>a:focus,.pt-cv-wrapper .pagination>li>a:hover,.pt-cv-wrapper .pagination>li>span:focus,.pt-cv-wrapper .pagination>li>span:hover{z-index:3;color:#23527c;background-color:#eee;border-color:#ddd}.pt-cv-wrapper .pagination>.active>a,.pt-cv-wrapper .pagination>.active>a:focus,.pt-cv-wrapper .pagination>.active>a:hover,.pt-cv-wrapper .pagination>.active>span,.pt-cv-wrapper .pagination>.active>span:focus,.pt-cv-wrapper .pagination>.active>span:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pt-cv-wrapper .pagination>.disabled>a,.pt-cv-wrapper .pagination>.disabled>a:focus,.pt-cv-wrapper .pagination>.disabled>a:hover,.pt-cv-wrapper .pagination>.disabled>span,.pt-cv-wrapper .pagination>.disabled>span:focus,.pt-cv-wrapper .pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pt-cv-wrapper .pagination-lg>li>a,.pt-cv-wrapper .pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pt-cv-wrapper .pagination-lg>li:first-child>a,.pt-cv-wrapper .pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pt-cv-wrapper .pagination-lg>li:last-child>a,.pt-cv-wrapper .pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pt-cv-wrapper .pagination-sm>li>a,.pt-cv-wrapper .pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pt-cv-wrapper .pagination-sm>li:first-child>a,.pt-cv-wrapper .pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pt-cv-wrapper .pagination-sm>li:last-child>a,.pt-cv-wrapper .pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pt-cv-wrapper .thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.pt-cv-wrapper .thumbnail a>img,.pt-cv-wrapper .thumbnail>img{margin-left:auto;margin-right:auto}.pt-cv-wrapper a.thumbnail.active,.pt-cv-wrapper a.thumbnail:focus,.pt-cv-wrapper a.thumbnail:hover{border-color:#337ab7}.pt-cv-wrapper .thumbnail .caption{padding:9px;color:#333}.pt-cv-wrapper .pt-cv-carousel{position:relative}.pt-cv-wrapper .carousel-inner{position:relative;overflow:hidden;width:100%}.pt-cv-wrapper .carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.pt-cv-wrapper .carousel-inner>.item>a>img,.pt-cv-wrapper .carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.pt-cv-wrapper .carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.pt-cv-wrapper .carousel-inner>.item.active.right,.pt-cv-wrapper .carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.pt-cv-wrapper .carousel-inner>.item.active.left,.pt-cv-wrapper .carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.pt-cv-wrapper .carousel-inner>.item.active,.pt-cv-wrapper .carousel-inner>.item.next.left,.pt-cv-wrapper .carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.pt-cv-wrapper .carousel-inner>.active,.pt-cv-wrapper .carousel-inner>.next,.pt-cv-wrapper .carousel-inner>.prev{display:block}.pt-cv-wrapper .carousel-inner>.active{left:0}.pt-cv-wrapper .carousel-inner>.next,.pt-cv-wrapper .carousel-inner>.prev{position:absolute;top:0;width:100%}.pt-cv-wrapper .carousel-inner>.next{left:100%}.pt-cv-wrapper .carousel-inner>.prev{left:-100%}.pt-cv-wrapper .carousel-inner>.next.left,.pt-cv-wrapper .carousel-inner>.prev.right{left:0}.pt-cv-wrapper .carousel-inner>.active.left{left:-100%}.pt-cv-wrapper .carousel-inner>.active.right{left:100%}.pt-cv-wrapper .carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.pt-cv-wrapper .carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.pt-cv-wrapper .carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.pt-cv-wrapper .carousel-control:focus,.pt-cv-wrapper .carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.pt-cv-wrapper .carousel-control .glyphicon-chevron-left,.pt-cv-wrapper .carousel-control .glyphicon-chevron-right,.pt-cv-wrapper .carousel-control .icon-next,.pt-cv-wrapper .carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.pt-cv-wrapper .carousel-control .glyphicon-chevron-left,.pt-cv-wrapper .carousel-control .icon-prev{left:50%;margin-left:-10px}.pt-cv-wrapper .carousel-control .glyphicon-chevron-right,.pt-cv-wrapper .carousel-control .icon-next{right:50%;margin-right:-10px}.pt-cv-wrapper .carousel-control .icon-next,.pt-cv-wrapper .carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.pt-cv-wrapper .carousel-control .icon-prev:before{content:'\2039'}.pt-cv-wrapper .carousel-control .icon-next:before{content:'\203a'}.pt-cv-wrapper .pt-cv-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}.pt-cv-wrapper .pt-cv-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:transparent}.pt-cv-wrapper .pt-cv-carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.pt-cv-wrapper .pt-cv-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,.6)}.pt-cv-wrapper .pt-cv-carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.pt-cv-wrapper .carousel-control .glyphicon-chevron-left,.pt-cv-wrapper .carousel-control .glyphicon-chevron-right,.pt-cv-wrapper .carousel-control .icon-next,.pt-cv-wrapper .carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.pt-cv-wrapper .carousel-control .glyphicon-chevron-left,.pt-cv-wrapper .carousel-control .icon-prev{margin-left:-15px}.pt-cv-wrapper .carousel-control .glyphicon-chevron-right,.pt-cv-wrapper .carousel-control .icon-next{margin-right:-15px}.pt-cv-wrapper .pt-cv-carousel-caption{left:20%;right:20%;padding-bottom:30px}.pt-cv-wrapper .pt-cv-carousel-indicators{bottom:20px}}.pt-cv-wrapper .btn-group-vertical>.btn-group:after,.pt-cv-wrapper .btn-group-vertical>.btn-group:before,.pt-cv-wrapper .btn-toolbar:after,.pt-cv-wrapper .btn-toolbar:before,.pt-cv-wrapper .clearfix:after,.pt-cv-wrapper .clearfix:before,.pt-cv-wrapper .container-fluid:after,.pt-cv-wrapper .container-fluid:before,.pt-cv-wrapper .container:after,.pt-cv-wrapper .container:before,.pt-cv-wrapper .nav:after,.pt-cv-wrapper .nav:before,.pt-cv-wrapper .row:after,.pt-cv-wrapper .row:before{content:" ";display:table}.pt-cv-wrapper .btn-group-vertical>.btn-group:after,.pt-cv-wrapper .btn-toolbar:after,.pt-cv-wrapper .clearfix:after,.pt-cv-wrapper .container-fluid:after,.pt-cv-wrapper .container:after,.pt-cv-wrapper .nav:after,.pt-cv-wrapper .row:after{clear:both}.pt-cv-wrapper .center-block{display:block;margin-left:auto;margin-right:auto}.pt-cv-wrapper .pull-right{float:right!important}.pt-cv-wrapper .pull-left{float:left!important}.pt-cv-wrapper .hide{display:none!important}.pt-cv-wrapper .show{display:block!important}.pt-cv-wrapper .invisible{visibility:hidden}.pt-cv-wrapper .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.pt-cv-wrapper .hidden{display:none!important}.pt-cv-wrapper .affix{position:fixed}.pt-cv-wrapper .text-left{text-align:left}.pt-cv-wrapper .text-right{text-align:right}.pt-cv-wrapper .text-center{text-align:center}.pt-cv-wrapper .text-justify{text-align:justify}.pt-cv-wrapper .text-nowrap{white-space:nowrap}.pt-cv-wrapper .text-lowercase{text-transform:lowercase}.pt-cv-wrapper .text-uppercase{text-transform:uppercase}.pt-cv-wrapper .text-capitalize{text-transform:capitalize}.pt-cv-wrapper .text-muted{color:#777}.pt-cv-wrapper .text-primary{color:#428bca}.pt-cv-wrapper .h1,.pt-cv-wrapper .h2,.pt-cv-wrapper .h3,.pt-cv-wrapper .h4,.pt-cv-wrapper .h5,.pt-cv-wrapper .h6,.pt-cv-wrapper h1,.pt-cv-wrapper h2,.pt-cv-wrapper h3,.pt-cv-wrapper h4,.pt-cv-wrapper h5,.pt-cv-wrapper h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.pt-cv-view *,.pt-cv-view :after,.pt-cv-view :before{-webkit-box-sizing:border-box!important;-moz-box-sizing:border-box!important;box-sizing:border-box!important}.pt-cv-view{position:relative;clear:both}.pt-cv-view:after{clear:both;content:'';display:block}.pt-cv-page{position:relative}.pt-cv-gls-group{clear:left}.pt-cv-view strong,.pt-cv-view strong *{font-weight:600!important}.pt-cv-colsys{margin-left:-15px;margin-right:-15px}@media (min-width:992px){.pt-cv-colsys [data-cvc="11"] .col-md-1:nth-child(11n+1),.pt-cv-colsys [data-cvc="12"] .col-md-1:nth-child(12n+1),.pt-cv-colsys [data-cvc="2"] .col-md-6:nth-child(2n+1),.pt-cv-colsys [data-cvc="3"] .col-md-4:nth-child(3n+1),.pt-cv-colsys [data-cvc="4"] .col-md-3:nth-child(4n+1),.pt-cv-colsys [data-cvc="5"] .col-md-2:nth-child(5n+1),.pt-cv-colsys [data-cvc="6"] .col-md-2:nth-child(6n+1),.pt-cv-colsys [data-cvc="7"] .col-md-1:nth-child(7n+1),.pt-cv-colsys [data-cvc="8"] .col-md-1:nth-child(8n+1),.pt-cv-colsys [data-cvc="9"] .col-md-1:nth-child(9n+1),.pt-cv-colsys [data-cvc="10"] .col-md-1:nth-child(10n+1){clear:left!important}}@media (min-width:768px) and (max-width:991px){.pt-cv-colsys .col-sm-2:nth-child(5n+1),.pt-cv-colsys .col-sm-2:nth-child(6n+1),.pt-cv-colsys .col-sm-3:nth-child(4n+1),.pt-cv-colsys .col-sm-4:nth-child(3n+1),.pt-cv-colsys .col-sm-6:nth-child(2n+1){clear:left!important}}@media (max-width:767px){.pt-cv-colsys .col-xs-2:nth-child(5n+1),.pt-cv-colsys .col-xs-2:nth-child(6n+1),.pt-cv-colsys .col-xs-3:nth-child(4n+1),.pt-cv-colsys .col-xs-4:nth-child(3n+1),.pt-cv-colsys .col-xs-6:nth-child(2n+1){clear:left!important}}@media (min-width:992px){.pt-cv-colsys [data-cvc="5"] .pt-cv-content-item{width:20%}.pt-cv-colsys [data-cvc="7"] .pt-cv-content-item{width:14.28571428%}.pt-cv-colsys [data-cvc="8"] .pt-cv-content-item{width:12.5%}.pt-cv-colsys [data-cvc="9"] .pt-cv-content-item{width:11.11111111%}.pt-cv-colsys [data-cvc="10"] .pt-cv-content-item{width:10%}.pt-cv-colsys [data-cvc="11"] .pt-cv-content-item{width:9.09090909%}}.pt-cv-colsys .pt-cv-content-item{flex:none;max-width:initial}.pt-cv-wrapper .row{display:block}.pt-cv-view a,.pt-cv-wrapper .btn{text-decoration:none;outline:0!important;font-style:normal}.pt-cv-view:not(.iscvblock) a,.pt-cv-wrapper .pt-cv-view:not(.iscvblock) .btn{text-decoration:none!important}.pt-cv-view a{pointer-events:auto}.pt-cv-readmore{color:#fff;margin:10px 0;max-width:100%}.pt-cv-content-item{padding-bottom:15px;position:relative;overflow:hidden}.pt-cv-carousel-caption>:not(:last-child),.pt-cv-collapsible .panel-body>:not(:last-child),.pt-cv-colwrap>:not(:last-child),.pt-cv-ifield>*,.pt-cv-overlay-wrapper>:not(:last-child),.pt-cv-remain-wrapper>:not(:last-child),.pt-cv-view .pt-cv-content-item>*{margin-bottom:10px}.pt-cv-collapsible .pt-cv-content-item>*{margin-bottom:0!important}.pt-cv-title{margin-top:0!important}h4.pt-cv-title{font-size:18px}.pt-cv-view .pt-cv-title{margin-bottom:10px}.pt-cv-title a{font-weight:600;border-bottom:none}.pt-cv-thumbnail{height:auto;max-width:100%!important;margin-top:0!important;margin-bottom:10px!important;min-width:inherit!important}.pt-cv-thumbnail.pull-left{margin-right:15px!important}.pt-cv-thumbnail.pull-right{margin-left:15px}.pt-cv-no-image{min-width:80px;min-height:80px}.pt-cv-content,.pt-cv-content *{font-weight:400}.pt-cv-meta-fields{font-size:13px;margin-top:0}.pt-cv-meta-fields a{color:#41b7d8}.pt-cv-pagination-wrapper{margin:20px 0}.pt-cv-view+.pagination{float:left;margin:0 auto!important}.pt-cv-view+.pagination>li{background:0 0!important}.pt-cv-view+.pagination>li>a{cursor:pointer}.pt-cv-spinner{width:15px!important;height:15px!important;margin-top:-25px;display:inline-block;opacity:0!important;filter:alpha(opacity=0);color:#0470ec;-webkit-transition:opacity .25s,width .25s;-moz-transition:opacity .25s,width .25s;-o-transition:opacity .25s,width .25s;transition:opacity .25s,width .25s}.pt-cv-spinner.active{opacity:1!important;filter:alpha(opacity=100)}.pt-cv-clear-pagination{margin-bottom:50px}.pt-cv-pagination-wrapper{clear:both;position:relative}.pt-cv-pgloadmore+.pt-cv-pagination-wrapper{overflow-anchor:none}.pt-cv-pagination-wrapper .pt-cv-pagination.pagination{-webkit-box-shadow:none!important;box-shadow:none!important;border:0;padding:0;margin:initial;min-height:initial;width:auto;display:inline-block}.pt-cv-pagination li{display:inline!important;background-image:none!important}.pt-cv-pagination li:after,.pt-cv-pagination li:before{content:none!important}.pt-cv-pagination li a{cursor:pointer;display:inline-block}.pt-cv-pagination li.active a{border-color:rgba(66,139,202,.2)}.pt-cv-pagination[data-isblock=''] li.active a{border-color:rgba(66,139,202,.2)!important}.pt-cv-pagination li a[href="#"]{pointer-events:none}.pt-cv-wrapper .pagination>li:first-child>a,.pt-cv-wrapper .pagination>li:first-child>span,.pt-cv-wrapper .pagination>li:last-child>a,.pt-cv-wrapper .pagination>li:last-child>span{border-radius:0}.pt-cv-collapsible .panel{display:block}.pt-cv-collapsible .panel-heading{padding:0}.pt-cv-collapsible .panel-heading a{display:block;padding:10px 15px}.pt-cv-collapsible .panel-body{padding:10px}.pt-cv-view .collapse{display:none;visibility:hidden}.pt-cv-view .collapse.in{display:block;visibility:visible;overflow:auto}.pt-cv-collapsible .panel-heading br{display:none}.pt-cv-collapsible{overflow-anchor:none}.pt-cv-view .cv-npf .panel{border:none;box-shadow:none}.pt-cv-scrollable{margin-left:0;margin-right:0}.pt-cv-scrollable .carousel-inner{opacity:1}.pt-cv-scrollable .pt-cv-carousel-caption{bottom:15px;padding:10px}.pt-cv-scrollable:not(.iscvblock) .pt-cv-carousel-caption{text-align:left}.pt-cv-scrollable .pt-cv-carousel-caption *{text-shadow:none}.pt-cv-scrollable .pt-cv-title{padding-bottom:0}.pt-cv-scrollable .pt-cv-carousel-caption{margin-bottom:10px!important}.pt-cv-scrollable .pt-cv-thumbnail{width:100%}.pt-cv-carousel-caption:empty{display:none}.pt-cv-scrollable .pt-cv-carousel .item{height:auto;margin:auto;min-height:0;max-height:none;line-height:normal}.pt-cv-scrollable .pt-cv-cap-w-img{background:rgba(0,0,0,.6);text-shadow:0 1px 1px #000;left:15px;right:15px}.pt-cv-cap-w-img *,.pt-cv-cap-w-img .pt-cv-title a{color:#fff}.pt-cv-view:not(.iscvblock) .pt-cv-cap-w-img .pt-cv-title a{color:#fff!important}.pt-cv-scrollable .pt-cv-cap-wo-img{position:relative!important;bottom:0!important;left:0;right:0}.pt-cv-cap-wo-img *{color:#000}.pt-cv-cap-wo-img .pt-cv-readmore{color:#fff}.pt-cv-view .carousel-control{background-image:none!important;height:30px;width:40px;bottom:-15px;top:auto;color:#00A100;opacity:1;cursor:pointer}.pt-cv-view .carousel-control .glyphicon{font-size:20px}.pt-cv-view .pt-cv-carousel-indicators{bottom:-15px;margin-bottom:4px}.pt-cv-view .pt-cv-carousel-indicators li{background:#cecece;border:1px solid #cecece;margin:0}.pt-cv-view .pt-cv-carousel-indicators li.active{background:#428bca;border:1px solid #428bca}.pt-cv-2-col .pt-cv-title{clear:none!important}@media (min-width:480px){.pt-cv-2-col .pt-cv-colwrap{display:table-cell;word-break:break-word}}@media (max-width:479px){.list1.iscvblock .pt-cv-2-col .pt-cv-colwrap,.pt-cv-view:not(.iscvblock) .pt-cv-2-col .pt-cv-colwrap{clear:both}}.pt-cv-view .panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.pt-cv-view .panel-default{border-color:#ddd;padding-bottom:0}.pt-cv-view .panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.pt-cv-pagination:after,.pt-cv-pagination:before{content:none!important}.pt-cv-wrapper [class*=pt-cv-] a{box-shadow:none}.pt-cv-view p:empty{display:none}.pt-cv-view .pt-cv-ifield{margin-bottom:0!important}@media (max-width:480px){.pt-cv-nolf .pt-cv-2-col .pt-cv-thumbnail{float:none!important;margin:0}}@media print{.pt-cv-view a[href]:after{content:none!important}.pt-cv-view .collapse{display:block!important;height:auto!important;visibility:visible!important}}.pt-cv-center{text-align:center}.pt-cv-center .pt-cv-thumb-wrapper{margin-left:auto;margin-right:auto}.pt-cv-left{text-align:left}.pt-cv-right{text-align:right}.pt-cv-thumb-wrapper{position:relative;max-width:100%!important;overflow:hidden}.pt-cv-thumb-wrapper:only-child{margin-bottom:0}.pt-cv-thumb-wrapper .pt-cv-href-thumbnail,.pt-cv-thumb-wrapper.pt-cv-href-thumbnail{display:block}.pt-cv-thumb-wrapper .pt-cv-thumbnail{object-fit:cover;width:100%;margin-bottom:0!important}.pt-cv-thumb-wrapper.pull-left{margin-right:15px}.pt-cv-thumb-wrapper.pull-right{margin-left:15px}.pt-cv-taxoterm[class*=over_]{z-index:11}.pt-cv-taxoterm.over_top_left{position:absolute;left:5px;top:5px}.pt-cv-taxoterm.over_top_right{position:absolute;right:5px;top:5px}.pt-cv-taxoterm.over_bottom_left{position:absolute;left:5px;bottom:5px}.pt-cv-taxoterm.over_bottom_right{position:absolute;right:5px;bottom:5px}.pt-cv-taxoterm.over_center{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.pt-cv-taxoterm a{display:inline-block;margin-right:5px}.pt-cv-taxoterm.over_center a~a,.pt-cv-taxoterm[class*="_right"] a{margin-left:5px;margin-right:0}.pt-cv-taxoterm.over_center a{margin:0}.pt-cv-meta-fields img.avatar{display:inline-block;margin-right:5px;border-radius:100%}.pt-cv-blockgrid>.pt-cv-page{display:grid;grid-gap:20px}.pt-cv-blockgrid.grid1.layout2 .pt-cv-content-item{box-shadow:#e1e1e1 0 0 10px 0}.pt-cv-blockgrid.grid1.layout2 .pt-cv-remain-wrapper{padding:0 15px}.pt-cv-blockgrid.list1 .pt-cv-thumb-wrapper{margin-bottom:0}.pt-cv-blockgrid.list1 .pt-cv-content-item{padding-bottom:0}.pt-cv-scrollable .pt-cv-thumb-wrapper{margin-bottom:0}.pt-cv-scrollable.iscvblock .pt-cv-carousel{padding-bottom:10px}.pt-cv-scrollable.iscvblock .pt-cv-carousel-caption{margin-bottom:0!important;bottom:0;text-align:inherit}.pt-cv-scrollable.iscvblock .carousel-control,.pt-cv-scrollable.iscvblock .pt-cv-carousel-indicators{bottom:-20px}.pt-cv-onebig.beside-others>.pt-cv-page .small-items,.pt-cv-onebig>.pt-cv-page{display:grid;grid-gap:20px}.pt-cv-onebig.beside-others>.pt-cv-page{grid-template-columns:50% 50%}.pt-cv-onebig.beside-others>.pt-cv-page>:first-child{grid-column-start:1;grid-row-start:1}.pt-cv-onebig.beside-others.swap-position>.pt-cv-page>:first-child{grid-column-start:2}.pt-cv-onebig.above-others>.pt-cv-page>:first-child{grid-column:1/-1}.pt-cv-onebig.beside-others>.pt-cv-page .small-items{grid-template-rows:min-content;grid-auto-rows:min-content}.pt-cv-overlaygrid>.pt-cv-page{display:grid;grid-gap:10px}.pt-cv-overlaygrid>.pt-cv-page.cv-npf{display:block}.pt-cv-overlaygrid .pt-cv-page.cv-npf .pt-cv-no-post{color:initial}.pt-cv-overlaygrid .pt-cv-content-item{padding-bottom:0}.pt-cv-overlaygrid .pt-cv-thumb-wrapper{margin-bottom:0!important}.pt-cv-overlay-wrapper,.pt-cv-overlaygrid .pt-cv-thumb-wrapper::before{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10}.pt-cv-overlaygrid:not(.pt-cv-nooverlay) .pt-cv-thumb-wrapper::before{content:''}.pt-cv-overlay-wrapper{padding:15px;display:flex;flex-direction:column;justify-content:center}.pt-cv-overlaygrid:not(.pt-cv-nooverlay) .pt-cv-href-thumbnail,.pt-cv-overlaygrid:not(.pt-cv-nooverlay) .pt-cv-thumb-wrapper,.pt-cv-overlaygrid:not(.pt-cv-nooverlay) .pt-cv-thumbnail{height:100%}.pt-cv-overlaygrid.overlay2.layout1 .pt-cv-content-item:first-child{grid-area:1 / 1 / 3!important}.pt-cv-overlaygrid.overlay2.layout2 .pt-cv-content-item:first-child{grid-area:1 / 1 / 4!important}.pt-cv-overlaygrid.overlay2.layout3 .pt-cv-content-item:first-child{grid-area:1 / 1 / 5!important}.pt-cv-overlaygrid.overlay3>.pt-cv-page>:first-child{grid-column:span 2;grid-row:span 2}.pt-cv-overlaygrid.overlay3.layout1>.pt-cv-page>:nth-child(4),.pt-cv-overlaygrid.overlay3.layout2>.pt-cv-page>:nth-child(2),.pt-cv-overlaygrid.overlay3.layout3>.pt-cv-page>:nth-child(3){grid-column:span 2}.pt-cv-overlaygrid.overlay4>.pt-cv-page>:first-child{grid-column:span 2;grid-row:span 2}.pt-cv-overlaygrid.overlay4.layout1>.pt-cv-page>:nth-child(4){grid-column:4 / span 1;grid-row:1 / span 2}.pt-cv-overlaygrid.overlay5.layout3>.pt-cv-page>:nth-child(2),.pt-cv-overlaygrid.overlay5.layout4>.pt-cv-page>:nth-child(3),.pt-cv-overlaygrid.overlay5:not(.layout3):not(.layout4)>.pt-cv-page>:first-child{grid-column:span 2;grid-row:span 2}.pt-cv-overlaygrid.overlay5.layout1>.pt-cv-page{grid-auto-rows:1fr}.pt-cv-overlaygrid.overlay6.layout1>.pt-cv-page{grid-template-columns:repeat(2,1fr)}.pt-cv-overlaygrid.overlay6.layout2>.pt-cv-page{grid-template-columns:repeat(3,1fr)}.pt-cv-overlaygrid.overlay6.layout3>.pt-cv-page{grid-template-columns:repeat(4,1fr)}.pt-cv-overlaygrid.overlay6>.pt-cv-page>:first-child{grid-column:1/-1}.pt-cv-overlaygrid.overlay7>.pt-cv-page{grid-template-columns:repeat(4,1fr)}.pt-cv-overlaygrid.overlay7.layout1>.pt-cv-page>:first-child{grid-column:span 2}.iscvblock .pt-cv-readmore.btn{background:#0075ff;border-color:transparent}.iscvblock .pt-cv-readmore.btn:active,.iscvblock .pt-cv-readmore.btn:focus,.iscvblock .pt-cv-readmore.btn:hover{background:#2196F3;border-color:transparent}div.pt-cv-view .pt-cv-wooatc .product.woocommerce a{margin-left:0}.pt-cv-view.iscvblock:not(.pt-cv-overlaygrid):not(.pt-cv-scrollable) .pt-cv-meta-fields *{color:#9e9e9e}.pt-cv-overlaygrid:not(.pt-cv-nooverlay) *,.pt-cv-overlaygrid:not(.pt-cv-nooverlay) .glyphicon,.pt-cv-overlaygrid:not(.pt-cv-nooverlay) a:visited{color:#fff}.pt-cv-overlaygrid:not(.pt-cv-nooverlay) .pt-cv-content-item[data-pid]{color:initial}.iscvblock.iscvreal{margin:0 0 30px}.iscvblock.iscvreal .pt-cv-taxoterm *{padding:1px 6px}.iscvblock .pt-cv-content-item{padding-bottom:0}.pt-cv-view.iscvblock .pt-cv-content-item a{text-decoration:none}@media (min-width:480px){.iscvblock .pt-cv-2-col .pt-cv-colwrap{display:flow-root;min-width:min-content}}.pt-cv-heading-container{border-color:#3F51B5;border-style:solid;border-width:0}.pt-cv-heading-container *{margin:0;padding:0;display:inline-block}.pt-cv-heading-container.heading2{border-width:0 0 0 3px}.pt-cv-heading-container.heading2 *{padding-left:10px}.pt-cv-heading-container.heading4,.pt-cv-heading-container.heading5{border-width:0 0 3px}.pt-cv-heading-container.heading4 *{padding-bottom:5px}.pt-cv-heading-container.heading3 *,.pt-cv-heading-container.heading5 *{padding:5px 10px;background-color:#3F51B5;color:#fff}.pt-cv-heading-container.heading6{border-width:3px}.pt-cv-heading-container.heading6 *{padding:10px}.pt-cv-view[class*=cveffect-] .pt-cv-thumb-wrapper img{transition:.35s}.pt-cv-view.cveffect-darken .pt-cv-content-item:hover img{filter:brightness(85%)}.pt-cv-view.cveffect-zoomin .pt-cv-content-item:hover img,.pt-cv-view.cveffect-zoomout .pt-cv-thumb-wrapper img{transform:scale(1.2)}.pt-cv-view.cveffect-zoomout .pt-cv-content-item:hover img{transform:scale(1)}.pt-cv-view[class*=cveffect-move] .pt-cv-thumb-wrapper img{transform:scale(1.1)}.pt-cv-view.cveffect-moveup .pt-cv-content-item:hover img{transform-origin:bottom}.pt-cv-view.cveffect-movedown .pt-cv-content-item:hover img{transform-origin:top}.pt-cv-view.cveffect-moveleft .pt-cv-content-item:hover img{transform-origin:right}.pt-cv-view.cveffect-moveright .pt-cv-content-item:hover img{transform-origin:left}@media (max-width:767px){.pt-cv-onebig.beside-others>.pt-cv-page{grid-template-columns:1fr!important}.pt-cv-onebig.beside-others.swap-position>.pt-cv-page>:first-child{grid-column-start:1}.pt-cv-blockgrid.list1 .pt-cv-thumb-wrapper,.pt-cv-onebig.above-others>.pt-cv-page>:first-child .pt-cv-thumb-wrapper{width:100%!important;margin-bottom:10px}.pt-cv-overlaygrid .pt-cv-content-item{grid-column:auto!important;grid-row:auto!important}.pt-cv-overlaygrid{--rowspan:1}.pt-cv-overlaygrid.overlay6>.pt-cv-page,.pt-cv-overlaygrid.overlay7>.pt-cv-page,.pt-cv-overlaygrid.overlay8>.pt-cv-page{grid-template-columns:1fr!important}}.iscvelementor .pt-cv-taxoterm[class*=over_] *,.pt-cv-view.iscvhybrid .pt-cv-taxoterm[class*=over_] *,.pt-cv-view:not(.iscvblock) .pt-cv-taxoterm[class*=over_] *{background-color:#fff6f6;padding:1px 6px;color:#222}.pt-cv-nooverlay.iscvelementor .pt-cv-content-item,.pt-cv-nooverlay.iscvhybrid .pt-cv-content-item{box-shadow:0 0 1px 0}.iscvblock .pt-cv-page::after,.iscvblock .pt-cv-page::before{content:none}
