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

/* styles.css */

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

/* styles.css */

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

/* styles.css */

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

*/

/* blocks.css */

/* 1   */ /*
/* 2   *| Theme Name: Twenty Eleven
/* 3   *| Description: Used to style blocks.
/* 4   *| */
/* 5   */
/* 6   */ /*--------------------------------------------------------------
/* 7   *| >>> TABLE OF CONTENTS:
/* 8   *| ----------------------------------------------------------------
/* 9   *| 1.0 General Block Styles
/* 10  *| 2.0 Blocks - Common Blocks
/* 11  *| 3.0 Blocks - Formatting
/* 12  *| 4.0 Blocks - Layout Elements
/* 13  *| 5.0 Blocks - Widgets
/* 14  *| 6.0 Blocks - Colors
/* 15  *| --------------------------------------------------------------*/
/* 16  */
/* 17  */ /*--------------------------------------------------------------
/* 18  *| 1.0 General Block Styles
/* 19  *| --------------------------------------------------------------*/
/* 20  */
/* 21  */ figure[class^="wp-block-"] {
/* 22  */ 	margin-left: 0;
/* 23  */ 	margin-right: 0;
/* 24  */ }
/* 25  */
/* 26  */ /* Captions */
/* 27  */
/* 28  */ [class^="wp-block-"] figcaption {
/* 29  */ 	font-family: Georgia, serif;
/* 30  */ 	font-size: 12px;
/* 31  */ }
/* 32  */
/* 33  */ [class^="wp-block-"]:not(.wp-block-gallery) figcaption {
/* 34  */ 	color: #666;
/* 35  */ 	margin-bottom: 1.625em;
/* 36  */ 	max-width: 96%;
/* 37  */ 	max-width: calc( 100% - 18px );
/* 38  */ 	padding: 3px 0 5px 40px;
/* 39  */ 	position: relative;
/* 40  */ 	text-align: left;
/* 41  */ }
/* 42  */
/* 43  */ [class^="wp-block-"]:not(.wp-block-gallery) figcaption:before {
/* 44  */ 	color: #666;
/* 45  */ 	content: '\2014';
/* 46  */ 	font-size: 14px;
/* 47  */ 	font-style: normal;
/* 48  */ 	font-weight: bold;
/* 49  */ 	margin-right: 5px;
/* 50  */ 	position: absolute;

/* blocks.css */

/* 51  */ 	left: 10px;
/* 52  */ 	top: 0;
/* 53  */ }
/* 54  */
/* 55  */ .rtl [class^="wp-block-"]:not(.wp-block-gallery) figcaption {
/* 56  */ 	padding-left: 0;
/* 57  */ 	padding-right: 40px;
/* 58  */ 	text-align: right;
/* 59  */ }
/* 60  */
/* 61  */ .rtl [class^="wp-block-"]:not(.wp-block-gallery) figcaption:before {
/* 62  */ 	left: 0;
/* 63  */ 	margin-left: 5px;
/* 64  */ 	margin-right: 0;
/* 65  */ 	right: 10px;
/* 66  */ }
/* 67  */
/* 68  */ /*--------------------------------------------------------------
/* 69  *| 2.0 Blocks - Common Blocks
/* 70  *| --------------------------------------------------------------*/
/* 71  */
/* 72  */ /* Paragraph */
/* 73  */
/* 74  */ p.has-drop-cap:not(:focus)::first-letter {
/* 75  */ 	font-size: 5em;
/* 76  */ 	margin-top: 0.1em;
/* 77  */ }
/* 78  */
/* 79  */ /* Gallery */
/* 80  */
/* 81  */ .wp-block-gallery {
/* 82  */ 	margin: 0 0 1.625em;
/* 83  */ }
/* 84  */
/* 85  */ .wp-block-gallery .blocks-gallery-item figcaption {
/* 86  */ 	margin-bottom: 0;
/* 87  */ 	padding-left: 0;
/* 88  */ 	padding-right: 0;
/* 89  */ }
/* 90  */
/* 91  */ .wp-block-gallery .blocks-gallery-item img {
/* 92  */ 	border: 0;
/* 93  */ 	padding: 0;
/* 94  */ }
/* 95  */
/* 96  */ /* Quote */
/* 97  */
/* 98  */ .wp-block-quote {
/* 99  */ 	margin: 0 3em;
/* 100 */ }

/* blocks.css */

/* 101 */
/* 102 */ .wp-block-quote:not(.is-large):not(.is-style-large) {
/* 103 */ 	border: 0;
/* 104 */ 	padding-left: 0;
/* 105 */ 	padding-right: 0;
/* 106 */ }
/* 107 */
/* 108 */ .wp-block-quote.is-large p,
/* 109 */ .wp-block-quote.is-style-large p {
/* 110 */ 	font-size: 20px;
/* 111 */ }
/* 112 */
/* 113 */ .wp-block-quote cite {
/* 114 */ 	color: #666;
/* 115 */ 	font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
/* 116 */ 	font-weight: 300;
/* 117 */ 	letter-spacing: 0.05em;
/* 118 */ 	text-transform: uppercase;
/* 119 */ }
/* 120 */
/* 121 */ .wp-block-quote.is-large cite,
/* 122 */ .wp-block-quote.is-style-large cite {
/* 123 */ 	font-size: 16px;
/* 124 */ }
/* 125 */
/* 126 */ /* Audio */
/* 127 */
/* 128 */ .wp-block-audio audio {
/* 129 */ 	display: block;
/* 130 */ 	width: 100%;
/* 131 */ }
/* 132 */
/* 133 */ /* Cover */
/* 134 */
/* 135 */ .wp-block-cover-image.aligncenter,
/* 136 */ .wp-block-cover.aligncenter {
/* 137 */ 	clear: both;
/* 138 */ 	display: flex;
/* 139 */ }
/* 140 */
/* 141 */ .wp-block-cover-image.alignleft,
/* 142 */ .wp-block-cover.alignleft {
/* 143 */ 	margin-right: 1.625em;
/* 144 */ }
/* 145 */
/* 146 */ .wp-block-cover-image.alignright,
/* 147 */ .wp-block-cover.alignright {
/* 148 */ 	margin-left: 1.625em;
/* 149 */ }
/* 150 */

/* blocks.css */

/* 151 */ /* File */
/* 152 */
/* 153 */ .wp-block-file .wp-block-file__button {
/* 154 */ 	background: #222;
/* 155 */ 	border: none;
/* 156 */ 	-moz-border-radius: 3px;
/* 157 */ 	border-radius: 3px;
/* 158 */ 	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
/* 159 */ 	-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
/* 160 */ 	box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
/* 161 */ 	color: #eee;
/* 162 */ 	cursor: pointer;
/* 163 */ 	font-size: 15px;
/* 164 */ 	padding: 5px 22px;
/* 165 */ 	text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
/* 166 */ }
/* 167 */
/* 168 */ .wp-block-file .wp-block-file__button:active {
/* 169 */ 	background: #1982d1;
/* 170 */ 	color: #bfddf3;
/* 171 */ }
/* 172 */
/* 173 */ .rtl .wp-block-file * + .wp-block-file__button {
/* 174 */ 	margin-left: 0.75em;
/* 175 */ 	margin-right: 0;
/* 176 */ }
/* 177 */
/* 178 */ /*--------------------------------------------------------------
/* 179 *| 3.0 Blocks - Formatting
/* 180 *| --------------------------------------------------------------*/
/* 181 */
/* 182 */ /* Code */
/* 183 */
/* 184 */ .wp-block-code {
/* 185 */ 	background-color: transparent;
/* 186 */ 	border: 0;
/* 187 */ 	padding: 0;
/* 188 */ }
/* 189 */
/* 190 */ /* Pullquote */
/* 191 */
/* 192 */ .wp-block-pullquote__citation,
/* 193 */ .wp-block-pullquote cite,
/* 194 */ .wp-block-pullquote footer {
/* 195 */ 	color: #141412;
/* 196 */ }
/* 197 */
/* 198 */ .wp-block-pullquote.alignleft {
/* 199 */ 	margin-right: 1.625em;
/* 200 */ }

/* blocks.css */

/* 201 */
/* 202 */ .wp-block-pullquote.alignright {
/* 203 */ 	margin-left: 1.625em;
/* 204 */ }
/* 205 */
/* 206 */ /* Table */
/* 207 */
/* 208 */ .wp-block-table {
/* 209 */ 	border-bottom: 1px solid #ddd;
/* 210 */ 	border-collapse: collapse;
/* 211 */ 	border-spacing: 0;
/* 212 */ 	width: 100%;
/* 213 */ }
/* 214 */
/* 215 */ .wp-block-table th {
/* 216 */ 	border: 0;
/* 217 */ 	font-weight: bold;
/* 218 */ 	padding: 6px 10px 6px 0;
/* 219 */ 	text-transform: uppercase;
/* 220 */ }
/* 221 */
/* 222 */ .wp-block-table td {
/* 223 */ 	border: 0;
/* 224 */ 	border-top: 1px solid #ddd;
/* 225 */ 	padding: 6px 10px 6px 0;
/* 226 */ }
/* 227 */
/* 228 */ /*--------------------------------------------------------------
/* 229 *| 4.0 Blocks - Layout Elements
/* 230 *| --------------------------------------------------------------*/
/* 231 */
/* 232 */ /* Buttons */
/* 233 */
/* 234 */ .wp-block-button .wp-block-button__link {
/* 235 */ 	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
/* 236 */ 	-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
/* 237 */ 	box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
/* 238 */ 	cursor: pointer;
/* 239 */ 	font-size: 15px;
/* 240 */ 	margin: 20px 0;
/* 241 */ 	padding: 5px 22px;
/* 242 */ 	text-decoration: none;
/* 243 */ 	text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
/* 244 */ }
/* 245 */
/* 246 */ .is-style-outline .wp-block-button__link:not(.has-text-color) {
/* 247 */ 	color: #222;
/* 248 */ 	text-shadow: none;
/* 249 */ }
/* 250 */

/* blocks.css */

/* 251 */ .wp-block-button__link,
/* 252 */ .wp-block-button .wp-block-button__link:hover,
/* 253 */ .wp-block-button .is-style-outline .wp-block-button__link:hover {
/* 254 */ 	background: #222;
/* 255 */ 	color: #eee;
/* 256 */ }
/* 257 */
/* 258 */ .wp-block-button__link:active {
/* 259 */ 	background: #1982d1;
/* 260 */ 	color: #bfddf3;
/* 261 */ }
/* 262 */
/* 263 */ /* Separator */
/* 264 */
/* 265 */ .wp-block-separator {
/* 266 */ 	border: 0;
/* 267 */ 	max-width: 100px;
/* 268 */ }
/* 269 */
/* 270 */ .wp-block-separator.is-style-wide {
/* 271 */ 	max-width: 100%;
/* 272 */ }
/* 273 */
/* 274 */ /* Media & Text */
/* 275 */
/* 276 */ .wp-block-media-text {
/* 277 */ 	margin-bottom: 1.625em;
/* 278 */ }
/* 279 */
/* 280 */ .wp-block-media-text *:last-child {
/* 281 */ 	margin-bottom: 0;
/* 282 */ }
/* 283 */
/* 284 */ /*--------------------------------------------------------------
/* 285 *| 5.0 Blocks - Widgets
/* 286 *| --------------------------------------------------------------*/
/* 287 */
/* 288 */ /* Archives, Categories & Latest Posts */
/* 289 */
/* 290 */ .wp-block-archives.aligncenter,
/* 291 */ .wp-block-categories.aligncenter,
/* 292 */ .wp-block-latest-posts.aligncenter {
/* 293 */ 	list-style-position: inside;
/* 294 */ 	margin-left: 2.5em;
/* 295 */ 	text-align: center;
/* 296 */ }
/* 297 */
/* 298 */ .rtl .wp-block-archives.aligncenter,
/* 299 */ .rtl .wp-block-categories.aligncenter,
/* 300 */ .rtl .wp-block-latest-posts.aligncenter {

/* blocks.css */

/* 301 */ 	margin-left: 0;
/* 302 */ 	margin-right: 2.5em;
/* 303 */ }
/* 304 */
/* 305 */ /* Latest Comments */
/* 306 */
/* 307 */ .wp-block-latest-comments {
/* 308 */ 	margin: 0;
/* 309 */ 	padding: 0;
/* 310 */ }
/* 311 */
/* 312 */ .wp-block-latest-comments .avatar,
/* 313 */ .wp-block-latest-comments__comment-avatar {
/* 314 */ 	-moz-border-radius: 3px;
/* 315 */ 	border-radius: 3px;
/* 316 */ 	-webkit-box-shadow: 0 1px 2px #ccc;
/* 317 */ 	-moz-box-shadow: 0 1px 2px #ccc;
/* 318 */ 	box-shadow: 0 1px 2px #ccc;
/* 319 */ }
/* 320 */
/* 321 */ .wp-block-latest-comments__comment,
/* 322 */ .wp-block-latest-comments__comment-excerpt,
/* 323 */ .wp-block-latest-comments__comment-excerpt p {
/* 324 */ 	font-size: 15px;
/* 325 */ }
/* 326 */
/* 327 */ .wp-block-latest-comments__comment-excerpt p:last-child {
/* 328 */ 	margin-bottom: 0;
/* 329 */ }
/* 330 */
/* 331 */ .wp-block-latest-comments__comment-meta,
/* 332 */ .wp-block-latest-comments__comment-date {
/* 333 */ 	color: #666;
/* 334 */ 	font-size: 12px;
/* 335 */ 	line-height: 2.2em;
/* 336 */ }
/* 337 */
/* 338 */ .wp-block-latest-comments__comment-meta a {
/* 339 */ 	font-weight: bold;
/* 340 */ }
/* 341 */
/* 342 */ .wp-block-latest-comments .wp-block-latest-comments__comment {
/* 343 */ 	-moz-border-radius: 3px;
/* 344 */ 	border-radius: 3px;
/* 345 */ 	margin: 0 0 2.625em;
/* 346 */ 	position: relative;
/* 347 */ }
/* 348 */
/* 349 */ /* Latest Posts */
/* 350 */

/* blocks.css */

/* 351 */ .wp-block-latest-posts.is-grid {
/* 352 */ 	margin-left: 0;
/* 353 */ 	margin-right: 0;
/* 354 */ }
/* 355 */
/* 356 */ /*--------------------------------------------------------------
/* 357 *| 6.0 Blocks - Colors
/* 358 *| --------------------------------------------------------------*/
/* 359 */
/* 360 */ .has-blue-color {
/* 361 */ 	color: #1982d1;
/* 362 */ }
/* 363 */
/* 364 */ .has-blue-background-color {
/* 365 */ 	background-color: #1982d1;
/* 366 */ }
/* 367 */
/* 368 */ .has-black-color {
/* 369 */ 	color: #000;
/* 370 */ }
/* 371 */
/* 372 */ .has-black-background-color {
/* 373 */ 	background-color: #000;
/* 374 */ }
/* 375 */
/* 376 */ .has-dark-gray-color {
/* 377 */ 	color: #373737;
/* 378 */ }
/* 379 */
/* 380 */ .has-dark-gray-background-color {
/* 381 */ 	background-color: #373737;
/* 382 */ }
/* 383 */
/* 384 */ .has-medium-gray-color {
/* 385 */ 	color: #666;
/* 386 */ }
/* 387 */
/* 388 */ .has-medium-gray-background-color {
/* 389 */ 	background-color: #666;
/* 390 */ }
/* 391 */
/* 392 */ .has-light-gray-color {
/* 393 */ 	color: #e2e2e2;
/* 394 */ }
/* 395 */
/* 396 */ .has-light-gray-background-color {
/* 397 */ 	background-color: #e2e2e2;
/* 398 */ }
/* 399 */
/* 400 */ .has-white-color {

/* blocks.css */

/* 401 */ 	color: #fff;
/* 402 */ }
/* 403 */
/* 404 */ .has-white-background-color {
/* 405 */ 	background-color: #fff;
/* 406 */ }
/* 407 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* mediaelementplayer-legacy.min.css */

/* 1 */ .mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}
/* Minify_CSS_UriRewriter::$debugText

*/

/* wp-mediaelement.min.css */

/* 1 */ .mejs-container{clear:both;max-width:100%}.mejs-container *{font-family:Helvetica,Arial}.mejs-container,.mejs-container .mejs-controls,.mejs-embed,.mejs-embed body{background:#222}.mejs-time{font-weight:400;word-wrap:normal}.mejs-controls a.mejs-horizontal-volume-slider{display:table}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#fff}.mejs-controls .mejs-time-rail .mejs-time-current{background:#0073aa}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail .mejs-time-total{background:rgba(255,255,255,.33)}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail span{border-radius:0}.mejs-overlay-loading{background:0 0}.mejs-controls button:hover{border:none;-webkit-box-shadow:none;box-shadow:none}.me-cannotplay{width:auto!important}.media-embed-details .wp-audio-shortcode{display:inline-block;max-width:400px}.audio-details .embed-media-settings{overflow:visible}.media-embed-details .embed-media-settings .setting span:not(.button-group){max-width:400px;width:auto}.media-embed-details .embed-media-settings .checkbox-setting span{display:inline-block}.media-embed-details .embed-media-settings{padding-top:0;top:28px}.media-embed-details .instructions{padding:16px 0;max-width:600px}.media-embed-details .setting .remove-setting,.media-embed-details .setting p{color:#a00;font-size:10px;text-transform:uppercase}.media-embed-details .setting .remove-setting{padding:5px 0}.media-embed-details .setting a:hover{color:#dc3232}.media-embed-details .embed-media-settings .checkbox-setting{float:none;margin:0 0 10px}.wp-video{max-width:100%;height:auto}.wp_attachment_holder .wp-audio-shortcode,.wp_attachment_holder .wp-video{margin-top:18px}.wp-video-shortcode video,video.wp-video-shortcode{max-width:100%;display:inline-block}.video-details .wp-video-holder{width:100%;max-width:640px}.wp-playlist{border:1px solid #ccc;padding:10px;margin:12px 0 18px;font-size:14px;line-height:1.5}.wp-admin .wp-playlist{margin:0 0 18px}.wp-playlist video{display:inline-block;max-width:100%}.wp-playlist audio{display:none;max-width:100%;width:400px}.wp-playlist .mejs-container{margin:0;max-width:100%}.wp-playlist .mejs-controls .mejs-button button{outline:0}.wp-playlist-light{background:#fff;color:#000}.wp-playlist-dark{color:#fff;background:#000}.wp-playlist-caption{display:block;max-width:88%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:1.5}.wp-playlist-item .wp-playlist-caption{text-decoration:none;color:#000;max-width:-webkit-calc(100% - 40px);max-width:calc(100% - 40px)}.wp-playlist-item-meta{display:block;font-size:14px;line-height:1.5}.wp-playlist-item-title{font-size:14px;line-height:1.5}.wp-playlist-item-album{font-style:italic;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-playlist-item-artist{font-size:12px;text-transform:uppercase}.wp-playlist-item-length{position:absolute;right:3px;top:0;font-size:14px;line-height:1.5}.rtl .wp-playlist-item-length{left:3px;right:auto}.wp-playlist-tracks{margin-top:10px}.wp-playlist-item{position:relative;cursor:pointer;padding:0 3px;border-bottom:1px solid #ccc}.wp-playlist-item:last-child{border-bottom:0}.wp-playlist-light .wp-playlist-caption{color:#333}.wp-playlist-dark .wp-playlist-caption{color:#ddd}.wp-playlist-playing{font-weight:700;background:#f7f7f7}.wp-playlist-light .wp-playlist-playing{background:#fff;color:#000}.wp-playlist-dark .wp-playlist-playing{background:#000;color:#fff}.wp-playlist-current-item{overflow:hidden;margin-bottom:10px;height:60px}.wp-playlist .wp-playlist-current-item img{float:left;max-width:60px;height:auto;margin-right:10px;padding:0;border:0}.rtl .wp-playlist .wp-playlist-current-item img{float:right;margin-left:10px;margin-right:0}.wp-playlist-current-item .wp-playlist-item-artist,.wp-playlist-current-item .wp-playlist-item-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-audio-playlist .me-cannotplay span{padding:5px 15px}
