/* Minify_CSS_UriRewriter::$debugText

*/

/* 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  */ 	word-break: normal !important;
/* 13  */ }
/* 14  */
/* 15  */ .wpcf7 .hidden-fields-container {
/* 16  */ 	display: none;
/* 17  */ }
/* 18  */
/* 19  */ .wpcf7 form .wpcf7-response-output {
/* 20  */ 	margin: 2em 0.5em 1em;
/* 21  */ 	padding: 0.2em 1em;
/* 22  */ 	border: 2px solid #00a0d2; /* Blue */
/* 23  */ }
/* 24  */
/* 25  */ .wpcf7 form.init .wpcf7-response-output,
/* 26  */ .wpcf7 form.resetting .wpcf7-response-output,
/* 27  */ .wpcf7 form.submitting .wpcf7-response-output {
/* 28  */ 	display: none;
/* 29  */ }
/* 30  */
/* 31  */ .wpcf7 form.sent .wpcf7-response-output {
/* 32  */ 	border-color: #46b450; /* Green */
/* 33  */ }
/* 34  */
/* 35  */ .wpcf7 form.failed .wpcf7-response-output,
/* 36  */ .wpcf7 form.aborted .wpcf7-response-output {
/* 37  */ 	border-color: #dc3232; /* Red */
/* 38  */ }
/* 39  */
/* 40  */ .wpcf7 form.spam .wpcf7-response-output {
/* 41  */ 	border-color: #f56e28; /* Orange */
/* 42  */ }
/* 43  */
/* 44  */ .wpcf7 form.invalid .wpcf7-response-output,
/* 45  */ .wpcf7 form.unaccepted .wpcf7-response-output,
/* 46  */ .wpcf7 form.payment-required .wpcf7-response-output {
/* 47  */ 	border-color: #ffb900; /* Yellow */
/* 48  */ }
/* 49  */
/* 50  */ .wpcf7-form-control-wrap {

/* styles.css */

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

/* styles.css */

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

/* styles.css */

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

*/

/* ewd-ulb-main.css */

/* 1   */ @charset "UTF-8";
/* 2   */
/* 3   */
/* 4   */ /*
/* 5   *| ==============================================
/* 6   *| Videos
/* 7   *| ==============================================
/* 8   *| */
/* 9   */
/* 10  */ /*
/* 11  *| iframe{
/* 12  *| 	height: 100%;
/* 13  *| 	width:100%;
/* 14  *| }*/
/* 15  */
/* 16  */ /*.ewd-ulb-video {
/* 17  *| 	background: #000;
/* 18  *| }
/* 19  *|
/* 20  *| .ewd-ulb-video-holder {
/* 21  *| 	max-width: 640px;
/* 22  *|  	margin: 0px auto;
/* 23  *| }
/* 24  *|
/* 25  *| .ewd-ulb-video-holder > div {
/* 26  *| 	position: relative;
/* 27  *| 	padding-bottom: 60%;
/* 28  *| 	height: 0px;
/* 29  *| }
/* 30  *|
/* 31  *| .ewd-ulb-video-holder iframe {
/* 32  *| 	position: absolute;
/* 33  *| 	top: 0px;
/* 34  *| 	left: 0px;
/* 35  *| 	width: 100%;
/* 36  *| 	height: 100%;
/* 37  *| }
/* 38  *| */
/* 39  */
/* 40  */
/* 41  */ /*
/* 42  *| ==============================================
/* 43  *| Lightbox
/* 44  *| ==============================================
/* 45  *| */
/* 46  */
/* 47  */ .ewd-ulb-hidden {
/* 48  */ 	display: none;
/* 49  */ }
/* 50  */

/* ewd-ulb-main.css */

/* 51  */ .ewd-ulb-lightbox {
/* 52  */ 	cursor: pointer;
/* 53  */ }
/* 54  */
/* 55  */ /* BACKGROUND OVERLAY */
/* 56  */ .ewd-ulb-background {
/* 57  */ 	z-index: 9000;
/* 58  */ 	position: fixed;
/* 59  */ 	top: 0;
/* 60  */ 	left: 0;
/* 61  */ 	width: 100%;
/* 62  */ 	height: 100% !important;
/* 63  */ 	background: #222;
/* 64  */ 	background: rgba(0,0,0,.83);
/* 65  */ }
/* 66  */
/* 67  */ /* CONTAINER */
/* 68  */ .ewd-ulb-lightbox-container {
/* 69  */ 	z-index: 9001;
/* 70  */ 	position: fixed;
/* 71  */ 	top: 0;
/* 72  */ 	left: 0;
/* 73  */ 	width: 100%;
/* 74  */ 	height: 100%;
/* 75  */ 	height: 100vh;
/* 76  */ }
/* 77  */ .ewd-ulb-slide-container {
/* 78  */ 	position: relative;
/* 79  */ 	float: left;
/* 80  */ 	width: calc(100% - 160px);
/* 81  */ 	padding: 0 10px;
/* 82  */ 	height: calc(100% - 116px);
/* 83  */ 	height: calc(100vh - 116px);
/* 84  */ 	margin: 58px 80px 0;
/* 85  */ }
/* 86  */ .ewd-ulb-thumbnails-top .ewd-ulb-slide-container, .ewd-ulb-thumbnails-bottom .ewd-ulb-slide-container {
/* 87  */ 	height: calc(100% - 222px);
/* 88  */ 	height: calc(100vh - 222px);
/* 89  */ }
/* 90  */ @media screen and (max-width: 640px) {
/* 91  */ 	.ewd-ulb-slide-container {
/* 92  */ 		width: 96%;
/* 93  */ 		margin: 58px 2% 0;
/* 94  */ 	}
/* 95  */ }
/* 96  */ .ewd-ulb-thumbnails-top .ewd-ulb-slide-container {
/* 97  */ 	margin-top: 164px;
/* 98  */ }
/* 99  */ .ewd-ulb-slide {
/* 100 */ 	position: absolute;

/* ewd-ulb-main.css */

/* 101 */ 	left: 0;
/* 102 */ 	top: 0;
/* 103 */ 	width: 100%;
/* 104 */ 	height: 100%;
/* 105 */ 	/*display: none;*/
/* 106 */ 	visibility: hidden;
/* 107 */ }
/* 108 */ .ewd-ulb-active-slide {
/* 109 */ 	/*display: block;*/
/* 110 */ 	visibility: visible;
/* 111 */ }
/* 112 */
/* 113 */ .ewd-ulb-old-active-slide.ewd-ulb-transition-next.ewd-ulb-no-transition,
/* 114 */ .ewd-ulb-old-active-slide.ewd-ulb-transition-previous.ewd-ulb-no-transition {
/* 115 */ 	/*display: none;*/
/* 116 */ 	visibility: hidden;
/* 117 */
/* 118 */ }
/* 119 */
/* 120 */ .ewd-ulb-active-slide.ewd-ulb-transition-next.ewd-ulb-horizontal-slide {
/* 121 */ 	left: 100%;
/* 122 */ 	-webkit-animation: 0.5s linear 0s slidein forwards;
/* 123 */ 	-moz-animation: 0.5s linear 0s slidein forwards;
/* 124 */ 	-o-animation: 0.5s linear 0s slidein forwards;
/* 125 */ 	animation: 0.5s linear 0s slidein forwards;
/* 126 */ }
/* 127 */ @-webkit-keyframes slidein {
/* 128 */ 	100% {
/* 129 */ 		left: 0px;
/* 130 */ 		opacity: 1;
/* 131 */ 	}
/* 132 */ }
/* 133 */ @-moz-keyframes slidein {
/* 134 */ 	100% {
/* 135 */ 		left: 0px;
/* 136 */ 		opacity: 1;
/* 137 */ 	}
/* 138 */ }
/* 139 */ @-o-keyframes slidein {
/* 140 */ 	100% {
/* 141 */ 		left: 0px;
/* 142 */ 		opacity: 1;
/* 143 */ 	}
/* 144 */ }
/* 145 */ @keyframes slidein {
/* 146 */ 	100% {
/* 147 */ 		left: 0px;
/* 148 */ 		opacity: 1;
/* 149 */ 	}
/* 150 */ }

/* ewd-ulb-main.css */

/* 151 */ .ewd-ulb-old-active-slide.ewd-ulb-transition-next.ewd-ulb-horizontal-slide {
/* 152 */ 	left: 0px;
/* 153 */ 	-webkit-animation: 0.5s linear 0s slideout forwards;
/* 154 */ 	-moz-animation: 0.5s linear 0s slideout forwards;
/* 155 */ 	-o-animation: 0.5s linear 0s slideout forwards;
/* 156 */ 	animation: 0.5s linear 0s slideout forwards;
/* 157 */ }
/* 158 */ @-webkit-keyframes slideout {
/* 159 */ 	100% {
/* 160 */ 		left: -100%;
/* 161 */ 		opacity: 1;
/* 162 */ 	}
/* 163 */ }
/* 164 */ @-moz-keyframes slideout {
/* 165 */ 	100% {
/* 166 */ 		left: -100%;
/* 167 */ 		opacity: 1;
/* 168 */ 	}
/* 169 */ }
/* 170 */ @-o-keyframes slideout {
/* 171 */ 	100% {
/* 172 */ 		left: -100%;
/* 173 */ 		opacity: 1;
/* 174 */ 	}
/* 175 */ }
/* 176 */ @keyframes slideout {
/* 177 */ 	100% {
/* 178 */ 		left: -100%;
/* 179 */ 		opacity: 1;
/* 180 */ 	}
/* 181 */ }
/* 182 */
/* 183 */ .ewd-ulb-active-slide.ewd-ulb-transition-previous.ewd-ulb-horizontal-slide {
/* 184 */ 	left: -100%;
/* 185 */ 	-webkit-animation: 0.5s linear 0s prevSlidein forwards;
/* 186 */ 	-moz-animation: 0.5s linear 0s prevSlidein forwards;
/* 187 */ 	-o-animation: 0.5s linear 0s prevSlidein forwards;
/* 188 */ 	animation: 0.5s linear 0s prevSlidein forwards;
/* 189 */ }
/* 190 */ @-webkit-keyframes prevSlidein {
/* 191 */ 	100% {
/* 192 */ 		left: 0px;
/* 193 */ 		opacity: 1;
/* 194 */ 	}
/* 195 */ }
/* 196 */ @-moz-keyframes prevSlidein {
/* 197 */ 	100% {
/* 198 */ 		left: 0px;
/* 199 */ 		opacity: 1;
/* 200 */ 	}

/* ewd-ulb-main.css */

/* 201 */ }
/* 202 */ @-o-keyframes prevSlidein {
/* 203 */ 	100% {
/* 204 */ 		left: 0px;
/* 205 */ 		opacity: 1;
/* 206 */ 	}
/* 207 */ }
/* 208 */ @keyframes prevSlidein {
/* 209 */ 	100% {
/* 210 */ 		left: 0px;
/* 211 */ 		opacity: 1;
/* 212 */ 	}
/* 213 */ }
/* 214 */ .ewd-ulb-old-active-slide.ewd-ulb-transition-previous.ewd-ulb-horizontal-slide {
/* 215 */ 	left: 0px;
/* 216 */ 	-webkit-animation: 0.5s linear 0s prevSlideout forwards;
/* 217 */ 	-moz-animation: 0.5s linear 0s prevSlideout forwards;
/* 218 */ 	-o-animation: 0.5s linear 0s prevSlideout forwards;
/* 219 */ 	animation: 0.5s linear 0s prevSlideout forwards;
/* 220 */ }
/* 221 */ @-webkit-keyframes prevSlideout {
/* 222 */ 	100% {
/* 223 */ 		left: 100%;
/* 224 */ 		opacity: 1;
/* 225 */ 	}
/* 226 */ }
/* 227 */ @-moz-keyframes prevSlideout {
/* 228 */ 	100% {
/* 229 */ 		left: 100%;
/* 230 */ 		opacity: 1;
/* 231 */ 	}
/* 232 */ }
/* 233 */ @-o-keyframes prevSlideout {
/* 234 */ 	100% {
/* 235 */ 		left: 100%;
/* 236 */ 		opacity: 1;
/* 237 */ 	}
/* 238 */ }
/* 239 */ @keyframes prevSlideout {
/* 240 */ 	100% {
/* 241 */ 		left: 100%;
/* 242 */ 		opacity: 1;
/* 243 */ 	}
/* 244 */ }
/* 245 */
/* 246 */ .ewd-ulb-active-slide.ewd-ulb-zoom-one .ewd-ulb-slide-img img {
/* 247 */ 	-moz-transform: scale(1.4);
/* 248 */ 	-webkit-transform: scale(1.4);
/* 249 */ 	transform: scale(1.4);
/* 250 */ }

/* ewd-ulb-main.css */

/* 251 */ .ewd-ulb-active-slide.ewd-ulb-zoom-two .ewd-ulb-slide-img img {
/* 252 */ 	-moz-transform: scale(1.8);
/* 253 */ 	-webkit-transform: scale(1.8);
/* 254 */ 	transform: scale(1.8);
/* 255 */ }
/* 256 */ .ewd-ulb-slide-img {
/* 257 */ 	position: relative;
/* 258 */ 	float: left;
/* 259 */ 	width: 100%;
/* 260 */ 	height: 100%;
/* 261 */ 	display: inline-block;
/* 262 */ 	text-align: center;
/* 263 */ }
/* 264 */ .ewd-ulb-slide-img img {
/* 265 */ 	display: inline-block;
/* 266 */ 	position: relative;
/* 267 */ 	float: none;
/* 268 */ 	width: auto;
/* 269 */ 	height: auto;
/* 270 */ 	max-width: 100%;
/* 271 */ 	max-height: 100%;
/* 272 */ }
/* 273 */ .ewd-ulb-slide-img:before {
/* 274 */ 	content: "";
/* 275 */ 	display: inline-block;
/* 276 */ 	height: 50%;
/* 277 */ 	width: 1px;
/* 278 */ 	margin-right: -1px;
/* 279 */ }
/* 280 */
/* 281 */ /* IMAGE TITLE AND DESCRIPTION */
/* 282 */ .ewd-ulb-slide .ewd-ulb-slide-overlay {
/* 283 */ 	display: block;
/* 284 */ 	position: absolute;
/* 285 */ 	bottom: 0;
/* 286 */ 	min-height: 48px;
/* 287 */ 	width: 100%;
/* 288 */ 	padding: 14px 16px;
/* 289 */ 	background: #111;
/* 290 */ 	background: rgba(0,0,0,.6);
/* 291 */ 	color: #fff;
/* 292 */ 	margin: 0 auto;
/* 293 */ 	box-sizing: border-box;
/* 294 */ }
/* 295 */ .ewd-ulb-slide-title {
/* 296 */ 	clear: both;
/* 297 */ 	position: relative;
/* 298 */ 	float: left;
/* 299 */ 	width: 100%;
/* 300 */ 	margin-bottom: 8px;

/* ewd-ulb-main.css */

/* 301 */ 	font-size: 1.5em;
/* 302 */ 	text-align: center;
/* 303 */ }
/* 304 */ .ewd-ulb-slide-description {
/* 305 */ 	clear: both;
/* 306 */ 	position: relative;
/* 307 */ 	float: left;
/* 308 */ 	width: 100%;
/* 309 */ 	font-size: .9em;
/* 310 */ 	text-align: center;
/* 311 */ }
/* 312 */
/* 313 */ /* TOOLBARS */
/* 314 */ .ewd-ulb-top-toolbar, .ewd-ulb-bottom-toolbar {
/* 315 */ 	position: absolute;
/* 316 */ 	left: 0;
/* 317 */ 	width: 100%;
/* 318 */ 	height: 48px;
/* 319 */ 	z-index: 2;
/* 320 */ 	background: #111;
/* 321 */ 	background: rgba(0,0,0,.5);
/* 322 */ 	color: #fff;
/* 323 */ }
/* 324 */ .ewd-ulb-top-toolbar {
/* 325 */ 	top: 0;
/* 326 */ }
/* 327 */ .ewd-ulb-bottom-toolbar {
/* 328 */ 	bottom: 0;
/* 329 */ 	background: #111;
/* 330 */ 	background: rgba(0,0,0,.625);
/* 331 */ }
/* 332 */ .ewd-ulb-left-top-toolbar, .ewd-ulb-right-top-toolbar, .ewd-ulb-left-bottom-toolbar, .ewd-ulb-right-bottom-toolbar {
/* 333 */ 	position: relative;
/* 334 */ 	width: auto;
/* 335 */ 	height: 100%;
/* 336 */ 	padding: 8px 16px;
/* 337 */ }
/* 338 */ .ewd-ulb-left-top-toolbar, .ewd-ulb-left-bottom-toolbar {
/* 339 */ 	float: left;
/* 340 */ }
/* 341 */ .ewd-ulb-right-top-toolbar, .ewd-ulb-right-bottom-toolbar {
/* 342 */ 	float: right;
/* 343 */ }
/* 344 */
/* 345 */ .ewd-ulb-control {
/* 346 */ 	position: relative;
/* 347 */ 	float: left;
/* 348 */ 	margin: 0 4px;
/* 349 */ 	cursor: pointer;
/* 350 */ 	font-size: 2em; //PChanges

/* ewd-ulb-main.css */

/* 351 */ }
/* 352 */ .ewd-ulb-slide-counter {
/* 353 */ 	font-size: 1em;
/* 354 */ }
/* 355 */
/* 356 */ /* PREVIOUS NEXT */
/* 357 */ .ewd-ulb-slide-control {
/* 358 */ 	position: absolute;
/* 359 */ 	width: 80px;
/* 360 */ 	height: 80px;
/* 361 */ 	top: calc(50% - 40px);
/* 362 */ 	top: calc(50vh - 40px);
/* 363 */ 	font-size: 1.4em;
/* 364 */ 	background: #111;
/* 365 */ 	background: rgba(0,0,0,.4);
/* 366 */ 	text-align: center;
/* 367 */ 	padding-top: 20px;
/* 368 */ 	color: #fff;
/* 369 */ 	z-index: 3;
/* 370 */ 	cursor: pointer;
/* 371 */ }
/* 372 */ .ewd-ulb-slide-control:hover {
/* 373 */ 	background: #111;
/* 374 */ 	background: rgba(0,0,0,.7);
/* 375 */ }
/* 376 */ .ewd-ulb-slide-control-previous {
/* 377 */ 	left: 0;
/* 378 */ }
/* 379 */ .ewd-ulb-slide-control-next {
/* 380 */ 	right: 0;
/* 381 */ }
/* 382 */
/* 383 */ /* THUMBNAILS */
/* 384 */ .ewd-ulb-thumbnail-hidden {
/* 385 */ 	display: none;
/* 386 */ }
/* 387 */ .ewd-ulb-bottom-thumbnail-bar, .ewd-ulb-top-thumbnail-bar {
/* 388 */ 	position: absolute;
/* 389 */ 	left: 0;
/* 390 */ 	width: 100%;
/* 391 */ 	height: 106px;
/* 392 */ 	background: #111;
/* 393 */ 	background: rgba(0,0,0,.25);
/* 394 */ 	display: none;
/* 395 */ }
/* 396 */ .ewd-ulb-bottom-thumbnail-bar {
/* 397 */ 	bottom: 48px;
/* 398 */ }
/* 399 */ .ewd-ulb-top-thumbnail-bar {
/* 400 */ 	top: 48px;

/* ewd-ulb-main.css */

/* 401 */ }
/* 402 */ .ewd-ulb-thumbnails-bottom .ewd-ulb-bottom-thumbnail-bar {
/* 403 */ 	display: block;
/* 404 */ }
/* 405 */ .ewd-ulb-thumbnails-bottom .ewd-ulb-top-thumbnail-bar {
/* 406 */ 	display: none;
/* 407 */ }
/* 408 */ .ewd-ulb-thumbnails-top .ewd-ulb-top-thumbnail-bar {
/* 409 */ 	display: block;
/* 410 */ }
/* 411 */ .ewd-ulb-thumbnails-top .ewd-ulb-bottom-thumbnail-bar {
/* 412 */ 	display: none;
/* 413 */ }
/* 414 */ .ewd-ulb-bottom-thumbnail-bar.ewd-ulb-thumbnail-bar-hidden,
/* 415 */ .ewd-ulb-top-thumbnail-bar.ewd-ulb-thumbnail-bar-hidden {
/* 416 */ 	display: none;
/* 417 */ }
/* 418 */ .ewd-ulb-bottom-thumbnails, .ewd-ulb-top-thumbnails {
/* 419 */ 	position: relative;
/* 420 */ 	float: left;
/* 421 */ 	width: 864px;
/* 422 */ 	height: 100%;
/* 423 */ 	margin-left: 50%;
/* 424 */ 	right: 432px;
/* 425 */ 	overflow: hidden;
/* 426 */ }
/* 427 */ @media screen and (max-width: 960px) {
/* 428 */ 	.ewd-ulb-bottom-thumbnails, .ewd-ulb-top-thumbnails {
/* 429 */ 		width: 720px;
/* 430 */ 		right: 360px;
/* 431 */ 	}
/* 432 */ }
/* 433 */ @media screen and (max-width: 800px) {
/* 434 */ 	.ewd-ulb-bottom-thumbnails, .ewd-ulb-top-thumbnails {
/* 435 */ 		width: 576px;
/* 436 */ 		right: 288px;
/* 437 */ 	}
/* 438 */ }
/* 439 */ @media screen and (max-width: 640px) {
/* 440 */ 	.ewd-ulb-bottom-thumbnails, .ewd-ulb-top-thumbnails {
/* 441 */ 		width: 432px;
/* 442 */ 		right: 216px;
/* 443 */ 	}
/* 444 */ }
/* 445 */ @media screen and (max-width: 480px) {
/* 446 */ 	.ewd-ulb-bottom-thumbnails, .ewd-ulb-top-thumbnails {
/* 447 */ 		width: 288px;
/* 448 */ 		right: 144px;
/* 449 */ 	}
/* 450 */ }

/* ewd-ulb-main.css */

/* 451 */ .ewd-ulb-thumbnails-inside {
/* 452 */ 	position: relative;
/* 453 */ 	float: left;
/* 454 */ 	width: 300000000000%;
/* 455 */ }
/* 456 */ .ewd-ulb-slide-thumbnail {
/* 457 */ 	position: relative;
/* 458 */ 	float: left;
/* 459 */ 	width: 128px;
/* 460 */ 	height: 106px;
/* 461 */ 	margin: 0 8px;
/* 462 */ 	cursor: pointer;
/* 463 */ 	text-align: center;
/* 464 */ }
/* 465 */ .ewd-ulb-slide-thumbnail img {
/* 466 */ 	position: relative;
/* 467 */ 	margin-top: 10px;
/* 468 */ 	width: auto;
/* 469 */ 	height: auto;
/* 470 */ 	max-width: 128px;
/* 471 */ 	max-height: 86px;
/* 472 */ }
/* 473 */ .ewd-ulb-active-thumbnail img {
/* 474 */ 	border: 3px solid #fff;
/* 475 */ }
/* 476 */
/* 477 */ .ewd-thumbnail-toggle {
/* 478 */ 	position: relative;
/* 479 */ 	float: left;
/* 480 */ 	top: 10px;
/* 481 */ 	left: 10px;
/* 482 */ 	cursor: pointer;
/* 483 */ 	color: #fff;
/* 484 */ 	z-index: 5;
/* 485 */ }
/* 486 */ .ewd-thumbnail-toggle-up {
/* 487 */ 	top: 84px;
/* 488 */ }
/* 489 */ .ewd-thumbnail-toggle-top.ewd-thumbnail-toggle-up {
/* 490 */ 	top: 120px;
/* 491 */ }
/* 492 */ .ewd-thumbnail-toggle-top.ewd-thumbnail-toggle-down {
/* 493 */ 	top: 48px;
/* 494 */ }
/* 495 */ .ewd-thumbnail-scroll-button {
/* 496 */ 	position: absolute;
/* 497 */ 	top: 40px;
/* 498 */ 	width: 24px;
/* 499 */ 	height: 24px;
/* 500 */ 	background: transparent;

/* ewd-ulb-main.css */

/* 501 */ 	cursor: pointer;
/* 502 */ 	z-index: 2;
/* 503 */ 	font-family: 'untitled-font-7';
/* 504 */ 	font-size: 18px;
/* 505 */ 	color: #fff;
/* 506 */ }
/* 507 */ .ewd-thumbnail-scroll-button-left {
/* 508 */ 	left: 48px;
/* 509 */ }
/* 510 */ .ewd-thumbnail-scroll-button-right {
/* 511 */ 	right: 48px;
/* 512 */ }
/* 513 */ @media screen and (max-width: 716px) {
/* 514 */ 	.ewd-thumbnail-scroll-button-left {
/* 515 */ 		left: 24px;
/* 516 */ 	}
/* 517 */ 	.ewd-thumbnail-scroll-button-right {
/* 518 */ 		right: 24px;
/* 519 */ 	}
/* 520 */ }
/* 521 */
/* 522 */ @media screen and (max-width: 480px) {
/* 523 */ 	.ewd-ulb-mobile-hide {
/* 524 */ 		display: none !important;
/* 525 */ 	}
/* 526 */ }
/* 527 */
/* 528 */
/* 529 */ /******************************************************
/* 530 *| * IFRAMES
/* 531 *| ******************************************************/
/* 532 */ .ewd-ulb-iframe-parent {
/* 533 */ 	position: relative;
/* 534 */ }
/* 535 */
/* 536 */ .ewd-ulb-overlay {
/* 537 */ 	position: absolute;
/* 538 */ 	cursor: pointer;
/* 539 */ 	right: 0;
/* 540 */ 	top: 0;
/* 541 */ 	width: 100%;
/* 542 */ 	height: 100%;
/* 543 */ }
/* 544 */
/* 545 */ .ewd-ulb-slide-img iframe {
/* 546 */ 	display: block;
/* 547 */ 	margin: 0 auto;
/* 548 */ 	max-height: 100%;
/* 549 */ 	max-width: 100%;
/* 550 */ }

/* ewd-ulb-main.css */

/* 551 */
/* 552 */ /******************************************************
/* 553 *| * FONTS
/* 554 *| ******************************************************/
/* 555 */
/* 556 */ @font-face { /* declare fonts */
/* 557 */   font-family: 'untitled-font-7';
/* 558 */   src: url("../fonts/ewd-lightbox-arrow/untitled-font-7.eot");
/* 559 */     src: url('../fonts/ewd-lightbox-arrow/untitled-font-7.woff2') format('woff2'),
/* 560 */          url('../fonts/ewd-lightbox-arrow/untitled-font-7.woff') format('woff'),
/* 561 */          url("../fonts/ewd-lightbox-arrow/untitled-font-7.ttf") format("truetype"),
/* 562 */     url("../fonts/ewd-lightbox-arrow/untitled-font-7.svg#untitled-font-7") format("svg");
/* 563 */     font-weight: normal;
/* 564 */     font-style: normal;
/* 565 */ }
/* 566 */
/* 567 */ .ewd-ulb-arrow {
/* 568 */   font-family: 'untitled-font-7';
/* 569 */ }
/* 570 */
/* 571 */ @font-face { /* declare fonts */
/* 572 */   font-family: 'ewd-lightbox-autoplay';
/* 573 */   src: url("../fonts/ewd-lightbox-autoplay/ewd-lightbox-autoplay.eot");
/* 574 */     src: url('../fonts/ewd-lightbox-autoplay/ewd-lightbox-autoplay.woff2') format('woff2'),
/* 575 */          url('../fonts/ewd-lightbox-autoplay/ewd-lightbox-autoplay.woff') format('woff'),
/* 576 */          url("../fonts/ewd-lightbox-autoplay/ewd-lightbox-autoplay.ttf") format("truetype"),
/* 577 */     url("../fonts/ewd-lightbox-autoplay/ewd-lightbox-autoplay.svg#ewd-lightbox-autoplay") format("svg");
/* 578 */     font-weight: normal;
/* 579 */     font-style: normal;
/* 580 */ }
/* 581 */
/* 582 */ .ewd-ulb-autoplay {
/* 583 */   font-family: 'ewd-lightbox-autoplay';
/* 584 */ }
/* 585 */
/* 586 */ @font-face { /* declare fonts */
/* 587 */   font-family: 'ewd-lightbox-close';
/* 588 */   src: url("../fonts/ewd-lightbox-close/ewd-lightbox-close.eot");
/* 589 */     src: url('../fonts/ewd-lightbox-close/ewd-lightbox-close.woff2') format('woff2'),
/* 590 */          url('../fonts/ewd-lightbox-close/ewd-lightbox-close.woff') format('woff'),
/* 591 */          url("../fonts/ewd-lightbox-close/ewd-lightbox-close.ttf") format("truetype"),
/* 592 */     url("../fonts/ewd-lightbox-close/ewd-lightbox-close.svg#ewd-lightbox-close") format("svg");
/* 593 */     font-weight: normal;
/* 594 */     font-style: normal;
/* 595 */ }
/* 596 */
/* 597 */ .ewd-ulb-exit {
/* 598 */   font-family: 'ewd-lightbox-close';
/* 599 */ }
/* 600 */

/* ewd-ulb-main.css */

/* 601 */ @font-face { /* declare fonts */
/* 602 */   font-family: 'ewd-lightbox-download';
/* 603 */   src: url("../fonts/ewd-lightbox-download/ewd-lightbox-download.eot");
/* 604 */     src: url('../fonts/ewd-lightbox-download/ewd-lightbox-download.woff2') format('woff2'),
/* 605 */          url('../fonts/ewd-lightbox-download/ewd-lightbox-download.woff') format('woff'),
/* 606 */          url("../fonts/ewd-lightbox-download/ewd-lightbox-download.ttf") format("truetype"),
/* 607 */     url("../fonts/ewd-lightbox-download/ewd-lightbox-download.svg#ewd-lightbox-download") format("svg");
/* 608 */     font-weight: normal;
/* 609 */     font-style: normal;
/* 610 */ }
/* 611 */
/* 612 */ .ewd-ulb-download {
/* 613 */   font-family: 'ewd-lightbox-download';
/* 614 */   color: white;
/* 615 */ }
/* 616 */
/* 617 */ @font-face { /* declare fonts */
/* 618 */   font-family: 'ewd-lightbox-exit-fullscreen';
/* 619 */   src: url("../fonts/ewd-lightbox-exit-fullscreen/ewd-lightbox-exit-fullscreen.eot");
/* 620 */     src: url('../fonts/ewd-lightbox-exit-fullscreen/ewd-lightbox-exit-fullscreen.woff2') format('woff2'),
/* 621 */          url('../fonts/ewd-lightbox-exit-fullscreen/ewd-lightbox-exit-fullscreen.woff') format('woff'),
/* 622 */          url("../fonts/ewd-lightbox-exit-fullscreen/ewd-lightbox-exit-fullscreen.ttf") format("truetype"),
/* 623 */     url("../fonts/ewd-lightbox-exit-fullscreen/ewd-lightbox-exit-fullscreen.svg#ewd-lightbox-exit-fullscreen") format("svg");
/* 624 */     font-weight: normal;
/* 625 */     font-style: normal;
/* 626 */ }
/* 627 */
/* 628 */ .ewd-ulb-regular_screen {
/* 629 */   font-family: 'ewd-lightbox-exit-fullscreen';
/* 630 */ }
/* 631 */
/* 632 */ @font-face { /* declare fonts */
/* 633 */   font-family: 'ewd-lightbox-fullscreen';
/* 634 */   src: url("../fonts/ewd-lightbox-fullscreen/ewd-lightbox-fullscreen.eot");
/* 635 */     src: url('../fonts/ewd-lightbox-fullscreen/ewd-lightbox-fullscreen.woff2') format('woff2'),
/* 636 */          url('../fonts/ewd-lightbox-fullscreen/ewd-lightbox-fullscreen.woff') format('woff'),
/* 637 */          url("../fonts/ewd-lightbox-fullscreen/ewd-lightbox-fullscreen.ttf") format("truetype"),
/* 638 */     url("../fonts/ewd-lightbox-fullscreen/ewd-lightbox-fullscreen.svg#ewd-lightbox-fullscreen") format("svg");
/* 639 */     font-weight: normal;
/* 640 */     font-style: normal;
/* 641 */ }
/* 642 */
/* 643 */ .ewd-ulb-fullscreen {
/* 644 */   font-family: 'ewd-lightbox-fullscreen';
/* 645 */ }
/* 646 */
/* 647 */ @font-face { /* declare fonts */
/* 648 */   font-family: 'ewd-lightbox-original';
/* 649 */   src: url("../fonts/ewd-lightbox-original/ewd-lightbox-original.eot");
/* 650 */     src: url('../fonts/ewd-lightbox-original/ewd-lightbox-original.woff2') format('woff2'),

/* ewd-ulb-main.css */

/* 651 */          url('../fonts/ewd-lightbox-original/ewd-lightbox-original.woff') format('woff'),
/* 652 */          url("../fonts/ewd-lightbox-original/ewd-lightbox-original.ttf") format("truetype"),
/* 653 */     url("../fonts/ewd-lightbox-original/ewd-lightbox-original.svg#ewd-lightbox-original") format("svg");
/* 654 */     font-weight: normal;
/* 655 */     font-style: normal;
/* 656 */ }
/* 657 */
/* 658 */ .ewd-ulb-fullsize {
/* 659 */   font-family: 'ewd-lightbox-original';
/* 660 */ }
/* 661 */
/* 662 */ @font-face { /* declare fonts */
/* 663 */   font-family: 'ewd-lightbox-share';
/* 664 */   src: url("../fonts/ewd-lightbox-share/ewd-lightbox-share.eot");
/* 665 */     src: url('../fonts/ewd-lightbox-share/ewd-lightbox-share.woff2') format('woff2'),
/* 666 */          url('../fonts/ewd-lightbox-share/ewd-lightbox-share.woff') format('woff'),
/* 667 */          url("../fonts/ewd-lightbox-share/ewd-lightbox-share.ttf") format("truetype"),
/* 668 */     url("../fonts/ewd-lightbox-share/ewd-lightbox-share.svg#ewd-lightbox-share") format("svg");
/* 669 */     font-weight: normal;
/* 670 */     font-style: normal;
/* 671 */ }
/* 672 */
/* 673 */ .ewd-ulb-share {
/* 674 */   font-family: 'ewd-lightbox-share';
/* 675 */ }
/* 676 */
/* 677 */ @font-face { /* declare fonts */
/* 678 */   font-family: 'ewd-lightbox-thumbnail';
/* 679 */   src: url("../fonts/ewd-lightbox-thumbnail/ewd-lightbox-thumbnail.eot");
/* 680 */     src: url('../fonts/ewd-lightbox-thumbnail/ewd-lightbox-thumbnail.woff2') format('woff2'),
/* 681 */          url('../fonts/ewd-lightbox-thumbnail/ewd-lightbox-thumbnail.woff') format('woff'),
/* 682 */          url("../fonts/ewd-lightbox-thumbnail/ewd-lightbox-thumbnail.ttf") format("truetype"),
/* 683 */     url("../fonts/ewd-lightbox-thumbnail/ewd-lightbox-thumbnail.svg#ewd-lightbox-thumbnail") format("svg");
/* 684 */     font-weight: normal;
/* 685 */     font-style: normal;
/* 686 */ }
/* 687 */
/* 688 */ .ewd-ulb-thumbnail {
/* 689 */   font-family: 'ewd-lightbox-thumbnail';
/* 690 */ }
/* 691 */
/* 692 */ @font-face { /* declare fonts */
/* 693 */   font-family: 'ewd-lightbox-unzoom';
/* 694 */   src: url("../fonts/ewd-lightbox-unzoom/ewd-lightbox-unzoom.eot");
/* 695 */     src: url('../fonts/ewd-lightbox-unzoom/ewd-lightbox-unzoom.woff2') format('woff2'),
/* 696 */          url('../fonts/ewd-lightbox-unzoom/ewd-lightbox-unzoom.woff') format('woff'),
/* 697 */          url("../fonts/ewd-lightbox-unzoom/ewd-lightbox-unzoom.ttf") format("truetype"),
/* 698 */     url("../fonts/ewd-lightbox-unzoom/ewd-lightbox-unzoom.svg#ewd-lightbox-unzoom") format("svg");
/* 699 */     font-weight: normal;
/* 700 */     font-style: normal;

/* ewd-ulb-main.css */

/* 701 */ }
/* 702 */
/* 703 */ .ewd-ulb-zoom_out {
/* 704 */   font-family: 'ewd-lightbox-unzoom';
/* 705 */ }
/* 706 */
/* 707 */ @font-face { /* declare fonts */
/* 708 */   font-family: 'ewd-lightbox-zoom';
/* 709 */   src: url("../fonts/ewd-lightbox-zoom/ewd-lightbox-zoom.eot");
/* 710 */     src: url('../fonts/ewd-lightbox-zoom/ewd-lightbox-zoom.woff2') format('woff2'),
/* 711 */          url('../fonts/ewd-lightbox-zoom/ewd-lightbox-zoom.woff') format('woff'),
/* 712 */          url("../fonts/ewd-lightbox-zoom/ewd-lightbox-zoom.ttf") format("truetype"),
/* 713 */     url("../fonts/ewd-lightbox-zoom/ewd-lightbox-zoom.svg#ewd-lightbox-zoom") format("svg");
/* 714 */     font-weight: normal;
/* 715 */     font-style: normal;
/* 716 */ }
/* 717 */
/* 718 */ .ewd-ulb-zoom {
/* 719 */   font-family: 'ewd-lightbox-zoom';
/* 720 */ }
/* 721 */
/* 722 */ /******************************************************
/* 723 *| * FINGER SWIPE
/* 724 *| ******************************************************/
/* 725 */
/* 726 */ .animate {
/* 727 */ 	transition: transform 0.3s ease-out;
/* 728 */ }
/* 729 */
/* 730 */ .ms-touch.slider
/* 731 */ {
/* 732 */   overflow-x: scroll;
/* 733 */   overflow-y: hidden;
/* 734 */
/* 735 */   -ms-overflow-style: none;
/* 736 */   /* Hides the scrollbar. */
/* 737 */
/* 738 */   -ms-scroll-chaining: none;
/* 739 */   /* Prevents Metro from swiping to the next tab or app. */
/* 740 */
/* 741 */   -ms-scroll-snap-type: mandatory;
/* 742 */   /* Forces a snap scroll behavior on your images. */
/* 743 */
/* 744 */   -ms-scroll-snap-points-x: snapInterval(0%, 100%);
/* 745 */   /* Defines the y and x intervals to snap to when scrolling. */
/* 746 */ }
/* 747 */
/* 748 */   /*********************/
/* 749 */  /*** PRESET STYLES ***/
/* 750 */ /*********************/

/* ewd-ulb-main.css */

/* 751 */
/* 752 */ .ewd-ulb-style-matte .ewd-ulb-control {
/* 753 */ 	font-size: 1.5em;
/* 754 */ 	line-height: 1.5
/* 755 */ }
/* 756 */ .ewd-ulb-style-matte .ewd-ulb-slide-control,
/* 757 */ .ewd-ulb-style-matte .ewd-ulb-top-toolbar,
/* 758 */ .ewd-ulb-style-matte .ewd-ulb-bottom-toolbar,
/* 759 */ .ewd-ulb-style-matte .ewd-ulb-bottom-thumbnail-bar,
/* 760 */ .ewd-ulb-style-matte .ewd-ulb-top-thumbnail-bar {
/* 761 */ 	background: transparent;
/* 762 */ }
/* 763 */ .ewd-ulb-style-matte .ewd-ulb-slide-control:hover {
/* 764 */ 	background: transparent;
/* 765 */ 	opacity: .7;
/* 766 */ }
/* 767 */
/* 768 */ .ewd-ulb-background.ewd-ulb-style-light {
/* 769 */ 	background: rgba(255,255,255,.9);
/* 770 */ }
/* 771 */ .ewd-ulb-style-light .ewd-ulb-top-toolbar,
/* 772 */ .ewd-ulb-style-light .ewd-ulb-bottom-toolbar,
/* 773 */ .ewd-ulb-style-light .ewd-thumbnail-scroll-button,
/* 774 */ .ewd-ulb-style-light .ewd-thumbnail-toggle,
/* 775 */ .ewd-ulb-style-light .ewd-ulb-download,
/* 776 */ .ewd-ulb-style-light .ewd-ulb-slide-control {
/* 777 */ 	color: #000;
/* 778 */ }
/* 779 */
/* 780 */ .ewd-ulb-style-contrast .ewd-ulb-top-toolbar,
/* 781 */ .ewd-ulb-style-contrast .ewd-ulb-top-thumbnail-bar {
/* 782 */ 	border-bottom: 1px solid #fff;
/* 783 */ }
/* 784 */ .ewd-ulb-style-contrast .ewd-ulb-bottom-thumbnail-bar,
/* 785 */ .ewd-ulb-style-contrast .ewd-ulb-bottom-toolbar {
/* 786 */ 	border-top: 1px solid #fff;
/* 787 */ }
/* 788 */ .ewd-ulb-style-light.ewd-ulb-style-contrast .ewd-ulb-top-toolbar,
/* 789 */ .ewd-ulb-style-light.ewd-ulb-style-contrast .ewd-ulb-top-thumbnail-bar {
/* 790 */ 	border-bottom: 1px solid #000;
/* 791 */ }
/* 792 */ .ewd-ulb-style-light.ewd-ulb-style-contrast .ewd-ulb-bottom-thumbnail-bar,
/* 793 */ .ewd-ulb-style-light.ewd-ulb-style-contrast .ewd-ulb-bottom-toolbar {
/* 794 */ 	border-top: 1px solid #000;
/* 795 */ }
/* Minify_CSS_UriRewriter::$debugText

*/

/* twentytwenty.css */

/* 1   */ .twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
/* 2   */   content: " ";
/* 3   */   display: block;
/* 4   */   background: white;
/* 5   */   position: absolute;
/* 6   */   z-index: 30;
/* 7   */   -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 8   */   -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 9   */   box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5); }
/* 10  */
/* 11  */ .twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
/* 12  */   width: 3px;
/* 13  */   height: 9999px;
/* 14  */   left: 50%;
/* 15  */   margin-left: -1.5px; }
/* 16  */
/* 17  */ .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
/* 18  */   width: 9999px;
/* 19  */   height: 3px;
/* 20  */   top: 50%;
/* 21  */   margin-top: -1.5px; }
/* 22  */
/* 23  */ .twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
/* 24  */   position: absolute;
/* 25  */   top: 0;
/* 26  */   width: 100%;
/* 27  */   height: 100%; }
/* 28  */
/* 29  */ .twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
/* 30  */   -webkit-transition-duration: 0.5s;
/* 31  */   -moz-transition-duration: 0.5s;
/* 32  */   transition-duration: 0.5s; }
/* 33  */
/* 34  */ .twentytwenty-before-label, .twentytwenty-after-label {
/* 35  */   -webkit-transition-property: opacity;
/* 36  */   -moz-transition-property: opacity;
/* 37  */   transition-property: opacity; }
/* 38  */
/* 39  */ .twentytwenty-before-label:before, .twentytwenty-after-label:before {
/* 40  */   color: white;
/* 41  */   font-size: 13px;
/* 42  */   letter-spacing: 0.1em; }
/* 43  */
/* 44  */ .twentytwenty-before-label:before, .twentytwenty-after-label:before {
/* 45  */   position: absolute;
/* 46  */   background: rgba(255, 255, 255, 0.2);
/* 47  */   line-height: 38px;
/* 48  */   padding: 0 20px;
/* 49  */   -webkit-border-radius: 2px;
/* 50  */   -moz-border-radius: 2px;

/* twentytwenty.css */

/* 51  */   border-radius: 2px; }
/* 52  */
/* 53  */ .twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
/* 54  */   top: 50%;
/* 55  */   margin-top: -19px; }
/* 56  */
/* 57  */ .twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
/* 58  */   left: 50%;
/* 59  */   margin-left: -45px;
/* 60  */   text-align: center;
/* 61  */   width: 90px; }
/* 62  */
/* 63  */ .twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
/* 64  */   width: 0;
/* 65  */   height: 0;
/* 66  */   border: 6px inset transparent;
/* 67  */   position: absolute; }
/* 68  */
/* 69  */ .twentytwenty-left-arrow, .twentytwenty-right-arrow {
/* 70  */   top: 50%;
/* 71  */   margin-top: -6px; }
/* 72  */
/* 73  */ .twentytwenty-up-arrow, .twentytwenty-down-arrow {
/* 74  */   left: 50%;
/* 75  */   margin-left: -6px; }
/* 76  */
/* 77  */ .twentytwenty-container {
/* 78  */   -webkit-box-sizing: content-box;
/* 79  */   -moz-box-sizing: content-box;
/* 80  */   box-sizing: content-box;
/* 81  */   z-index: 0;
/* 82  */   overflow: hidden;
/* 83  */   position: relative;
/* 84  */   -webkit-user-select: none;
/* 85  */   -moz-user-select: none; }
/* 86  */   .twentytwenty-container img {
/* 87  */     max-width: 100%;
/* 88  */     position: absolute;
/* 89  */     top: 0;
/* 90  */     display: block; }
/* 91  */   .twentytwenty-container.active .twentytwenty-overlay, .twentytwenty-container.active :hover.twentytwenty-overlay {
/* 92  */     background: rgba(0, 0, 0, 0); }
/* 93  */     .twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
/* 94  */     .twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
/* 95  */     .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
/* 96  */       opacity: 0; }
/* 97  */   .twentytwenty-container * {
/* 98  */     -webkit-box-sizing: content-box;
/* 99  */     -moz-box-sizing: content-box;
/* 100 */     box-sizing: content-box; }

/* twentytwenty.css */

/* 101 */
/* 102 */ .twentytwenty-before-label {
/* 103 */   opacity: 0; }
/* 104 */   .twentytwenty-before-label:before {
/* 105 */     content: attr(data-content); }
/* 106 */
/* 107 */ .twentytwenty-after-label {
/* 108 */   opacity: 0; }
/* 109 */   .twentytwenty-after-label:before {
/* 110 */     content: attr(data-content); }
/* 111 */
/* 112 */ .twentytwenty-horizontal .twentytwenty-before-label:before {
/* 113 */   left: 10px; }
/* 114 */
/* 115 */ .twentytwenty-horizontal .twentytwenty-after-label:before {
/* 116 */   right: 10px; }
/* 117 */
/* 118 */ .twentytwenty-vertical .twentytwenty-before-label:before {
/* 119 */   top: 10px; }
/* 120 */
/* 121 */ .twentytwenty-vertical .twentytwenty-after-label:before {
/* 122 */   bottom: 10px; }
/* 123 */
/* 124 */ .twentytwenty-overlay {
/* 125 */   -webkit-transition-property: background;
/* 126 */   -moz-transition-property: background;
/* 127 */   transition-property: background;
/* 128 */   background: rgba(0, 0, 0, 0);
/* 129 */   z-index: 25; }
/* 130 */   .twentytwenty-overlay:hover {
/* 131 */     background: rgba(0, 0, 0, 0.5); }
/* 132 */     .twentytwenty-overlay:hover .twentytwenty-after-label {
/* 133 */       opacity: 1; }
/* 134 */     .twentytwenty-overlay:hover .twentytwenty-before-label {
/* 135 */       opacity: 1; }
/* 136 */
/* 137 */ .twentytwenty-before {
/* 138 */   z-index: 20; }
/* 139 */
/* 140 */ .twentytwenty-after {
/* 141 */   z-index: 10; }
/* 142 */
/* 143 */ .twentytwenty-handle {
/* 144 */   height: 38px;
/* 145 */   width: 38px;
/* 146 */   position: absolute;
/* 147 */   left: 50%;
/* 148 */   top: 50%;
/* 149 */   margin-left: -22px;
/* 150 */   margin-top: -22px;

/* twentytwenty.css */

/* 151 */   border: 3px solid white;
/* 152 */   -webkit-border-radius: 1000px;
/* 153 */   -moz-border-radius: 1000px;
/* 154 */   border-radius: 1000px;
/* 155 */   -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 156 */   -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 157 */   box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 158 */   z-index: 40;
/* 159 */   cursor: pointer; }
/* 160 */
/* 161 */ .twentytwenty-horizontal .twentytwenty-handle:before {
/* 162 */   bottom: 50%;
/* 163 */   margin-bottom: 22px;
/* 164 */   -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 165 */   -moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 166 */   box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
/* 167 */ .twentytwenty-horizontal .twentytwenty-handle:after {
/* 168 */   top: 50%;
/* 169 */   margin-top: 22px;
/* 170 */   -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 171 */   -moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 172 */   box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
/* 173 */
/* 174 */ .twentytwenty-vertical .twentytwenty-handle:before {
/* 175 */   left: 50%;
/* 176 */   margin-left: 22px;
/* 177 */   -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 178 */   -moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 179 */   box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
/* 180 */ .twentytwenty-vertical .twentytwenty-handle:after {
/* 181 */   right: 50%;
/* 182 */   margin-right: 22px;
/* 183 */   -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 184 */   -moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
/* 185 */   box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
/* 186 */
/* 187 */ .twentytwenty-left-arrow {
/* 188 */   border-right: 6px solid white;
/* 189 */   left: 50%;
/* 190 */   margin-left: -17px; }
/* 191 */
/* 192 */ .twentytwenty-right-arrow {
/* 193 */   border-left: 6px solid white;
/* 194 */   right: 50%;
/* 195 */   margin-right: -17px; }
/* 196 */
/* 197 */ .twentytwenty-up-arrow {
/* 198 */   border-bottom: 6px solid white;
/* 199 */   top: 50%;
/* 200 */   margin-top: -17px; }

/* twentytwenty.css */

/* 201 */
/* 202 */ .twentytwenty-down-arrow {
/* 203 */   border-top: 6px solid white;
/* 204 */   bottom: 50%;
/* 205 */   margin-bottom: -17px; }
/* 206 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* font-awesome.min.css */

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