From cb14153b2ed5ab587bb030320c271376c08bac6b Mon Sep 17 00:00:00 2001 From: Chris Jean-Marie Date: Sat, 16 Nov 2024 04:28:10 +0000 Subject: [PATCH] Initial website --- .gitignore | 5 + Cargo.toml | 14 + runsite.sh | 4 + src/error_handling.rs | 77 + src/main.rs | 40 + src/routes.rs | 64 + templates/about.html | 6 + templates/assets/css/bootstrap-responsive.css | 1109 +++ templates/assets/css/bootstrap.css | 6167 +++++++++++++++++ templates/assets/css/content.css | 4665 +++++++++++++ templates/assets/favicon.png | Bin 0 -> 284588 bytes templates/assets/fonts/Anastasia Font.ttf | Bin 0 -> 89296 bytes .../BFC Christmas Cards Christmas Font.otf | Bin 0 -> 118340 bytes templates/assets/fonts/ChristmasStyle.otf | Bin 0 -> 118148 bytes templates/assets/fonts/Cointa.ttf | Bin 0 -> 132592 bytes templates/assets/fonts/Flaticon.woff | Bin 0 -> 9608 bytes templates/assets/fonts/FontAwesome.otf | Bin 0 -> 93888 bytes templates/assets/fonts/Gabriola.ttf | Bin 0 -> 1806004 bytes templates/assets/fonts/flexslider-icon.eot | Bin 0 -> 2082 bytes templates/assets/fonts/flexslider-icon.svg | 19 + templates/assets/fonts/flexslider-icon.ttf | Bin 0 -> 1892 bytes templates/assets/fonts/flexslider-icon.woff | Bin 0 -> 1268 bytes .../assets/fonts/fontawesome-webfont.eot | Bin 0 -> 60767 bytes .../assets/fonts/fontawesome-webfont.svg | 565 ++ .../assets/fonts/fontawesome-webfont.ttf | Bin 0 -> 122092 bytes .../assets/fonts/fontawesome-webfont.woff | Bin 0 -> 71508 bytes .../assets/fonts/fontawesome-webfont.woff2 | Bin 0 -> 56780 bytes templates/assets/fonts/slick.eot | Bin 0 -> 2048 bytes templates/assets/fonts/slick.svg | 14 + templates/assets/fonts/slick.ttf | Bin 0 -> 1892 bytes templates/assets/fonts/slick.woff | Bin 0 -> 1380 bytes .../assets/icons/numix-circle/discord.svg | 26 + .../icons/numix-circle/web-facebook.svg | 18 + .../assets/icons/numix-circle/web-google.svg | 18 + templates/assets/images/BusinessCard-Back.png | Bin 0 -> 2302640 bytes .../images/backgrounds/Easter background.png | Bin 0 -> 1608938 bytes .../assets/images/backgrounds/banner.png | Bin 0 -> 169470 bytes templates/assets/images/banner.png | Bin 0 -> 2302640 bytes templates/assets/images/qr - Facebook.svg | 339 + templates/assets/images/qr - Instagram.svg | 339 + templates/assets/images/qr - website.svg | 248 + templates/assets/images/tlc-logo.png | Bin 0 -> 284588 bytes templates/assets/js/bootstrap-alert.js | 99 + templates/assets/js/bootstrap-button.js | 105 + templates/assets/js/bootstrap-carousel.js | 207 + templates/assets/js/bootstrap-collapse.js | 167 + templates/assets/js/bootstrap-dropdown.js | 169 + templates/assets/js/bootstrap-modal.js | 247 + templates/assets/js/bootstrap-popover.js | 114 + templates/assets/js/bootstrap-scrollspy.js | 162 + templates/assets/js/bootstrap-tab.js | 144 + templates/assets/js/bootstrap-tooltip.js | 361 + templates/assets/js/bootstrap-transition.js | 60 + templates/assets/js/bootstrap-typeahead.js | 335 + templates/assets/js/holder.js | 401 ++ templates/assets/js/jquery.js | 5 + templates/base.html | 112 + templates/contactus.html | 6 + templates/fontsample.html | 59 + templates/index.html | 13 + toprod.sh | 7 + totest.sh | 7 + 62 files changed, 16517 insertions(+) create mode 100644 Cargo.toml create mode 100755 runsite.sh create mode 100644 src/error_handling.rs create mode 100644 src/main.rs create mode 100644 src/routes.rs create mode 100644 templates/about.html create mode 100644 templates/assets/css/bootstrap-responsive.css create mode 100644 templates/assets/css/bootstrap.css create mode 100644 templates/assets/css/content.css create mode 100644 templates/assets/favicon.png create mode 100644 templates/assets/fonts/Anastasia Font.ttf create mode 100644 templates/assets/fonts/BFC Christmas Cards Christmas Font.otf create mode 100644 templates/assets/fonts/ChristmasStyle.otf create mode 100644 templates/assets/fonts/Cointa.ttf create mode 100644 templates/assets/fonts/Flaticon.woff create mode 100644 templates/assets/fonts/FontAwesome.otf create mode 100644 templates/assets/fonts/Gabriola.ttf create mode 100644 templates/assets/fonts/flexslider-icon.eot create mode 100644 templates/assets/fonts/flexslider-icon.svg create mode 100644 templates/assets/fonts/flexslider-icon.ttf create mode 100644 templates/assets/fonts/flexslider-icon.woff create mode 100644 templates/assets/fonts/fontawesome-webfont.eot create mode 100644 templates/assets/fonts/fontawesome-webfont.svg create mode 100644 templates/assets/fonts/fontawesome-webfont.ttf create mode 100644 templates/assets/fonts/fontawesome-webfont.woff create mode 100644 templates/assets/fonts/fontawesome-webfont.woff2 create mode 100644 templates/assets/fonts/slick.eot create mode 100644 templates/assets/fonts/slick.svg create mode 100644 templates/assets/fonts/slick.ttf create mode 100644 templates/assets/fonts/slick.woff create mode 100644 templates/assets/icons/numix-circle/discord.svg create mode 100644 templates/assets/icons/numix-circle/web-facebook.svg create mode 100644 templates/assets/icons/numix-circle/web-google.svg create mode 100644 templates/assets/images/BusinessCard-Back.png create mode 100644 templates/assets/images/backgrounds/Easter background.png create mode 100644 templates/assets/images/backgrounds/banner.png create mode 100644 templates/assets/images/banner.png create mode 100644 templates/assets/images/qr - Facebook.svg create mode 100644 templates/assets/images/qr - Instagram.svg create mode 100644 templates/assets/images/qr - website.svg create mode 100644 templates/assets/images/tlc-logo.png create mode 100644 templates/assets/js/bootstrap-alert.js create mode 100644 templates/assets/js/bootstrap-button.js create mode 100644 templates/assets/js/bootstrap-carousel.js create mode 100644 templates/assets/js/bootstrap-collapse.js create mode 100644 templates/assets/js/bootstrap-dropdown.js create mode 100644 templates/assets/js/bootstrap-modal.js create mode 100644 templates/assets/js/bootstrap-popover.js create mode 100644 templates/assets/js/bootstrap-scrollspy.js create mode 100644 templates/assets/js/bootstrap-tab.js create mode 100644 templates/assets/js/bootstrap-tooltip.js create mode 100644 templates/assets/js/bootstrap-transition.js create mode 100644 templates/assets/js/bootstrap-typeahead.js create mode 100644 templates/assets/js/holder.js create mode 100644 templates/assets/js/jquery.js create mode 100644 templates/base.html create mode 100644 templates/contactus.html create mode 100644 templates/fontsample.html create mode 100644 templates/index.html create mode 100755 toprod.sh create mode 100755 totest.sh diff --git a/.gitignore b/.gitignore index 3ca43ae..193d30e 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,8 @@ Cargo.lock # MSVC Windows builds of rustc generate these, which store debugging information *.pdb + + +# Added by cargo + +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..fd2d772 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "tlccreations" +version = "0.1.0" +edition = "2021" + +[dependencies] +askama = "0.12.1" +askama_axum = "0.4.0" +axum = "0.7.7" +axum-server = "0.7.1" +tokio = { version = "1.41.1", features = ["full"] } +tower-http = { version = "0.6.1", features = ["full"] } +tracing = "0.1.40" +tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } diff --git a/runsite.sh b/runsite.sh new file mode 100755 index 0000000..701548b --- /dev/null +++ b/runsite.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +cd /opt/tlccreations +./tlccreations &>/dev/null & disown diff --git a/src/error_handling.rs b/src/error_handling.rs new file mode 100644 index 0000000..c631f4e --- /dev/null +++ b/src/error_handling.rs @@ -0,0 +1,77 @@ +use axum::{ + http::StatusCode, + response::{Html, IntoResponse}, +}; + +pub struct AppError { + code: StatusCode, + message: String, + user_message: String, +} + +impl AppError { + pub fn new(message: impl Into) -> Self { + Self { + message: message.into(), + user_message: "".to_owned(), + code: StatusCode::INTERNAL_SERVER_ERROR, + } + } + pub fn with_user_message(self, user_message: impl Into) -> Self { + Self { + user_message: user_message.into(), + ..self + } + } + // pub fn with_code(self, code: StatusCode) -> Self { + // Self { + // code, + // ..self + // } + // } +} + +impl IntoResponse for AppError { + fn into_response(self) -> axum::response::Response { + println!("AppError: {}", self.message); + ( + self.code, + Html(format!( + r#" + + + + + Oops! + + +

Oops!

+

Sorry, but something went wrong.

+

{}

+ + + "#, + self.user_message + )), + ) + .into_response() + } +} + +impl From for AppError { + fn from(err: askama_axum::Error) -> Self { + AppError::new(format!("Template error: {:#}", err)) + } +} + +impl From for AppError { + fn from(err: String) -> Self { + AppError::new(err) + } +} + +impl From<&str> for AppError { + fn from(err: &str) -> Self { + AppError::new(err) + } +} diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..74b6067 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,40 @@ +use std::net::SocketAddr; +use axum::{ + routing::{get, get_service}, Router +}; +use tower_http::services::ServeDir; + +mod error_handling; +mod routes; + +use error_handling::AppError; +use routes::{about, contact, index, fontsample}; + +#[tokio::main] +async fn main() { + // initialize tracing + tracing_subscriber::fmt::init(); + + // build our application with some routes + let app = Router::new() + .nest_service("/assets", ServeDir::new("templates/assets") + .fallback(get_service(ServeDir::new("templates/assets")))) + .route("/", get(index)) + .route("/fontsample", get(fontsample)) + .route("/about", get(about)) + .route("/contactus", get(contact)) + ; + + // Send email indicating server has started + //let recipients = get_useremails_by_role("admin".to_string(), &app_state.db_pool).await; + //send_emails("Server started".to_string(), recipients, "Server has been started".to_string()); + + // run it + let addr = SocketAddr::from(([0, 0, 0, 0], 40192)); + tracing::debug!("listening on {}", addr); + axum_server::bind(addr) + .serve(app.into_make_service()) + .await + .unwrap(); + +} diff --git a/src/routes.rs b/src/routes.rs new file mode 100644 index 0000000..b6558c7 --- /dev/null +++ b/src/routes.rs @@ -0,0 +1,64 @@ +use askama_axum::{Response, Template}; +use axum::{ + http::StatusCode, response::{Html, IntoResponse} +}; + +struct HtmlTemplate(T); + +impl IntoResponse for HtmlTemplate +where + T: Template, +{ + fn into_response(self) -> Response { + match self.0.render() { + Ok(html) => Html(html).into_response(), + Err(err) => ( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Failed to render template. Error: {}", err), + ) + .into_response(), + } + } +} + +#[derive(Template)] +#[template(path = "index.html")] +struct IndexTemplate { +} + +pub async fn index( +) -> impl IntoResponse { + let template = IndexTemplate {}; + HtmlTemplate(template).into_response() +} + +#[derive(Template)] +#[template(path = "fontsample.html")] +struct FontSampleTemplate { +} + +pub async fn fontsample( +) -> impl IntoResponse { + let template = FontSampleTemplate {}; + HtmlTemplate(template).into_response() +} + +#[derive(Template)] +#[template(path = "about.html")] +struct AboutTemplate { +} + +pub async fn about() -> impl IntoResponse { + let template = AboutTemplate {}; + HtmlTemplate(template) +} + +#[derive(Template)] +#[template(path = "contactus.html")] +struct ContactTemplate { +} + +pub async fn contact() -> impl IntoResponse { + let template = ContactTemplate {}; + HtmlTemplate(template) +} diff --git a/templates/about.html b/templates/about.html new file mode 100644 index 0000000..a1387a2 --- /dev/null +++ b/templates/about.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} +{% block title %}About{% endblock %} +{% block content %} +

Welcome to the TLC Creations website

+

Wide variety of custom made and designed shirts, mugs , tumblers and so much more!!!

+{% endblock %} diff --git a/templates/assets/css/bootstrap-responsive.css b/templates/assets/css/bootstrap-responsive.css new file mode 100644 index 0000000..09e88ce --- /dev/null +++ b/templates/assets/css/bootstrap-responsive.css @@ -0,0 +1,1109 @@ +/*! + * Bootstrap Responsive v2.3.2 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ + +.clearfix { + *zoom: 1; +} + +.clearfix:before, +.clearfix:after { + display: table; + line-height: 0; + content: ""; +} + +.clearfix:after { + clear: both; +} + +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.input-block-level { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +@-ms-viewport { + width: device-width; +} + +.hidden { + display: none; + visibility: hidden; +} + +.visible-phone { + display: none !important; +} + +.visible-tablet { + display: none !important; +} + +.hidden-desktop { + display: none !important; +} + +.visible-desktop { + display: inherit !important; +} + +@media (min-width: 768px) and (max-width: 979px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important ; + } + .visible-tablet { + display: inherit !important; + } + .hidden-tablet { + display: none !important; + } +} + +@media (max-width: 767px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important; + } + .visible-phone { + display: inherit !important; + } + .hidden-phone { + display: none !important; + } +} + +.visible-print { + display: none !important; +} + +@media print { + .visible-print { + display: inherit !important; + } + .hidden-print { + display: none !important; + } +} + +@media (min-width: 1200px) { + .row { + margin-left: -30px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + line-height: 0; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 30px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 1170px; + } + .span12 { + width: 1170px; + } + .span11 { + width: 1070px; + } + .span10 { + width: 970px; + } + .span9 { + width: 870px; + } + .span8 { + width: 770px; + } + .span7 { + width: 670px; + } + .span6 { + width: 570px; + } + .span5 { + width: 470px; + } + .span4 { + width: 370px; + } + .span3 { + width: 270px; + } + .span2 { + width: 170px; + } + .span1 { + width: 70px; + } + .offset12 { + margin-left: 1230px; + } + .offset11 { + margin-left: 1130px; + } + .offset10 { + margin-left: 1030px; + } + .offset9 { + margin-left: 930px; + } + .offset8 { + margin-left: 830px; + } + .offset7 { + margin-left: 730px; + } + .offset6 { + margin-left: 630px; + } + .offset5 { + margin-left: 530px; + } + .offset4 { + margin-left: 430px; + } + .offset3 { + margin-left: 330px; + } + .offset2 { + margin-left: 230px; + } + .offset1 { + margin-left: 130px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + line-height: 0; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 30px; + margin-left: 2.564102564102564%; + *margin-left: 2.5109110747408616%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.564102564102564%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; + } + .row-fluid .span11 { + width: 91.45299145299145%; + *width: 91.39979996362975%; + } + .row-fluid .span10 { + width: 82.90598290598291%; + *width: 82.8527914166212%; + } + .row-fluid .span9 { + width: 74.35897435897436%; + *width: 74.30578286961266%; + } + .row-fluid .span8 { + width: 65.81196581196582%; + *width: 65.75877432260411%; + } + .row-fluid .span7 { + width: 57.26495726495726%; + *width: 57.21176577559556%; + } + .row-fluid .span6 { + width: 48.717948717948715%; + *width: 48.664757228587014%; + } + .row-fluid .span5 { + width: 40.17094017094017%; + *width: 40.11774868157847%; + } + .row-fluid .span4 { + width: 31.623931623931625%; + *width: 31.570740134569924%; + } + .row-fluid .span3 { + width: 23.076923076923077%; + *width: 23.023731587561375%; + } + .row-fluid .span2 { + width: 14.52991452991453%; + *width: 14.476723040552828%; + } + .row-fluid .span1 { + width: 5.982905982905983%; + *width: 5.929714493544281%; + } + .row-fluid .offset12 { + margin-left: 105.12820512820512%; + *margin-left: 105.02182214948171%; + } + .row-fluid .offset12:first-child { + margin-left: 102.56410256410257%; + *margin-left: 102.45771958537915%; + } + .row-fluid .offset11 { + margin-left: 96.58119658119658%; + *margin-left: 96.47481360247316%; + } + .row-fluid .offset11:first-child { + margin-left: 94.01709401709402%; + *margin-left: 93.91071103837061%; + } + .row-fluid .offset10 { + margin-left: 88.03418803418803%; + *margin-left: 87.92780505546462%; + } + .row-fluid .offset10:first-child { + margin-left: 85.47008547008548%; + *margin-left: 85.36370249136206%; + } + .row-fluid .offset9 { + margin-left: 79.48717948717949%; + *margin-left: 79.38079650845607%; + } + .row-fluid .offset9:first-child { + margin-left: 76.92307692307693%; + *margin-left: 76.81669394435352%; + } + .row-fluid .offset8 { + margin-left: 70.94017094017094%; + *margin-left: 70.83378796144753%; + } + .row-fluid .offset8:first-child { + margin-left: 68.37606837606839%; + *margin-left: 68.26968539734497%; + } + .row-fluid .offset7 { + margin-left: 62.393162393162385%; + *margin-left: 62.28677941443899%; + } + .row-fluid .offset7:first-child { + margin-left: 59.82905982905982%; + *margin-left: 59.72267685033642%; + } + .row-fluid .offset6 { + margin-left: 53.84615384615384%; + *margin-left: 53.739770867430444%; + } + .row-fluid .offset6:first-child { + margin-left: 51.28205128205128%; + *margin-left: 51.175668303327875%; + } + .row-fluid .offset5 { + margin-left: 45.299145299145295%; + *margin-left: 45.1927623204219%; + } + .row-fluid .offset5:first-child { + margin-left: 42.73504273504273%; + *margin-left: 42.62865975631933%; + } + .row-fluid .offset4 { + margin-left: 36.75213675213675%; + *margin-left: 36.645753773413354%; + } + .row-fluid .offset4:first-child { + margin-left: 34.18803418803419%; + *margin-left: 34.081651209310785%; + } + .row-fluid .offset3 { + margin-left: 28.205128205128204%; + *margin-left: 28.0987452264048%; + } + .row-fluid .offset3:first-child { + margin-left: 25.641025641025642%; + *margin-left: 25.53464266230224%; + } + .row-fluid .offset2 { + margin-left: 19.65811965811966%; + *margin-left: 19.551736679396257%; + } + .row-fluid .offset2:first-child { + margin-left: 17.094017094017094%; + *margin-left: 16.98763411529369%; + } + .row-fluid .offset1 { + margin-left: 11.11111111111111%; + *margin-left: 11.004728132387708%; + } + .row-fluid .offset1:first-child { + margin-left: 8.547008547008547%; + *margin-left: 8.440625568285142%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 30px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 1156px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 1056px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 956px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 856px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 756px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 656px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 556px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 456px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 356px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 256px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 156px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 56px; + } + .thumbnails { + margin-left: -30px; + } + .thumbnails > li { + margin-left: 30px; + } + .row-fluid .thumbnails { + margin-left: 0; + } +} + +@media (min-width: 768px) and (max-width: 979px) { + .row { + margin-left: -20px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + line-height: 0; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 20px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 724px; + } + .span12 { + width: 724px; + } + .span11 { + width: 662px; + } + .span10 { + width: 600px; + } + .span9 { + width: 538px; + } + .span8 { + width: 476px; + } + .span7 { + width: 414px; + } + .span6 { + width: 352px; + } + .span5 { + width: 290px; + } + .span4 { + width: 228px; + } + .span3 { + width: 166px; + } + .span2 { + width: 104px; + } + .span1 { + width: 42px; + } + .offset12 { + margin-left: 764px; + } + .offset11 { + margin-left: 702px; + } + .offset10 { + margin-left: 640px; + } + .offset9 { + margin-left: 578px; + } + .offset8 { + margin-left: 516px; + } + .offset7 { + margin-left: 454px; + } + .offset6 { + margin-left: 392px; + } + .offset5 { + margin-left: 330px; + } + .offset4 { + margin-left: 268px; + } + .offset3 { + margin-left: 206px; + } + .offset2 { + margin-left: 144px; + } + .offset1 { + margin-left: 82px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + line-height: 0; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 30px; + margin-left: 2.7624309392265194%; + *margin-left: 2.709239449864817%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.7624309392265194%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; + } + .row-fluid .span11 { + width: 91.43646408839778%; + *width: 91.38327259903608%; + } + .row-fluid .span10 { + width: 82.87292817679558%; + *width: 82.81973668743387%; + } + .row-fluid .span9 { + width: 74.30939226519337%; + *width: 74.25620077583166%; + } + .row-fluid .span8 { + width: 65.74585635359117%; + *width: 65.69266486422946%; + } + .row-fluid .span7 { + width: 57.18232044198895%; + *width: 57.12912895262725%; + } + .row-fluid .span6 { + width: 48.61878453038674%; + *width: 48.56559304102504%; + } + .row-fluid .span5 { + width: 40.05524861878453%; + *width: 40.00205712942283%; + } + .row-fluid .span4 { + width: 31.491712707182323%; + *width: 31.43852121782062%; + } + .row-fluid .span3 { + width: 22.92817679558011%; + *width: 22.87498530621841%; + } + .row-fluid .span2 { + width: 14.3646408839779%; + *width: 14.311449394616199%; + } + .row-fluid .span1 { + width: 5.801104972375691%; + *width: 5.747913483013988%; + } + .row-fluid .offset12 { + margin-left: 105.52486187845304%; + *margin-left: 105.41847889972962%; + } + .row-fluid .offset12:first-child { + margin-left: 102.76243093922652%; + *margin-left: 102.6560479605031%; + } + .row-fluid .offset11 { + margin-left: 96.96132596685082%; + *margin-left: 96.8549429881274%; + } + .row-fluid .offset11:first-child { + margin-left: 94.1988950276243%; + *margin-left: 94.09251204890089%; + } + .row-fluid .offset10 { + margin-left: 88.39779005524862%; + *margin-left: 88.2914070765252%; + } + .row-fluid .offset10:first-child { + margin-left: 85.6353591160221%; + *margin-left: 85.52897613729868%; + } + .row-fluid .offset9 { + margin-left: 79.8342541436464%; + *margin-left: 79.72787116492299%; + } + .row-fluid .offset9:first-child { + margin-left: 77.07182320441989%; + *margin-left: 76.96544022569647%; + } + .row-fluid .offset8 { + margin-left: 71.2707182320442%; + *margin-left: 71.16433525332079%; + } + .row-fluid .offset8:first-child { + margin-left: 68.50828729281768%; + *margin-left: 68.40190431409427%; + } + .row-fluid .offset7 { + margin-left: 62.70718232044199%; + *margin-left: 62.600799341718584%; + } + .row-fluid .offset7:first-child { + margin-left: 59.94475138121547%; + *margin-left: 59.838368402492065%; + } + .row-fluid .offset6 { + margin-left: 54.14364640883978%; + *margin-left: 54.037263430116376%; + } + .row-fluid .offset6:first-child { + margin-left: 51.38121546961326%; + *margin-left: 51.27483249088986%; + } + .row-fluid .offset5 { + margin-left: 45.58011049723757%; + *margin-left: 45.47372751851417%; + } + .row-fluid .offset5:first-child { + margin-left: 42.81767955801105%; + *margin-left: 42.71129657928765%; + } + .row-fluid .offset4 { + margin-left: 37.01657458563536%; + *margin-left: 36.91019160691196%; + } + .row-fluid .offset4:first-child { + margin-left: 34.25414364640884%; + *margin-left: 34.14776066768544%; + } + .row-fluid .offset3 { + margin-left: 28.45303867403315%; + *margin-left: 28.346655695309746%; + } + .row-fluid .offset3:first-child { + margin-left: 25.69060773480663%; + *margin-left: 25.584224756083227%; + } + .row-fluid .offset2 { + margin-left: 19.88950276243094%; + *margin-left: 19.783119783707537%; + } + .row-fluid .offset2:first-child { + margin-left: 17.12707182320442%; + *margin-left: 17.02068884448102%; + } + .row-fluid .offset1 { + margin-left: 11.32596685082873%; + *margin-left: 11.219583872105325%; + } + .row-fluid .offset1:first-child { + margin-left: 8.56353591160221%; + *margin-left: 8.457152932878806%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 20px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 710px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 648px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 586px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 524px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 462px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 400px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 338px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 276px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 214px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 152px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 90px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 28px; + } +} + +@media (max-width: 767px) { + body { + padding-right: 20px; + padding-left: 20px; + } + .navbar-fixed-top, + .navbar-fixed-bottom, + .navbar-static-top { + margin-right: -20px; + margin-left: -20px; + } + .container-fluid { + padding: 0; + } + .dl-horizontal dt { + float: none; + width: auto; + clear: none; + text-align: left; + } + .dl-horizontal dd { + margin-left: 0; + } + .container { + width: auto; + } + .row-fluid { + width: 100%; + } + .row, + .thumbnails { + margin-left: 0; + } + .thumbnails > li { + float: none; + margin-left: 0; + } + [class*="span"], + .uneditable-input[class*="span"], + .row-fluid [class*="span"] { + display: block; + float: none; + width: 100%; + margin-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .span12, + .row-fluid .span12 { + width: 100%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="offset"]:first-child { + margin-left: 0; + } + .input-large, + .input-xlarge, + .input-xxlarge, + input[class*="span"], + select[class*="span"], + textarea[class*="span"], + .uneditable-input { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .input-prepend input, + .input-append input, + .input-prepend input[class*="span"], + .input-append input[class*="span"] { + display: inline-block; + width: auto; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 0; + } + .modal { + position: fixed; + top: 20px; + right: 20px; + left: 20px; + width: auto; + margin: 0; + } + .modal.fade { + top: -100px; + } + .modal.fade.in { + top: 20px; + } +} + +@media (max-width: 480px) { + .nav-collapse { + -webkit-transform: translate3d(0, 0, 0); + } + .page-header h1 small { + display: block; + line-height: 20px; + } + input[type="checkbox"], + input[type="radio"] { + border: 1px solid #ccc; + } + .form-horizontal .control-label { + float: none; + width: auto; + padding-top: 0; + text-align: left; + } + .form-horizontal .controls { + margin-left: 0; + } + .form-horizontal .control-list { + padding-top: 0; + } + .form-horizontal .form-actions { + padding-right: 10px; + padding-left: 10px; + } + .media .pull-left, + .media .pull-right { + display: block; + float: none; + margin-bottom: 10px; + } + .media-object { + margin-right: 0; + margin-left: 0; + } + .modal { + top: 10px; + right: 10px; + left: 10px; + } + .modal-header .close { + padding: 10px; + margin: -10px; + } + .carousel-caption { + position: static; + } +} + +@media (max-width: 979px) { + body { + padding-top: 0; + } + .navbar-fixed-top, + .navbar-fixed-bottom { + position: static; + } + .navbar-fixed-top { + margin-bottom: 20px; + } + .navbar-fixed-bottom { + margin-top: 20px; + } + .navbar-fixed-top .navbar-inner, + .navbar-fixed-bottom .navbar-inner { + padding: 5px; + } + .navbar .container { + width: auto; + padding: 0; + } + .navbar .brand { + padding-right: 10px; + padding-left: 10px; + margin: 0 0 0 -5px; + } + .nav-collapse { + clear: both; + } + .nav-collapse .nav { + float: none; + margin: 0 0 10px; + } + .nav-collapse .nav > li { + float: none; + } + .nav-collapse .nav > li > a { + margin-bottom: 2px; + } + .nav-collapse .nav > .divider-vertical { + display: none; + } + .nav-collapse .nav .nav-header { + color: #777777; + text-shadow: none; + } + .nav-collapse .nav > li > a, + .nav-collapse .dropdown-menu a { + padding: 9px 15px; + font-weight: bold; + color: #777777; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + } + .nav-collapse .btn { + padding: 4px 10px 4px; + font-weight: normal; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + } + .nav-collapse .dropdown-menu li + li a { + margin-bottom: 2px; + } + .nav-collapse .nav > li > a:hover, + .nav-collapse .nav > li > a:focus, + .nav-collapse .dropdown-menu a:hover, + .nav-collapse .dropdown-menu a:focus { + background-color: #f2f2f2; + } + .navbar-inverse .nav-collapse .nav > li > a, + .navbar-inverse .nav-collapse .dropdown-menu a { + color: #999999; + } + .navbar-inverse .nav-collapse .nav > li > a:hover, + .navbar-inverse .nav-collapse .nav > li > a:focus, + .navbar-inverse .nav-collapse .dropdown-menu a:hover, + .navbar-inverse .nav-collapse .dropdown-menu a:focus { + background-color: #111111; + } + .nav-collapse.in .btn-group { + padding: 0; + margin-top: 5px; + } + .nav-collapse .dropdown-menu { + position: static; + top: auto; + left: auto; + display: none; + float: none; + max-width: none; + padding: 0; + margin: 0 15px; + background-color: transparent; + border: none; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + } + .nav-collapse .open > .dropdown-menu { + display: block; + } + .nav-collapse .dropdown-menu:before, + .nav-collapse .dropdown-menu:after { + display: none; + } + .nav-collapse .dropdown-menu .divider { + display: none; + } + .nav-collapse .nav > li > .dropdown-menu:before, + .nav-collapse .nav > li > .dropdown-menu:after { + display: none; + } + .nav-collapse .navbar-form, + .nav-collapse .navbar-search { + float: none; + padding: 10px 15px; + margin: 10px 0; + border-top: 1px solid #f2f2f2; + border-bottom: 1px solid #f2f2f2; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + } + .navbar-inverse .nav-collapse .navbar-form, + .navbar-inverse .nav-collapse .navbar-search { + border-top-color: #111111; + border-bottom-color: #111111; + } + .navbar .nav-collapse .nav.pull-right { + float: none; + margin-left: 0; + } + .nav-collapse, + .nav-collapse.collapse { + height: 0; + overflow: hidden; + } + .navbar .btn-navbar { + display: block; + } + .navbar-static .navbar-inner { + padding-right: 10px; + padding-left: 10px; + } +} + +@media (min-width: 980px) { + .nav-collapse.collapse { + height: auto !important; + overflow: visible !important; + } +} diff --git a/templates/assets/css/bootstrap.css b/templates/assets/css/bootstrap.css new file mode 100644 index 0000000..b725064 --- /dev/null +++ b/templates/assets/css/bootstrap.css @@ -0,0 +1,6167 @@ +/*! + * Bootstrap v2.3.2 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ + +.clearfix { + *zoom: 1; +} + +.clearfix:before, +.clearfix:after { + display: table; + line-height: 0; + content: ""; +} + +.clearfix:after { + clear: both; +} + +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.input-block-level { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +nav, +section { + display: block; +} + +audio, +canvas, +video { + display: inline-block; + *display: inline; + *zoom: 1; +} + +audio:not([controls]) { + display: none; +} + +html { + font-size: 100%; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +a:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +a:hover, +a:active { + outline: 0; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +img { + width: auto\9; + height: auto; + max-width: 100%; + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; +} + +#map_canvas img, +.google-maps img { + max-width: none; +} + +button, +input, +select, +textarea { + margin: 0; + font-size: 100%; + vertical-align: middle; +} + +button, +input { + *overflow: visible; + line-height: normal; +} + +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} + +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + cursor: pointer; + -webkit-appearance: button; +} + +label, +select, +button, +input[type="button"], +input[type="reset"], +input[type="submit"], +input[type="radio"], +input[type="checkbox"] { + cursor: pointer; +} + +input[type="search"] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield; +} + +input[type="search"]::-webkit-search-decoration, +input[type="search"]::-webkit-search-cancel-button { + -webkit-appearance: none; +} + +textarea { + overflow: auto; + vertical-align: top; +} + +@media print { + * { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + .ir a:after, + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + @page { + margin: 0.5cm; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } +} + +body { + margin: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 20px; + color: #333333; + background-color: #ffffff; +} + +a { + color: #0088cc; + text-decoration: none; +} + +a:hover, +a:focus { + color: #005580; + text-decoration: underline; +} + +.img-rounded { + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.img-polaroid { + padding: 4px; + background-color: #fff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); +} + +.img-circle { + -webkit-border-radius: 500px; + -moz-border-radius: 500px; + border-radius: 500px; +} + +.row { + margin-left: -20px; + *zoom: 1; +} + +.row:before, +.row:after { + display: table; + line-height: 0; + content: ""; +} + +.row:after { + clear: both; +} + +[class*="span"] { + float: left; + min-height: 1px; + margin-left: 20px; +} + +.container, +.navbar-static-top .container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 940px; +} + +.span12 { + width: 940px; +} + +.span11 { + width: 860px; +} + +.span10 { + width: 780px; +} + +.span9 { + width: 700px; +} + +.span8 { + width: 620px; +} + +.span7 { + width: 540px; +} + +.span6 { + width: 460px; +} + +.span5 { + width: 380px; +} + +.span4 { + width: 300px; +} + +.span3 { + width: 220px; +} + +.span2 { + width: 140px; +} + +.span1 { + width: 60px; +} + +.offset12 { + margin-left: 980px; +} + +.offset11 { + margin-left: 900px; +} + +.offset10 { + margin-left: 820px; +} + +.offset9 { + margin-left: 740px; +} + +.offset8 { + margin-left: 660px; +} + +.offset7 { + margin-left: 580px; +} + +.offset6 { + margin-left: 500px; +} + +.offset5 { + margin-left: 420px; +} + +.offset4 { + margin-left: 340px; +} + +.offset3 { + margin-left: 260px; +} + +.offset2 { + margin-left: 180px; +} + +.offset1 { + margin-left: 100px; +} + +.row-fluid { + width: 100%; + *zoom: 1; +} + +.row-fluid:before, +.row-fluid:after { + display: table; + line-height: 0; + content: ""; +} + +.row-fluid:after { + clear: both; +} + +.row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 30px; + margin-left: 2.127659574468085%; + *margin-left: 2.074468085106383%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.row-fluid [class*="span"]:first-child { + margin-left: 0; +} + +.row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.127659574468085%; +} + +.row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; +} + +.row-fluid .span11 { + width: 91.48936170212765%; + *width: 91.43617021276594%; +} + +.row-fluid .span10 { + width: 82.97872340425532%; + *width: 82.92553191489361%; +} + +.row-fluid .span9 { + width: 74.46808510638297%; + *width: 74.41489361702126%; +} + +.row-fluid .span8 { + width: 65.95744680851064%; + *width: 65.90425531914893%; +} + +.row-fluid .span7 { + width: 57.44680851063829%; + *width: 57.39361702127659%; +} + +.row-fluid .span6 { + width: 48.93617021276595%; + *width: 48.88297872340425%; +} + +.row-fluid .span5 { + width: 40.42553191489362%; + *width: 40.37234042553192%; +} + +.row-fluid .span4 { + width: 31.914893617021278%; + *width: 31.861702127659576%; +} + +.row-fluid .span3 { + width: 23.404255319148934%; + *width: 23.351063829787233%; +} + +.row-fluid .span2 { + width: 14.893617021276595%; + *width: 14.840425531914894%; +} + +.row-fluid .span1 { + width: 6.382978723404255%; + *width: 6.329787234042553%; +} + +.row-fluid .offset12 { + margin-left: 104.25531914893617%; + *margin-left: 104.14893617021275%; +} + +.row-fluid .offset12:first-child { + margin-left: 102.12765957446808%; + *margin-left: 102.02127659574467%; +} + +.row-fluid .offset11 { + margin-left: 95.74468085106382%; + *margin-left: 95.6382978723404%; +} + +.row-fluid .offset11:first-child { + margin-left: 93.61702127659574%; + *margin-left: 93.51063829787232%; +} + +.row-fluid .offset10 { + margin-left: 87.23404255319149%; + *margin-left: 87.12765957446807%; +} + +.row-fluid .offset10:first-child { + margin-left: 85.1063829787234%; + *margin-left: 84.99999999999999%; +} + +.row-fluid .offset9 { + margin-left: 78.72340425531914%; + *margin-left: 78.61702127659572%; +} + +.row-fluid .offset9:first-child { + margin-left: 76.59574468085106%; + *margin-left: 76.48936170212764%; +} + +.row-fluid .offset8 { + margin-left: 70.2127659574468%; + *margin-left: 70.10638297872339%; +} + +.row-fluid .offset8:first-child { + margin-left: 68.08510638297872%; + *margin-left: 67.9787234042553%; +} + +.row-fluid .offset7 { + margin-left: 61.70212765957446%; + *margin-left: 61.59574468085106%; +} + +.row-fluid .offset7:first-child { + margin-left: 59.574468085106375%; + *margin-left: 59.46808510638297%; +} + +.row-fluid .offset6 { + margin-left: 53.191489361702125%; + *margin-left: 53.085106382978715%; +} + +.row-fluid .offset6:first-child { + margin-left: 51.063829787234035%; + *margin-left: 50.95744680851063%; +} + +.row-fluid .offset5 { + margin-left: 44.68085106382979%; + *margin-left: 44.57446808510638%; +} + +.row-fluid .offset5:first-child { + margin-left: 42.5531914893617%; + *margin-left: 42.4468085106383%; +} + +.row-fluid .offset4 { + margin-left: 36.170212765957444%; + *margin-left: 36.06382978723405%; +} + +.row-fluid .offset4:first-child { + margin-left: 34.04255319148936%; + *margin-left: 33.93617021276596%; +} + +.row-fluid .offset3 { + margin-left: 27.659574468085104%; + *margin-left: 27.5531914893617%; +} + +.row-fluid .offset3:first-child { + margin-left: 25.53191489361702%; + *margin-left: 25.425531914893618%; +} + +.row-fluid .offset2 { + margin-left: 19.148936170212764%; + *margin-left: 19.04255319148936%; +} + +.row-fluid .offset2:first-child { + margin-left: 17.02127659574468%; + *margin-left: 16.914893617021278%; +} + +.row-fluid .offset1 { + margin-left: 10.638297872340425%; + *margin-left: 10.53191489361702%; +} + +.row-fluid .offset1:first-child { + margin-left: 8.51063829787234%; + *margin-left: 8.404255319148938%; +} + +[class*="span"].hide, +.row-fluid [class*="span"].hide { + display: none; +} + +[class*="span"].pull-right, +.row-fluid [class*="span"].pull-right { + float: right; +} + +.container { + margin-right: auto; + margin-left: auto; + *zoom: 1; +} + +.container:before, +.container:after { + display: table; + line-height: 0; + content: ""; +} + +.container:after { + clear: both; +} + +.container-fluid { + padding-right: 20px; + padding-left: 20px; + *zoom: 1; +} + +.container-fluid:before, +.container-fluid:after { + display: table; + line-height: 0; + content: ""; +} + +.container-fluid:after { + clear: both; +} + +p { + margin: 0 0 10px; +} + +.lead { + margin-bottom: 20px; + font-size: 21px; + font-weight: 200; + line-height: 30px; +} + +small { + font-size: 85%; +} + +strong { + font-weight: bold; +} + +em { + font-style: italic; +} + +cite { + font-style: normal; +} + +.muted { + color: #999999; +} + +a.muted:hover, +a.muted:focus { + color: #808080; +} + +.text-warning { + color: #c09853; +} + +a.text-warning:hover, +a.text-warning:focus { + color: #a47e3c; +} + +.text-error { + color: #b94a48; +} + +a.text-error:hover, +a.text-error:focus { + color: #953b39; +} + +.text-info { + color: #3a87ad; +} + +a.text-info:hover, +a.text-info:focus { + color: #2d6987; +} + +.text-success { + color: #468847; +} + +a.text-success:hover, +a.text-success:focus { + color: #356635; +} + +.text-left { + text-align: left; +} + +.text-right { + text-align: right; +} + +.text-center { + text-align: center; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 10px 0; + font-family: inherit; + font-weight: bold; + line-height: 20px; + color: inherit; + text-rendering: optimizelegibility; +} + +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small { + font-weight: normal; + line-height: 1; + color: #999999; +} + +h1, +h2, +h3 { + line-height: 40px; +} + +h1 { + font-size: 38.5px; +} + +h2 { + font-size: 31.5px; +} + +h3 { + font-size: 24.5px; +} + +h4 { + font-size: 17.5px; +} + +h5 { + font-size: 14px; +} + +h6 { + font-size: 11.9px; +} + +h1 small { + font-size: 24.5px; +} + +h2 small { + font-size: 17.5px; +} + +h3 small { + font-size: 14px; +} + +h4 small { + font-size: 14px; +} + +.page-header { + padding-bottom: 9px; + margin: 20px 0 30px; + border-bottom: 1px solid #eeeeee; +} + +ul, +ol { + padding: 0; + margin: 0 0 10px 25px; +} + +ul ul, +ul ol, +ol ol, +ol ul { + margin-bottom: 0; +} + +li { + line-height: 20px; +} + +ul.unstyled, +ol.unstyled { + margin-left: 0; + list-style: none; +} + +ul.inline, +ol.inline { + margin-left: 0; + list-style: none; +} + +ul.inline > li, +ol.inline > li { + display: inline-block; + *display: inline; + padding-right: 5px; + padding-left: 5px; + *zoom: 1; +} + +dl { + margin-bottom: 20px; +} + +dt, +dd { + line-height: 20px; +} + +dt { + font-weight: bold; +} + +dd { + margin-left: 10px; +} + +.dl-horizontal { + *zoom: 1; +} + +.dl-horizontal:before, +.dl-horizontal:after { + display: table; + line-height: 0; + content: ""; +} + +.dl-horizontal:after { + clear: both; +} + +.dl-horizontal dt { + float: left; + width: 160px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; +} + +.dl-horizontal dd { + margin-left: 180px; +} + +hr { + margin: 20px 0; + border: 0; + border-top: 1px solid #eeeeee; + border-bottom: 1px solid #ffffff; +} + +abbr[title], +abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #999999; +} + +abbr.initialism { + font-size: 90%; + text-transform: uppercase; +} + +blockquote { + padding: 0 0 0 15px; + margin: 0 0 20px; + border-left: 5px solid #eeeeee; +} + +blockquote p { + margin-bottom: 0; + font-size: 17.5px; + font-weight: 300; + line-height: 1.25; +} + +blockquote small { + display: block; + line-height: 20px; + color: #999999; +} + +blockquote small:before { + content: '\2014 \00A0'; +} + +blockquote.pull-right { + float: right; + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #eeeeee; + border-left: 0; +} + +blockquote.pull-right p, +blockquote.pull-right small { + text-align: right; +} + +blockquote.pull-right small:before { + content: ''; +} + +blockquote.pull-right small:after { + content: '\00A0 \2014'; +} + +q:before, +q:after, +blockquote:before, +blockquote:after { + content: ""; +} + +address { + display: block; + margin-bottom: 20px; + font-style: normal; + line-height: 20px; +} + +code, +pre { + padding: 0 3px 2px; + font-family: Monaco, Menlo, Consolas, "Courier New", monospace; + font-size: 12px; + color: #333333; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +code { + padding: 2px 4px; + color: #d14; + white-space: nowrap; + background-color: #f7f7f9; + border: 1px solid #e1e1e8; +} + +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 20px; + word-break: break-all; + word-wrap: break-word; + white-space: pre; + white-space: pre-wrap; + background-color: #f5f5f5; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.15); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +pre.prettyprint { + margin-bottom: 20px; +} + +pre code { + padding: 0; + color: inherit; + white-space: pre; + white-space: pre-wrap; + background-color: transparent; + border: 0; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +form { + margin: 0 0 20px; +} + +fieldset { + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: 40px; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} + +legend small { + font-size: 15px; + color: #999999; +} + +label, +input, +button, +select, +textarea { + font-size: 14px; + font-weight: normal; + line-height: 20px; +} + +input, +button, +select, +textarea { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +label { + display: block; + margin-bottom: 5px; +} + +select, +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + display: inline-block; + height: 20px; + padding: 4px 6px; + margin-bottom: 10px; + font-size: 14px; + line-height: 20px; + color: #555555; + vertical-align: middle; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +input, +textarea, +.uneditable-input { + width: 206px; +} + +textarea { + height: auto; +} + +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + background-color: #ffffff; + border: 1px solid #cccccc; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; + -moz-transition: border linear 0.2s, box-shadow linear 0.2s; + -o-transition: border linear 0.2s, box-shadow linear 0.2s; + transition: border linear 0.2s, box-shadow linear 0.2s; +} + +textarea:focus, +input[type="text"]:focus, +input[type="password"]:focus, +input[type="datetime"]:focus, +input[type="datetime-local"]:focus, +input[type="date"]:focus, +input[type="month"]:focus, +input[type="time"]:focus, +input[type="week"]:focus, +input[type="number"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="search"]:focus, +input[type="tel"]:focus, +input[type="color"]:focus, +.uneditable-input:focus { + border-color: rgba(82, 168, 236, 0.8); + outline: 0; + outline: thin dotted \9; + /* IE6-9 */ + + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); +} + +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + *margin-top: 0; + line-height: normal; +} + +input[type="file"], +input[type="image"], +input[type="submit"], +input[type="reset"], +input[type="button"], +input[type="radio"], +input[type="checkbox"] { + width: auto; +} + +select, +input[type="file"] { + height: 30px; + /* In IE7, the height of the select element cannot be changed by height, only font-size */ + + *margin-top: 4px; + /* For IE7, add top margin to align select with labels */ + + line-height: 30px; +} + +select { + width: 220px; + background-color: #ffffff; + border: 1px solid #cccccc; +} + +select[multiple], +select[size] { + height: auto; +} + +select:focus, +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.uneditable-input, +.uneditable-textarea { + color: #999999; + cursor: not-allowed; + background-color: #fcfcfc; + border-color: #cccccc; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); + -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); +} + +.uneditable-input { + overflow: hidden; + white-space: nowrap; +} + +.uneditable-textarea { + width: auto; + height: auto; +} + +input:-moz-placeholder, +textarea:-moz-placeholder { + color: #999999; +} + +input:-ms-input-placeholder, +textarea:-ms-input-placeholder { + color: #999999; +} + +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder { + color: #999999; +} + +.radio, +.checkbox { + min-height: 20px; + padding-left: 20px; +} + +.radio input[type="radio"], +.checkbox input[type="checkbox"] { + float: left; + margin-left: -20px; +} + +.controls > .radio:first-child, +.controls > .checkbox:first-child { + padding-top: 5px; +} + +.radio.inline, +.checkbox.inline { + display: inline-block; + padding-top: 5px; + margin-bottom: 0; + vertical-align: middle; +} + +.radio.inline + .radio.inline, +.checkbox.inline + .checkbox.inline { + margin-left: 10px; +} + +.input-mini { + width: 60px; +} + +.input-small { + width: 90px; +} + +.input-medium { + width: 150px; +} + +.input-large { + width: 210px; +} + +.input-xlarge { + width: 270px; +} + +.input-xxlarge { + width: 530px; +} + +input[class*="span"], +select[class*="span"], +textarea[class*="span"], +.uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"] { + float: none; + margin-left: 0; +} + +.input-append input[class*="span"], +.input-append .uneditable-input[class*="span"], +.input-prepend input[class*="span"], +.input-prepend .uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"], +.row-fluid .input-prepend [class*="span"], +.row-fluid .input-append [class*="span"] { + display: inline-block; +} + +input, +textarea, +.uneditable-input { + margin-left: 0; +} + +.controls-row [class*="span"] + [class*="span"] { + margin-left: 20px; +} + +input.span12, +textarea.span12, +.uneditable-input.span12 { + width: 926px; +} + +input.span11, +textarea.span11, +.uneditable-input.span11 { + width: 846px; +} + +input.span10, +textarea.span10, +.uneditable-input.span10 { + width: 766px; +} + +input.span9, +textarea.span9, +.uneditable-input.span9 { + width: 686px; +} + +input.span8, +textarea.span8, +.uneditable-input.span8 { + width: 606px; +} + +input.span7, +textarea.span7, +.uneditable-input.span7 { + width: 526px; +} + +input.span6, +textarea.span6, +.uneditable-input.span6 { + width: 446px; +} + +input.span5, +textarea.span5, +.uneditable-input.span5 { + width: 366px; +} + +input.span4, +textarea.span4, +.uneditable-input.span4 { + width: 286px; +} + +input.span3, +textarea.span3, +.uneditable-input.span3 { + width: 206px; +} + +input.span2, +textarea.span2, +.uneditable-input.span2 { + width: 126px; +} + +input.span1, +textarea.span1, +.uneditable-input.span1 { + width: 46px; +} + +.controls-row { + *zoom: 1; +} + +.controls-row:before, +.controls-row:after { + display: table; + line-height: 0; + content: ""; +} + +.controls-row:after { + clear: both; +} + +.controls-row [class*="span"], +.row-fluid .controls-row [class*="span"] { + float: left; +} + +.controls-row .checkbox[class*="span"], +.controls-row .radio[class*="span"] { + padding-top: 5px; +} + +input[disabled], +select[disabled], +textarea[disabled], +input[readonly], +select[readonly], +textarea[readonly] { + cursor: not-allowed; + background-color: #eeeeee; +} + +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"][readonly], +input[type="checkbox"][readonly] { + background-color: transparent; +} + +.control-group.warning .control-label, +.control-group.warning .help-block, +.control-group.warning .help-inline { + color: #c09853; +} + +.control-group.warning .checkbox, +.control-group.warning .radio, +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + color: #c09853; +} + +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + border-color: #c09853; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.control-group.warning input:focus, +.control-group.warning select:focus, +.control-group.warning textarea:focus { + border-color: #a47e3c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; +} + +.control-group.warning .input-prepend .add-on, +.control-group.warning .input-append .add-on { + color: #c09853; + background-color: #fcf8e3; + border-color: #c09853; +} + +.control-group.error .control-label, +.control-group.error .help-block, +.control-group.error .help-inline { + color: #b94a48; +} + +.control-group.error .checkbox, +.control-group.error .radio, +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + color: #b94a48; +} + +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + border-color: #b94a48; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.control-group.error input:focus, +.control-group.error select:focus, +.control-group.error textarea:focus { + border-color: #953b39; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; +} + +.control-group.error .input-prepend .add-on, +.control-group.error .input-append .add-on { + color: #b94a48; + background-color: #f2dede; + border-color: #b94a48; +} + +.control-group.success .control-label, +.control-group.success .help-block, +.control-group.success .help-inline { + color: #468847; +} + +.control-group.success .checkbox, +.control-group.success .radio, +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + color: #468847; +} + +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + border-color: #468847; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.control-group.success input:focus, +.control-group.success select:focus, +.control-group.success textarea:focus { + border-color: #356635; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; +} + +.control-group.success .input-prepend .add-on, +.control-group.success .input-append .add-on { + color: #468847; + background-color: #dff0d8; + border-color: #468847; +} + +.control-group.info .control-label, +.control-group.info .help-block, +.control-group.info .help-inline { + color: #3a87ad; +} + +.control-group.info .checkbox, +.control-group.info .radio, +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + color: #3a87ad; +} + +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + border-color: #3a87ad; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.control-group.info input:focus, +.control-group.info select:focus, +.control-group.info textarea:focus { + border-color: #2d6987; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; +} + +.control-group.info .input-prepend .add-on, +.control-group.info .input-append .add-on { + color: #3a87ad; + background-color: #d9edf7; + border-color: #3a87ad; +} + +input:focus:invalid, +textarea:focus:invalid, +select:focus:invalid { + color: #b94a48; + border-color: #ee5f5b; +} + +input:focus:invalid:focus, +textarea:focus:invalid:focus, +select:focus:invalid:focus { + border-color: #e9322d; + -webkit-box-shadow: 0 0 6px #f8b9b7; + -moz-box-shadow: 0 0 6px #f8b9b7; + box-shadow: 0 0 6px #f8b9b7; +} + +.form-actions { + padding: 19px 20px 20px; + margin-top: 20px; + margin-bottom: 20px; + background-color: #f5f5f5; + border-top: 1px solid #e5e5e5; + *zoom: 1; +} + +.form-actions:before, +.form-actions:after { + display: table; + line-height: 0; + content: ""; +} + +.form-actions:after { + clear: both; +} + +.help-block, +.help-inline { + color: #595959; +} + +.help-block { + display: block; + margin-bottom: 10px; +} + +.help-inline { + display: inline-block; + *display: inline; + padding-left: 5px; + vertical-align: middle; + *zoom: 1; +} + +.input-append, +.input-prepend { + display: inline-block; + margin-bottom: 10px; + font-size: 0; + white-space: nowrap; + vertical-align: middle; +} + +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input, +.input-append .dropdown-menu, +.input-prepend .dropdown-menu, +.input-append .popover, +.input-prepend .popover { + font-size: 14px; +} + +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input { + position: relative; + margin-bottom: 0; + *margin-left: 0; + vertical-align: top; + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.input-append input:focus, +.input-prepend input:focus, +.input-append select:focus, +.input-prepend select:focus, +.input-append .uneditable-input:focus, +.input-prepend .uneditable-input:focus { + z-index: 2; +} + +.input-append .add-on, +.input-prepend .add-on { + display: inline-block; + width: auto; + height: 20px; + min-width: 16px; + padding: 4px 5px; + font-size: 14px; + font-weight: normal; + line-height: 20px; + text-align: center; + text-shadow: 0 1px 0 #ffffff; + background-color: #eeeeee; + border: 1px solid #ccc; +} + +.input-append .add-on, +.input-prepend .add-on, +.input-append .btn, +.input-prepend .btn, +.input-append .btn-group > .dropdown-toggle, +.input-prepend .btn-group > .dropdown-toggle { + vertical-align: top; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.input-append .active, +.input-prepend .active { + background-color: #a9dba9; + border-color: #46a546; +} + +.input-prepend .add-on, +.input-prepend .btn { + margin-right: -1px; +} + +.input-prepend .add-on:first-child, +.input-prepend .btn:first-child { + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} + +.input-append input, +.input-append select, +.input-append .uneditable-input { + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} + +.input-append input + .btn-group .btn:last-child, +.input-append select + .btn-group .btn:last-child, +.input-append .uneditable-input + .btn-group .btn:last-child { + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.input-append .add-on, +.input-append .btn, +.input-append .btn-group { + margin-left: -1px; +} + +.input-append .add-on:last-child, +.input-append .btn:last-child, +.input-append .btn-group:last-child > .dropdown-toggle { + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.input-prepend.input-append input, +.input-prepend.input-append select, +.input-prepend.input-append .uneditable-input { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.input-prepend.input-append input + .btn-group .btn, +.input-prepend.input-append select + .btn-group .btn, +.input-prepend.input-append .uneditable-input + .btn-group .btn { + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.input-prepend.input-append .add-on:first-child, +.input-prepend.input-append .btn:first-child { + margin-right: -1px; + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} + +.input-prepend.input-append .add-on:last-child, +.input-prepend.input-append .btn:last-child { + margin-left: -1px; + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.input-prepend.input-append .btn-group:first-child { + margin-left: 0; +} + +input.search-query { + padding-right: 14px; + padding-right: 4px \9; + padding-left: 14px; + padding-left: 4px \9; + /* IE7-8 doesn't have border-radius, so don't indent the padding */ + + margin-bottom: 0; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + border-radius: 15px; +} + +/* Allow for input prepend/append in search forms */ + +.form-search .input-append .search-query, +.form-search .input-prepend .search-query { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.form-search .input-append .search-query { + -webkit-border-radius: 14px 0 0 14px; + -moz-border-radius: 14px 0 0 14px; + border-radius: 14px 0 0 14px; +} + +.form-search .input-append .btn { + -webkit-border-radius: 0 14px 14px 0; + -moz-border-radius: 0 14px 14px 0; + border-radius: 0 14px 14px 0; +} + +.form-search .input-prepend .search-query { + -webkit-border-radius: 0 14px 14px 0; + -moz-border-radius: 0 14px 14px 0; + border-radius: 0 14px 14px 0; +} + +.form-search .input-prepend .btn { + -webkit-border-radius: 14px 0 0 14px; + -moz-border-radius: 14px 0 0 14px; + border-radius: 14px 0 0 14px; +} + +.form-search input, +.form-inline input, +.form-horizontal input, +.form-search textarea, +.form-inline textarea, +.form-horizontal textarea, +.form-search select, +.form-inline select, +.form-horizontal select, +.form-search .help-inline, +.form-inline .help-inline, +.form-horizontal .help-inline, +.form-search .uneditable-input, +.form-inline .uneditable-input, +.form-horizontal .uneditable-input, +.form-search .input-prepend, +.form-inline .input-prepend, +.form-horizontal .input-prepend, +.form-search .input-append, +.form-inline .input-append, +.form-horizontal .input-append { + display: inline-block; + *display: inline; + margin-bottom: 0; + vertical-align: middle; + *zoom: 1; +} + +.form-search .hide, +.form-inline .hide, +.form-horizontal .hide { + display: none; +} + +.form-search label, +.form-inline label, +.form-search .btn-group, +.form-inline .btn-group { + display: inline-block; +} + +.form-search .input-append, +.form-inline .input-append, +.form-search .input-prepend, +.form-inline .input-prepend { + margin-bottom: 0; +} + +.form-search .radio, +.form-search .checkbox, +.form-inline .radio, +.form-inline .checkbox { + padding-left: 0; + margin-bottom: 0; + vertical-align: middle; +} + +.form-search .radio input[type="radio"], +.form-search .checkbox input[type="checkbox"], +.form-inline .radio input[type="radio"], +.form-inline .checkbox input[type="checkbox"] { + float: left; + margin-right: 3px; + margin-left: 0; +} + +.control-group { + margin-bottom: 10px; +} + +legend + .control-group { + margin-top: 20px; + -webkit-margin-top-collapse: separate; +} + +.form-horizontal .control-group { + margin-bottom: 20px; + *zoom: 1; +} + +.form-horizontal .control-group:before, +.form-horizontal .control-group:after { + display: table; + line-height: 0; + content: ""; +} + +.form-horizontal .control-group:after { + clear: both; +} + +.form-horizontal .control-label { + float: left; + width: 160px; + padding-top: 5px; + text-align: right; +} + +.form-horizontal .controls { + *display: inline-block; + *padding-left: 20px; + margin-left: 180px; + *margin-left: 0; +} + +.form-horizontal .controls:first-child { + *padding-left: 180px; +} + +.form-horizontal .help-block { + margin-bottom: 0; +} + +.form-horizontal input + .help-block, +.form-horizontal select + .help-block, +.form-horizontal textarea + .help-block, +.form-horizontal .uneditable-input + .help-block, +.form-horizontal .input-prepend + .help-block, +.form-horizontal .input-append + .help-block { + margin-top: 10px; +} + +.form-horizontal .form-actions { + padding-left: 180px; +} + +table { + max-width: 100%; + background-color: transparent; + border-collapse: collapse; + border-spacing: 0; +} + +.table { + width: 100%; + margin-bottom: 20px; +} + +.table th, +.table td { + padding: 8px; + line-height: 20px; + text-align: left; + vertical-align: top; + border-top: 1px solid #dddddd; +} + +.table th { + font-weight: bold; +} + +.table thead th { + vertical-align: bottom; +} + +.table caption + thead tr:first-child th, +.table caption + thead tr:first-child td, +.table colgroup + thead tr:first-child th, +.table colgroup + thead tr:first-child td, +.table thead:first-child tr:first-child th, +.table thead:first-child tr:first-child td { + border-top: 0; +} + +.table tbody + tbody { + border-top: 2px solid #dddddd; +} + +.table .table { + background-color: #ffffff; +} + +.table-condensed th, +.table-condensed td { + padding: 4px 5px; +} + +.table-bordered { + border: 1px solid #dddddd; + border-collapse: separate; + *border-collapse: collapse; + border-left: 0; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.table-bordered th, +.table-bordered td { + border-left: 1px solid #dddddd; +} + +.table-bordered caption + thead tr:first-child th, +.table-bordered caption + tbody tr:first-child th, +.table-bordered caption + tbody tr:first-child td, +.table-bordered colgroup + thead tr:first-child th, +.table-bordered colgroup + tbody tr:first-child th, +.table-bordered colgroup + tbody tr:first-child td, +.table-bordered thead:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child td { + border-top: 0; +} + +.table-bordered thead:first-child tr:first-child > th:first-child, +.table-bordered tbody:first-child tr:first-child > td:first-child, +.table-bordered tbody:first-child tr:first-child > th:first-child { + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; +} + +.table-bordered thead:first-child tr:first-child > th:last-child, +.table-bordered tbody:first-child tr:first-child > td:last-child, +.table-bordered tbody:first-child tr:first-child > th:last-child { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; +} + +.table-bordered thead:last-child tr:last-child > th:first-child, +.table-bordered tbody:last-child tr:last-child > td:first-child, +.table-bordered tbody:last-child tr:last-child > th:first-child, +.table-bordered tfoot:last-child tr:last-child > td:first-child, +.table-bordered tfoot:last-child tr:last-child > th:first-child { + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; +} + +.table-bordered thead:last-child tr:last-child > th:last-child, +.table-bordered tbody:last-child tr:last-child > td:last-child, +.table-bordered tbody:last-child tr:last-child > th:last-child, +.table-bordered tfoot:last-child tr:last-child > td:last-child, +.table-bordered tfoot:last-child tr:last-child > th:last-child { + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomright: 4px; +} + +.table-bordered tfoot + tbody:last-child tr:last-child td:first-child { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomleft: 0; +} + +.table-bordered tfoot + tbody:last-child tr:last-child td:last-child { + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomright: 0; +} + +.table-bordered caption + thead tr:first-child th:first-child, +.table-bordered caption + tbody tr:first-child td:first-child, +.table-bordered colgroup + thead tr:first-child th:first-child, +.table-bordered colgroup + tbody tr:first-child td:first-child { + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; +} + +.table-bordered caption + thead tr:first-child th:last-child, +.table-bordered caption + tbody tr:first-child td:last-child, +.table-bordered colgroup + thead tr:first-child th:last-child, +.table-bordered colgroup + tbody tr:first-child td:last-child { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; +} + +.table-striped tbody > tr:nth-child(odd) > td, +.table-striped tbody > tr:nth-child(odd) > th { + background-color: #f9f9f9; +} + +.table-hover tbody tr:hover > td, +.table-hover tbody tr:hover > th { + background-color: #f5f5f5; +} + +table td[class*="span"], +table th[class*="span"], +.row-fluid table td[class*="span"], +.row-fluid table th[class*="span"] { + display: table-cell; + float: none; + margin-left: 0; +} + +.table td.span1, +.table th.span1 { + float: none; + width: 44px; + margin-left: 0; +} + +.table td.span2, +.table th.span2 { + float: none; + width: 124px; + margin-left: 0; +} + +.table td.span3, +.table th.span3 { + float: none; + width: 204px; + margin-left: 0; +} + +.table td.span4, +.table th.span4 { + float: none; + width: 284px; + margin-left: 0; +} + +.table td.span5, +.table th.span5 { + float: none; + width: 364px; + margin-left: 0; +} + +.table td.span6, +.table th.span6 { + float: none; + width: 444px; + margin-left: 0; +} + +.table td.span7, +.table th.span7 { + float: none; + width: 524px; + margin-left: 0; +} + +.table td.span8, +.table th.span8 { + float: none; + width: 604px; + margin-left: 0; +} + +.table td.span9, +.table th.span9 { + float: none; + width: 684px; + margin-left: 0; +} + +.table td.span10, +.table th.span10 { + float: none; + width: 764px; + margin-left: 0; +} + +.table td.span11, +.table th.span11 { + float: none; + width: 844px; + margin-left: 0; +} + +.table td.span12, +.table th.span12 { + float: none; + width: 924px; + margin-left: 0; +} + +.table tbody tr.success > td { + background-color: #dff0d8; +} + +.table tbody tr.error > td { + background-color: #f2dede; +} + +.table tbody tr.warning > td { + background-color: #fcf8e3; +} + +.table tbody tr.info > td { + background-color: #d9edf7; +} + +.table-hover tbody tr.success:hover > td { + background-color: #d0e9c6; +} + +.table-hover tbody tr.error:hover > td { + background-color: #ebcccc; +} + +.table-hover tbody tr.warning:hover > td { + background-color: #faf2cc; +} + +.table-hover tbody tr.info:hover > td { + background-color: #c4e3f3; +} + +[class^="icon-"], +[class*=" icon-"] { + display: inline-block; + width: 14px; + height: 14px; + margin-top: 1px; + *margin-right: .3em; + line-height: 14px; + vertical-align: text-top; + background-image: url("../img/glyphicons-halflings.png"); + background-position: 14px 14px; + background-repeat: no-repeat; +} + +/* White icons with optional class, or on hover/focus/active states of certain elements */ + +.icon-white, +.nav-pills > .active > a > [class^="icon-"], +.nav-pills > .active > a > [class*=" icon-"], +.nav-list > .active > a > [class^="icon-"], +.nav-list > .active > a > [class*=" icon-"], +.navbar-inverse .nav > .active > a > [class^="icon-"], +.navbar-inverse .nav > .active > a > [class*=" icon-"], +.dropdown-menu > li > a:hover > [class^="icon-"], +.dropdown-menu > li > a:focus > [class^="icon-"], +.dropdown-menu > li > a:hover > [class*=" icon-"], +.dropdown-menu > li > a:focus > [class*=" icon-"], +.dropdown-menu > .active > a > [class^="icon-"], +.dropdown-menu > .active > a > [class*=" icon-"], +.dropdown-submenu:hover > a > [class^="icon-"], +.dropdown-submenu:focus > a > [class^="icon-"], +.dropdown-submenu:hover > a > [class*=" icon-"], +.dropdown-submenu:focus > a > [class*=" icon-"] { + background-image: url("../img/glyphicons-halflings-white.png"); +} + +.icon-glass { + background-position: 0 0; +} + +.icon-music { + background-position: -24px 0; +} + +.icon-search { + background-position: -48px 0; +} + +.icon-envelope { + background-position: -72px 0; +} + +.icon-heart { + background-position: -96px 0; +} + +.icon-star { + background-position: -120px 0; +} + +.icon-star-empty { + background-position: -144px 0; +} + +.icon-user { + background-position: -168px 0; +} + +.icon-film { + background-position: -192px 0; +} + +.icon-th-large { + background-position: -216px 0; +} + +.icon-th { + background-position: -240px 0; +} + +.icon-th-list { + background-position: -264px 0; +} + +.icon-ok { + background-position: -288px 0; +} + +.icon-remove { + background-position: -312px 0; +} + +.icon-zoom-in { + background-position: -336px 0; +} + +.icon-zoom-out { + background-position: -360px 0; +} + +.icon-off { + background-position: -384px 0; +} + +.icon-signal { + background-position: -408px 0; +} + +.icon-cog { + background-position: -432px 0; +} + +.icon-trash { + background-position: -456px 0; +} + +.icon-home { + background-position: 0 -24px; +} + +.icon-file { + background-position: -24px -24px; +} + +.icon-time { + background-position: -48px -24px; +} + +.icon-road { + background-position: -72px -24px; +} + +.icon-download-alt { + background-position: -96px -24px; +} + +.icon-download { + background-position: -120px -24px; +} + +.icon-upload { + background-position: -144px -24px; +} + +.icon-inbox { + background-position: -168px -24px; +} + +.icon-play-circle { + background-position: -192px -24px; +} + +.icon-repeat { + background-position: -216px -24px; +} + +.icon-refresh { + background-position: -240px -24px; +} + +.icon-list-alt { + background-position: -264px -24px; +} + +.icon-lock { + background-position: -287px -24px; +} + +.icon-flag { + background-position: -312px -24px; +} + +.icon-headphones { + background-position: -336px -24px; +} + +.icon-volume-off { + background-position: -360px -24px; +} + +.icon-volume-down { + background-position: -384px -24px; +} + +.icon-volume-up { + background-position: -408px -24px; +} + +.icon-qrcode { + background-position: -432px -24px; +} + +.icon-barcode { + background-position: -456px -24px; +} + +.icon-tag { + background-position: 0 -48px; +} + +.icon-tags { + background-position: -25px -48px; +} + +.icon-book { + background-position: -48px -48px; +} + +.icon-bookmark { + background-position: -72px -48px; +} + +.icon-print { + background-position: -96px -48px; +} + +.icon-camera { + background-position: -120px -48px; +} + +.icon-font { + background-position: -144px -48px; +} + +.icon-bold { + background-position: -167px -48px; +} + +.icon-italic { + background-position: -192px -48px; +} + +.icon-text-height { + background-position: -216px -48px; +} + +.icon-text-width { + background-position: -240px -48px; +} + +.icon-align-left { + background-position: -264px -48px; +} + +.icon-align-center { + background-position: -288px -48px; +} + +.icon-align-right { + background-position: -312px -48px; +} + +.icon-align-justify { + background-position: -336px -48px; +} + +.icon-list { + background-position: -360px -48px; +} + +.icon-indent-left { + background-position: -384px -48px; +} + +.icon-indent-right { + background-position: -408px -48px; +} + +.icon-facetime-video { + background-position: -432px -48px; +} + +.icon-picture { + background-position: -456px -48px; +} + +.icon-pencil { + background-position: 0 -72px; +} + +.icon-map-marker { + background-position: -24px -72px; +} + +.icon-adjust { + background-position: -48px -72px; +} + +.icon-tint { + background-position: -72px -72px; +} + +.icon-edit { + background-position: -96px -72px; +} + +.icon-share { + background-position: -120px -72px; +} + +.icon-check { + background-position: -144px -72px; +} + +.icon-move { + background-position: -168px -72px; +} + +.icon-step-backward { + background-position: -192px -72px; +} + +.icon-fast-backward { + background-position: -216px -72px; +} + +.icon-backward { + background-position: -240px -72px; +} + +.icon-play { + background-position: -264px -72px; +} + +.icon-pause { + background-position: -288px -72px; +} + +.icon-stop { + background-position: -312px -72px; +} + +.icon-forward { + background-position: -336px -72px; +} + +.icon-fast-forward { + background-position: -360px -72px; +} + +.icon-step-forward { + background-position: -384px -72px; +} + +.icon-eject { + background-position: -408px -72px; +} + +.icon-chevron-left { + background-position: -432px -72px; +} + +.icon-chevron-right { + background-position: -456px -72px; +} + +.icon-plus-sign { + background-position: 0 -96px; +} + +.icon-minus-sign { + background-position: -24px -96px; +} + +.icon-remove-sign { + background-position: -48px -96px; +} + +.icon-ok-sign { + background-position: -72px -96px; +} + +.icon-question-sign { + background-position: -96px -96px; +} + +.icon-info-sign { + background-position: -120px -96px; +} + +.icon-screenshot { + background-position: -144px -96px; +} + +.icon-remove-circle { + background-position: -168px -96px; +} + +.icon-ok-circle { + background-position: -192px -96px; +} + +.icon-ban-circle { + background-position: -216px -96px; +} + +.icon-arrow-left { + background-position: -240px -96px; +} + +.icon-arrow-right { + background-position: -264px -96px; +} + +.icon-arrow-up { + background-position: -289px -96px; +} + +.icon-arrow-down { + background-position: -312px -96px; +} + +.icon-share-alt { + background-position: -336px -96px; +} + +.icon-resize-full { + background-position: -360px -96px; +} + +.icon-resize-small { + background-position: -384px -96px; +} + +.icon-plus { + background-position: -408px -96px; +} + +.icon-minus { + background-position: -433px -96px; +} + +.icon-asterisk { + background-position: -456px -96px; +} + +.icon-exclamation-sign { + background-position: 0 -120px; +} + +.icon-gift { + background-position: -24px -120px; +} + +.icon-leaf { + background-position: -48px -120px; +} + +.icon-fire { + background-position: -72px -120px; +} + +.icon-eye-open { + background-position: -96px -120px; +} + +.icon-eye-close { + background-position: -120px -120px; +} + +.icon-warning-sign { + background-position: -144px -120px; +} + +.icon-plane { + background-position: -168px -120px; +} + +.icon-calendar { + background-position: -192px -120px; +} + +.icon-random { + width: 16px; + background-position: -216px -120px; +} + +.icon-comment { + background-position: -240px -120px; +} + +.icon-magnet { + background-position: -264px -120px; +} + +.icon-chevron-up { + background-position: -288px -120px; +} + +.icon-chevron-down { + background-position: -313px -119px; +} + +.icon-retweet { + background-position: -336px -120px; +} + +.icon-shopping-cart { + background-position: -360px -120px; +} + +.icon-folder-close { + width: 16px; + background-position: -384px -120px; +} + +.icon-folder-open { + width: 16px; + background-position: -408px -120px; +} + +.icon-resize-vertical { + background-position: -432px -119px; +} + +.icon-resize-horizontal { + background-position: -456px -118px; +} + +.icon-hdd { + background-position: 0 -144px; +} + +.icon-bullhorn { + background-position: -24px -144px; +} + +.icon-bell { + background-position: -48px -144px; +} + +.icon-certificate { + background-position: -72px -144px; +} + +.icon-thumbs-up { + background-position: -96px -144px; +} + +.icon-thumbs-down { + background-position: -120px -144px; +} + +.icon-hand-right { + background-position: -144px -144px; +} + +.icon-hand-left { + background-position: -168px -144px; +} + +.icon-hand-up { + background-position: -192px -144px; +} + +.icon-hand-down { + background-position: -216px -144px; +} + +.icon-circle-arrow-right { + background-position: -240px -144px; +} + +.icon-circle-arrow-left { + background-position: -264px -144px; +} + +.icon-circle-arrow-up { + background-position: -288px -144px; +} + +.icon-circle-arrow-down { + background-position: -312px -144px; +} + +.icon-globe { + background-position: -336px -144px; +} + +.icon-wrench { + background-position: -360px -144px; +} + +.icon-tasks { + background-position: -384px -144px; +} + +.icon-filter { + background-position: -408px -144px; +} + +.icon-briefcase { + background-position: -432px -144px; +} + +.icon-fullscreen { + background-position: -456px -144px; +} + +.dropup, +.dropdown { + position: relative; +} + +.dropdown-toggle { + *margin-bottom: -3px; +} + +.dropdown-toggle:active, +.open .dropdown-toggle { + outline: 0; +} + +.caret { + display: inline-block; + width: 0; + height: 0; + vertical-align: top; + border-top: 4px solid #000000; + border-right: 4px solid transparent; + border-left: 4px solid transparent; + content: ""; +} + +.dropdown .caret { + margin-top: 8px; + margin-left: 2px; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + list-style: none; + background-color: #ffffff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + *border-right-width: 2px; + *border-bottom-width: 2px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} + +.dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.dropdown-menu .divider { + *width: 100%; + height: 1px; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #e5e5e5; + border-bottom: 1px solid #ffffff; +} + +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 20px; + color: #333333; + white-space: nowrap; +} + +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus, +.dropdown-submenu:hover > a, +.dropdown-submenu:focus > a { + color: #ffffff; + text-decoration: none; + background-color: #0081c2; + background-image: -moz-linear-gradient(top, #0088cc, #0077b3); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3)); + background-image: -webkit-linear-gradient(top, #0088cc, #0077b3); + background-image: -o-linear-gradient(top, #0088cc, #0077b3); + background-image: linear-gradient(to bottom, #0088cc, #0077b3); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); +} + +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #ffffff; + text-decoration: none; + background-color: #0081c2; + background-image: -moz-linear-gradient(top, #0088cc, #0077b3); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3)); + background-image: -webkit-linear-gradient(top, #0088cc, #0077b3); + background-image: -o-linear-gradient(top, #0088cc, #0077b3); + background-image: linear-gradient(to bottom, #0088cc, #0077b3); + background-repeat: repeat-x; + outline: 0; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); +} + +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #999999; +} + +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: default; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.open { + *z-index: 1000; +} + +.open > .dropdown-menu { + display: block; +} + +.dropdown-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 990; +} + +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} + +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 4px solid #000000; + content: ""; +} + +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 1px; +} + +.dropdown-submenu { + position: relative; +} + +.dropdown-submenu > .dropdown-menu { + top: 0; + left: 100%; + margin-top: -6px; + margin-left: -1px; + -webkit-border-radius: 0 6px 6px 6px; + -moz-border-radius: 0 6px 6px 6px; + border-radius: 0 6px 6px 6px; +} + +.dropdown-submenu:hover > .dropdown-menu { + display: block; +} + +.dropup .dropdown-submenu > .dropdown-menu { + top: auto; + bottom: 0; + margin-top: 0; + margin-bottom: -2px; + -webkit-border-radius: 5px 5px 5px 0; + -moz-border-radius: 5px 5px 5px 0; + border-radius: 5px 5px 5px 0; +} + +.dropdown-submenu > a:after { + display: block; + float: right; + width: 0; + height: 0; + margin-top: 5px; + margin-right: -10px; + border-color: transparent; + border-left-color: #cccccc; + border-style: solid; + border-width: 5px 0 5px 5px; + content: " "; +} + +.dropdown-submenu:hover > a:after { + border-left-color: #ffffff; +} + +.dropdown-submenu.pull-left { + float: none; +} + +.dropdown-submenu.pull-left > .dropdown-menu { + left: -100%; + margin-left: 10px; + -webkit-border-radius: 6px 0 6px 6px; + -moz-border-radius: 6px 0 6px 6px; + border-radius: 6px 0 6px 6px; +} + +.dropdown .dropdown-menu .nav-header { + padding-right: 20px; + padding-left: 20px; +} + +.typeahead { + z-index: 1051; + margin-top: 2px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} + +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); +} + +.well-large { + padding: 24px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.well-small { + padding: 9px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + -moz-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} + +.fade.in { + opacity: 1; +} + +.collapse { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + -moz-transition: height 0.35s ease; + -o-transition: height 0.35s ease; + transition: height 0.35s ease; +} + +.collapse.in { + height: auto; +} + +.close { + float: right; + font-size: 20px; + font-weight: bold; + line-height: 20px; + color: #000000; + text-shadow: 0 1px 0 #ffffff; + opacity: 0.2; + filter: alpha(opacity=20); +} + +.close:hover, +.close:focus { + color: #000000; + text-decoration: none; + cursor: pointer; + opacity: 0.4; + filter: alpha(opacity=40); +} + +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} + +.btn { + display: inline-block; + *display: inline; + padding: 4px 12px; + margin-bottom: 0; + *margin-left: .3em; + font-size: 14px; + line-height: 20px; + color: #333333; + text-align: center; + text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); + vertical-align: middle; + cursor: pointer; + background-color: #f5f5f5; + *background-color: #e6e6e6; + background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); + background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); + background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); + background-repeat: repeat-x; + border: 1px solid #cccccc; + *border: 0; + border-color: #e6e6e6 #e6e6e6 #bfbfbf; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + border-bottom-color: #b3b3b3; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + *zoom: 1; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.btn:hover, +.btn:focus, +.btn:active, +.btn.active, +.btn.disabled, +.btn[disabled] { + color: #333333; + background-color: #e6e6e6; + *background-color: #d9d9d9; +} + +.btn:active, +.btn.active { + background-color: #cccccc \9; +} + +.btn:first-child { + *margin-left: 0; +} + +.btn:hover, +.btn:focus { + color: #333333; + text-decoration: none; + background-position: 0 -15px; + -webkit-transition: background-position 0.1s linear; + -moz-transition: background-position 0.1s linear; + -o-transition: background-position 0.1s linear; + transition: background-position 0.1s linear; +} + +.btn:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.btn.active, +.btn:active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.btn.disabled, +.btn[disabled] { + cursor: default; + background-image: none; + opacity: 0.65; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.btn-large { + padding: 11px 19px; + font-size: 17.5px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.btn-large [class^="icon-"], +.btn-large [class*=" icon-"] { + margin-top: 4px; +} + +.btn-small { + padding: 2px 10px; + font-size: 11.9px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.btn-small [class^="icon-"], +.btn-small [class*=" icon-"] { + margin-top: 0; +} + +.btn-mini [class^="icon-"], +.btn-mini [class*=" icon-"] { + margin-top: -1px; +} + +.btn-mini { + padding: 0 6px; + font-size: 10.5px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.btn-block { + display: block; + width: 100%; + padding-right: 0; + padding-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.btn-block + .btn-block { + margin-top: 5px; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.btn-primary.active, +.btn-warning.active, +.btn-danger.active, +.btn-success.active, +.btn-info.active, +.btn-inverse.active { + color: rgba(255, 255, 255, 0.75); +} + +.btn-primary { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #006dcc; + *background-color: #0044cc; + background-image: -moz-linear-gradient(top, #0088cc, #0044cc); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc)); + background-image: -webkit-linear-gradient(top, #0088cc, #0044cc); + background-image: -o-linear-gradient(top, #0088cc, #0044cc); + background-image: linear-gradient(to bottom, #0088cc, #0044cc); + background-repeat: repeat-x; + border-color: #0044cc #0044cc #002a80; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-primary:hover, +.btn-primary:focus, +.btn-primary:active, +.btn-primary.active, +.btn-primary.disabled, +.btn-primary[disabled] { + color: #ffffff; + background-color: #0044cc; + *background-color: #003bb3; +} + +.btn-primary:active, +.btn-primary.active { + background-color: #003399 \9; +} + +.btn-warning { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #faa732; + *background-color: #f89406; + background-image: -moz-linear-gradient(top, #fbb450, #f89406); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); + background-image: -webkit-linear-gradient(top, #fbb450, #f89406); + background-image: -o-linear-gradient(top, #fbb450, #f89406); + background-image: linear-gradient(to bottom, #fbb450, #f89406); + background-repeat: repeat-x; + border-color: #f89406 #f89406 #ad6704; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-warning:hover, +.btn-warning:focus, +.btn-warning:active, +.btn-warning.active, +.btn-warning.disabled, +.btn-warning[disabled] { + color: #ffffff; + background-color: #f89406; + *background-color: #df8505; +} + +.btn-warning:active, +.btn-warning.active { + background-color: #c67605 \9; +} + +.btn-danger { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #da4f49; + *background-color: #bd362f; + background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); + background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); + background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); + background-image: linear-gradient(to bottom, #ee5f5b, #bd362f); + background-repeat: repeat-x; + border-color: #bd362f #bd362f #802420; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-danger:hover, +.btn-danger:focus, +.btn-danger:active, +.btn-danger.active, +.btn-danger.disabled, +.btn-danger[disabled] { + color: #ffffff; + background-color: #bd362f; + *background-color: #a9302a; +} + +.btn-danger:active, +.btn-danger.active { + background-color: #942a25 \9; +} + +.btn-success { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #5bb75b; + *background-color: #51a351; + background-image: -moz-linear-gradient(top, #62c462, #51a351); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); + background-image: -webkit-linear-gradient(top, #62c462, #51a351); + background-image: -o-linear-gradient(top, #62c462, #51a351); + background-image: linear-gradient(to bottom, #62c462, #51a351); + background-repeat: repeat-x; + border-color: #51a351 #51a351 #387038; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-success:hover, +.btn-success:focus, +.btn-success:active, +.btn-success.active, +.btn-success.disabled, +.btn-success[disabled] { + color: #ffffff; + background-color: #51a351; + *background-color: #499249; +} + +.btn-success:active, +.btn-success.active { + background-color: #408140 \9; +} + +.btn-info { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #49afcd; + *background-color: #2f96b4; + background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); + background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); + background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); + background-image: linear-gradient(to bottom, #5bc0de, #2f96b4); + background-repeat: repeat-x; + border-color: #2f96b4 #2f96b4 #1f6377; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-info:hover, +.btn-info:focus, +.btn-info:active, +.btn-info.active, +.btn-info.disabled, +.btn-info[disabled] { + color: #ffffff; + background-color: #2f96b4; + *background-color: #2a85a0; +} + +.btn-info:active, +.btn-info.active { + background-color: #24748c \9; +} + +.btn-inverse { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #363636; + *background-color: #222222; + background-image: -moz-linear-gradient(top, #444444, #222222); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222)); + background-image: -webkit-linear-gradient(top, #444444, #222222); + background-image: -o-linear-gradient(top, #444444, #222222); + background-image: linear-gradient(to bottom, #444444, #222222); + background-repeat: repeat-x; + border-color: #222222 #222222 #000000; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-inverse:hover, +.btn-inverse:focus, +.btn-inverse:active, +.btn-inverse.active, +.btn-inverse.disabled, +.btn-inverse[disabled] { + color: #ffffff; + background-color: #222222; + *background-color: #151515; +} + +.btn-inverse:active, +.btn-inverse.active { + background-color: #080808 \9; +} + +button.btn, +input[type="submit"].btn { + *padding-top: 3px; + *padding-bottom: 3px; +} + +button.btn::-moz-focus-inner, +input[type="submit"].btn::-moz-focus-inner { + padding: 0; + border: 0; +} + +button.btn.btn-large, +input[type="submit"].btn.btn-large { + *padding-top: 7px; + *padding-bottom: 7px; +} + +button.btn.btn-small, +input[type="submit"].btn.btn-small { + *padding-top: 3px; + *padding-bottom: 3px; +} + +button.btn.btn-mini, +input[type="submit"].btn.btn-mini { + *padding-top: 1px; + *padding-bottom: 1px; +} + +.btn-link, +.btn-link:active, +.btn-link[disabled] { + background-color: transparent; + background-image: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.btn-link { + color: #0088cc; + cursor: pointer; + border-color: transparent; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-link:hover, +.btn-link:focus { + color: #005580; + text-decoration: underline; + background-color: transparent; +} + +.btn-link[disabled]:hover, +.btn-link[disabled]:focus { + color: #333333; + text-decoration: none; +} + +.btn-group { + position: relative; + display: inline-block; + *display: inline; + *margin-left: .3em; + font-size: 0; + white-space: nowrap; + vertical-align: middle; + *zoom: 1; +} + +.btn-group:first-child { + *margin-left: 0; +} + +.btn-group + .btn-group { + margin-left: 5px; +} + +.btn-toolbar { + margin-top: 10px; + margin-bottom: 10px; + font-size: 0; +} + +.btn-toolbar > .btn + .btn, +.btn-toolbar > .btn-group + .btn, +.btn-toolbar > .btn + .btn-group { + margin-left: 5px; +} + +.btn-group > .btn { + position: relative; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-group > .btn + .btn { + margin-left: -1px; +} + +.btn-group > .btn, +.btn-group > .dropdown-menu, +.btn-group > .popover { + font-size: 14px; +} + +.btn-group > .btn-mini { + font-size: 10.5px; +} + +.btn-group > .btn-small { + font-size: 11.9px; +} + +.btn-group > .btn-large { + font-size: 17.5px; +} + +.btn-group > .btn:first-child { + margin-left: 0; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-topleft: 4px; +} + +.btn-group > .btn:last-child, +.btn-group > .dropdown-toggle { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-topright: 4px; + -moz-border-radius-bottomright: 4px; +} + +.btn-group > .btn.large:first-child { + margin-left: 0; + -webkit-border-bottom-left-radius: 6px; + border-bottom-left-radius: 6px; + -webkit-border-top-left-radius: 6px; + border-top-left-radius: 6px; + -moz-border-radius-bottomleft: 6px; + -moz-border-radius-topleft: 6px; +} + +.btn-group > .btn.large:last-child, +.btn-group > .large.dropdown-toggle { + -webkit-border-top-right-radius: 6px; + border-top-right-radius: 6px; + -webkit-border-bottom-right-radius: 6px; + border-bottom-right-radius: 6px; + -moz-border-radius-topright: 6px; + -moz-border-radius-bottomright: 6px; +} + +.btn-group > .btn:hover, +.btn-group > .btn:focus, +.btn-group > .btn:active, +.btn-group > .btn.active { + z-index: 2; +} + +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} + +.btn-group > .btn + .dropdown-toggle { + *padding-top: 5px; + padding-right: 8px; + *padding-bottom: 5px; + padding-left: 8px; + -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.btn-group > .btn-mini + .dropdown-toggle { + *padding-top: 2px; + padding-right: 5px; + *padding-bottom: 2px; + padding-left: 5px; +} + +.btn-group > .btn-small + .dropdown-toggle { + *padding-top: 5px; + *padding-bottom: 4px; +} + +.btn-group > .btn-large + .dropdown-toggle { + *padding-top: 7px; + padding-right: 12px; + *padding-bottom: 7px; + padding-left: 12px; +} + +.btn-group.open .dropdown-toggle { + background-image: none; + -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.btn-group.open .btn.dropdown-toggle { + background-color: #e6e6e6; +} + +.btn-group.open .btn-primary.dropdown-toggle { + background-color: #0044cc; +} + +.btn-group.open .btn-warning.dropdown-toggle { + background-color: #f89406; +} + +.btn-group.open .btn-danger.dropdown-toggle { + background-color: #bd362f; +} + +.btn-group.open .btn-success.dropdown-toggle { + background-color: #51a351; +} + +.btn-group.open .btn-info.dropdown-toggle { + background-color: #2f96b4; +} + +.btn-group.open .btn-inverse.dropdown-toggle { + background-color: #222222; +} + +.btn .caret { + margin-top: 8px; + margin-left: 0; +} + +.btn-large .caret { + margin-top: 6px; +} + +.btn-large .caret { + border-top-width: 5px; + border-right-width: 5px; + border-left-width: 5px; +} + +.btn-mini .caret, +.btn-small .caret { + margin-top: 8px; +} + +.dropup .btn-large .caret { + border-bottom-width: 5px; +} + +.btn-primary .caret, +.btn-warning .caret, +.btn-danger .caret, +.btn-info .caret, +.btn-success .caret, +.btn-inverse .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.btn-group-vertical { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; +} + +.btn-group-vertical > .btn { + display: block; + float: none; + max-width: 100%; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-group-vertical > .btn + .btn { + margin-top: -1px; + margin-left: 0; +} + +.btn-group-vertical > .btn:first-child { + -webkit-border-radius: 4px 4px 0 0; + -moz-border-radius: 4px 4px 0 0; + border-radius: 4px 4px 0 0; +} + +.btn-group-vertical > .btn:last-child { + -webkit-border-radius: 0 0 4px 4px; + -moz-border-radius: 0 0 4px 4px; + border-radius: 0 0 4px 4px; +} + +.btn-group-vertical > .btn-large:first-child { + -webkit-border-radius: 6px 6px 0 0; + -moz-border-radius: 6px 6px 0 0; + border-radius: 6px 6px 0 0; +} + +.btn-group-vertical > .btn-large:last-child { + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; +} + +.alert { + padding: 8px 35px 8px 14px; + margin-bottom: 20px; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); + background-color: #fcf8e3; + border: 1px solid #fbeed5; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.alert, +.alert h4 { + color: #c09853; +} + +.alert h4 { + margin: 0; +} + +.alert .close { + position: relative; + top: -2px; + right: -21px; + line-height: 20px; +} + +.alert-success { + color: #468847; + background-color: #dff0d8; + border-color: #d6e9c6; +} + +.alert-success h4 { + color: #468847; +} + +.alert-danger, +.alert-error { + color: #b94a48; + background-color: #f2dede; + border-color: #eed3d7; +} + +.alert-danger h4, +.alert-error h4 { + color: #b94a48; +} + +.alert-info { + color: #3a87ad; + background-color: #d9edf7; + border-color: #bce8f1; +} + +.alert-info h4 { + color: #3a87ad; +} + +.alert-block { + padding-top: 14px; + padding-bottom: 14px; +} + +.alert-block > p, +.alert-block > ul { + margin-bottom: 0; +} + +.alert-block p + p { + margin-top: 5px; +} + +.nav { + margin-bottom: 20px; + margin-left: 0; + list-style: none; +} + +.nav > li > a { + display: block; +} + +.nav > li > a:hover, +.nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} + +.nav > li > a > img { + max-width: none; +} + +.nav > .pull-right { + float: right; +} + +.nav-header { + display: block; + padding: 3px 15px; + font-size: 11px; + font-weight: bold; + line-height: 20px; + color: #999999; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); + text-transform: uppercase; +} + +.nav li + .nav-header { + margin-top: 9px; +} + +.nav-list { + padding-right: 15px; + padding-left: 15px; + margin-bottom: 0; +} + +.nav-list > li > a, +.nav-list .nav-header { + margin-right: -15px; + margin-left: -15px; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); +} + +.nav-list > li > a { + padding: 3px 15px; +} + +.nav-list > .active > a, +.nav-list > .active > a:hover, +.nav-list > .active > a:focus { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); + background-color: #0088cc; +} + +.nav-list [class^="icon-"], +.nav-list [class*=" icon-"] { + margin-right: 2px; +} + +.nav-list .divider { + *width: 100%; + height: 1px; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #e5e5e5; + border-bottom: 1px solid #ffffff; +} + +.nav-tabs, +.nav-pills { + *zoom: 1; +} + +.nav-tabs:before, +.nav-pills:before, +.nav-tabs:after, +.nav-pills:after { + display: table; + line-height: 0; + content: ""; +} + +.nav-tabs:after, +.nav-pills:after { + clear: both; +} + +.nav-tabs > li, +.nav-pills > li { + float: left; +} + +.nav-tabs > li > a, +.nav-pills > li > a { + padding-right: 12px; + padding-left: 12px; + margin-right: 2px; + line-height: 14px; +} + +.nav-tabs { + border-bottom: 1px solid #ddd; +} + +.nav-tabs > li { + margin-bottom: -1px; +} + +.nav-tabs > li > a { + padding-top: 8px; + padding-bottom: 8px; + line-height: 20px; + border: 1px solid transparent; + -webkit-border-radius: 4px 4px 0 0; + -moz-border-radius: 4px 4px 0 0; + border-radius: 4px 4px 0 0; +} + +.nav-tabs > li > a:hover, +.nav-tabs > li > a:focus { + border-color: #eeeeee #eeeeee #dddddd; +} + +.nav-tabs > .active > a, +.nav-tabs > .active > a:hover, +.nav-tabs > .active > a:focus { + color: #555555; + cursor: default; + background-color: #ffffff; + border: 1px solid #ddd; + border-bottom-color: transparent; +} + +.nav-pills > li > a { + padding-top: 8px; + padding-bottom: 8px; + margin-top: 2px; + margin-bottom: 2px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} + +.nav-pills > .active > a, +.nav-pills > .active > a:hover, +.nav-pills > .active > a:focus { + color: #ffffff; + background-color: #0088cc; +} + +.nav-stacked > li { + float: none; +} + +.nav-stacked > li > a { + margin-right: 0; +} + +.nav-tabs.nav-stacked { + border-bottom: 0; +} + +.nav-tabs.nav-stacked > li > a { + border: 1px solid #ddd; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav-tabs.nav-stacked > li:first-child > a { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -moz-border-radius-topleft: 4px; +} + +.nav-tabs.nav-stacked > li:last-child > a { + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -moz-border-radius-bottomright: 4px; + -moz-border-radius-bottomleft: 4px; +} + +.nav-tabs.nav-stacked > li > a:hover, +.nav-tabs.nav-stacked > li > a:focus { + z-index: 2; + border-color: #ddd; +} + +.nav-pills.nav-stacked > li > a { + margin-bottom: 3px; +} + +.nav-pills.nav-stacked > li:last-child > a { + margin-bottom: 1px; +} + +.nav-tabs .dropdown-menu { + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; +} + +.nav-pills .dropdown-menu { + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.nav .dropdown-toggle .caret { + margin-top: 6px; + border-top-color: #0088cc; + border-bottom-color: #0088cc; +} + +.nav .dropdown-toggle:hover .caret, +.nav .dropdown-toggle:focus .caret { + border-top-color: #005580; + border-bottom-color: #005580; +} + +/* move down carets for tabs */ + +.nav-tabs .dropdown-toggle .caret { + margin-top: 8px; +} + +.nav .active .dropdown-toggle .caret { + border-top-color: #fff; + border-bottom-color: #fff; +} + +.nav-tabs .active .dropdown-toggle .caret { + border-top-color: #555555; + border-bottom-color: #555555; +} + +.nav > .dropdown.active > a:hover, +.nav > .dropdown.active > a:focus { + cursor: pointer; +} + +.nav-tabs .open .dropdown-toggle, +.nav-pills .open .dropdown-toggle, +.nav > li.dropdown.open.active > a:hover, +.nav > li.dropdown.open.active > a:focus { + color: #ffffff; + background-color: #999999; + border-color: #999999; +} + +.nav li.dropdown.open .caret, +.nav li.dropdown.open.active .caret, +.nav li.dropdown.open a:hover .caret, +.nav li.dropdown.open a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; + opacity: 1; + filter: alpha(opacity=100); +} + +.tabs-stacked .open > a:hover, +.tabs-stacked .open > a:focus { + border-color: #999999; +} + +.tabbable { + *zoom: 1; +} + +.tabbable:before, +.tabbable:after { + display: table; + line-height: 0; + content: ""; +} + +.tabbable:after { + clear: both; +} + +.tab-content { + overflow: auto; +} + +.tabs-below > .nav-tabs, +.tabs-right > .nav-tabs, +.tabs-left > .nav-tabs { + border-bottom: 0; +} + +.tab-content > .tab-pane, +.pill-content > .pill-pane { + display: none; +} + +.tab-content > .active, +.pill-content > .active { + display: block; +} + +.tabs-below > .nav-tabs { + border-top: 1px solid #ddd; +} + +.tabs-below > .nav-tabs > li { + margin-top: -1px; + margin-bottom: 0; +} + +.tabs-below > .nav-tabs > li > a { + -webkit-border-radius: 0 0 4px 4px; + -moz-border-radius: 0 0 4px 4px; + border-radius: 0 0 4px 4px; +} + +.tabs-below > .nav-tabs > li > a:hover, +.tabs-below > .nav-tabs > li > a:focus { + border-top-color: #ddd; + border-bottom-color: transparent; +} + +.tabs-below > .nav-tabs > .active > a, +.tabs-below > .nav-tabs > .active > a:hover, +.tabs-below > .nav-tabs > .active > a:focus { + border-color: transparent #ddd #ddd #ddd; +} + +.tabs-left > .nav-tabs > li, +.tabs-right > .nav-tabs > li { + float: none; +} + +.tabs-left > .nav-tabs > li > a, +.tabs-right > .nav-tabs > li > a { + min-width: 74px; + margin-right: 0; + margin-bottom: 3px; +} + +.tabs-left > .nav-tabs { + float: left; + margin-right: 19px; + border-right: 1px solid #ddd; +} + +.tabs-left > .nav-tabs > li > a { + margin-right: -1px; + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} + +.tabs-left > .nav-tabs > li > a:hover, +.tabs-left > .nav-tabs > li > a:focus { + border-color: #eeeeee #dddddd #eeeeee #eeeeee; +} + +.tabs-left > .nav-tabs .active > a, +.tabs-left > .nav-tabs .active > a:hover, +.tabs-left > .nav-tabs .active > a:focus { + border-color: #ddd transparent #ddd #ddd; + *border-right-color: #ffffff; +} + +.tabs-right > .nav-tabs { + float: right; + margin-left: 19px; + border-left: 1px solid #ddd; +} + +.tabs-right > .nav-tabs > li > a { + margin-left: -1px; + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.tabs-right > .nav-tabs > li > a:hover, +.tabs-right > .nav-tabs > li > a:focus { + border-color: #eeeeee #eeeeee #eeeeee #dddddd; +} + +.tabs-right > .nav-tabs .active > a, +.tabs-right > .nav-tabs .active > a:hover, +.tabs-right > .nav-tabs .active > a:focus { + border-color: #ddd #ddd #ddd transparent; + *border-left-color: #ffffff; +} + +.nav > .disabled > a { + color: #999999; +} + +.nav > .disabled > a:hover, +.nav > .disabled > a:focus { + text-decoration: none; + cursor: default; + background-color: transparent; +} + +.navbar { + *position: relative; + *z-index: 2; + margin-bottom: 20px; + overflow: visible; +} + +.navbar-inner { + min-height: 40px; + padding-right: 20px; + padding-left: 20px; + background-color: #fafafa; + background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2)); + background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2); + background-image: -o-linear-gradient(top, #ffffff, #f2f2f2); + background-image: linear-gradient(to bottom, #ffffff, #f2f2f2); + background-repeat: repeat-x; + border: 1px solid #d4d4d4; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0); + *zoom: 1; + -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); + -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); +} + +.navbar-inner:before, +.navbar-inner:after { + display: table; + line-height: 0; + content: ""; +} + +.navbar-inner:after { + clear: both; +} + +.navbar .container { + width: auto; +} + +.nav-collapse.collapse { + height: auto; + overflow: visible; +} + +.navbar .brand { + display: block; + float: left; + padding: 10px 20px 10px; + margin-left: -20px; + font-size: 20px; + font-weight: 200; + color: #777777; + text-shadow: 0 1px 0 #ffffff; +} + +.navbar .brand:hover, +.navbar .brand:focus { + text-decoration: none; +} + +.navbar-text { + margin-bottom: 0; + line-height: 40px; + color: #777777; +} + +.navbar-link { + color: #777777; +} + +.navbar-link:hover, +.navbar-link:focus { + color: #333333; +} + +.navbar .divider-vertical { + height: 40px; + margin: 0 9px; + border-right: 1px solid #ffffff; + border-left: 1px solid #f2f2f2; +} + +.navbar .btn, +.navbar .btn-group { + margin-top: 5px; +} + +.navbar .btn-group .btn, +.navbar .input-prepend .btn, +.navbar .input-append .btn, +.navbar .input-prepend .btn-group, +.navbar .input-append .btn-group { + margin-top: 0; +} + +.navbar-form { + margin-bottom: 0; + *zoom: 1; +} + +.navbar-form:before, +.navbar-form:after { + display: table; + line-height: 0; + content: ""; +} + +.navbar-form:after { + clear: both; +} + +.navbar-form input, +.navbar-form select, +.navbar-form .radio, +.navbar-form .checkbox { + margin-top: 5px; +} + +.navbar-form input, +.navbar-form select, +.navbar-form .btn { + display: inline-block; + margin-bottom: 0; +} + +.navbar-form input[type="image"], +.navbar-form input[type="checkbox"], +.navbar-form input[type="radio"] { + margin-top: 3px; +} + +.navbar-form .input-append, +.navbar-form .input-prepend { + margin-top: 5px; + white-space: nowrap; +} + +.navbar-form .input-append input, +.navbar-form .input-prepend input { + margin-top: 0; +} + +.navbar-search { + position: relative; + float: left; + margin-top: 5px; + margin-bottom: 0; +} + +.navbar-search .search-query { + padding: 4px 14px; + margin-bottom: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 13px; + font-weight: normal; + line-height: 1; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + border-radius: 15px; +} + +.navbar-static-top { + position: static; + margin-bottom: 0; +} + +.navbar-static-top .navbar-inner { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; + margin-bottom: 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + border-width: 0 0 1px; +} + +.navbar-fixed-bottom .navbar-inner { + border-width: 1px 0 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-fixed-bottom .navbar-inner { + padding-right: 0; + padding-left: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-static-top .container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 940px; +} + +.navbar-fixed-top { + top: 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); +} + +.navbar-fixed-bottom { + bottom: 0; +} + +.navbar-fixed-bottom .navbar-inner { + -webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); + box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); +} + +.navbar .nav { + position: relative; + left: 0; + display: block; + float: left; + margin: 0 10px 0 0; +} + +.navbar .nav.pull-right { + float: right; + margin-right: 0; +} + +.navbar .nav > li { + float: left; +} + +.navbar .nav > li > a { + float: none; + padding: 10px 15px 10px; + color: #777777; + text-decoration: none; + text-shadow: 0 1px 0 #ffffff; +} + +.navbar .nav .dropdown-toggle .caret { + margin-top: 8px; +} + +.navbar .nav > li > a:focus, +.navbar .nav > li > a:hover { + color: #333333; + text-decoration: none; + background-color: transparent; +} + +.navbar .nav > .active > a, +.navbar .nav > .active > a:hover, +.navbar .nav > .active > a:focus { + color: #555555; + text-decoration: none; + background-color: #e5e5e5; + -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); + -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); +} + +.navbar .btn-navbar { + display: none; + float: right; + padding: 7px 10px; + margin-right: 5px; + margin-left: 5px; + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #ededed; + *background-color: #e5e5e5; + background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5)); + background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5); + background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5); + background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5); + background-repeat: repeat-x; + border-color: #e5e5e5 #e5e5e5 #bfbfbf; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); +} + +.navbar .btn-navbar:hover, +.navbar .btn-navbar:focus, +.navbar .btn-navbar:active, +.navbar .btn-navbar.active, +.navbar .btn-navbar.disabled, +.navbar .btn-navbar[disabled] { + color: #ffffff; + background-color: #e5e5e5; + *background-color: #d9d9d9; +} + +.navbar .btn-navbar:active, +.navbar .btn-navbar.active { + background-color: #cccccc \9; +} + +.navbar .btn-navbar .icon-bar { + display: block; + width: 18px; + height: 2px; + background-color: #f5f5f5; + -webkit-border-radius: 1px; + -moz-border-radius: 1px; + border-radius: 1px; + -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); + -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); +} + +.btn-navbar .icon-bar + .icon-bar { + margin-top: 3px; +} + +.navbar .nav > li > .dropdown-menu:before { + position: absolute; + top: -7px; + left: 9px; + display: inline-block; + border-right: 7px solid transparent; + border-bottom: 7px solid #ccc; + border-left: 7px solid transparent; + border-bottom-color: rgba(0, 0, 0, 0.2); + content: ''; +} + +.navbar .nav > li > .dropdown-menu:after { + position: absolute; + top: -6px; + left: 10px; + display: inline-block; + border-right: 6px solid transparent; + border-bottom: 6px solid #ffffff; + border-left: 6px solid transparent; + content: ''; +} + +.navbar-fixed-bottom .nav > li > .dropdown-menu:before { + top: auto; + bottom: -7px; + border-top: 7px solid #ccc; + border-bottom: 0; + border-top-color: rgba(0, 0, 0, 0.2); +} + +.navbar-fixed-bottom .nav > li > .dropdown-menu:after { + top: auto; + bottom: -6px; + border-top: 6px solid #ffffff; + border-bottom: 0; +} + +.navbar .nav li.dropdown > a:hover .caret, +.navbar .nav li.dropdown > a:focus .caret { + border-top-color: #333333; + border-bottom-color: #333333; +} + +.navbar .nav li.dropdown.open > .dropdown-toggle, +.navbar .nav li.dropdown.active > .dropdown-toggle, +.navbar .nav li.dropdown.open.active > .dropdown-toggle { + color: #555555; + background-color: #e5e5e5; +} + +.navbar .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #777777; + border-bottom-color: #777777; +} + +.navbar .nav li.dropdown.open > .dropdown-toggle .caret, +.navbar .nav li.dropdown.active > .dropdown-toggle .caret, +.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret { + border-top-color: #555555; + border-bottom-color: #555555; +} + +.navbar .pull-right > li > .dropdown-menu, +.navbar .nav > li > .dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.navbar .pull-right > li > .dropdown-menu:before, +.navbar .nav > li > .dropdown-menu.pull-right:before { + right: 12px; + left: auto; +} + +.navbar .pull-right > li > .dropdown-menu:after, +.navbar .nav > li > .dropdown-menu.pull-right:after { + right: 13px; + left: auto; +} + +.navbar .pull-right > li > .dropdown-menu .dropdown-menu, +.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu { + right: 100%; + left: auto; + margin-right: -1px; + margin-left: 0; + -webkit-border-radius: 6px 0 6px 6px; + -moz-border-radius: 6px 0 6px 6px; + border-radius: 6px 0 6px 6px; +} + +.navbar-inverse .navbar-inner { + background-color: #1b1b1b; + background-image: -moz-linear-gradient(top, #222222, #111111); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111)); + background-image: -webkit-linear-gradient(top, #222222, #111111); + background-image: -o-linear-gradient(top, #222222, #111111); + background-image: linear-gradient(to bottom, #222222, #111111); + background-repeat: repeat-x; + border-color: #252525; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0); +} + +.navbar-inverse .brand, +.navbar-inverse .nav > li > a { + color: #999999; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +.navbar-inverse .brand:hover, +.navbar-inverse .nav > li > a:hover, +.navbar-inverse .brand:focus, +.navbar-inverse .nav > li > a:focus { + color: #ffffff; +} + +.navbar-inverse .brand { + color: #999999; +} + +.navbar-inverse .navbar-text { + color: #999999; +} + +.navbar-inverse .nav > li > a:focus, +.navbar-inverse .nav > li > a:hover { + color: #ffffff; + background-color: transparent; +} + +.navbar-inverse .nav .active > a, +.navbar-inverse .nav .active > a:hover, +.navbar-inverse .nav .active > a:focus { + color: #ffffff; + background-color: #111111; +} + +.navbar-inverse .navbar-link { + color: #999999; +} + +.navbar-inverse .navbar-link:hover, +.navbar-inverse .navbar-link:focus { + color: #ffffff; +} + +.navbar-inverse .divider-vertical { + border-right-color: #222222; + border-left-color: #111111; +} + +.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, +.navbar-inverse .nav li.dropdown.active > .dropdown-toggle, +.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle { + color: #ffffff; + background-color: #111111; +} + +.navbar-inverse .nav li.dropdown > a:hover .caret, +.navbar-inverse .nav li.dropdown > a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #999999; + border-bottom-color: #999999; +} + +.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret, +.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret, +.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.navbar-inverse .navbar-search .search-query { + color: #ffffff; + background-color: #515151; + border-color: #111111; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15); + -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15); + -webkit-transition: none; + -moz-transition: none; + -o-transition: none; + transition: none; +} + +.navbar-inverse .navbar-search .search-query:-moz-placeholder { + color: #cccccc; +} + +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder { + color: #cccccc; +} + +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder { + color: #cccccc; +} + +.navbar-inverse .navbar-search .search-query:focus, +.navbar-inverse .navbar-search .search-query.focused { + padding: 5px 15px; + color: #333333; + text-shadow: 0 1px 0 #ffffff; + background-color: #ffffff; + border: 0; + outline: 0; + -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); + -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); + box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); +} + +.navbar-inverse .btn-navbar { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #0e0e0e; + *background-color: #040404; + background-image: -moz-linear-gradient(top, #151515, #040404); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404)); + background-image: -webkit-linear-gradient(top, #151515, #040404); + background-image: -o-linear-gradient(top, #151515, #040404); + background-image: linear-gradient(to bottom, #151515, #040404); + background-repeat: repeat-x; + border-color: #040404 #040404 #000000; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.navbar-inverse .btn-navbar:hover, +.navbar-inverse .btn-navbar:focus, +.navbar-inverse .btn-navbar:active, +.navbar-inverse .btn-navbar.active, +.navbar-inverse .btn-navbar.disabled, +.navbar-inverse .btn-navbar[disabled] { + color: #ffffff; + background-color: #040404; + *background-color: #000000; +} + +.navbar-inverse .btn-navbar:active, +.navbar-inverse .btn-navbar.active { + background-color: #000000 \9; +} + +.breadcrumb { + padding: 8px 15px; + margin: 0 0 20px; + list-style: none; + background-color: #f5f5f5; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.breadcrumb > li { + display: inline-block; + *display: inline; + text-shadow: 0 1px 0 #ffffff; + *zoom: 1; +} + +.breadcrumb > li > .divider { + padding: 0 5px; + color: #ccc; +} + +.breadcrumb > .active { + color: #999999; +} + +.pagination { + margin: 20px 0; +} + +.pagination ul { + display: inline-block; + *display: inline; + margin-bottom: 0; + margin-left: 0; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + *zoom: 1; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.pagination ul > li { + display: inline; +} + +.pagination ul > li > a, +.pagination ul > li > span { + float: left; + padding: 4px 12px; + line-height: 20px; + text-decoration: none; + background-color: #ffffff; + border: 1px solid #dddddd; + border-left-width: 0; +} + +.pagination ul > li > a:hover, +.pagination ul > li > a:focus, +.pagination ul > .active > a, +.pagination ul > .active > span { + background-color: #f5f5f5; +} + +.pagination ul > .active > a, +.pagination ul > .active > span { + color: #999999; + cursor: default; +} + +.pagination ul > .disabled > span, +.pagination ul > .disabled > a, +.pagination ul > .disabled > a:hover, +.pagination ul > .disabled > a:focus { + color: #999999; + cursor: default; + background-color: transparent; +} + +.pagination ul > li:first-child > a, +.pagination ul > li:first-child > span { + border-left-width: 1px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-topleft: 4px; +} + +.pagination ul > li:last-child > a, +.pagination ul > li:last-child > span { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-topright: 4px; + -moz-border-radius-bottomright: 4px; +} + +.pagination-centered { + text-align: center; +} + +.pagination-right { + text-align: right; +} + +.pagination-large ul > li > a, +.pagination-large ul > li > span { + padding: 11px 19px; + font-size: 17.5px; +} + +.pagination-large ul > li:first-child > a, +.pagination-large ul > li:first-child > span { + -webkit-border-bottom-left-radius: 6px; + border-bottom-left-radius: 6px; + -webkit-border-top-left-radius: 6px; + border-top-left-radius: 6px; + -moz-border-radius-bottomleft: 6px; + -moz-border-radius-topleft: 6px; +} + +.pagination-large ul > li:last-child > a, +.pagination-large ul > li:last-child > span { + -webkit-border-top-right-radius: 6px; + border-top-right-radius: 6px; + -webkit-border-bottom-right-radius: 6px; + border-bottom-right-radius: 6px; + -moz-border-radius-topright: 6px; + -moz-border-radius-bottomright: 6px; +} + +.pagination-mini ul > li:first-child > a, +.pagination-small ul > li:first-child > a, +.pagination-mini ul > li:first-child > span, +.pagination-small ul > li:first-child > span { + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -moz-border-radius-topleft: 3px; +} + +.pagination-mini ul > li:last-child > a, +.pagination-small ul > li:last-child > a, +.pagination-mini ul > li:last-child > span, +.pagination-small ul > li:last-child > span { + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 3px; +} + +.pagination-small ul > li > a, +.pagination-small ul > li > span { + padding: 2px 10px; + font-size: 11.9px; +} + +.pagination-mini ul > li > a, +.pagination-mini ul > li > span { + padding: 0 6px; + font-size: 10.5px; +} + +.pager { + margin: 20px 0; + text-align: center; + list-style: none; + *zoom: 1; +} + +.pager:before, +.pager:after { + display: table; + line-height: 0; + content: ""; +} + +.pager:after { + clear: both; +} + +.pager li { + display: inline; +} + +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + border-radius: 15px; +} + +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #f5f5f5; +} + +.pager .next > a, +.pager .next > span { + float: right; +} + +.pager .previous > a, +.pager .previous > span { + float: left; +} + +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #999999; + cursor: default; + background-color: #fff; +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000000; +} + +.modal-backdrop.fade { + opacity: 0; +} + +.modal-backdrop, +.modal-backdrop.fade.in { + opacity: 0.8; + filter: alpha(opacity=80); +} + +.modal { + position: fixed; + top: 10%; + left: 50%; + z-index: 1050; + width: 560px; + margin-left: -280px; + background-color: #ffffff; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, 0.3); + *border: 1px solid #999; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + outline: none; + -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + -webkit-background-clip: padding-box; + -moz-background-clip: padding-box; + background-clip: padding-box; +} + +.modal.fade { + top: -25%; + -webkit-transition: opacity 0.3s linear, top 0.3s ease-out; + -moz-transition: opacity 0.3s linear, top 0.3s ease-out; + -o-transition: opacity 0.3s linear, top 0.3s ease-out; + transition: opacity 0.3s linear, top 0.3s ease-out; +} + +.modal.fade.in { + top: 10%; +} + +.modal-header { + padding: 9px 15px; + border-bottom: 1px solid #eee; +} + +.modal-header .close { + margin-top: 2px; +} + +.modal-header h3 { + margin: 0; + line-height: 30px; +} + +.modal-body { + position: relative; + max-height: 400px; + padding: 15px; + overflow-y: auto; +} + +.modal-form { + margin-bottom: 0; +} + +.modal-footer { + padding: 14px 15px 15px; + margin-bottom: 0; + text-align: right; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; + *zoom: 1; + -webkit-box-shadow: inset 0 1px 0 #ffffff; + -moz-box-shadow: inset 0 1px 0 #ffffff; + box-shadow: inset 0 1px 0 #ffffff; +} + +.modal-footer:before, +.modal-footer:after { + display: table; + line-height: 0; + content: ""; +} + +.modal-footer:after { + clear: both; +} + +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} + +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} + +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} + +.tooltip { + position: absolute; + z-index: 1030; + display: block; + font-size: 11px; + line-height: 1.4; + opacity: 0; + filter: alpha(opacity=0); + visibility: visible; +} + +.tooltip.in { + opacity: 0.8; + filter: alpha(opacity=80); +} + +.tooltip.top { + padding: 5px 0; + margin-top: -3px; +} + +.tooltip.right { + padding: 0 5px; + margin-left: 3px; +} + +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px; +} + +.tooltip.left { + padding: 0 5px; + margin-left: -3px; +} + +.tooltip-inner { + max-width: 200px; + padding: 8px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: #000000; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-top-color: #000000; + border-width: 5px 5px 0; +} + +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-right-color: #000000; + border-width: 5px 5px 5px 0; +} + +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-left-color: #000000; + border-width: 5px 0 5px 5px; +} + +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-bottom-color: #000000; + border-width: 0 5px 5px; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1010; + display: none; + max-width: 276px; + padding: 1px; + text-align: left; + white-space: normal; + background-color: #ffffff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} + +.popover.top { + margin-top: -10px; +} + +.popover.right { + margin-left: 10px; +} + +.popover.bottom { + margin-top: 10px; +} + +.popover.left { + margin-left: -10px; +} + +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + font-weight: normal; + line-height: 18px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + -webkit-border-radius: 5px 5px 0 0; + -moz-border-radius: 5px 5px 0 0; + border-radius: 5px 5px 0 0; +} + +.popover-title:empty { + display: none; +} + +.popover-content { + padding: 9px 14px; +} + +.popover .arrow, +.popover .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.popover .arrow { + border-width: 11px; +} + +.popover .arrow:after { + border-width: 10px; + content: ""; +} + +.popover.top .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, 0.25); + border-bottom-width: 0; +} + +.popover.top .arrow:after { + bottom: 1px; + margin-left: -10px; + border-top-color: #ffffff; + border-bottom-width: 0; +} + +.popover.right .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, 0.25); + border-left-width: 0; +} + +.popover.right .arrow:after { + bottom: -10px; + left: 1px; + border-right-color: #ffffff; + border-left-width: 0; +} + +.popover.bottom .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, 0.25); + border-top-width: 0; +} + +.popover.bottom .arrow:after { + top: 1px; + margin-left: -10px; + border-bottom-color: #ffffff; + border-top-width: 0; +} + +.popover.left .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, 0.25); + border-right-width: 0; +} + +.popover.left .arrow:after { + right: 1px; + bottom: -10px; + border-left-color: #ffffff; + border-right-width: 0; +} + +.thumbnails { + margin-left: -20px; + list-style: none; + *zoom: 1; +} + +.thumbnails:before, +.thumbnails:after { + display: table; + line-height: 0; + content: ""; +} + +.thumbnails:after { + clear: both; +} + +.row-fluid .thumbnails { + margin-left: 0; +} + +.thumbnails > li { + float: left; + margin-bottom: 20px; + margin-left: 20px; +} + +.thumbnail { + display: block; + padding: 4px; + line-height: 20px; + border: 1px solid #ddd; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} + +a.thumbnail:hover, +a.thumbnail:focus { + border-color: #0088cc; + -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); + -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); + box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); +} + +.thumbnail > img { + display: block; + max-width: 100%; + margin-right: auto; + margin-left: auto; +} + +.thumbnail .caption { + padding: 9px; + color: #555555; +} + +.media, +.media-body { + overflow: hidden; + *overflow: visible; + zoom: 1; +} + +.media, +.media .media { + margin-top: 15px; +} + +.media:first-child { + margin-top: 0; +} + +.media-object { + display: block; +} + +.media-heading { + margin: 0 0 5px; +} + +.media > .pull-left { + margin-right: 10px; +} + +.media > .pull-right { + margin-left: 10px; +} + +.media-list { + margin-left: 0; + list-style: none; +} + +.label, +.badge { + display: inline-block; + padding: 2px 4px; + font-size: 11.844px; + font-weight: bold; + line-height: 14px; + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + white-space: nowrap; + vertical-align: baseline; + background-color: #999999; +} + +.label { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.badge { + padding-right: 9px; + padding-left: 9px; + -webkit-border-radius: 9px; + -moz-border-radius: 9px; + border-radius: 9px; +} + +.label:empty, +.badge:empty { + display: none; +} + +a.label:hover, +a.label:focus, +a.badge:hover, +a.badge:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} + +.label-important, +.badge-important { + background-color: #b94a48; +} + +.label-important[href], +.badge-important[href] { + background-color: #953b39; +} + +.label-warning, +.badge-warning { + background-color: #f89406; +} + +.label-warning[href], +.badge-warning[href] { + background-color: #c67605; +} + +.label-success, +.badge-success { + background-color: #468847; +} + +.label-success[href], +.badge-success[href] { + background-color: #356635; +} + +.label-info, +.badge-info { + background-color: #3a87ad; +} + +.label-info[href], +.badge-info[href] { + background-color: #2d6987; +} + +.label-inverse, +.badge-inverse { + background-color: #333333; +} + +.label-inverse[href], +.badge-inverse[href] { + background-color: #1a1a1a; +} + +.btn .label, +.btn .badge { + position: relative; + top: -1px; +} + +.btn-mini .label, +.btn-mini .badge { + top: 0; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-moz-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-ms-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-o-keyframes progress-bar-stripes { + from { + background-position: 0 0; + } + to { + background-position: 40px 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f7f7f7; + background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9)); + background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9); + background-repeat: repeat-x; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0); + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); +} + +.progress .bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + color: #ffffff; + text-align: center; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #0e90d2; + background-image: -moz-linear-gradient(top, #149bdf, #0480be); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be)); + background-image: -webkit-linear-gradient(top, #149bdf, #0480be); + background-image: -o-linear-gradient(top, #149bdf, #0480be); + background-image: linear-gradient(to bottom, #149bdf, #0480be); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0); + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + -webkit-transition: width 0.6s ease; + -moz-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; +} + +.progress .bar + .bar { + -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); +} + +.progress-striped .bar { + background-color: #149bdf; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + -webkit-background-size: 40px 40px; + -moz-background-size: 40px 40px; + -o-background-size: 40px 40px; + background-size: 40px 40px; +} + +.progress.active .bar { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -moz-animation: progress-bar-stripes 2s linear infinite; + -ms-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} + +.progress-danger .bar, +.progress .bar-danger { + background-color: #dd514c; + background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35)); + background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); + background-image: linear-gradient(to bottom, #ee5f5b, #c43c35); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0); +} + +.progress-danger.progress-striped .bar, +.progress-striped .bar-danger { + background-color: #ee5f5b; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-success .bar, +.progress .bar-success { + background-color: #5eb95e; + background-image: -moz-linear-gradient(top, #62c462, #57a957); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957)); + background-image: -webkit-linear-gradient(top, #62c462, #57a957); + background-image: -o-linear-gradient(top, #62c462, #57a957); + background-image: linear-gradient(to bottom, #62c462, #57a957); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0); +} + +.progress-success.progress-striped .bar, +.progress-striped .bar-success { + background-color: #62c462; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-info .bar, +.progress .bar-info { + background-color: #4bb1cf; + background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9)); + background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); + background-image: -o-linear-gradient(top, #5bc0de, #339bb9); + background-image: linear-gradient(to bottom, #5bc0de, #339bb9); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0); +} + +.progress-info.progress-striped .bar, +.progress-striped .bar-info { + background-color: #5bc0de; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-warning .bar, +.progress .bar-warning { + background-color: #faa732; + background-image: -moz-linear-gradient(top, #fbb450, #f89406); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); + background-image: -webkit-linear-gradient(top, #fbb450, #f89406); + background-image: -o-linear-gradient(top, #fbb450, #f89406); + background-image: linear-gradient(to bottom, #fbb450, #f89406); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); +} + +.progress-warning.progress-striped .bar, +.progress-striped .bar-warning { + background-color: #fbb450; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.accordion { + margin-bottom: 20px; +} + +.accordion-group { + margin-bottom: 2px; + border: 1px solid #e5e5e5; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.accordion-heading { + border-bottom: 0; +} + +.accordion-heading .accordion-toggle { + display: block; + padding: 8px 15px; +} + +.accordion-toggle { + cursor: pointer; +} + +.accordion-inner { + padding: 9px 15px; + border-top: 1px solid #e5e5e5; +} + +.carousel { + position: relative; + margin-bottom: 20px; + line-height: 1; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-inner > .item { + position: relative; + display: none; + -webkit-transition: 0.6s ease-in-out left; + -moz-transition: 0.6s ease-in-out left; + -o-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} + +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + line-height: 1; +} + +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} + +.carousel-inner > .active { + left: 0; +} + +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} + +.carousel-inner > .next { + left: 100%; +} + +.carousel-inner > .prev { + left: -100%; +} + +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} + +.carousel-inner > .active.left { + left: -100%; +} + +.carousel-inner > .active.right { + left: 100%; +} + +.carousel-control { + position: absolute; + top: 40%; + left: 15px; + width: 40px; + height: 40px; + margin-top: -20px; + font-size: 60px; + font-weight: 100; + line-height: 30px; + color: #ffffff; + text-align: center; + background: #222222; + border: 3px solid #ffffff; + -webkit-border-radius: 23px; + -moz-border-radius: 23px; + border-radius: 23px; + opacity: 0.5; + filter: alpha(opacity=50); +} + +.carousel-control.right { + right: 15px; + left: auto; +} + +.carousel-control:hover, +.carousel-control:focus { + color: #ffffff; + text-decoration: none; + opacity: 0.9; + filter: alpha(opacity=90); +} + +.carousel-indicators { + position: absolute; + top: 15px; + right: 15px; + z-index: 5; + margin: 0; + list-style: none; +} + +.carousel-indicators li { + display: block; + float: left; + width: 10px; + height: 10px; + margin-left: 5px; + text-indent: -999px; + background-color: #ccc; + background-color: rgba(255, 255, 255, 0.25); + border-radius: 5px; +} + +.carousel-indicators .active { + background-color: #fff; +} + +.carousel-caption { + position: absolute; + right: 0; + bottom: 0; + left: 0; + padding: 15px; + background: #333333; + background: rgba(0, 0, 0, 0.75); +} + +.carousel-caption h4, +.carousel-caption p { + line-height: 20px; + color: #ffffff; +} + +.carousel-caption h4 { + margin: 0 0 5px; +} + +.carousel-caption p { + margin-bottom: 0; +} + +.hero-unit { + padding: 60px; + margin-bottom: 30px; + font-size: 18px; + font-weight: 200; + line-height: 30px; + color: inherit; + background-color: #eeeeee; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.hero-unit h1 { + margin-bottom: 0; + font-size: 60px; + line-height: 1; + letter-spacing: -1px; + color: inherit; +} + +.hero-unit li { + line-height: 30px; +} + +.pull-right { + float: right; +} + +.pull-left { + float: left; +} + +.hide { + display: none; +} + +.show { + display: block; +} + +.invisible { + visibility: hidden; +} + +.affix { + position: fixed; +} diff --git a/templates/assets/css/content.css b/templates/assets/css/content.css new file mode 100644 index 0000000..f5aadc8 --- /dev/null +++ b/templates/assets/css/content.css @@ -0,0 +1,4665 @@ +/*! + * Rakuten Button v7.7.0 + * Copyrights 2021 Rakuten Inc. + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'ProximaNova'; + src: url(../fonts/ProximaNova-Reg.otf) format("opentype");; + font-weight: normal; + font-style: normal; +} +@font-face { + font-family: 'ProximaNova'; + src: url(../fonts/ProximaNova-SBold.otf) format("opentype");; + font-style: normal; + font-weight: 600; +} +@font-face { + font-family: 'ProximaNova'; + src: url(../fonts/ProximaNova-Bold.otf) format("opentype");; + font-style: normal; + font-weight: bold; +} +/* -------------------------- */ +@font-face { + font-family: 'Roboto'; + src: url(../fonts/Roboto-Regular.ttf) format("truetype"); + font-weight: normal; + font-style: normal; +} +@font-face { + font-family: 'Roboto'; + src: url(../fonts/Roboto-Light.ttf) format("truetype"); + font-style: normal; + font-weight: 300; +} +@font-face { + font-family: 'Roboto'; + src: url(../fonts/Roboto-Bold.ttf) format("truetype"); + font-style: normal; + font-weight: bold; +} +/* FONT PATH + * -------------------------- */ +/* +100 Extra Light or Ultra Light +200 Light or Thin +300 Book or Demi +400 Normal or Regular +500 Medium +600 Semibold, Demibold +700 Bold +800 Black, Extra Bold or Heavy +900 Extra Black, Fat, Poster or Ultra Black +*/ +@font-face { + font-family: 'Benton'; + src: url(../fonts/BentonSansRAK-Regular.otf) format("opentype"); + font-weight: normal; + font-style: normal; +} +@font-face { + font-family: 'Benton'; + src: url(../fonts/BentonSansRAK-Medium.otf) format("opentype"); + font-style: normal; + font-weight: 500; +} +@font-face { + font-family: 'Benton'; + src: url(../fonts/BentonSansRAK-Bold.otf) format("opentype"); + font-style: normal; + font-weight: bold; +} +@font-face { + font-family: 'Stag'; + src:url(../fonts/Stag-BlackItalic-Web.woff2) format('woff2'), + url(../fonts/Stag-BlackItalic-Web.woff) format('woff'); + font-weight: 900; + font-style: italic; + font-stretch: normal; +} + +@font-face { + font-family: 'Stag'; + src:url(../fonts/Stag-Black-Web.woff2) format('woff2'), + url(../fonts/Stag-Black-Web.woff) format('woff'); + font-weight: 900; + font-style: normal; + font-stretch: normal; +} + +@font-face { + font-family: 'Stag'; + src:url(../fonts/Stag-BoldItalic-Web.woff2) format('woff2'), + url(../fonts/Stag-BoldItalic-Web.woff) format('woff'); + font-weight: 700; + font-style: italic; + font-stretch: normal; +} + + +@font-face { + font-family: 'Stag'; + src:url(../fonts/Stag-Bold-Web.woff2) format('woff2'), + url(../fonts/Stag-Bold-Web.woff) format('woff'); + font-weight: 700; + font-style: normal; + font-stretch: normal; +} + +@font-face { + font-family: 'Stag'; + src:url(../fonts/Stag-SemiboldItalic-Web.woff2) format('woff2'), + url(../fonts/Stag-SemiboldItalic-Web.woff) format('woff'); + font-weight: 600; + font-style: italic; + font-stretch: normal; +} + +@font-face { + font-family: 'Stag'; + src: url(../fonts/Stag-Semibold-Web.woff2) format('woff2'), + url(../fonts/Stag-Semibold-Web.woff) format('woff'); + font-weight: 600; + font-style: normal; + font-stretch: normal; +} + + +@font-face { + font-family: 'Stag'; + src: url(../fonts/Stag-MediumItalic-Web.woff2) format('woff2'), + url(../fonts/Stag-MediumItalic-Web.woff) format('woff'); + font-weight: 500; + font-style: italic; + font-stretch: normal; +} + + +@font-face { + font-family: 'Stag'; + src: url(../fonts/Stag-Medium-Web.woff2) format('woff2'), + url(../fonts/Stag-Medium-Web.woff) format('woff'); + font-weight: 500; + font-style: normal; + font-stretch: normal; +} + +@font-face { + font-family: 'Stag'; + src: url(../fonts/Stag-BookItalic-Web.woff2) format('woff2'), + url(../fonts/Stag-BookItalic-Web.woff) format('woff'); + font-weight: 400; + font-style: italic; + font-stretch: normal; +} + +@font-face { + font-family: 'Stag'; + src: url(../fonts/Stag-Book-Web.woff2) format('woff2'), + url(../fonts/Stag-Book-Web.woff) format('woff'); + font-weight: 400; + font-style: normal; + font-stretch: normal; +} + +@font-face { + font-family: 'Stag'; + src: url(../fonts/Stag-LightItalic-Web.woff2) format('woff2'), + url(../fonts/Stag-LightItalic-Web.woff) format('woff'); + font-weight: 300; + font-style: italic; + font-stretch: normal; +} + +@font-face { + font-family: 'Stag'; + src: url(../fonts/Stag-Light-Web.woff2) format('woff2'), + url(../fonts/Stag-Light-Web.woff) format('woff'); + font-weight: 300; + font-style: normal; + font-stretch: normal; +} + +@font-face { + font-family: 'Stag'; + src: url(../fonts/Stag-ThinItalic-Web.woff2) format('woff2'), + url(../fonts/Stag-ThinItalic-Web.woff) format('woff'); + font-weight: 100; + font-style: italic; + font-stretch: normal; +} + +@font-face { + font-family: 'Stag'; + src: url(../fonts/Stag-Thin-Web.woff2) format('woff2'), + url(../fonts/Stag-Thin-Web.woff) format('woff'); + font-weight: 100; + font-style: normal; + font-stretch: normal; +} + +@font-face { + font-family: 'Stag'; + src: url(../fonts/Stag-BoldDot-Web.woff2) format('woff2'), + url(../fonts/Stag-BoldDot-Web.woff) format('woff'); + font-weight: 700; + font-style: normal; + font-stretch: normal; +} + +@font-face { + font-family: 'Stag'; + src: url(../fonts/Stag-ThinDot-Web.woff2) format('woff2'), + url(../fonts/Stag-ThinDot-Web.woff) format('woff'); + font-weight: 200; + font-style: normal; + font-stretch: normal; +} + + +/* FONT-AWESOME ICONS + * -------------------------- */ +@font-face { + font-family: 'RakutenIconFont'; + src: url(../fonts/fontawesome-webfont.woff2) format('woff2'), url(../fonts/fontawesome-webfont.woff) format('woff'); + font-weight: normal; + font-style: normal; +} +.rr-ca-icon { + display: inline-block; + font: normal normal normal 14px/1 RakutenIconFont; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +/* makes the font 33% larger relative to the icon container */ +.rr-ca-icon-lg { + font-size: 1.33333333em; + line-height: 0.75em; + vertical-align: -15%; +} +.rr-ca-icon-2x { + font-size: 2em; +} +.rr-ca-icon-3x { + font-size: 3em; +} +.rr-ca-icon-4x { + font-size: 4em; +} +.rr-ca-icon-5x { + font-size: 5em; +} +.rr-ca-icon-fw { + width: 1.28571429em; + text-align: center; +} +.rr-ca-icon-ul { + padding-left: 0; + margin-left: 2.14285714em; + list-style-type: none; +} +.rr-ca-icon-ul > li { + position: relative; +} +.rr-ca-icon-li { + position: absolute; + left: -2.14285714em; + width: 2.14285714em; + top: 0.14285714em; + text-align: center; +} +.rr-ca-icon-li.rr-ca-icon-lg { + left: -1.85714286em; +} +.rr-ca-icon-border { + padding: 0.2em 0.25em 0.15em; + border: solid 0.08em #eee; + border-radius: 0.1em; +} +.rr-ca-icon-pull-left { + float: left; +} +.rr-ca-icon-pull-right { + float: right; +} +.rr-ca-icon.rr-ca-icon-pull-left { + margin-right: 0.3em; +} +.rr-ca-icon.rr-ca-icon-pull-right { + margin-left: 0.3em; +} +/* Deprecated as of 4.4.0 */ +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.rr-ca-icon.pull-left { + margin-right: 0.3em; +} +.rr-ca-icon.pull-right { + margin-left: 0.3em; +} +.rr-ca-icon-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} +.rr-ca-icon-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); + } +} +.rr-ca-icon-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} +.rr-ca-icon-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); +} +.rr-ca-icon-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); +} +.rr-ca-icon-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); +} +.rr-ca-icon-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 .rr-ca-icon-rotate-90, +:root .rr-ca-icon-rotate-180, +:root .rr-ca-icon-rotate-270, +:root .rr-ca-icon-flip-horizontal, +:root .rr-ca-icon-flip-vertical { + filter: none; +} +.rr-ca-icon-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.rr-ca-icon-stack-1x, +.rr-ca-icon-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.rr-ca-icon-stack-1x { + line-height: inherit; +} +.rr-ca-icon-stack-2x { + font-size: 2em; +} +.rr-ca-icon-inverse { + color: #fff; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.rr-ca-icon-glass:before { + content: "\f000"; +} +.rr-ca-icon-music:before { + content: "\f001"; +} +.rr-ca-icon-search:before { + content: "\f002"; +} +.rr-ca-icon-envelope-o:before { + content: "\f003"; +} +.rr-ca-icon-heart:before { + content: "\f004"; +} +.rr-ca-icon-star:before { + content: "\f005"; +} +.rr-ca-icon-star-o:before { + content: "\f006"; +} +.rr-ca-icon-user:before { + content: "\f007"; +} +.rr-ca-icon-film:before { + content: "\f008"; +} +.rr-ca-icon-th-large:before { + content: "\f009"; +} +.rr-ca-icon-th:before { + content: "\f00a"; +} +.rr-ca-icon-th-list:before { + content: "\f00b"; +} +.rr-ca-icon-check:before { + content: "\f00c"; +} +.rr-ca-icon-remove:before, +.rr-ca-icon-close:before, +.rr-ca-icon-times:before { + content: "\f00d"; +} +.rr-ca-icon-search-plus:before { + content: "\f00e"; +} +.rr-ca-icon-search-minus:before { + content: "\f010"; +} +.rr-ca-icon-power-off:before { + content: "\f011"; +} +.rr-ca-icon-signal:before { + content: "\f012"; +} +.rr-ca-icon-gear:before, +.rr-ca-icon-cog:before { + content: "\f013"; +} +.rr-ca-icon-trash-o:before { + content: "\f014"; +} +.rr-ca-icon-home:before { + content: "\f015"; +} +.rr-ca-icon-file-o:before { + content: "\f016"; +} +.rr-ca-icon-clock-o:before { + content: "\f017"; +} +.rr-ca-icon-road:before { + content: "\f018"; +} +.rr-ca-icon-download:before { + content: "\f019"; +} +.rr-ca-icon-arrow-circle-o-down:before { + content: "\f01a"; +} +.rr-ca-icon-arrow-circle-o-up:before { + content: "\f01b"; +} +.rr-ca-icon-inbox:before { + content: "\f01c"; +} +.rr-ca-icon-play-circle-o:before { + content: "\f01d"; +} +.rr-ca-icon-rotate-right:before, +.rr-ca-icon-repeat:before { + content: "\f01e"; +} +.rr-ca-icon-refresh:before { + content: "\f021"; +} +.rr-ca-icon-list-alt:before { + content: "\f022"; +} +.rr-ca-icon-lock:before { + content: "\f023"; +} +.rr-ca-icon-flag:before { + content: "\f024"; +} +.rr-ca-icon-headphones:before { + content: "\f025"; +} +.rr-ca-icon-volume-off:before { + content: "\f026"; +} +.rr-ca-icon-volume-down:before { + content: "\f027"; +} +.rr-ca-icon-volume-up:before { + content: "\f028"; +} +.rr-ca-icon-qrcode:before { + content: "\f029"; +} +.rr-ca-icon-barcode:before { + content: "\f02a"; +} +.rr-ca-icon-tag:before { + content: "\f02b"; +} +.rr-ca-icon-tags:before { + content: "\f02c"; +} +.rr-ca-icon-book:before { + content: "\f02d"; +} +.rr-ca-icon-bookmark:before { + content: "\f02e"; +} +.rr-ca-icon-print:before { + content: "\f02f"; +} +.rr-ca-icon-camera:before { + content: "\f030"; +} +.rr-ca-icon-font:before { + content: "\f031"; +} +.rr-ca-icon-bold:before { + content: "\f032"; +} +.rr-ca-icon-italic:before { + content: "\f033"; +} +.rr-ca-icon-text-height:before { + content: "\f034"; +} +.rr-ca-icon-text-width:before { + content: "\f035"; +} +.rr-ca-icon-align-left:before { + content: "\f036"; +} +.rr-ca-icon-align-center:before { + content: "\f037"; +} +.rr-ca-icon-align-right:before { + content: "\f038"; +} +.rr-ca-icon-align-justify:before { + content: "\f039"; +} +.rr-ca-icon-list:before { + content: "\f03a"; +} +.rr-ca-icon-dedent:before, +.rr-ca-icon-outdent:before { + content: "\f03b"; +} +.rr-ca-icon-indent:before { + content: "\f03c"; +} +.rr-ca-icon-video-camera:before { + content: "\f03d"; +} +.rr-ca-icon-photo:before, +.rr-ca-icon-image:before, +.rr-ca-icon-picture-o:before { + content: "\f03e"; +} +.rr-ca-icon-pencil:before { + content: "\f040"; +} +.rr-ca-icon-map-marker:before { + content: "\f041"; +} +.rr-ca-icon-adjust:before { + content: "\f042"; +} +.rr-ca-icon-tint:before { + content: "\f043"; +} +.rr-ca-icon-edit:before, +.rr-ca-icon-pencil-square-o:before { + content: "\f044"; +} +.rr-ca-icon-share-square-o:before { + content: "\f045"; +} +.rr-ca-icon-check-square-o:before { + content: "\f046"; +} +.rr-ca-icon-arrows:before { + content: "\f047"; +} +.rr-ca-icon-step-backward:before { + content: "\f048"; +} +.rr-ca-icon-fast-backward:before { + content: "\f049"; +} +.rr-ca-icon-backward:before { + content: "\f04a"; +} +.rr-ca-icon-play:before { + content: "\f04b"; +} +.rr-ca-icon-pause:before { + content: "\f04c"; +} +.rr-ca-icon-stop:before { + content: "\f04d"; +} +.rr-ca-icon-forward:before { + content: "\f04e"; +} +.rr-ca-icon-fast-forward:before { + content: "\f050"; +} +.rr-ca-icon-step-forward:before { + content: "\f051"; +} +.rr-ca-icon-eject:before { + content: "\f052"; +} +.rr-ca-icon-chevron-left:before { + content: "\f053"; +} +.rr-ca-icon-chevron-right:before { + content: "\f054"; +} +.rr-ca-icon-plus-circle:before { + content: "\f055"; +} +.rr-ca-icon-minus-circle:before { + content: "\f056"; +} +.rr-ca-icon-times-circle:before { + content: "\f057"; +} +.rr-ca-icon-check-circle:before { + content: "\f058"; +} +.rr-ca-icon-question-circle:before { + content: "\f059"; +} +.rr-ca-icon-info-circle:before { + content: "\f05a"; +} +.rr-ca-icon-crosshairs:before { + content: "\f05b"; +} +.rr-ca-icon-times-circle-o:before { + content: "\f05c"; +} +.rr-ca-icon-check-circle-o:before { + content: "\f05d"; +} +.rr-ca-icon-ban:before { + content: "\f05e"; +} +.rr-ca-icon-arrow-left:before { + content: "\f060"; +} +.rr-ca-icon-arrow-right:before { + content: "\f061"; +} +.rr-ca-icon-arrow-up:before { + content: "\f062"; +} +.rr-ca-icon-arrow-down:before { + content: "\f063"; +} +.rr-ca-icon-mail-forward:before, +.rr-ca-icon-share:before { + content: "\f064"; +} +.rr-ca-icon-expand:before { + content: "\f065"; +} +.rr-ca-icon-compress:before { + content: "\f066"; +} +.rr-ca-icon-plus:before { + content: "\f067"; +} +.rr-ca-icon-minus:before { + content: "\f068"; +} +.rr-ca-icon-asterisk:before { + content: "\f069"; +} +.rr-ca-icon-exclamation-circle:before { + content: "\f06a"; +} +.rr-ca-icon-gift:before { + content: "\f06b"; +} +.rr-ca-icon-leaf:before { + content: "\f06c"; +} +.rr-ca-icon-fire:before { + content: "\f06d"; +} +.rr-ca-icon-eye:before { + content: "\f06e"; +} +.rr-ca-icon-eye-slash:before { + content: "\f070"; +} +.rr-ca-icon-warning:before, +.rr-ca-icon-exclamation-triangle:before { + content: "\f071"; +} +.rr-ca-icon-plane:before { + content: "\f072"; +} +.rr-ca-icon-calendar:before { + content: "\f073"; +} +.rr-ca-icon-random:before { + content: "\f074"; +} +.rr-ca-icon-comment:before { + content: "\f075"; +} +.rr-ca-icon-magnet:before { + content: "\f076"; +} +.rr-ca-icon-chevron-up:before { + content: "\f077"; +} +.rr-ca-icon-chevron-down:before { + content: "\f078"; +} +.rr-ca-icon-retweet:before { + content: "\f079"; +} +.rr-ca-icon-shopping-cart:before { + content: "\f07a"; +} +.rr-ca-icon-folder:before { + content: "\f07b"; +} +.rr-ca-icon-folder-open:before { + content: "\f07c"; +} +.rr-ca-icon-arrows-v:before { + content: "\f07d"; +} +.rr-ca-icon-arrows-h:before { + content: "\f07e"; +} +.rr-ca-icon-bar-chart-o:before, +.rr-ca-icon-bar-chart:before { + content: "\f080"; +} +.rr-ca-icon-twitter-square:before { + content: "\f081"; +} +.rr-ca-icon-facebook-square:before { + content: "\f082"; +} +.rr-ca-icon-camera-retro:before { + content: "\f083"; +} +.rr-ca-icon-key:before { + content: "\f084"; +} +.rr-ca-icon-gears:before, +.rr-ca-icon-cogs:before { + content: "\f085"; +} +.rr-ca-icon-comments:before { + content: "\f086"; +} +.rr-ca-icon-thumbs-o-up:before { + content: "\f087"; +} +.rr-ca-icon-thumbs-o-down:before { + content: "\f088"; +} +.rr-ca-icon-star-half:before { + content: "\f089"; +} +.rr-ca-icon-heart-o:before { + content: "\f08a"; +} +.rr-ca-icon-sign-out:before { + content: "\f08b"; +} +.rr-ca-icon-linkedin-square:before { + content: "\f08c"; +} +.rr-ca-icon-thumb-tack:before { + content: "\f08d"; +} +.rr-ca-icon-external-link:before { + content: "\f08e"; +} +.rr-ca-icon-sign-in:before { + content: "\f090"; +} +.rr-ca-icon-trophy:before { + content: "\f091"; +} +.rr-ca-icon-github-square:before { + content: "\f092"; +} +.rr-ca-icon-upload:before { + content: "\f093"; +} +.rr-ca-icon-lemon-o:before { + content: "\f094"; +} +.rr-ca-icon-phone:before { + content: "\f095"; +} +.rr-ca-icon-square-o:before { + content: "\f096"; +} +.rr-ca-icon-bookmark-o:before { + content: "\f097"; +} +.rr-ca-icon-phone-square:before { + content: "\f098"; +} +.rr-ca-icon-twitter:before { + content: "\f099"; +} +.rr-ca-icon-facebook-f:before, +.rr-ca-icon-facebook:before { + content: "\f09a"; +} +.rr-ca-icon-github:before { + content: "\f09b"; +} +.rr-ca-icon-unlock:before { + content: "\f09c"; +} +.rr-ca-icon-credit-card:before { + content: "\f09d"; +} +.rr-ca-icon-feed:before, +.rr-ca-icon-rss:before { + content: "\f09e"; +} +.rr-ca-icon-hdd-o:before { + content: "\f0a0"; +} +.rr-ca-icon-bullhorn:before { + content: "\f0a1"; +} +.rr-ca-icon-bell:before { + content: "\f0f3"; +} +.rr-ca-icon-certificate:before { + content: "\f0a3"; +} +.rr-ca-icon-hand-o-right:before { + content: "\f0a4"; +} +.rr-ca-icon-hand-o-left:before { + content: "\f0a5"; +} +.rr-ca-icon-hand-o-up:before { + content: "\f0a6"; +} +.rr-ca-icon-hand-o-down:before { + content: "\f0a7"; +} +.rr-ca-icon-arrow-circle-left:before { + content: "\f0a8"; +} +.rr-ca-icon-arrow-circle-right:before { + content: "\f0a9"; +} +.rr-ca-icon-arrow-circle-up:before { + content: "\f0aa"; +} +.rr-ca-icon-arrow-circle-down:before { + content: "\f0ab"; +} +.rr-ca-icon-globe:before { + content: "\f0ac"; +} +.rr-ca-icon-wrench:before { + content: "\f0ad"; +} +.rr-ca-icon-tasks:before { + content: "\f0ae"; +} +.rr-ca-icon-filter:before { + content: "\f0b0"; +} +.rr-ca-icon-briefcase:before { + content: "\f0b1"; +} +.rr-ca-icon-arrows-alt:before { + content: "\f0b2"; +} +.rr-ca-icon-group:before, +.rr-ca-icon-users:before { + content: "\f0c0"; +} +.rr-ca-icon-chain:before, +.rr-ca-icon-link:before { + content: "\f0c1"; +} +.rr-ca-icon-cloud:before { + content: "\f0c2"; +} +.rr-ca-icon-flask:before { + content: "\f0c3"; +} +.rr-ca-icon-cut:before, +.rr-ca-icon-scissors:before { + content: "\f0c4"; +} +.rr-ca-icon-copy:before, +.rr-ca-icon-files-o:before { + content: "\f0c5"; +} +.rr-ca-icon-paperclip:before { + content: "\f0c6"; +} +.rr-ca-icon-save:before, +.rr-ca-icon-floppy-o:before { + content: "\f0c7"; +} +.rr-ca-icon-square:before { + content: "\f0c8"; +} +.rr-ca-icon-navicon:before, +.rr-ca-icon-reorder:before, +.rr-ca-icon-bars:before { + content: "\f0c9"; +} +.rr-ca-icon-list-ul:before { + content: "\f0ca"; +} +.rr-ca-icon-list-ol:before { + content: "\f0cb"; +} +.rr-ca-icon-strikethrough:before { + content: "\f0cc"; +} +.rr-ca-icon-underline:before { + content: "\f0cd"; +} +.rr-ca-icon-table:before { + content: "\f0ce"; +} +.rr-ca-icon-magic:before { + content: "\f0d0"; +} +.rr-ca-icon-truck:before { + content: "\f0d1"; +} +.rr-ca-icon-pinterest:before { + content: "\f0d2"; +} +.rr-ca-icon-pinterest-square:before { + content: "\f0d3"; +} +.rr-ca-icon-google-plus-square:before { + content: "\f0d4"; +} +.rr-ca-icon-google-plus:before { + content: "\f0d5"; +} +.rr-ca-icon-money:before { + content: "\f0d6"; +} +.rr-ca-icon-caret-down:before { + content: "\f0d7"; +} +.rr-ca-icon-caret-up:before { + content: "\f0d8"; +} +.rr-ca-icon-caret-left:before { + content: "\f0d9"; +} +.rr-ca-icon-caret-right:before { + content: "\f0da"; +} +.rr-ca-icon-columns:before { + content: "\f0db"; +} +.rr-ca-icon-unsorted:before, +.rr-ca-icon-sort:before { + content: "\f0dc"; +} +.rr-ca-icon-sort-down:before, +.rr-ca-icon-sort-desc:before { + content: "\f0dd"; +} +.rr-ca-icon-sort-up:before, +.rr-ca-icon-sort-asc:before { + content: "\f0de"; +} +.rr-ca-icon-envelope:before { + content: "\f0e0"; +} +.rr-ca-icon-linkedin:before { + content: "\f0e1"; +} +.rr-ca-icon-rotate-left:before, +.rr-ca-icon-undo:before { + content: "\f0e2"; +} +.rr-ca-icon-legal:before, +.rr-ca-icon-gavel:before { + content: "\f0e3"; +} +.rr-ca-icon-dashboard:before, +.rr-ca-icon-tachometer:before { + content: "\f0e4"; +} +.rr-ca-icon-comment-o:before { + content: "\f0e5"; +} +.rr-ca-icon-comments-o:before { + content: "\f0e6"; +} +.rr-ca-icon-flash:before, +.rr-ca-icon-bolt:before { + content: "\f0e7"; +} +.rr-ca-icon-sitemap:before { + content: "\f0e8"; +} +.rr-ca-icon-umbrella:before { + content: "\f0e9"; +} +.rr-ca-icon-paste:before, +.rr-ca-icon-clipboard:before { + content: "\f0ea"; +} +.rr-ca-icon-lightbulb-o:before { + content: "\f0eb"; +} +.rr-ca-icon-exchange:before { + content: "\f0ec"; +} +.rr-ca-icon-cloud-download:before { + content: "\f0ed"; +} +.rr-ca-icon-cloud-upload:before { + content: "\f0ee"; +} +.rr-ca-icon-user-md:before { + content: "\f0f0"; +} +.rr-ca-icon-stethoscope:before { + content: "\f0f1"; +} +.rr-ca-icon-suitcase:before { + content: "\f0f2"; +} +.rr-ca-icon-bell-o:before { + content: "\f0a2"; +} +.rr-ca-icon-coffee:before { + content: "\f0f4"; +} +.rr-ca-icon-cutlery:before { + content: "\f0f5"; +} +.rr-ca-icon-file-text-o:before { + content: "\f0f6"; +} +.rr-ca-icon-building-o:before { + content: "\f0f7"; +} +.rr-ca-icon-hospital-o:before { + content: "\f0f8"; +} +.rr-ca-icon-ambulance:before { + content: "\f0f9"; +} +.rr-ca-icon-medkit:before { + content: "\f0fa"; +} +.rr-ca-icon-fighter-jet:before { + content: "\f0fb"; +} +.rr-ca-icon-beer:before { + content: "\f0fc"; +} +.rr-ca-icon-h-square:before { + content: "\f0fd"; +} +.rr-ca-icon-plus-square:before { + content: "\f0fe"; +} +.rr-ca-icon-angle-double-left:before { + content: "\f100"; +} +.rr-ca-icon-angle-double-right:before { + content: "\f101"; +} +.rr-ca-icon-angle-double-up:before { + content: "\f102"; +} +.rr-ca-icon-angle-double-down:before { + content: "\f103"; +} +.rr-ca-icon-angle-left:before { + content: "\f104"; +} +.rr-ca-icon-angle-right:before { + content: "\f105"; +} +.rr-ca-icon-angle-up:before { + content: "\f106"; +} +.rr-ca-icon-angle-down:before { + content: "\f107"; +} +.rr-ca-icon-desktop:before { + content: "\f108"; +} +.rr-ca-icon-laptop:before { + content: "\f109"; +} +.rr-ca-icon-tablet:before { + content: "\f10a"; +} +.rr-ca-icon-mobile-phone:before, +.rr-ca-icon-mobile:before { + content: "\f10b"; +} +.rr-ca-icon-circle-o:before { + content: "\f10c"; +} +.rr-ca-icon-quote-left:before { + content: "\f10d"; +} +.rr-ca-icon-quote-right:before { + content: "\f10e"; +} +.rr-ca-icon-spinner:before { + content: "\f110"; +} +.rr-ca-icon-circle:before { + content: "\f111"; +} +.rr-ca-icon-mail-reply:before, +.rr-ca-icon-reply:before { + content: "\f112"; +} +.rr-ca-icon-github-alt:before { + content: "\f113"; +} +.rr-ca-icon-folder-o:before { + content: "\f114"; +} +.rr-ca-icon-folder-open-o:before { + content: "\f115"; +} +.rr-ca-icon-smile-o:before { + content: "\f118"; +} +.rr-ca-icon-frown-o:before { + content: "\f119"; +} +.rr-ca-icon-meh-o:before { + content: "\f11a"; +} +.rr-ca-icon-gamepad:before { + content: "\f11b"; +} +.rr-ca-icon-keyboard-o:before { + content: "\f11c"; +} +.rr-ca-icon-flag-o:before { + content: "\f11d"; +} +.rr-ca-icon-flag-checkered:before { + content: "\f11e"; +} +.rr-ca-icon-terminal:before { + content: "\f120"; +} +.rr-ca-icon-code:before { + content: "\f121"; +} +.rr-ca-icon-mail-reply-all:before, +.rr-ca-icon-reply-all:before { + content: "\f122"; +} +.rr-ca-icon-star-half-empty:before, +.rr-ca-icon-star-half-full:before, +.rr-ca-icon-star-half-o:before { + content: "\f123"; +} +.rr-ca-icon-location-arrow:before { + content: "\f124"; +} +.rr-ca-icon-crop:before { + content: "\f125"; +} +.rr-ca-icon-code-fork:before { + content: "\f126"; +} +.rr-ca-icon-unlink:before, +.rr-ca-icon-chain-broken:before { + content: "\f127"; +} +.rr-ca-icon-question:before { + content: "\f128"; +} +.rr-ca-icon-info:before { + content: "\f129"; +} +.rr-ca-icon-exclamation:before { + content: "\f12a"; +} +.rr-ca-icon-superscript:before { + content: "\f12b"; +} +.rr-ca-icon-subscript:before { + content: "\f12c"; +} +.rr-ca-icon-eraser:before { + content: "\f12d"; +} +.rr-ca-icon-puzzle-piece:before { + content: "\f12e"; +} +.rr-ca-icon-microphone:before { + content: "\f130"; +} +.rr-ca-icon-microphone-slash:before { + content: "\f131"; +} +.rr-ca-icon-shield:before { + content: "\f132"; +} +.rr-ca-icon-calendar-o:before { + content: "\f133"; +} +.rr-ca-icon-fire-extinguisher:before { + content: "\f134"; +} +.rr-ca-icon-rocket:before { + content: "\f135"; +} +.rr-ca-icon-maxcdn:before { + content: "\f136"; +} +.rr-ca-icon-chevron-circle-left:before { + content: "\f137"; +} +.rr-ca-icon-chevron-circle-right:before { + content: "\f138"; +} +.rr-ca-icon-chevron-circle-up:before { + content: "\f139"; +} +.rr-ca-icon-chevron-circle-down:before { + content: "\f13a"; +} +.rr-ca-icon-html5:before { + content: "\f13b"; +} +.rr-ca-icon-css3:before { + content: "\f13c"; +} +.rr-ca-icon-anchor:before { + content: "\f13d"; +} +.rr-ca-icon-unlock-alt:before { + content: "\f13e"; +} +.rr-ca-icon-bullseye:before { + content: "\f140"; +} +.rr-ca-icon-ellipsis-h:before { + content: "\f141"; +} +.rr-ca-icon-ellipsis-v:before { + content: "\f142"; +} +.rr-ca-icon-rss-square:before { + content: "\f143"; +} +.rr-ca-icon-play-circle:before { + content: "\f144"; +} +.rr-ca-icon-ticket:before { + content: "\f145"; +} +.rr-ca-icon-minus-square:before { + content: "\f146"; +} +.rr-ca-icon-minus-square-o:before { + content: "\f147"; +} +.rr-ca-icon-level-up:before { + content: "\f148"; +} +.rr-ca-icon-level-down:before { + content: "\f149"; +} +.rr-ca-icon-check-square:before { + content: "\f14a"; +} +.rr-ca-icon-pencil-square:before { + content: "\f14b"; +} +.rr-ca-icon-external-link-square:before { + content: "\f14c"; +} +.rr-ca-icon-share-square:before { + content: "\f14d"; +} +.rr-ca-icon-compass:before { + content: "\f14e"; +} +.rr-ca-icon-toggle-down:before, +.rr-ca-icon-caret-square-o-down:before { + content: "\f150"; +} +.rr-ca-icon-toggle-up:before, +.rr-ca-icon-caret-square-o-up:before { + content: "\f151"; +} +.rr-ca-icon-toggle-right:before, +.rr-ca-icon-caret-square-o-right:before { + content: "\f152"; +} +.rr-ca-icon-euro:before, +.rr-ca-icon-eur:before { + content: "\f153"; +} +.rr-ca-icon-gbp:before { + content: "\f154"; +} +.rr-ca-icon-dollar:before, +.rr-ca-icon-usd:before { + content: "\f155"; +} +.rr-ca-icon-rupee:before, +.rr-ca-icon-inr:before { + content: "\f156"; +} +.rr-ca-icon-cny:before, +.rr-ca-icon-rmb:before, +.rr-ca-icon-yen:before, +.rr-ca-icon-jpy:before { + content: "\f157"; +} +.rr-ca-icon-ruble:before, +.rr-ca-icon-rouble:before, +.rr-ca-icon-rub:before { + content: "\f158"; +} +.rr-ca-icon-won:before, +.rr-ca-icon-krw:before { + content: "\f159"; +} +.rr-ca-icon-bitcoin:before, +.rr-ca-icon-btc:before { + content: "\f15a"; +} +.rr-ca-icon-file:before { + content: "\f15b"; +} +.rr-ca-icon-file-text:before { + content: "\f15c"; +} +.rr-ca-icon-sort-alpha-asc:before { + content: "\f15d"; +} +.rr-ca-icon-sort-alpha-desc:before { + content: "\f15e"; +} +.rr-ca-icon-sort-amount-asc:before { + content: "\f160"; +} +.rr-ca-icon-sort-amount-desc:before { + content: "\f161"; +} +.rr-ca-icon-sort-numeric-asc:before { + content: "\f162"; +} +.rr-ca-icon-sort-numeric-desc:before { + content: "\f163"; +} +.rr-ca-icon-thumbs-up:before { + content: "\f164"; +} +.rr-ca-icon-thumbs-down:before { + content: "\f165"; +} +.rr-ca-icon-youtube-square:before { + content: "\f166"; +} +.rr-ca-icon-youtube:before { + content: "\f167"; +} +.rr-ca-icon-xing:before { + content: "\f168"; +} +.rr-ca-icon-xing-square:before { + content: "\f169"; +} +.rr-ca-icon-youtube-play:before { + content: "\f16a"; +} +.rr-ca-icon-dropbox:before { + content: "\f16b"; +} +.rr-ca-icon-stack-overflow:before { + content: "\f16c"; +} +.rr-ca-icon-instagram:before { + content: "\f16d"; +} +.rr-ca-icon-flickr:before { + content: "\f16e"; +} +.rr-ca-icon-adn:before { + content: "\f170"; +} +.rr-ca-icon-bitbucket:before { + content: "\f171"; +} +.rr-ca-icon-bitbucket-square:before { + content: "\f172"; +} +.rr-ca-icon-tumblr:before { + content: "\f173"; +} +.rr-ca-icon-tumblr-square:before { + content: "\f174"; +} +.rr-ca-icon-long-arrow-down:before { + content: "\f175"; +} +.rr-ca-icon-long-arrow-up:before { + content: "\f176"; +} +.rr-ca-icon-long-arrow-left:before { + content: "\f177"; +} +.rr-ca-icon-long-arrow-right:before { + content: "\f178"; +} +.rr-ca-icon-apple:before { + content: "\f179"; +} +.rr-ca-icon-windows:before { + content: "\f17a"; +} +.rr-ca-icon-android:before { + content: "\f17b"; +} +.rr-ca-icon-linux:before { + content: "\f17c"; +} +.rr-ca-icon-dribbble:before { + content: "\f17d"; +} +.rr-ca-icon-skype:before { + content: "\f17e"; +} +.rr-ca-icon-foursquare:before { + content: "\f180"; +} +.rr-ca-icon-trello:before { + content: "\f181"; +} +.rr-ca-icon-female:before { + content: "\f182"; +} +.rr-ca-icon-male:before { + content: "\f183"; +} +.rr-ca-icon-gittip:before, +.rr-ca-icon-gratipay:before { + content: "\f184"; +} +.rr-ca-icon-sun-o:before { + content: "\f185"; +} +.rr-ca-icon-moon-o:before { + content: "\f186"; +} +.rr-ca-icon-archive:before { + content: "\f187"; +} +.rr-ca-icon-bug:before { + content: "\f188"; +} +.rr-ca-icon-vk:before { + content: "\f189"; +} +.rr-ca-icon-weibo:before { + content: "\f18a"; +} +.rr-ca-icon-renren:before { + content: "\f18b"; +} +.rr-ca-icon-pagelines:before { + content: "\f18c"; +} +.rr-ca-icon-stack-exchange:before { + content: "\f18d"; +} +.rr-ca-icon-arrow-circle-o-right:before { + content: "\f18e"; +} +.rr-ca-icon-arrow-circle-o-left:before { + content: "\f190"; +} +.rr-ca-icon-toggle-left:before, +.rr-ca-icon-caret-square-o-left:before { + content: "\f191"; +} +.rr-ca-icon-dot-circle-o:before { + content: "\f192"; +} +.rr-ca-icon-wheelchair:before { + content: "\f193"; +} +.rr-ca-icon-vimeo-square:before { + content: "\f194"; +} +.rr-ca-icon-turkish-lira:before, +.rr-ca-icon-try:before { + content: "\f195"; +} +.rr-ca-icon-plus-square-o:before { + content: "\f196"; +} +.rr-ca-icon-space-shuttle:before { + content: "\f197"; +} +.rr-ca-icon-slack:before { + content: "\f198"; +} +.rr-ca-icon-envelope-square:before { + content: "\f199"; +} +.rr-ca-icon-wordpress:before { + content: "\f19a"; +} +.rr-ca-icon-openid:before { + content: "\f19b"; +} +.rr-ca-icon-institution:before, +.rr-ca-icon-bank:before, +.rr-ca-icon-university:before { + content: "\f19c"; +} +.rr-ca-icon-mortar-board:before, +.rr-ca-icon-graduation-cap:before { + content: "\f19d"; +} +.rr-ca-icon-yahoo:before { + content: "\f19e"; +} +.rr-ca-icon-google:before { + content: "\f1a0"; +} +.rr-ca-icon-reddit:before { + content: "\f1a1"; +} +.rr-ca-icon-reddit-square:before { + content: "\f1a2"; +} +.rr-ca-icon-stumbleupon-circle:before { + content: "\f1a3"; +} +.rr-ca-icon-stumbleupon:before { + content: "\f1a4"; +} +.rr-ca-icon-delicious:before { + content: "\f1a5"; +} +.rr-ca-icon-digg:before { + content: "\f1a6"; +} +.rr-ca-icon-pied-piper-pp:before { + content: "\f1a7"; +} +.rr-ca-icon-pied-piper-alt:before { + content: "\f1a8"; +} +.rr-ca-icon-drupal:before { + content: "\f1a9"; +} +.rr-ca-icon-joomla:before { + content: "\f1aa"; +} +.rr-ca-icon-language:before { + content: "\f1ab"; +} +.rr-ca-icon-fax:before { + content: "\f1ac"; +} +.rr-ca-icon-building:before { + content: "\f1ad"; +} +.rr-ca-icon-child:before { + content: "\f1ae"; +} +.rr-ca-icon-paw:before { + content: "\f1b0"; +} +.rr-ca-icon-spoon:before { + content: "\f1b1"; +} +.rr-ca-icon-cube:before { + content: "\f1b2"; +} +.rr-ca-icon-cubes:before { + content: "\f1b3"; +} +.rr-ca-icon-behance:before { + content: "\f1b4"; +} +.rr-ca-icon-behance-square:before { + content: "\f1b5"; +} +.rr-ca-icon-steam:before { + content: "\f1b6"; +} +.rr-ca-icon-steam-square:before { + content: "\f1b7"; +} +.rr-ca-icon-recycle:before { + content: "\f1b8"; +} +.rr-ca-icon-automobile:before, +.rr-ca-icon-car:before { + content: "\f1b9"; +} +.rr-ca-icon-cab:before, +.rr-ca-icon-taxi:before { + content: "\f1ba"; +} +.rr-ca-icon-tree:before { + content: "\f1bb"; +} +.rr-ca-icon-spotify:before { + content: "\f1bc"; +} +.rr-ca-icon-deviantart:before { + content: "\f1bd"; +} +.rr-ca-icon-soundcloud:before { + content: "\f1be"; +} +.rr-ca-icon-database:before { + content: "\f1c0"; +} +.rr-ca-icon-file-pdf-o:before { + content: "\f1c1"; +} +.rr-ca-icon-file-word-o:before { + content: "\f1c2"; +} +.rr-ca-icon-file-excel-o:before { + content: "\f1c3"; +} +.rr-ca-icon-file-powerpoint-o:before { + content: "\f1c4"; +} +.rr-ca-icon-file-photo-o:before, +.rr-ca-icon-file-picture-o:before, +.rr-ca-icon-file-image-o:before { + content: "\f1c5"; +} +.rr-ca-icon-file-zip-o:before, +.rr-ca-icon-file-archive-o:before { + content: "\f1c6"; +} +.rr-ca-icon-file-sound-o:before, +.rr-ca-icon-file-audio-o:before { + content: "\f1c7"; +} +.rr-ca-icon-file-movie-o:before, +.rr-ca-icon-file-video-o:before { + content: "\f1c8"; +} +.rr-ca-icon-file-code-o:before { + content: "\f1c9"; +} +.rr-ca-icon-vine:before { + content: "\f1ca"; +} +.rr-ca-icon-codepen:before { + content: "\f1cb"; +} +.rr-ca-icon-jsfiddle:before { + content: "\f1cc"; +} +.rr-ca-icon-life-bouy:before, +.rr-ca-icon-life-buoy:before, +.rr-ca-icon-life-saver:before, +.rr-ca-icon-support:before, +.rr-ca-icon-life-ring:before { + content: "\f1cd"; +} +.rr-ca-icon-circle-o-notch:before { + content: "\f1ce"; +} +.rr-ca-icon-ra:before, +.rr-ca-icon-resistance:before, +.rr-ca-icon-rebel:before { + content: "\f1d0"; +} +.rr-ca-icon-ge:before, +.rr-ca-icon-empire:before { + content: "\f1d1"; +} +.rr-ca-icon-git-square:before { + content: "\f1d2"; +} +.rr-ca-icon-git:before { + content: "\f1d3"; +} +.rr-ca-icon-y-combinator-square:before, +.rr-ca-icon-yc-square:before, +.rr-ca-icon-hacker-news:before { + content: "\f1d4"; +} +.rr-ca-icon-tencent-weibo:before { + content: "\f1d5"; +} +.rr-ca-icon-qq:before { + content: "\f1d6"; +} +.rr-ca-icon-wechat:before, +.rr-ca-icon-weixin:before { + content: "\f1d7"; +} +.rr-ca-icon-send:before, +.rr-ca-icon-paper-plane:before { + content: "\f1d8"; +} +.rr-ca-icon-send-o:before, +.rr-ca-icon-paper-plane-o:before { + content: "\f1d9"; +} +.rr-ca-icon-history:before { + content: "\f1da"; +} +.rr-ca-icon-circle-thin:before { + content: "\f1db"; +} +.rr-ca-icon-header:before { + content: "\f1dc"; +} +.rr-ca-icon-paragraph:before { + content: "\f1dd"; +} +.rr-ca-icon-sliders:before { + content: "\f1de"; +} +.rr-ca-icon-share-alt:before { + content: "\f1e0"; +} +.rr-ca-icon-share-alt-square:before { + content: "\f1e1"; +} +.rr-ca-icon-bomb:before { + content: "\f1e2"; +} +.rr-ca-icon-soccer-ball-o:before, +.rr-ca-icon-futbol-o:before { + content: "\f1e3"; +} +.rr-ca-icon-tty:before { + content: "\f1e4"; +} +.rr-ca-icon-binoculars:before { + content: "\f1e5"; +} +.rr-ca-icon-plug:before { + content: "\f1e6"; +} +.rr-ca-icon-slideshare:before { + content: "\f1e7"; +} +.rr-ca-icon-twitch:before { + content: "\f1e8"; +} +.rr-ca-icon-yelp:before { + content: "\f1e9"; +} +.rr-ca-icon-newspaper-o:before { + content: "\f1ea"; +} +.rr-ca-icon-wifi:before { + content: "\f1eb"; +} +.rr-ca-icon-calculator:before { + content: "\f1ec"; +} +.rr-ca-icon-paypal:before { + content: "\f1ed"; +} +.rr-ca-icon-google-wallet:before { + content: "\f1ee"; +} +.rr-ca-icon-cc-visa:before { + content: "\f1f0"; +} +.rr-ca-icon-cc-mastercard:before { + content: "\f1f1"; +} +.rr-ca-icon-cc-discover:before { + content: "\f1f2"; +} +.rr-ca-icon-cc-amex:before { + content: "\f1f3"; +} +.rr-ca-icon-cc-paypal:before { + content: "\f1f4"; +} +.rr-ca-icon-cc-stripe:before { + content: "\f1f5"; +} +.rr-ca-icon-bell-slash:before { + content: "\f1f6"; +} +.rr-ca-icon-bell-slash-o:before { + content: "\f1f7"; +} +.rr-ca-icon-trash:before { + content: "\f1f8"; +} +.rr-ca-icon-copyright:before { + content: "\f1f9"; +} +.rr-ca-icon-at:before { + content: "\f1fa"; +} +.rr-ca-icon-eyedropper:before { + content: "\f1fb"; +} +.rr-ca-icon-paint-brush:before { + content: "\f1fc"; +} +.rr-ca-icon-birthday-cake:before { + content: "\f1fd"; +} +.rr-ca-icon-area-chart:before { + content: "\f1fe"; +} +.rr-ca-icon-pie-chart:before { + content: "\f200"; +} +.rr-ca-icon-line-chart:before { + content: "\f201"; +} +.rr-ca-icon-lastfm:before { + content: "\f202"; +} +.rr-ca-icon-lastfm-square:before { + content: "\f203"; +} +.rr-ca-icon-toggle-off:before { + content: "\f204"; +} +.rr-ca-icon-toggle-on:before { + content: "\f205"; +} +.rr-ca-icon-bicycle:before { + content: "\f206"; +} +.rr-ca-icon-bus:before { + content: "\f207"; +} +.rr-ca-icon-ioxhost:before { + content: "\f208"; +} +.rr-ca-icon-angellist:before { + content: "\f209"; +} +.rr-ca-icon-cc:before { + content: "\f20a"; +} +.rr-ca-icon-shekel:before, +.rr-ca-icon-sheqel:before, +.rr-ca-icon-ils:before { + content: "\f20b"; +} +.rr-ca-icon-meanpath:before { + content: "\f20c"; +} +.rr-ca-icon-buysellads:before { + content: "\f20d"; +} +.rr-ca-icon-connectdevelop:before { + content: "\f20e"; +} +.rr-ca-icon-dashcube:before { + content: "\f210"; +} +.rr-ca-icon-forumbee:before { + content: "\f211"; +} +.rr-ca-icon-leanpub:before { + content: "\f212"; +} +.rr-ca-icon-sellsy:before { + content: "\f213"; +} +.rr-ca-icon-shirtsinbulk:before { + content: "\f214"; +} +.rr-ca-icon-simplybuilt:before { + content: "\f215"; +} +.rr-ca-icon-skyatlas:before { + content: "\f216"; +} +.rr-ca-icon-cart-plus:before { + content: "\f217"; +} +.rr-ca-icon-cart-arrow-down:before { + content: "\f218"; +} +.rr-ca-icon-diamond:before { + content: "\f219"; +} +.rr-ca-icon-ship:before { + content: "\f21a"; +} +.rr-ca-icon-user-secret:before { + content: "\f21b"; +} +.rr-ca-icon-motorcycle:before { + content: "\f21c"; +} +.rr-ca-icon-street-view:before { + content: "\f21d"; +} +.rr-ca-icon-heartbeat:before { + content: "\f21e"; +} +.rr-ca-icon-venus:before { + content: "\f221"; +} +.rr-ca-icon-mars:before { + content: "\f222"; +} +.rr-ca-icon-mercury:before { + content: "\f223"; +} +.rr-ca-icon-intersex:before, +.rr-ca-icon-transgender:before { + content: "\f224"; +} +.rr-ca-icon-transgender-alt:before { + content: "\f225"; +} +.rr-ca-icon-venus-double:before { + content: "\f226"; +} +.rr-ca-icon-mars-double:before { + content: "\f227"; +} +.rr-ca-icon-venus-mars:before { + content: "\f228"; +} +.rr-ca-icon-mars-stroke:before { + content: "\f229"; +} +.rr-ca-icon-mars-stroke-v:before { + content: "\f22a"; +} +.rr-ca-icon-mars-stroke-h:before { + content: "\f22b"; +} +.rr-ca-icon-neuter:before { + content: "\f22c"; +} +.rr-ca-icon-genderless:before { + content: "\f22d"; +} +.rr-ca-icon-facebook-official:before { + content: "\f230"; +} +.rr-ca-icon-pinterest-p:before { + content: "\f231"; +} +.rr-ca-icon-whatsapp:before { + content: "\f232"; +} +.rr-ca-icon-server:before { + content: "\f233"; +} +.rr-ca-icon-user-plus:before { + content: "\f234"; +} +.rr-ca-icon-user-times:before { + content: "\f235"; +} +.rr-ca-icon-hotel:before, +.rr-ca-icon-bed:before { + content: "\f236"; +} +.rr-ca-icon-viacoin:before { + content: "\f237"; +} +.rr-ca-icon-train:before { + content: "\f238"; +} +.rr-ca-icon-subway:before { + content: "\f239"; +} +.rr-ca-icon-medium:before { + content: "\f23a"; +} +.rr-ca-icon-yc:before, +.rr-ca-icon-y-combinator:before { + content: "\f23b"; +} +.rr-ca-icon-optin-monster:before { + content: "\f23c"; +} +.rr-ca-icon-opencart:before { + content: "\f23d"; +} +.rr-ca-icon-expeditedssl:before { + content: "\f23e"; +} +.rr-ca-icon-battery-4:before, +.rr-ca-icon-battery:before, +.rr-ca-icon-battery-full:before { + content: "\f240"; +} +.rr-ca-icon-battery-3:before, +.rr-ca-icon-battery-three-quarters:before { + content: "\f241"; +} +.rr-ca-icon-battery-2:before, +.rr-ca-icon-battery-half:before { + content: "\f242"; +} +.rr-ca-icon-battery-1:before, +.rr-ca-icon-battery-quarter:before { + content: "\f243"; +} +.rr-ca-icon-battery-0:before, +.rr-ca-icon-battery-empty:before { + content: "\f244"; +} +.rr-ca-icon-mouse-pointer:before { + content: "\f245"; +} +.rr-ca-icon-i-cursor:before { + content: "\f246"; +} +.rr-ca-icon-object-group:before { + content: "\f247"; +} +.rr-ca-icon-object-ungroup:before { + content: "\f248"; +} +.rr-ca-icon-sticky-note:before { + content: "\f249"; +} +.rr-ca-icon-sticky-note-o:before { + content: "\f24a"; +} +.rr-ca-icon-cc-jcb:before { + content: "\f24b"; +} +.rr-ca-icon-cc-diners-club:before { + content: "\f24c"; +} +.rr-ca-icon-clone:before { + content: "\f24d"; +} +.rr-ca-icon-balance-scale:before { + content: "\f24e"; +} +.rr-ca-icon-hourglass-o:before { + content: "\f250"; +} +.rr-ca-icon-hourglass-1:before, +.rr-ca-icon-hourglass-start:before { + content: "\f251"; +} +.rr-ca-icon-hourglass-2:before, +.rr-ca-icon-hourglass-half:before { + content: "\f252"; +} +.rr-ca-icon-hourglass-3:before, +.rr-ca-icon-hourglass-end:before { + content: "\f253"; +} +.rr-ca-icon-hourglass:before { + content: "\f254"; +} +.rr-ca-icon-hand-grab-o:before, +.rr-ca-icon-hand-rock-o:before { + content: "\f255"; +} +.rr-ca-icon-hand-stop-o:before, +.rr-ca-icon-hand-paper-o:before { + content: "\f256"; +} +.rr-ca-icon-hand-scissors-o:before { + content: "\f257"; +} +.rr-ca-icon-hand-lizard-o:before { + content: "\f258"; +} +.rr-ca-icon-hand-spock-o:before { + content: "\f259"; +} +.rr-ca-icon-hand-pointer-o:before { + content: "\f25a"; +} +.rr-ca-icon-hand-peace-o:before { + content: "\f25b"; +} +.rr-ca-icon-trademark:before { + content: "\f25c"; +} +.rr-ca-icon-registered:before { + content: "\f25d"; +} +.rr-ca-icon-creative-commons:before { + content: "\f25e"; +} +.rr-ca-icon-gg:before { + content: "\f260"; +} +.rr-ca-icon-gg-circle:before { + content: "\f261"; +} +.rr-ca-icon-tripadvisor:before { + content: "\f262"; +} +.rr-ca-icon-odnoklassniki:before { + content: "\f263"; +} +.rr-ca-icon-odnoklassniki-square:before { + content: "\f264"; +} +.rr-ca-icon-get-pocket:before { + content: "\f265"; +} +.rr-ca-icon-wikipedia-w:before { + content: "\f266"; +} +.rr-ca-icon-safari:before { + content: "\f267"; +} +.rr-ca-icon-chrome:before { + content: "\f268"; +} +.rr-ca-icon-firefox:before { + content: "\f269"; +} +.rr-ca-icon-opera:before { + content: "\f26a"; +} +.rr-ca-icon-internet-explorer:before { + content: "\f26b"; +} +.rr-ca-icon-tv:before, +.rr-ca-icon-television:before { + content: "\f26c"; +} +.rr-ca-icon-contao:before { + content: "\f26d"; +} +.rr-ca-icon-500px:before { + content: "\f26e"; +} +.rr-ca-icon-amazon:before { + content: "\f270"; +} +.rr-ca-icon-calendar-plus-o:before { + content: "\f271"; +} +.rr-ca-icon-calendar-minus-o:before { + content: "\f272"; +} +.rr-ca-icon-calendar-times-o:before { + content: "\f273"; +} +.rr-ca-icon-calendar-check-o:before { + content: "\f274"; +} +.rr-ca-icon-industry:before { + content: "\f275"; +} +.rr-ca-icon-map-pin:before { + content: "\f276"; +} +.rr-ca-icon-map-signs:before { + content: "\f277"; +} +.rr-ca-icon-map-o:before { + content: "\f278"; +} +.rr-ca-icon-map:before { + content: "\f279"; +} +.rr-ca-icon-commenting:before { + content: "\f27a"; +} +.rr-ca-icon-commenting-o:before { + content: "\f27b"; +} +.rr-ca-icon-houzz:before { + content: "\f27c"; +} +.rr-ca-icon-vimeo:before { + content: "\f27d"; +} +.rr-ca-icon-black-tie:before { + content: "\f27e"; +} +.rr-ca-icon-fonticons:before { + content: "\f280"; +} +.rr-ca-icon-reddit-alien:before { + content: "\f281"; +} +.rr-ca-icon-edge:before { + content: "\f282"; +} +.rr-ca-icon-credit-card-alt:before { + content: "\f283"; +} +.rr-ca-icon-codiepie:before { + content: "\f284"; +} +.rr-ca-icon-modx:before { + content: "\f285"; +} +.rr-ca-icon-fort-awesome:before { + content: "\f286"; +} +.rr-ca-icon-usb:before { + content: "\f287"; +} +.rr-ca-icon-product-hunt:before { + content: "\f288"; +} +.rr-ca-icon-mixcloud:before { + content: "\f289"; +} +.rr-ca-icon-scribd:before { + content: "\f28a"; +} +.rr-ca-icon-pause-circle:before { + content: "\f28b"; +} +.rr-ca-icon-pause-circle-o:before { + content: "\f28c"; +} +.rr-ca-icon-stop-circle:before { + content: "\f28d"; +} +.rr-ca-icon-stop-circle-o:before { + content: "\f28e"; +} +.rr-ca-icon-shopping-bag:before { + content: "\f290"; +} +.rr-ca-icon-shopping-basket:before { + content: "\f291"; +} +.rr-ca-icon-hashtag:before { + content: "\f292"; +} +.rr-ca-icon-bluetooth:before { + content: "\f293"; +} +.rr-ca-icon-bluetooth-b:before { + content: "\f294"; +} +.rr-ca-icon-percent:before { + content: "\f295"; +} +.rr-ca-icon-gitlab:before { + content: "\f296"; +} +.rr-ca-icon-wpbeginner:before { + content: "\f297"; +} +.rr-ca-icon-wpforms:before { + content: "\f298"; +} +.rr-ca-icon-envira:before { + content: "\f299"; +} +.rr-ca-icon-universal-access:before { + content: "\f29a"; +} +.rr-ca-icon-wheelchair-alt:before { + content: "\f29b"; +} +.rr-ca-icon-question-circle-o:before { + content: "\f29c"; +} +.rr-ca-icon-blind:before { + content: "\f29d"; +} +.rr-ca-icon-audio-description:before { + content: "\f29e"; +} +.rr-ca-icon-volume-control-phone:before { + content: "\f2a0"; +} +.rr-ca-icon-braille:before { + content: "\f2a1"; +} +.rr-ca-icon-assistive-listening-systems:before { + content: "\f2a2"; +} +.rr-ca-icon-asl-interpreting:before, +.rr-ca-icon-american-sign-language-interpreting:before { + content: "\f2a3"; +} +.rr-ca-icon-deafness:before, +.rr-ca-icon-hard-of-hearing:before, +.rr-ca-icon-deaf:before { + content: "\f2a4"; +} +.rr-ca-icon-glide:before { + content: "\f2a5"; +} +.rr-ca-icon-glide-g:before { + content: "\f2a6"; +} +.rr-ca-icon-signing:before, +.rr-ca-icon-sign-language:before { + content: "\f2a7"; +} +.rr-ca-icon-low-vision:before { + content: "\f2a8"; +} +.rr-ca-icon-viadeo:before { + content: "\f2a9"; +} +.rr-ca-icon-viadeo-square:before { + content: "\f2aa"; +} +.rr-ca-icon-snapchat:before { + content: "\f2ab"; +} +.rr-ca-icon-snapchat-ghost:before { + content: "\f2ac"; +} +.rr-ca-icon-snapchat-square:before { + content: "\f2ad"; +} +.rr-ca-icon-pied-piper:before { + content: "\f2ae"; +} +.rr-ca-icon-first-order:before { + content: "\f2b0"; +} +.rr-ca-icon-yoast:before { + content: "\f2b1"; +} +.rr-ca-icon-themeisle:before { + content: "\f2b2"; +} +.rr-ca-icon-google-plus-circle:before, +.rr-ca-icon-google-plus-official:before { + content: "\f2b3"; +} +.rr-ca-icon-fa:before, +.rr-ca-icon-font-awesome:before { + content: "\f2b4"; +} +.rr-ca-icon-handshake-o:before { + content: "\f2b5"; +} +.rr-ca-icon-envelope-open:before { + content: "\f2b6"; +} +.rr-ca-icon-envelope-open-o:before { + content: "\f2b7"; +} +.rr-ca-icon-linode:before { + content: "\f2b8"; +} +.rr-ca-icon-address-book:before { + content: "\f2b9"; +} +.rr-ca-icon-address-book-o:before { + content: "\f2ba"; +} +.rr-ca-icon-vcard:before, +.rr-ca-icon-address-card:before { + content: "\f2bb"; +} +.rr-ca-icon-vcard-o:before, +.rr-ca-icon-address-card-o:before { + content: "\f2bc"; +} +.rr-ca-icon-user-circle:before { + content: "\f2bd"; +} +.rr-ca-icon-user-circle-o:before { + content: "\f2be"; +} +.rr-ca-icon-user-o:before { + content: "\f2c0"; +} +.rr-ca-icon-id-badge:before { + content: "\f2c1"; +} +.rr-ca-icon-drivers-license:before, +.rr-ca-icon-id-card:before { + content: "\f2c2"; +} +.rr-ca-icon-drivers-license-o:before, +.rr-ca-icon-id-card-o:before { + content: "\f2c3"; +} +.rr-ca-icon-quora:before { + content: "\f2c4"; +} +.rr-ca-icon-free-code-camp:before { + content: "\f2c5"; +} +.rr-ca-icon-telegram:before { + content: "\f2c6"; +} +.rr-ca-icon-thermometer-4:before, +.rr-ca-icon-thermometer:before, +.rr-ca-icon-thermometer-full:before { + content: "\f2c7"; +} +.rr-ca-icon-thermometer-3:before, +.rr-ca-icon-thermometer-three-quarters:before { + content: "\f2c8"; +} +.rr-ca-icon-thermometer-2:before, +.rr-ca-icon-thermometer-half:before { + content: "\f2c9"; +} +.rr-ca-icon-thermometer-1:before, +.rr-ca-icon-thermometer-quarter:before { + content: "\f2ca"; +} +.rr-ca-icon-thermometer-0:before, +.rr-ca-icon-thermometer-empty:before { + content: "\f2cb"; +} +.rr-ca-icon-shower:before { + content: "\f2cc"; +} +.rr-ca-icon-bathtub:before, +.rr-ca-icon-s15:before, +.rr-ca-icon-bath:before { + content: "\f2cd"; +} +.rr-ca-icon-podcast:before { + content: "\f2ce"; +} +.rr-ca-icon-window-maximize:before { + content: "\f2d0"; +} +.rr-ca-icon-window-minimize:before { + content: "\f2d1"; +} +.rr-ca-icon-window-restore:before { + content: "\f2d2"; +} +.rr-ca-icon-times-rectangle:before, +.rr-ca-icon-window-close:before { + content: "\f2d3"; +} +.rr-ca-icon-times-rectangle-o:before, +.rr-ca-icon-window-close-o:before { + content: "\f2d4"; +} +.rr-ca-icon-bandcamp:before { + content: "\f2d5"; +} +.rr-ca-icon-grav:before { + content: "\f2d6"; +} +.rr-ca-icon-etsy:before { + content: "\f2d7"; +} +.rr-ca-icon-imdb:before { + content: "\f2d8"; +} +.rr-ca-icon-ravelry:before { + content: "\f2d9"; +} +.rr-ca-icon-eercast:before { + content: "\f2da"; +} +.rr-ca-icon-microchip:before { + content: "\f2db"; +} +.rr-ca-icon-snowflake-o:before { + content: "\f2dc"; +} +.rr-ca-icon-superpowers:before { + content: "\f2dd"; +} +.rr-ca-icon-wpexplorer:before { + content: "\f2de"; +} +.rr-ca-icon-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; +} +.cbsp-button-mixing { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing:hover { + color: #ED5050 !important; + background-color: #fff !important; +} + +.cbsp-button-mixing { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.ebca-serp { + display: flex!important; +} +.ebca-serp .ebca-serp-logo { + display: inline-block; + background-repeat: no-repeat; + background-position-x: center; + width: 15px; + height: 20px; + background-image: url("data:image/png;base64,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"); + background-size: 15px !important; + background-position-y: center !important; +} +.ebca-serp .ebca-serp-text { + margin: 0 0 0 4px !important; + display: inline-block; + font-family: 'Benton', sans-serif; + line-height: 20px; + font-size: 16px; + font-weight: 600; + color: #ED5050; + vertical-align: middle !important; +} +.ebca-serp .ebca-reminder-bonus { + display: inline-block !important; + color: #11AFD1 !important; +} + +.cbsp-button-mixing { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.rr-ca-serp-coupon { + display: flex; + flex-direction: column; + width: 205px; + min-width: 205px; + max-width: 205px; + min-height: 300px; + border: 1px solid #DFDFDF; + border-radius: 4px; + box-shadow: none; + padding: 10px 16px; + margin: 0 4px; + box-sizing: border-box; + user-select: none; +} +.rr-ca-serp-coupon:hover { + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1612); +} +.rr-ca-serp-coupon:nth-child(1) { + margin: 0 4px 0 0; +} +.rr-ca-serp-coupon:last-child { + margin: 0 0 0 4px; +} +.rr-ca-serp-coupon_container { + font-family: 'Benton', sans-serif; + display: flex; + flex-direction: row; + overflow: auto hidden; + scroll-behavior: smooth; + padding: 5px 0 15px 0; +} +.rr-ca-serp-coupon_text, +.rr-ca-serp-coupon_code { + line-height: 20px; + margin: 0 0 7px; + text-align: left; + color: #252525; + font-family: 'Benton', sans-serif; +} +.rr-ca-serp-coupon_text { + font-size: 15px; + flex: 1; +} +.rr-ca-serp-coupon_code { + font-size: 13px; +} +.rr-ca-serp-coupon_code span { + color: #fff; + background-color: #7225B7; + padding: 0 4px; +} +.rr-ca-serp-coupon_cb { + margin: 7px 0!important; + display: flex; + font-family: 'Benton', sans-serif; + line-height: 20px; + font-size: 16px; + font-weight: 400; + color: #ED5050; + vertical-align: middle !important; +} +.rr-ca-serp-coupon_cb_text { + margin-left: 4px; + display: inline-block; + font-weight: 600; +} +.rr-ca-serp-coupon_icon { + float: left; + max-height: 36px; + min-height: 36px; + text-align: left; + margin: 10px 0 17px; + background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2238%22%20height%3D%2238%22%20viewBox%3D%220%200%2038%2038%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M0.0509338%2037.8889H37.8073V0.132568H0.0509338V37.8889Z%22%20fill%3D%22%23FFFFFE%22%2F%3E%0A%20%20%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M0.606049%2037.323H37.252V0.698257H0.606049V37.323Z%22%20fill%3D%22%23002347%22%2F%3E%0A%20%20%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M26.9258%2010.1642H27.6813C28.4158%2010.1432%2028.7308%2010.8147%2028.7308%2011.3394V19.2101C28.7517%2019.7768%2028.4158%2020.3016%2027.7653%2020.3016H26.9258V10.1642ZM27.7022%209.87036H24.6798V10.1642H25.4774V27.8575H24.6798V28.1723H28.0801V27.8575H26.9258V20.6584H27.9331C29.3603%2020.6584%2030.1789%2019.9028%2030.1789%2018.8744V11.8013C30.1789%2010.7728%2029.4863%209.87036%2027.7022%209.87036Z%22%20fill%3D%22%23FFFFFE%22%2F%3E%0A%20%20%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.7091%2010.1011C11.7091%2010.3949%2011.5412%2010.374%2011.4153%2010.269C10.9115%209.93323%2010.3239%209.68134%209.77817%209.68134C8.89653%209.68134%207.6582%2010.1221%207.63724%2011.9692V25.5277C7.6582%2027.8994%208.79173%2028.3401%209.90411%2028.3401C10.7856%2028.3611%2011.2053%2027.8994%2011.5412%2027.7315C11.7301%2027.6685%2011.9399%2027.8363%2011.9399%2028.1932H12.2967V19.567H13.0313V19.2732H9.96699V19.567H10.8484V26.9758C10.8484%2027.5846%2010.4496%2028.0463%209.92507%2028.0463C9.42128%2028.0463%209.04343%2027.5635%209.04343%2026.9758V11.4235C9.04343%2011.0037%209.12746%2010.0173%209.77817%2010.0173C11.0375%2010.0173%2011.7091%2013.7111%2011.7091%2015.6211H12.0658V9.8492H11.7091V10.1011Z%22%20fill%3D%22%23FFFFFE%22%2F%3E%0A%20%20%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.271%2020.3225L18.1524%2012.4099L19.055%2020.3225H17.271ZM19.097%2020.6375L19.9155%2027.8575H19.1179V28.1723H22.1403V27.8575H21.3427L19.3279%209.84921H18.0476L16.1586%2026.8499C16.0536%2027.4587%2016.0117%2027.8363%2015.1301%2027.8575V28.1723H17.3969V27.8575C16.7462%2027.8575%2016.4524%2027.4377%2016.5153%2027.018L17.2289%2020.6375H19.097Z%22%20fill%3D%22%23FFFFFE%22%2F%3E%0A%3C%2Fsvg%3E"); + background-position: left center; + background-repeat: no-repeat; + background-size: contain; +} +.rr-ca-serp-coupon_icon > img { + height: 36px; + max-height: 36px; + max-width: 100%; + width: auto; +} +.rr-ca-serp-coupon_button__wrapper { + line-height: 36px; + width: 36px; + min-width: 36px; + max-width: 36px; + height: 36px; + min-height: 36px; + max-height: 36px; + box-shadow: 0px 1px 4px 2px rgba(0, 0, 0, 0.213642); + border-radius: 50%; + background-color: #fff; + cursor: pointer; +} +.rr-ca-serp-coupon_button__activation { + white-space: nowrap; + position: relative; + cursor: pointer; + width: 100%; + text-align: center; + text-decoration: none; + font-family: 'Benton', sans-serif; + font-size: 14px; + border-radius: 17px; + display: inline-block; + margin: 10px 0; + font-weight: 400; + text-shadow: none; + transition: 0.2s; + background: #ED5050; + box-shadow: none; + height: 34px; + line-height: 34px; + border: 1px solid #ED5050; + color: #ED5050 !important; + background: #fff; +} +.rr-ca-serp-coupon_button__activation:hover { + background: #ED5050; + color: #fff !important; +} +.rr-ca-serp-coupon_wrapper { + flex-direction: row; + display: flex; + align-items: center; + text-align: center; + justify-content: start; +} +.rr-ca-serp-coupon_arrow { + width: 0; + overflow: visible; + z-index: 1; + display: flex; + align-items: center; +} +.rr-ca-serp-coupon_frame { + display: flex; + flex-direction: row; + width: auto; + transition: 0.5s; +} +.rr-ca-serp-coupon_logo { + display: inline-block; + background-repeat: no-repeat; + background-position-x: center; + width: 15px; + height: 18px; + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAACRJJREFUaAXtWl2MXVUV3nufO9PyUPlpUEMRJ0FTsPBgwBBsTOiDhthWTG2HwlQFQtIHCAiaWkX0Wpm2olYtBuNDU5ogHWeEBCgao8HhrxgaSExoNOk9RZqQVlEICAPt3HO237fWPufODHP3OdM79Yl977n7b+21v2+t/Xf2jDWR8O3LHrzTerPF5N44743Gxljk+bAM9XhCPjeZNf6oy83LxpuXGt48nCRnPXpL6/PHI930VOVirXNUAl/5WAt4IW8c0iFPHVJuTQI653prlnuTb2j7bKzdfvXYjo/suefe8359JuXmO0QJGOcE5DTgAG3wlYAYYAW8EoKTkONjRI6E7RnGmZuPm8kXdy65b+X/l0DoTQCJxQlWwRXeIVB6QgkhLoEHcoEgiJyTWb9v5zn3fXc+SVR4QEEISJq9ACexWp5Dh1UdQlpeyqJaZETOmtz67+9csmcjs/MRogQ6oAg+gETMNIcOh42SQ0QPoQiWLssoKOBL72k7DLJ7f37u7itPOQHpANZWYMTVSStw5lEbwOs8kBJiB8kpdSQcPIjYwWW/3D2we2GvJBpVCsTSNCo+uc+BEaC5pBp7KHHmVuMS49vGJC7jkoqM+5B1foX39mqT5Q2lTDJkwHZcjbEEGzPw9gm7CdktUniSP3ECWIW49tOS7NrR0twDAAZw3vjeC2t/36XfXXdfOLLD5/keSF8kmwUUcJjJZIFa6slzf9PoutHhwbHBrIueymKo6h7KORBEijy9wnQsbPrb+hfO+MDpl9FTYn16LnzIngaBng/+a//EFTE9VXVRAvRzMVklRs9iRQBgXVXY+PzqCd9w18FlsDd1oSH3FjJgGt8sz3vaG2rAIMwwktEhgYgnkK4TNv/9mv0g/TjbEbAQ4S/TeFD3sTp6uslUEODJAJNXOgcJsRp75dNN5XvLsRHuV/nQDu2pK5AaeG+L+iVRAgSu4JGQTqfk6/eBhcm9qUts8ICApxdoHCypPYSKVYiGhtXAIix9wfKwnpivZs/en6fWpgdkBgh4VeFfq6llVrEoe/VA2JjCZsXu1SvRpmVnWCYTtFkpHpSxXwydMj5aCp9EohIFN01dgTjppoxhpVHZZXrQb4LVz1drl6DRGiVQh1VpvFJJRCBOALWyiaGjsGJILD7hJlcRfnDR3itwAm0SvBiBG5mMfxQwRtY596cKNdHq+ByQji3nnxwfCIS7sFhOf2ZV/sPlDy86/ubxpvf51wDTcZ4iXaw60p5zC5qeuPXw0KFZldQsjBLAyQefTAZL5wykJDCpz998+UOjjiMB25TEHmCz/MPvvHXiUgybBZivChq/ehDUAknzPGSTu2ri7CoWJSA7MU4pRed6lgmT2pszgWtdsTplBCSgMMktqSNw4nPGi9PEf5IWWs7uu6011NPwkS74EwsydgGAgafQsAiqZaeMaSUZLM4ho000DuOerVmO50hjQf9Xg0hPUfVMLDrn2BfAACDzQFcUAUoZkixkCTGkNdY803he7etLvnj7wcGe1v+CdXQI5aBnc3bKL6xHtATBcSFlWscJKgHZolxsrdVCWIgak7pGcuXXDw62tEHvvxUeIAPtRABMsWrHsh2PBAuLN0r5sj1KnP3Lt+YRPJFVEJDxOm14kJAexGBjEpI8y4IstepQKca71Anh3A8NLxu5kSLzFaJDSOjxXUksDwsCpKzeGEtYkf6D9KO+ra+ZWkdhdxXexOQSixNbgpDT9lgI7tm+bOTA5oPr/6qVvf1GCcgKCBCEwRWoWL9ZgLqXdox/4fqZ3X/n8odW4X34Eezg3AbELUU7Xan8wrbPx7DZXfLNZ67678z2c83HhxBrQUDPLdNXGnHHLL3d9eyafXi1/xHbCXPEOqE7eTT7ePb6xK5Zms+5KE4A6jqdAwBCSUZys//0LTzrDvjrGXqA7acvu5rHBrhu2wUjN8+uoX5pBQFUF2v/FCCldbv00xxf0bZ9/VfjJPvvme1lIxTvwLPO/2TbspFPdVFTqzhKgHOAa7+MZRkKKIAjxCsVp9HhZ1e/gvuhDQAs2wdJq57Qnnq87/dZPrrt4pO/uY4S4GW5WrAY/+iU1ivOOBU22vLc2j9gtRoW8ByBBF1Yn21JypoBO2n3gAwl5hyiBMQDUKljGQl2iIjlJqnX38UDa5oAPV54UT3Y0RX0rd5+wd5vUO1cQ5SAKKPFaHG1lpDQ1aVeV4NjNmu4067xzv5TNz3VpTrUCDIkrdl699L7l9fT2pGKE0BtscMW1pfO0LtYtKMnmmoeWHmskSTXQghvDmgJ3Gwvg0YWCdHXyLz7zc5Pjp4dVTajMk4AW3HZERvSG+IJ7g1qvRn6umabz615HJ5sFu3Fo9Cu+kkAH+uXTLw1eT9eQitwdbqJC9IDlA3DpyQTLNhRUy/lVq8dhuQfKa16eWEQvBmuh+CVz/147wN31NNoTPQogbPAAdyb/6K8kQYhXuzjWhmc7JG6nRRyzabNt37md0MnJt6+Ew7EjSlqMKh4xMAXDzrAVT3uSxf/6pLR0zc+P/hG0fb9+H0LnCILyFKyYcP4ZzH+FicZz/MIiBJJZgZ/OdLAMlYgSF2Wy0atuxrrEEJ7bUu5qfIiEOSCDurDl1c3DEU7k2cdOW2GPGRw3WEz+0q/609v+sfgMVbJJE6SvsNZu/2zzNtPcILyjifDOiH3OqAo/2aAPOcc74B4hcJJx4MSI552snA3xPZIyuSUej0JUUj0UI7y3APkXxUwb3O8d1OvvH7n+aSz7mWf+RbWpxSv2ykmeQuo0sUfXXL4+vEV70J7Gdi/hBtueHrR5LvtB9D7quKyih3Jw07xhMsrSZOcJVm0Zp08lAdLyvHFH/8z0WmPulJvbiYAPoVMmnibYmVr4SiUQr61dKk5Mpe/mZUEyKKJDeTwoSeHfTvbTOAlAAASa5VAA3iSgBxNXpBjm+DF10AuRR1AmhbIponzLWxW6danvtTTjTSxFmEagaLwK0NPXGuzfJfN/MJpXiBgASuW5nZ5FOMpdT5vgUAKZYh9uqDfp9sfW/V6oe9UxrMSYIdfXv/nSxPvfwsS+BcaAgPA3LewdwJonp7WWJT+dOzT75xKcHV0/w9dlQpLgTyGMQAAAABJRU5ErkJggg=="); + background-size: 15px !important; + background-position-y: center !important; +} +.rr-ca-serp-coupon_widget { + display: flex; + flex-direction: column; + user-select: none; + padding-top: 17px; + width: 635px; +} +.rr-ca-serp-coupon_header { + display: flex; + flex-direction: row; + margin: 0 0 17px; +} +.rr-ca-serp-coupon_header__marker { + color: #ED5050; + text-transform: uppercase; + font-weight: 400; + font-family: 'Benton', sans-serif; + font-size: 9px; + line-height: 23px; + transform: translate(0, -25%); + text-decoration: none; + margin: 0 6px; +} +.rr-ca-serp-coupon_header__marker:hover { + text-decoration: none; +} +.rr-ca-serp-coupon_header__link { + font-size: 20px; + line-height: 23px; + color: #1A0DAB; + text-decoration: none; +} +.rr-ca-serp-coupon_header__link:hover { + text-decoration: underline; + cursor: pointer; +} +.rr-ca-serp-coupon_footer { + display: flex; + flex-direction: row; + margin: 4px 0; +} +.rr-ca-serp-coupon_footer span { + color: #252525; + font-size: 13px; + line-height: 24px; + font-family: 'Benton', sans-serif; + font-weight: 600; +} +.rr-ca-serp-coupon_footer__button { + margin: 0 4px; + border: 1px solid; + border-radius: 12px; + font-family: 'Benton', sans-serif; + font-size: 13px; + line-height: 24px; + min-width: 67px; + max-width: 67px; + width: 67px; + background-color: #fff; + cursor: pointer; + text-align: center; +} +.rr-ca-serp-coupon_footer__button.rr-ca-red { + border-color: #F82C26; + color: #F82C26; +} +.rr-ca-serp-coupon_footer__button.rr-ca-red:hover { + background-color: #F82C26; + color: #fff; +} +.rr-ca-serp-coupon_footer__button.rr-ca-green { + border-color: #00AF63; + color: #00AF63; +} +.rr-ca-serp-coupon_footer__button.rr-ca-green:hover { + background-color: #00AF63; + color: #fff; +} + +.cbsp-button-mixing { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +div.ebca-takeover_layout { + position: fixed; + top: 0; + right: 0; + left: 0; + bottom: 0; + display: block; + z-index: 2147483647; +} +div.ebca-takeover_bg { + position: absolute; + top: 0; + right: 0; + left: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.5); +} +div.ebca-takeover_modal { + width: 400px; + max-width: 400px; + min-width: 400px; + margin-left: 50%; + position: absolute; + height: auto; + transform: translate(-50%, -50%); + top: 50%; + text-align: center; + background-color: #fff; + border-radius: 10px; + padding: 0 0 35px; + overflow: hidden; + display: flex; + flex-direction: column; +} +div.ebca-takeover_modal__header { + display: flex; + flex-direction: row; + height: 60px; + background: #FFF !important; + border-top: 0; +} +div.ebca-takeover_modal__close { + display: inline-block; + padding: 10px; + cursor: pointer; + position: absolute; + top: 8px; + right: 8px; + font-size: 18px; + background: none !important; + text-shadow: none; + color: #CCC; +} +div.ebca-takeover_modal__logo { + width: 100%!important; + height: 56px!important; + background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22logo%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20165.9%2049.4%22%20style%3D%22enable-background%3Anew%200%200%20165.9%2049.4%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23CCC%3B%7D%0A%3C%2Fstyle%3E%0A%3Cpolygon%20id%3D%22shape%22%20class%3D%22st0%22%20points%3D%22133.5%2C41.4%2033.2%2C41.4%2041.2%2C49.4%20%22%2F%3E%0A%3Cpath%20id%3D%22n%22%20class%3D%22st0%22%20d%3D%22M149.6%2C36.3v-16c0-3%2C2.1-5.5%2C5.1-5.5c3%2C0%2C5.1%2C2.5%2C5.1%2C5.5v16h6.2v-16c0-6.6-4.5-11.9-11.1-11.9%0A%09c-3%2C0-5.3%2C1.7-5.3%2C1.7V9h-6.2v27.2H149.6z%22%2F%3E%0A%3Cpath%20id%3D%22e%22%20class%3D%22st0%22%20d%3D%22M129.1%2C8.3c-7.2%2C0-12.3%2C6.3-12.3%2C14.3c0%2C8.4%2C6.4%2C14.3%2C12.9%2C14.3c3.3%2C0%2C7.4-1.1%2C10.9-6.1l-5.5-3.2%0A%09c-4.2%2C6.2-11.3%2C3.1-12.1-3.2l17.8%2C0C142.4%2C14.8%2C136.1%2C8.3%2C129.1%2C8.3z%20M134.5%2C19.1h-11.1C124.7%2C12.8%2C133.3%2C12.4%2C134.5%2C19.1z%22%2F%3E%0A%3Cpath%20id%3D%22t%22%20class%3D%22st0%22%20d%3D%22M114.8%2C29.8c-0.6%2C0.4-1.3%2C0.7-2.1%2C0.7c-1%2C0-2.9-0.8-2.9-3.3V15.5h5.3V9h-5.3l0-6.8h-6.2l0%2C6.8h-3.3v6.5%0A%09h3.3v11.7c0%2C6.1%2C4.6%2C9.7%2C9.2%2C9.7c1.7%2C0%2C4.1-0.6%2C6-1.7L114.8%2C29.8z%22%2F%3E%0A%3Cpath%20id%3D%22u%22%20class%3D%22st0%22%20d%3D%22M92%2C9v16c0%2C3-2.1%2C5.5-5.1%2C5.5c-3%2C0-5.1-2.5-5.1-5.5V9h-6.2v16c0%2C6.6%2C4.5%2C11.9%2C11.1%2C11.9%0A%09c3%2C0%2C5.3-1.7%2C5.3-1.7v1h6.2V9H92z%22%2F%3E%0A%3Cpolygon%20id%3D%22k%22%20class%3D%22st0%22%20points%3D%2264%2C21.8%2074.6%2C9%2066%2C9%2058.5%2C18.5%2058.5%2C0%2052.2%2C0%2052.2%2C36.3%2058.5%2C36.3%2058.5%2C25.1%2067.7%2C36.3%20%0A%0976.3%2C36.3%20%22%2F%3E%0A%3Cpath%20id%3D%22a%22%20class%3D%22st0%22%20d%3D%22M42.5%2C9v1.2c-1.9-1.2-3.5-1.9-5.8-1.9c-7%2C0-12.4%2C6.4-12.4%2C14.3c0%2C7.9%2C5.3%2C14.3%2C12.4%2C14.3%0A%09c2.3%2C0%2C4-0.7%2C5.8-1.9v1.2h6.2V9H42.5z%20M36.6%2C30.4c-3.5%2C0-6-3.4-6-7.7c0-4.3%2C2.5-7.7%2C6-7.7c3.5%2C0%2C5.9%2C3.4%2C5.9%2C7.7%0A%09C42.6%2C27%2C40.1%2C30.4%2C36.6%2C30.4z%22%2F%3E%0A%3Cpath%20id%3D%22R%22%20class%3D%22st0%22%20d%3D%22M6.5%2C36.3V25.7H11l7.9%2C10.5H27l-9.6-12.7c3-2.1%2C4.9-5.6%2C4.9-9.6c0-6.5-5.3-11.7-11.7-11.7H0v34H6.5z%0A%09%20M6.5%2C8.7h4.2c2.9%2C0%2C5.3%2C2.4%2C5.3%2C5.3c0%2C2.9-2.4%2C5.3-5.3%2C5.3H6.5V8.7z%22%2F%3E%0A%3C%2Fsvg%3E%0A") !important; + background-size: auto 100% !important; + background-position: center; + background-repeat: no-repeat; + cursor: default; + margin-bottom: 10px; +} +div.ebca-takeover_modal__title { + font-size: 21px; + color: #222; + cursor: default; + margin: 16px 0 !important; + line-height: 1em; + font-family: 'Benton', sans-serif !important; + font-weight: 600; +} +div.ebca-takeover_modal__text { + background-size: 100%; + text-align: center; + font-size: 18px; + font-weight: 400; + text-decoration: none; + cursor: default; + width: auto; + text-wrap: normal; + padding: 8px 36px !important; + line-height: 23px; + font-family: 'Benton', sans-serif !important; + color: #222; +} +div.ebca-takeover_modal__button { + height: auto; + padding: 10px 0; + border-radius: 0; + font-family: 'Benton', sans-serif !important; +} +div.ebca-takeover_modal__button > button { + cursor: pointer; + min-width: 220px; + text-align: center; + color: #FFF !important; + text-decoration: none; + font-size: 15px; + display: inline-block; + margin: 10px 8px; + white-space: nowrap; + width: auto !important; + font-weight: 400; + font-family: 'Benton', sans-serif !important; + text-shadow: none; + background: #ED5050 !important; + box-shadow: none; + border-radius: 19px; + height: 40px; + line-height: 40px; + transition: 0.2s; + border: 1px solid #ED5050 !important; + padding: 0 40px; +} +div.ebca-takeover_modal__button > button:hover { + text-decoration: none; + background: #fff !important; + color: #ED5050 !important; +} +div.ebca-takeover_modal__button > button:before { + display: none; +} +div.ebca-takeover_modal__button__footer { + padding: 16px; + float: none; + border: 0; +} + +.cbsp-button-mixing { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.slide-fade-enter, +.slide-fade-leave-active { + transform: translateY(-20px); + opacity: 0; +} +.slide-fade-enter-active, +.slide-fade-leave-active { + transition: 0.5s; +} +.ebca-giftcard { + font-family: 'Benton', sans-serif; + position: fixed; + right: 10px; + top: 10px; + border-radius: 4px; + box-shadow: rgba(0, 0, 0, 0.5) 0 0 10px; + background: linear-gradient(270deg, #20A1E6 0%, #311293 100%); + font-size: 100%; + z-index: 2147483647 !important; + box-sizing: content-box !important; + display: flex; + flex-direction: column; + height: 217px; + min-width: 421px; + overflow: hidden; +} +.ebca-giftcard * { + box-sizing: border-box !important; + vertical-align: middle; + line-height: normal; + padding: 0; + margin: 0; +} +.ebca-giftcard_body { + display: flex; + flex-direction: column; + padding: 25px 0; + text-align: center; + height: 136px; +} +.ebca-giftcard_body__logo { + height: 30px; + width: 100%; + background-position: center; + background-size: contain; + background-repeat: no-repeat; + background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22logo%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20165.9%2049.4%22%20style%3D%22enable-background%3Anew%200%200%20165.9%2049.4%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23FFF%3B%7D%0A%3C%2Fstyle%3E%0A%3Cpolygon%20id%3D%22shape%22%20class%3D%22st0%22%20points%3D%22133.5%2C41.4%2033.2%2C41.4%2041.2%2C49.4%20%22%2F%3E%0A%3Cpath%20id%3D%22n%22%20class%3D%22st0%22%20d%3D%22M149.6%2C36.3v-16c0-3%2C2.1-5.5%2C5.1-5.5c3%2C0%2C5.1%2C2.5%2C5.1%2C5.5v16h6.2v-16c0-6.6-4.5-11.9-11.1-11.9%0A%09c-3%2C0-5.3%2C1.7-5.3%2C1.7V9h-6.2v27.2H149.6z%22%2F%3E%0A%3Cpath%20id%3D%22e%22%20class%3D%22st0%22%20d%3D%22M129.1%2C8.3c-7.2%2C0-12.3%2C6.3-12.3%2C14.3c0%2C8.4%2C6.4%2C14.3%2C12.9%2C14.3c3.3%2C0%2C7.4-1.1%2C10.9-6.1l-5.5-3.2%0A%09c-4.2%2C6.2-11.3%2C3.1-12.1-3.2l17.8%2C0C142.4%2C14.8%2C136.1%2C8.3%2C129.1%2C8.3z%20M134.5%2C19.1h-11.1C124.7%2C12.8%2C133.3%2C12.4%2C134.5%2C19.1z%22%2F%3E%0A%3Cpath%20id%3D%22t%22%20class%3D%22st0%22%20d%3D%22M114.8%2C29.8c-0.6%2C0.4-1.3%2C0.7-2.1%2C0.7c-1%2C0-2.9-0.8-2.9-3.3V15.5h5.3V9h-5.3l0-6.8h-6.2l0%2C6.8h-3.3v6.5%0A%09h3.3v11.7c0%2C6.1%2C4.6%2C9.7%2C9.2%2C9.7c1.7%2C0%2C4.1-0.6%2C6-1.7L114.8%2C29.8z%22%2F%3E%0A%3Cpath%20id%3D%22u%22%20class%3D%22st0%22%20d%3D%22M92%2C9v16c0%2C3-2.1%2C5.5-5.1%2C5.5c-3%2C0-5.1-2.5-5.1-5.5V9h-6.2v16c0%2C6.6%2C4.5%2C11.9%2C11.1%2C11.9%0A%09c3%2C0%2C5.3-1.7%2C5.3-1.7v1h6.2V9H92z%22%2F%3E%0A%3Cpolygon%20id%3D%22k%22%20class%3D%22st0%22%20points%3D%2264%2C21.8%2074.6%2C9%2066%2C9%2058.5%2C18.5%2058.5%2C0%2052.2%2C0%2052.2%2C36.3%2058.5%2C36.3%2058.5%2C25.1%2067.7%2C36.3%20%0A%0976.3%2C36.3%20%22%2F%3E%0A%3Cpath%20id%3D%22a%22%20class%3D%22st0%22%20d%3D%22M42.5%2C9v1.2c-1.9-1.2-3.5-1.9-5.8-1.9c-7%2C0-12.4%2C6.4-12.4%2C14.3c0%2C7.9%2C5.3%2C14.3%2C12.4%2C14.3%0A%09c2.3%2C0%2C4-0.7%2C5.8-1.9v1.2h6.2V9H42.5z%20M36.6%2C30.4c-3.5%2C0-6-3.4-6-7.7c0-4.3%2C2.5-7.7%2C6-7.7c3.5%2C0%2C5.9%2C3.4%2C5.9%2C7.7%0A%09C42.6%2C27%2C40.1%2C30.4%2C36.6%2C30.4z%22%2F%3E%0A%3Cpath%20id%3D%22R%22%20class%3D%22st0%22%20d%3D%22M6.5%2C36.3V25.7H11l7.9%2C10.5H27l-9.6-12.7c3-2.1%2C4.9-5.6%2C4.9-9.6c0-6.5-5.3-11.7-11.7-11.7H0v34H6.5z%0A%09%20M6.5%2C8.7h4.2c2.9%2C0%2C5.3%2C2.4%2C5.3%2C5.3c0%2C2.9-2.4%2C5.3-5.3%2C5.3H6.5V8.7z%22%2F%3E%0A%3C%2Fsvg%3E%0A") !important; +} +.ebca-giftcard_body__description { + color: #fff; + font-size: 14px; + line-height: 20px; + padding: 15px 15px 0; +} +.ebca-giftcard_footer { + width: 100%; + background: #fff; + display: flex; + flex-direction: row; + height: 81px; + padding: 15px; + align-items: center; + justify-content: space-between; +} +.ebca-giftcard_footer__logo { + background-position: center; + background-size: contain; + background-repeat: no-repeat; + height: 51px; + width: 85px; +} +.ebca-giftcard_footer__button { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; + max-width: 288px !important; + padding: 10px 23px !important; + line-height: 20px !important; + font-size: 15px !important; + height: 40px !important; +} +.ebca-giftcard_footer__button:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.ebca-giftcard_close { + background-size: 100% !important; + text-align: center !important; + font-size: 14px !important; + font-family: "Roboto", sans-serif !important; + font-weight: 300 !important; + text-decoration: underline !important; + cursor: pointer !important; + position: absolute !important; + top: 10px !important; + right: 10px !important; + color: #fff !important; +} + +.cbsp-button-mixing[data-v-07dea119] { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing[data-v-07dea119]:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.slide-fade-enter[data-v-07dea119], +.slide-fade-enter-active[data-v-07dea119], +.slide-fade-enter-to[data-v-07dea119] { + transform: translateY(-20px) !important; + opacity: 0!important; +} +.slide-fade-leave[data-v-07dea119], +.slide-fade-leave-active[data-v-07dea119] { + transform: translateY(-20px) !important; + opacity: 0!important; +} +.slide-fade-enter-active[data-v-07dea119], +.slide-fade-leave-active[data-v-07dea119], +.slide-fade-enter[data-v-07dea119], +.slide-fade-leave[data-v-07dea119] { + transition: 0.5s !important; +} +.ebca-coupons-slider[data-v-07dea119] { + transition: 0.5s !important; + position: fixed !important; + color: #444 !important; + top: 10px; + background: #fff !important; + z-index: 2147483647 !important; + font-family: 'Open Sans', sans-serif !important; + min-width: 250px !important; + max-width: 250px !important; + text-align: center !important; + display: flex; + flex-direction: column; + border: none !important; + right: 10px !important; + border-radius: 5px; + overflow: hidden; + padding: 30px 22px 40px !important; + box-sizing: border-box !important; + align-items: center; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important; +} +.ebca-coupons-slider_logo[data-v-07dea119] { + display: block !important; + height: 18px !important; + background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22logo%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20165.9%2049.4%22%20style%3D%22enable-background%3Anew%200%200%20165.9%2049.4%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3Aurl(%23grad)%3B%7D%0A%3C%2Fstyle%3E%0A%3ClinearGradient%20id%3D%22grad%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%220%22%20y1%3D%2220.35515%22%20x2%3D%22134%22%20y2%3D%2220.35515%22%3E%0A%09%3Cstop%20offset%3D%220%22%20style%3D%22stop-color%3A%235A5CC1%22%2F%3E%0A%09%3Cstop%20offset%3D%220.50639%22%20style%3D%22stop-color%3A%23763AAF%22%2F%3E%0A%09%3Cstop%20offset%3D%221%22%20style%3D%22stop-color%3A%2392199E%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3Cpolygon%20id%3D%22shape%22%20class%3D%22st0%22%20points%3D%22133.5%2C41.4%2033.2%2C41.4%2041.2%2C49.4%20%22%2F%3E%0A%3Cpath%20id%3D%22n%22%20class%3D%22st0%22%20d%3D%22M149.6%2C36.3v-16c0-3%2C2.1-5.5%2C5.1-5.5c3%2C0%2C5.1%2C2.5%2C5.1%2C5.5v16h6.2v-16c0-6.6-4.5-11.9-11.1-11.9%0A%09c-3%2C0-5.3%2C1.7-5.3%2C1.7V9h-6.2v27.2H149.6z%22%2F%3E%0A%3Cpath%20id%3D%22e%22%20class%3D%22st0%22%20d%3D%22M129.1%2C8.3c-7.2%2C0-12.3%2C6.3-12.3%2C14.3c0%2C8.4%2C6.4%2C14.3%2C12.9%2C14.3c3.3%2C0%2C7.4-1.1%2C10.9-6.1l-5.5-3.2%0A%09c-4.2%2C6.2-11.3%2C3.1-12.1-3.2l17.8%2C0C142.4%2C14.8%2C136.1%2C8.3%2C129.1%2C8.3z%20M134.5%2C19.1h-11.1C124.7%2C12.8%2C133.3%2C12.4%2C134.5%2C19.1z%22%2F%3E%0A%3Cpath%20id%3D%22t%22%20class%3D%22st0%22%20d%3D%22M114.8%2C29.8c-0.6%2C0.4-1.3%2C0.7-2.1%2C0.7c-1%2C0-2.9-0.8-2.9-3.3V15.5h5.3V9h-5.3l0-6.8h-6.2l0%2C6.8h-3.3v6.5%0A%09h3.3v11.7c0%2C6.1%2C4.6%2C9.7%2C9.2%2C9.7c1.7%2C0%2C4.1-0.6%2C6-1.7L114.8%2C29.8z%22%2F%3E%0A%3Cpath%20id%3D%22u%22%20class%3D%22st0%22%20d%3D%22M92%2C9v16c0%2C3-2.1%2C5.5-5.1%2C5.5c-3%2C0-5.1-2.5-5.1-5.5V9h-6.2v16c0%2C6.6%2C4.5%2C11.9%2C11.1%2C11.9%0A%09c3%2C0%2C5.3-1.7%2C5.3-1.7v1h6.2V9H92z%22%2F%3E%0A%3Cpolygon%20id%3D%22k%22%20class%3D%22st0%22%20points%3D%2264%2C21.8%2074.6%2C9%2066%2C9%2058.5%2C18.5%2058.5%2C0%2052.2%2C0%2052.2%2C36.3%2058.5%2C36.3%2058.5%2C25.1%2067.7%2C36.3%20%0A%0976.3%2C36.3%20%22%2F%3E%0A%3Cpath%20id%3D%22a%22%20class%3D%22st0%22%20d%3D%22M42.5%2C9v1.2c-1.9-1.2-3.5-1.9-5.8-1.9c-7%2C0-12.4%2C6.4-12.4%2C14.3c0%2C7.9%2C5.3%2C14.3%2C12.4%2C14.3%0A%09c2.3%2C0%2C4-0.7%2C5.8-1.9v1.2h6.2V9H42.5z%20M36.6%2C30.4c-3.5%2C0-6-3.4-6-7.7c0-4.3%2C2.5-7.7%2C6-7.7c3.5%2C0%2C5.9%2C3.4%2C5.9%2C7.7%0A%09C42.6%2C27%2C40.1%2C30.4%2C36.6%2C30.4z%22%2F%3E%0A%3Cpath%20id%3D%22R%22%20class%3D%22st0%22%20d%3D%22M6.5%2C36.3V25.7H11l7.9%2C10.5H27l-9.6-12.7c3-2.1%2C4.9-5.6%2C4.9-9.6c0-6.5-5.3-11.7-11.7-11.7H0v34H6.5z%0A%09%20M6.5%2C8.7h4.2c2.9%2C0%2C5.3%2C2.4%2C5.3%2C5.3c0%2C2.9-2.4%2C5.3-5.3%2C5.3H6.5V8.7z%22%2F%3E%0A%3C%2Fsvg%3E%0A") !important; + background-repeat: no-repeat !important; + background-position: center !important; + background-size: contain !important; + width: 100% !important; +} +.ebca-coupons-slider_icon[data-v-07dea119] { + display: block; + height: 72px; + object-fit: contain; + margin: 10px auto 5px; + text-align: center; +} +.ebca-coupons-slider_title[data-v-07dea119] { + color: #252525; + font-size: 18px; + line-height: 22px; + font-family: 'Benton', sans-serif; + font-weight: bold; + margin-bottom: 20px; +} +.ebca-coupons-slider .ebca-coupons-close[data-v-07dea119] { + background: none; + width: 17px; + height: 17px; + display: inline-block; + padding: 0 !important; + float: right; + cursor: pointer; + position: absolute; + top: 13px; + right: 13px; + font-size: 17px !important; + color: #888 !important; +} +.ebca-coupons-slider button.ebca-coupons-button.cbsp-coupons-button[data-v-07dea119] { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; + min-width: 170px!important; + max-width: 170px!important; + padding: 12px 0 !important; +} +.ebca-coupons-slider button.ebca-coupons-button.cbsp-coupons-button[data-v-07dea119]:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.ebca-coupons-slider button.ebca-coupons-button.cbsp-coupons-button.fr[data-v-07dea119] { + min-width: 206px !important; + max-width: 206px !important; +} + +.cbsp-button-mixing[data-v-e1802e52] { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing[data-v-e1802e52]:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.ebca-coupons_referral[data-v-e1802e52] { + margin-top: 25px !important; + font-family: 'Benton', sans-serif !important; + color: #434343 !important; + font-size: 14px !important; +} +.ebca-coupons_share[data-v-e1802e52] { + width: auto !important; + display: block !important; +} +.ebca-coupons_share__stars[data-v-e1802e52] { + margin: 15px auto 0 !important; +} +.ebca-coupons_share__stars a[data-v-e1802e52] { + cursor: pointer; +} +.ebca-coupons_share__buttons[data-v-e1802e52] { + margin: 12px; + display: flex; + justify-content: center; + box-sizing: content-box; +} +.ebca-coupons_share__buttons button[data-v-e1802e52] { + min-width: auto; + border-radius: 50px!important; + padding: 8px!important; + width: 18px!important; + height: 18px!important; + border-color: transparent !important; + background-color: #EBEBEB !important; + color: #252525 !important; + margin: 0 8px!important; + font-size: 14px; + box-sizing: content-box; + cursor: pointer; +} +.ebca-coupons_share__buttons button[data-v-e1802e52]:focus { + outline: none; +} +.ebca-coupons_share__buttons button i[data-v-e1802e52] { + margin: 0; +} +.ebca-coupons_share__buttons button span[data-v-e1802e52] { + display: none; +} +.ebca-coupons-text[data-v-e1802e52], +.ebca-coupons-subtext[data-v-e1802e52], +.ebca-coupons-review-header[data-v-e1802e52] { + font-family: 'Benton', sans-serif !important; + font-size: 14px !important; + color: #888 !important; + font-weight: 400 !important; + padding: 8px !important; + margin: 8px !important; + background-color: #fff !important; + text-align: center; +} +.ebca-coupons-text b[data-v-e1802e52], +.ebca-coupons-subtext b[data-v-e1802e52], +.ebca-coupons-review-header b[data-v-e1802e52] { + font-weight: 600 !important; +} +.ebca-coupons-review-header[data-v-e1802e52] { + font-size: 24px !important; + font-weight: 800 !important; +} +.ebca-coupons-button[data-v-e1802e52] { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; + margin: 25px !important; +} +.ebca-coupons-button[data-v-e1802e52]:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.ebca-coupons-subtext[data-v-e1802e52] { + text-align: left; + margin: 0 !important; + line-height: 14px !important; + font-size: 12px !important; + padding: 0 !important; + font-weight: 400 !important; +} + +.cbsp-button-mixing { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.ebca-coupons-close { + background: none; + width: 17px; + height: 17px; + display: inline-block; + float: right; + cursor: pointer; + position: absolute; + top: 8px; + right: 8px; + font-size: 18px !important; + padding: 10px !important; + color: #888 !important; +} +.ebca-coupons-close:hover { + cursor: pointer; +} +.ebca-coupons-text { + line-height: 30px !important; + color: #333 !important; + font-size: 24px !important; + font-weight: 500 !important; + font-family: 'Benton', sans-serif !important; + max-width: 430px !important; + margin: 40px auto 25px !important; +} +.ebca-coupons-button { + cursor: pointer !important; + font-weight: 400 !important; + font-family: 'ProximaNova', sans-serif !important; + display: inline-block !important; + margin: 10px !important; + background-color: #ED5050 !important; + height: 39px !important; + line-height: 39px !important; + font-size: 15px !important; + border-radius: 19.5px !important; + padding: 0 40px !important; + color: #fff !important; + text-decoration: none !important; + border: 1px solid #ED5050 !important; + transition: 0.2s; +} +.ebca-coupons-button:hover { + color: #ED5050 !important; + background-color: #fff !important; +} + +.cbsp-button-mixing[data-v-54eb0c10] { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing[data-v-54eb0c10]:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.ebca-coupons-close[data-v-54eb0c10] { + background: none; + width: 17px; + height: 17px; + display: inline-block; + float: right; + cursor: pointer; + position: absolute; + top: 8px; + right: 8px; + font-size: 18px !important; + padding: 10px !important; + color: #888 !important; +} +.ebca-coupons_confetti[data-v-54eb0c10] { + margin-top: -20px; + margin-left: 20px; + height: 104px; + object-fit: contain; +} +.ebca-coupons_title[data-v-54eb0c10] { + font: 'Benton', sans-serif; + font-weight: 400; + color: #252525; + font-size: 24px; + line-height: 30px; + margin: 16px auto; +} +.ebca-coupons_table[data-v-54eb0c10] { + border-width: 1px 0 !important; + border-style: solid !important; + border-color: #EBEBEB !important; + width: 300px !important; + font-size: 14px !important; + font-family: 'Benton', sans-serif !important; + display: flex; + flex-direction: column; + margin: 8px auto; +} +.ebca-coupons_table__row[data-v-54eb0c10] { + display: flex; + flex-direction: row; + justify-content: space-between; + line-height: 24px; + padding: 2px; +} +.ebca-coupons_table__row__left[data-v-54eb0c10], +.ebca-coupons_table__row__right[data-v-54eb0c10] { + color: #333; + white-space: nowrap; +} +.ebca-coupons_table__right[data-v-54eb0c10] { + float: right; +} +.ebca-coupons_table__right i .ebca-coupons_tooltip[data-v-54eb0c10] { + display: none; + position: absolute; + max-width: 263px; + min-width: 263px; + padding: 20px; + box-sizing: border-box; + right: -10px; + transform: translate(100%, -50%); + top: 50%; + background-color: #fff; + box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); +} +.ebca-coupons_table__right i .ebca-coupons_tooltip[data-v-54eb0c10]:before { + content: ""; + display: block; + position: absolute; + background-color: white; + height: 10px; + width: 10px; + left: 0; + top: 50%; + transform: translate(-50%, -50%) rotate(45deg); + box-shadow: -1px 1px 1px 0px rgba(0, 0, 0, 0.3); +} +.ebca-coupons_table__right i:hover .ebca-coupons_tooltip[data-v-54eb0c10] { + display: block; +} +.ebca-coupons-text[data-v-54eb0c10], +.ebca-coupons-subtext[data-v-54eb0c10], +.ebca-coupons-review-header[data-v-54eb0c10] { + font-family: 'Benton', sans-serif !important; + font-size: 14px !important; + color: #888 !important; + font-weight: 400 !important; + padding: 8px !important; + margin: 8px !important; + background-color: #fff !important; + text-align: center; +} +.ebca-coupons-text b[data-v-54eb0c10], +.ebca-coupons-subtext b[data-v-54eb0c10], +.ebca-coupons-review-header b[data-v-54eb0c10] { + font-weight: 600 !important; +} +.ebca-coupons-review-header[data-v-54eb0c10] { + font-size: 24px !important; + font-weight: 800 !important; +} +.ebca-coupons-button[data-v-54eb0c10] { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; + margin: 25px !important; +} +.ebca-coupons-button[data-v-54eb0c10]:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.ebca-coupons-subtext[data-v-54eb0c10] { + text-align: left; + margin: 0 !important; + line-height: 14px !important; + font-size: 12px !important; + padding: 0 !important; + font-weight: 400 !important; +} +.ebca-coupons-description[data-v-54eb0c10] { + position: relative; +} + +.cbsp-button-mixing[data-v-73ba5c65] { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing[data-v-73ba5c65]:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.slide-fade-enter-active[data-v-73ba5c65], +.slide-fade-leave-active[data-v-73ba5c65] { + transition: width 0.5s; +} +.ebca-coupons-close[data-v-73ba5c65] { + background: none; + width: 17px; + height: 17px; + display: inline-block; + float: right; + cursor: pointer; + position: absolute; + top: 8px; + right: 8px; + font-size: 18px !important; + padding: 10px !important; + color: #888 !important; +} +.ebca-coupons_title[data-v-73ba5c65] { + margin-top: 22px; + text-align: center; + line-height: 30px; + font-size: 24px; + font-family: 'Benton', sans-serif; + font-weight: 500; +} +.ebca-coupons_code[data-v-73ba5c65] { + margin: 16px auto 20px; + font-weight: 400; + font-family: 'Benton', sans-serif; + font-size: 16px; + line-height: 23px; + text-align: center; +} +.ebca-coupons_code b[data-v-73ba5c65] { + font-weight: 600; +} +.ebca-coupons_subtext[data-v-73ba5c65] { + margin: 20px auto; + line-height: 19px; + font-size: 16px; + color: #434343; + font-weight: 300; +} +.ebca-coupons-loader[data-v-73ba5c65] { + border-radius: 25px !important; + width: 0; + height: 50px !important; + display: inline-block !important; + margin: 1px !important; + padding: 0 !important; + background: linear-gradient(36.89deg, #871E8D 10%, #478AD9 100%) !important; + min-width: 50px !important; +} +.ebca-coupons-loader-bg[data-v-73ba5c65] { + border-radius: 25px !important; + background: #D8D8D8 !important; + background-repeat: no-repeat !important; + display: block !important; + text-align: left !important; + height: 50px !important; + overflow: hidden; +} +.ebca-coupons-loader-bg[data-v-73ba5c65] { + margin: 0 60px !important; + padding: 0 !important; +} + +.cbsp-button-mixing { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.ebca-coupon-overlay { + font-family: 'Benton', sans-serif !important; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important; + position: fixed; + top: 50%; + left: 50%; + box-sizing: border-box; + transform: translate(-50%, -50%); + width: 600px; + padding: 30px; + background-color: white; + text-align: center; + text-transform: none; + align-items: center; +} +.ebca-coupon-overlay hr { + margin: 0; + padding: 0; + border: 0; + border-bottom: 1px solid #aaa; +} +.ebca-coupon-overlay br { + display: block; +} +.ebca-coupon-overlay-background { + position: fixed; + top: 0; + right: 0; + left: 0; + bottom: 0; + z-index: 2147483647; + background-color: rgba(0, 0, 0, 0.5); +} +.ebca-coupon-overlay-logo { + background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22logo%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20165.9%2049.4%22%20style%3D%22enable-background%3Anew%200%200%20165.9%2049.4%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3Aurl(%23grad)%3B%7D%0A%3C%2Fstyle%3E%0A%3ClinearGradient%20id%3D%22grad%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%220%22%20y1%3D%2220.35515%22%20x2%3D%22134%22%20y2%3D%2220.35515%22%3E%0A%09%3Cstop%20offset%3D%220%22%20style%3D%22stop-color%3A%235A5CC1%22%2F%3E%0A%09%3Cstop%20offset%3D%220.50639%22%20style%3D%22stop-color%3A%23763AAF%22%2F%3E%0A%09%3Cstop%20offset%3D%221%22%20style%3D%22stop-color%3A%2392199E%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3Cpolygon%20id%3D%22shape%22%20class%3D%22st0%22%20points%3D%22133.5%2C41.4%2033.2%2C41.4%2041.2%2C49.4%20%22%2F%3E%0A%3Cpath%20id%3D%22n%22%20class%3D%22st0%22%20d%3D%22M149.6%2C36.3v-16c0-3%2C2.1-5.5%2C5.1-5.5c3%2C0%2C5.1%2C2.5%2C5.1%2C5.5v16h6.2v-16c0-6.6-4.5-11.9-11.1-11.9%0A%09c-3%2C0-5.3%2C1.7-5.3%2C1.7V9h-6.2v27.2H149.6z%22%2F%3E%0A%3Cpath%20id%3D%22e%22%20class%3D%22st0%22%20d%3D%22M129.1%2C8.3c-7.2%2C0-12.3%2C6.3-12.3%2C14.3c0%2C8.4%2C6.4%2C14.3%2C12.9%2C14.3c3.3%2C0%2C7.4-1.1%2C10.9-6.1l-5.5-3.2%0A%09c-4.2%2C6.2-11.3%2C3.1-12.1-3.2l17.8%2C0C142.4%2C14.8%2C136.1%2C8.3%2C129.1%2C8.3z%20M134.5%2C19.1h-11.1C124.7%2C12.8%2C133.3%2C12.4%2C134.5%2C19.1z%22%2F%3E%0A%3Cpath%20id%3D%22t%22%20class%3D%22st0%22%20d%3D%22M114.8%2C29.8c-0.6%2C0.4-1.3%2C0.7-2.1%2C0.7c-1%2C0-2.9-0.8-2.9-3.3V15.5h5.3V9h-5.3l0-6.8h-6.2l0%2C6.8h-3.3v6.5%0A%09h3.3v11.7c0%2C6.1%2C4.6%2C9.7%2C9.2%2C9.7c1.7%2C0%2C4.1-0.6%2C6-1.7L114.8%2C29.8z%22%2F%3E%0A%3Cpath%20id%3D%22u%22%20class%3D%22st0%22%20d%3D%22M92%2C9v16c0%2C3-2.1%2C5.5-5.1%2C5.5c-3%2C0-5.1-2.5-5.1-5.5V9h-6.2v16c0%2C6.6%2C4.5%2C11.9%2C11.1%2C11.9%0A%09c3%2C0%2C5.3-1.7%2C5.3-1.7v1h6.2V9H92z%22%2F%3E%0A%3Cpolygon%20id%3D%22k%22%20class%3D%22st0%22%20points%3D%2264%2C21.8%2074.6%2C9%2066%2C9%2058.5%2C18.5%2058.5%2C0%2052.2%2C0%2052.2%2C36.3%2058.5%2C36.3%2058.5%2C25.1%2067.7%2C36.3%20%0A%0976.3%2C36.3%20%22%2F%3E%0A%3Cpath%20id%3D%22a%22%20class%3D%22st0%22%20d%3D%22M42.5%2C9v1.2c-1.9-1.2-3.5-1.9-5.8-1.9c-7%2C0-12.4%2C6.4-12.4%2C14.3c0%2C7.9%2C5.3%2C14.3%2C12.4%2C14.3%0A%09c2.3%2C0%2C4-0.7%2C5.8-1.9v1.2h6.2V9H42.5z%20M36.6%2C30.4c-3.5%2C0-6-3.4-6-7.7c0-4.3%2C2.5-7.7%2C6-7.7c3.5%2C0%2C5.9%2C3.4%2C5.9%2C7.7%0A%09C42.6%2C27%2C40.1%2C30.4%2C36.6%2C30.4z%22%2F%3E%0A%3Cpath%20id%3D%22R%22%20class%3D%22st0%22%20d%3D%22M6.5%2C36.3V25.7H11l7.9%2C10.5H27l-9.6-12.7c3-2.1%2C4.9-5.6%2C4.9-9.6c0-6.5-5.3-11.7-11.7-11.7H0v34H6.5z%0A%09%20M6.5%2C8.7h4.2c2.9%2C0%2C5.3%2C2.4%2C5.3%2C5.3c0%2C2.9-2.4%2C5.3-5.3%2C5.3H6.5V8.7z%22%2F%3E%0A%3C%2Fsvg%3E%0A"); + text-align: left; + display: block; + height: 18px; + background-size: contain; + background-repeat: no-repeat; + width: 60px; + padding: 0; + position: absolute; +} + +.cbsp-button-mixing { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.slide-fade-enter, +.slide-fade-leave-active { + transform: translateY(-20px); + opacity: 0; +} +.slide-fade-enter-active, +.slide-fade-leave-active { + transition: 0.5s; +} +.ebca-notification { + font-family: 'Benton', sans-serif; + position: fixed; + right: 10px; + top: 10px; + width: auto !important; + border-radius: 4px; + box-shadow: rgba(0, 0, 0, 0.5) 0 0 10px; + background: #fff; + font-size: 100%; + overflow: visible; + z-index: 2147483647 !important; + box-sizing: content-box !important; +} +.ebca-notification * { + box-sizing: content-box !important; + vertical-align: middle; + line-height: normal; + padding: 0; + margin: 0; +} +.ebca-notification-activated { + display: inline-block; + padding: 0 40px; + font-size: 16px; + line-height: 20px; + font-weight: 600; + min-width: 160px; + text-align: center; +} +.ebca-notification-promo { + color: #929ca0; + background: #f1f1f1; + box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1); +} +.ebca-notification-promo .ebca-promo-h1 { + font-size: 40px; + line-height: 40px; + font-weight: 800; + float: left; + width: 33%; + text-align: right; +} +.ebca-notification-promo .ebca-promo-h2 { + font-size: 14px; + line-height: 14px; + font-weight: 600; + float: left; + margin: 7px; +} +.ebca-notification-promo .ebca-promo-h2 small { + font-weight: 400; + font-size: 12px; + line-height: 12px; +} +.ebca-notification-close { + background-size: 100%; + text-align: center; + font-size: 14px; + font-family: "Roboto", sans-serif; + font-weight: 300; + text-decoration: underline; + color: #888; + cursor: pointer; + position: absolute; + top: 10px; + right: 10px; +} +.ebca-notification-button { + position: relative; + cursor: pointer; + min-width: 220px; + height: 40px; + text-align: center; + color: #FFF !important; + text-decoration: none; + line-height: 43px; + font-size: 15px; + display: block; + margin: 10px 8px; + padding: 0 8px; + white-space: nowrap; + border-radius: 5px; + width: auto !important; + font-weight: 400; + font-family: 'Benton', sans-serif !important; +} +.ebca-notification-button.red { + color: #fff !important; + background: #ED5050; + box-shadow: none; + border-radius: 19px; + margin: 16px 20px 16px 10px; + transition: 0.2s; + border: 1px solid #ED5050 !important; +} +.ebca-notification-button.red:active { + top: 0; +} +.ebca-notification-button.red:before { + display: none; +} +.ebca-notification-button.red:hover { + background: #fff !important; + color: #ED5050 !important; +} +.ebca-notification-button.ebca-notification-button-recommended { + white-space: nowrap; + margin-top: 5px; + margin-bottom: 10px; +} +.ebca-notification-button:active { + -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 -1px 0 rgba(255, 255, 255, 0.1) inset; + top: 5px; +} +.ebca-notification-bonus { + border-top: 1px solid #ddd; + padding: 10px; + background: #EBEBEB; + font-size: 14px; + display: flex; + align-items: center; + align-content: center; + font-family: 'ProximaNova', sans-serif; +} +.ebca-notification-bonus.ebca-notification-promo { + background: #000; + color: #fff; + border-top: #000; +} +.ebca-notification-bonus .ebca-bonus-description { + color: #000; + width: 100%; +} +.ebca-notification-bonus > i { + padding: 0 10px; + font-size: 18px; + color: #000; +} +.ebca-notification-bonus .ebca-notification-bonus-expires { + float: right; + padding-left: 20px; + white-space: nowrap; + color: #e10b14; + font-size: 12px; + line-height: 14px; +} +.ebca-notification-bonus .ebca-notification-bonus-expires > i { + padding: 0 4px; + font-size: 14px; + line-height: 14px; +} +.ebca-notification-logo { + display: inline-block !important; + width: 104px !important; + height: 64px !important; + margin: 0 !important; + background-position: center !important; + background-repeat: no-repeat !important; + position: relative !important; + z-index: 10 !important; + background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22logo%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20165.9%2049.4%22%20style%3D%22enable-background%3Anew%200%200%20165.9%2049.4%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%23FFF%3B%7D%0A%3C%2Fstyle%3E%0A%3Cpolygon%20id%3D%22shape%22%20class%3D%22st0%22%20points%3D%22133.5%2C41.4%2033.2%2C41.4%2041.2%2C49.4%20%22%2F%3E%0A%3Cpath%20id%3D%22n%22%20class%3D%22st0%22%20d%3D%22M149.6%2C36.3v-16c0-3%2C2.1-5.5%2C5.1-5.5c3%2C0%2C5.1%2C2.5%2C5.1%2C5.5v16h6.2v-16c0-6.6-4.5-11.9-11.1-11.9%0A%09c-3%2C0-5.3%2C1.7-5.3%2C1.7V9h-6.2v27.2H149.6z%22%2F%3E%0A%3Cpath%20id%3D%22e%22%20class%3D%22st0%22%20d%3D%22M129.1%2C8.3c-7.2%2C0-12.3%2C6.3-12.3%2C14.3c0%2C8.4%2C6.4%2C14.3%2C12.9%2C14.3c3.3%2C0%2C7.4-1.1%2C10.9-6.1l-5.5-3.2%0A%09c-4.2%2C6.2-11.3%2C3.1-12.1-3.2l17.8%2C0C142.4%2C14.8%2C136.1%2C8.3%2C129.1%2C8.3z%20M134.5%2C19.1h-11.1C124.7%2C12.8%2C133.3%2C12.4%2C134.5%2C19.1z%22%2F%3E%0A%3Cpath%20id%3D%22t%22%20class%3D%22st0%22%20d%3D%22M114.8%2C29.8c-0.6%2C0.4-1.3%2C0.7-2.1%2C0.7c-1%2C0-2.9-0.8-2.9-3.3V15.5h5.3V9h-5.3l0-6.8h-6.2l0%2C6.8h-3.3v6.5%0A%09h3.3v11.7c0%2C6.1%2C4.6%2C9.7%2C9.2%2C9.7c1.7%2C0%2C4.1-0.6%2C6-1.7L114.8%2C29.8z%22%2F%3E%0A%3Cpath%20id%3D%22u%22%20class%3D%22st0%22%20d%3D%22M92%2C9v16c0%2C3-2.1%2C5.5-5.1%2C5.5c-3%2C0-5.1-2.5-5.1-5.5V9h-6.2v16c0%2C6.6%2C4.5%2C11.9%2C11.1%2C11.9%0A%09c3%2C0%2C5.3-1.7%2C5.3-1.7v1h6.2V9H92z%22%2F%3E%0A%3Cpolygon%20id%3D%22k%22%20class%3D%22st0%22%20points%3D%2264%2C21.8%2074.6%2C9%2066%2C9%2058.5%2C18.5%2058.5%2C0%2052.2%2C0%2052.2%2C36.3%2058.5%2C36.3%2058.5%2C25.1%2067.7%2C36.3%20%0A%0976.3%2C36.3%20%22%2F%3E%0A%3Cpath%20id%3D%22a%22%20class%3D%22st0%22%20d%3D%22M42.5%2C9v1.2c-1.9-1.2-3.5-1.9-5.8-1.9c-7%2C0-12.4%2C6.4-12.4%2C14.3c0%2C7.9%2C5.3%2C14.3%2C12.4%2C14.3%0A%09c2.3%2C0%2C4-0.7%2C5.8-1.9v1.2h6.2V9H42.5z%20M36.6%2C30.4c-3.5%2C0-6-3.4-6-7.7c0-4.3%2C2.5-7.7%2C6-7.7c3.5%2C0%2C5.9%2C3.4%2C5.9%2C7.7%0A%09C42.6%2C27%2C40.1%2C30.4%2C36.6%2C30.4z%22%2F%3E%0A%3Cpath%20id%3D%22R%22%20class%3D%22st0%22%20d%3D%22M6.5%2C36.3V25.7H11l7.9%2C10.5H27l-9.6-12.7c3-2.1%2C4.9-5.6%2C4.9-9.6c0-6.5-5.3-11.7-11.7-11.7H0v34H6.5z%0A%09%20M6.5%2C8.7h4.2c2.9%2C0%2C5.3%2C2.4%2C5.3%2C5.3c0%2C2.9-2.4%2C5.3-5.3%2C5.3H6.5V8.7z%22%2F%3E%0A%3C%2Fsvg%3E%0A") !important; + background-size: contain !important; +} +.ebca-notification table, +.ebca-notification td { + border-collapse: collapse !important; + background: none; + border: 0 !important; + margin: 0 !important; + padding: 4px; + width: auto; +} +.ebca-notification td { + box-sizing: border-box !important; + min-width: 30px; +} +.ebca-notification table { + min-width: 421px; + overflow: hidden; + border-radius: 4px; +} +.ebca-notification .ebca-notification-logo-bg { + width: auto; + min-width: 115px; + background: linear-gradient(30deg, #940793 0%, #311293 100%) !important; + color: #fff; + padding: 0 16px; + position: relative !important; + height: 91px; + display: flex; + align-items: center; +} +.ebca-notification .ebca-notification-logo-bg-arrow { + position: absolute !important; + right: 0 !important; + top: 0 !important; + width: auto !important; + border-top: 46px solid white !important; + border-bottom: 46px solid white !important; + border-left: 26px solid transparent !important; +} +.ebca-notification .ebca-notification-logo-bg-activated { + font-size: 16px; + line-height: 20px; + font-weight: 600; + min-width: 160px; + text-align: center; + background: linear-gradient(30deg, #940793 0%, #311293 50%, #2385D6 100%) !important; +} +.ebca-notification .ebca-notification-logo-bg-activated span { + display: block; + text-align: center; + padding: 5px 0 0; + margin: 0; + font-size: 14px; + line-height: 18px; + font-weight: 400; +} +.ebca-notification-sign { + font-size: 14px; + line-height: 18px; + white-space: nowrap; + font-family: 'Benton', sans-serif; + color: #434343; + text-align: center; + margin-right: 20px; + margin-left: 10px; + cursor: default; + margin-top: 8px; +} +.ebca-notification .ebca-higher-cashback .ebca-notification-logo-bg { + background: linear-gradient(251.552deg, #ED5050 30%, #A60692 120%) !important; + height: 135px; + min-width: 105px; +} +.ebca-notification .ebca-higher-cashback .ebca-notification-logo-bg .ebca-notification-logo { + width: 95px !important; + height: 40px !important; + background-position: top center !important; +} +.ebca-notification .ebca-higher-cashback .ebca-notification-logo-bg .ebca-notification-plus { + background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2243px%22%20height%3D%2243px%22%20viewBox%3D%220%200%2043%2043%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20sketchtool%2058%20(101010)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3E0BCECCCE-C43C-4F62-860A-8FCC4337087A%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20sketchtool.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M15.20532%2C1.04849%20C15.20532%2C1.555334%2015.62769%2C1.89323%2016.05006%2C1.89323%20C16.47243%2C1.89323%2016.8948%2C1.555334%2016.8948%2C1.04849%20C16.8948%2C0.541646%2016.47243%2C0.20375%2016.05006%2C0.20375%20C15.62769%2C0.20375%2015.20532%2C0.541646%2015.20532%2C1.04849%20Z%20M17.73954%2C1.04849%20C17.73954%2C1.555334%2018.16191%2C1.89323%2018.58428%2C1.89323%20C19.00665%2C1.89323%2019.42902%2C1.555334%2019.42902%2C1.04849%20C19.42902%2C0.541646%2019.00665%2C0.20375%2018.58428%2C0.20375%20C18.16191%2C0.20375%2017.73954%2C0.541646%2017.73954%2C1.04849%20Z%20M20.27376%2C1.04849%20C20.27376%2C1.555334%2020.69613%2C1.89323%2021.1185%2C1.89323%20C21.54087%2C1.89323%2021.96324%2C1.555334%2021.96324%2C1.04849%20C21.96324%2C0.541646%2021.54087%2C0.20375%2021.1185%2C0.20375%20C20.69613%2C0.20375%2020.27376%2C0.541646%2020.27376%2C1.04849%20Z%20M22.80798%2C1.04849%20C22.80798%2C1.555334%2023.23035%2C1.89323%2023.65272%2C1.89323%20C24.07509%2C1.89323%2024.49746%2C1.555334%2024.49746%2C1.04849%20C24.49746%2C0.541646%2024.07509%2C0.20375%2023.65272%2C0.20375%20C23.23035%2C0.20375%2022.80798%2C0.541646%2022.80798%2C1.04849%20Z%20M25.3422%2C1.04849%20C25.3422%2C1.555334%2025.76457%2C1.89323%2026.18694%2C1.89323%20C26.60931%2C1.89323%2027.03168%2C1.555334%2027.03168%2C1.04849%20C27.03168%2C0.541646%2026.60931%2C0.20375%2026.18694%2C0.20375%20C25.76457%2C0.20375%2025.3422%2C0.541646%2025.3422%2C1.04849%20Z%20M15.20532%2C3.58271%20C15.20532%2C4.089554%2015.62769%2C4.42745%2016.05006%2C4.42745%20C16.47243%2C4.42745%2016.8948%2C4.089554%2016.8948%2C3.58271%20C16.8948%2C3.075866%2016.47243%2C2.73797%2016.05006%2C2.73797%20C15.62769%2C2.73797%2015.20532%2C3.075866%2015.20532%2C3.58271%20Z%20M17.73954%2C3.58271%20C17.73954%2C4.089554%2018.16191%2C4.42745%2018.58428%2C4.42745%20C19.00665%2C4.42745%2019.42902%2C4.089554%2019.42902%2C3.58271%20C19.42902%2C3.075866%2019.00665%2C2.73797%2018.58428%2C2.73797%20C18.16191%2C2.73797%2017.73954%2C3.075866%2017.73954%2C3.58271%20Z%20M20.27376%2C3.58271%20C20.27376%2C4.089554%2020.69613%2C4.42745%2021.1185%2C4.42745%20C21.54087%2C4.42745%2021.96324%2C4.089554%2021.96324%2C3.58271%20C21.96324%2C3.075866%2021.54087%2C2.73797%2021.1185%2C2.73797%20C20.69613%2C2.73797%2020.27376%2C3.075866%2020.27376%2C3.58271%20Z%20M22.80798%2C3.58271%20C22.80798%2C4.089554%2023.23035%2C4.42745%2023.65272%2C4.42745%20C24.07509%2C4.42745%2024.49746%2C4.089554%2024.49746%2C3.58271%20C24.49746%2C3.075866%2024.07509%2C2.73797%2023.65272%2C2.73797%20C23.23035%2C2.73797%2022.80798%2C3.075866%2022.80798%2C3.58271%20Z%20M25.3422%2C3.58271%20C25.3422%2C4.089554%2025.76457%2C4.42745%2026.18694%2C4.42745%20C26.60931%2C4.42745%2027.03168%2C4.089554%2027.03168%2C3.58271%20C27.03168%2C3.075866%2026.60931%2C2.73797%2026.18694%2C2.73797%20C25.76457%2C2.73797%2025.3422%2C3.075866%2025.3422%2C3.58271%20Z%20M15.20532%2C6.11693%20C15.20532%2C6.623774%2015.62769%2C6.96167%2016.05006%2C6.96167%20C16.47243%2C6.96167%2016.8948%2C6.623774%2016.8948%2C6.11693%20C16.8948%2C5.610086%2016.47243%2C5.27219%2016.05006%2C5.27219%20C15.62769%2C5.27219%2015.20532%2C5.610086%2015.20532%2C6.11693%20Z%20M17.73954%2C6.11693%20C17.73954%2C6.623774%2018.16191%2C6.96167%2018.58428%2C6.96167%20C19.00665%2C6.96167%2019.42902%2C6.623774%2019.42902%2C6.11693%20C19.42902%2C5.610086%2019.00665%2C5.27219%2018.58428%2C5.27219%20C18.16191%2C5.27219%2017.73954%2C5.610086%2017.73954%2C6.11693%20Z%20M20.27376%2C6.11693%20C20.27376%2C6.623774%2020.69613%2C6.96167%2021.1185%2C6.96167%20C21.54087%2C6.96167%2021.96324%2C6.623774%2021.96324%2C6.11693%20C21.96324%2C5.610086%2021.54087%2C5.27219%2021.1185%2C5.27219%20C20.69613%2C5.27219%2020.27376%2C5.610086%2020.27376%2C6.11693%20Z%20M22.80798%2C6.11693%20C22.80798%2C6.623774%2023.23035%2C6.96167%2023.65272%2C6.96167%20C24.07509%2C6.96167%2024.49746%2C6.623774%2024.49746%2C6.11693%20C24.49746%2C5.610086%2024.07509%2C5.27219%2023.65272%2C5.27219%20C23.23035%2C5.27219%2022.80798%2C5.610086%2022.80798%2C6.11693%20Z%20M25.3422%2C6.11693%20C25.3422%2C6.623774%2025.76457%2C6.96167%2026.18694%2C6.96167%20C26.60931%2C6.96167%2027.03168%2C6.623774%2027.03168%2C6.11693%20C27.03168%2C5.610086%2026.60931%2C5.27219%2026.18694%2C5.27219%20C25.76457%2C5.27219%2025.3422%2C5.610086%2025.3422%2C6.11693%20Z%20M15.20532%2C8.65115%20C15.20532%2C9.157994%2015.62769%2C9.49589%2016.05006%2C9.49589%20C16.47243%2C9.49589%2016.8948%2C9.157994%2016.8948%2C8.65115%20C16.8948%2C8.144306%2016.47243%2C7.80641%2016.05006%2C7.80641%20C15.62769%2C7.80641%2015.20532%2C8.144306%2015.20532%2C8.65115%20Z%20M17.73954%2C8.65115%20C17.73954%2C9.157994%2018.16191%2C9.49589%2018.58428%2C9.49589%20C19.00665%2C9.49589%2019.42902%2C9.157994%2019.42902%2C8.65115%20C19.42902%2C8.144306%2019.00665%2C7.80641%2018.58428%2C7.80641%20C18.16191%2C7.80641%2017.73954%2C8.144306%2017.73954%2C8.65115%20Z%20M20.27376%2C8.65115%20C20.27376%2C9.157994%2020.69613%2C9.49589%2021.1185%2C9.49589%20C21.54087%2C9.49589%2021.96324%2C9.157994%2021.96324%2C8.65115%20C21.96324%2C8.144306%2021.54087%2C7.80641%2021.1185%2C7.80641%20C20.69613%2C7.80641%2020.27376%2C8.144306%2020.27376%2C8.65115%20Z%20M22.80798%2C8.65115%20C22.80798%2C9.157994%2023.23035%2C9.49589%2023.65272%2C9.49589%20C24.07509%2C9.49589%2024.49746%2C9.157994%2024.49746%2C8.65115%20C24.49746%2C8.144306%2024.07509%2C7.80641%2023.65272%2C7.80641%20C23.23035%2C7.80641%2022.80798%2C8.144306%2022.80798%2C8.65115%20Z%20M25.3422%2C8.65115%20C25.3422%2C9.157994%2025.76457%2C9.49589%2026.18694%2C9.49589%20C26.60931%2C9.49589%2027.03168%2C9.157994%2027.03168%2C8.65115%20C27.03168%2C8.144306%2026.60931%2C7.80641%2026.18694%2C7.80641%20C25.76457%2C7.80641%2025.3422%2C8.144306%2025.3422%2C8.65115%20Z%20M15.20532%2C11.18537%20C15.20532%2C11.692214%2015.62769%2C12.03011%2016.05006%2C12.03011%20C16.47243%2C12.03011%2016.8948%2C11.692214%2016.8948%2C11.18537%20C16.8948%2C10.678526%2016.47243%2C10.34063%2016.05006%2C10.34063%20C15.62769%2C10.34063%2015.20532%2C10.678526%2015.20532%2C11.18537%20Z%20M17.73954%2C11.18537%20C17.73954%2C11.692214%2018.16191%2C12.03011%2018.58428%2C12.03011%20C19.00665%2C12.03011%2019.42902%2C11.692214%2019.42902%2C11.18537%20C19.42902%2C10.678526%2019.00665%2C10.34063%2018.58428%2C10.34063%20C18.16191%2C10.34063%2017.73954%2C10.678526%2017.73954%2C11.18537%20Z%20M20.27376%2C11.18537%20C20.27376%2C11.692214%2020.69613%2C12.03011%2021.1185%2C12.03011%20C21.54087%2C12.03011%2021.96324%2C11.692214%2021.96324%2C11.18537%20C21.96324%2C10.678526%2021.54087%2C10.34063%2021.1185%2C10.34063%20C20.69613%2C10.34063%2020.27376%2C10.678526%2020.27376%2C11.18537%20Z%20M22.80798%2C11.18537%20C22.80798%2C11.692214%2023.23035%2C12.03011%2023.65272%2C12.03011%20C24.07509%2C12.03011%2024.49746%2C11.692214%2024.49746%2C11.18537%20C24.49746%2C10.678526%2024.07509%2C10.34063%2023.65272%2C10.34063%20C23.23035%2C10.34063%2022.80798%2C10.678526%2022.80798%2C11.18537%20Z%20M25.3422%2C11.18537%20C25.3422%2C11.692214%2025.76457%2C12.03011%2026.18694%2C12.03011%20C26.60931%2C12.03011%2027.03168%2C11.692214%2027.03168%2C11.18537%20C27.03168%2C10.678526%2026.60931%2C10.34063%2026.18694%2C10.34063%20C25.76457%2C10.34063%2025.3422%2C10.678526%2025.3422%2C11.18537%20Z%20M15.20532%2C13.71959%20C15.20532%2C14.226434%2015.62769%2C14.56433%2016.05006%2C14.56433%20C16.47243%2C14.56433%2016.8948%2C14.226434%2016.8948%2C13.71959%20C16.8948%2C13.212746%2016.47243%2C12.87485%2016.05006%2C12.87485%20C15.62769%2C12.87485%2015.20532%2C13.212746%2015.20532%2C13.71959%20Z%20M17.73954%2C13.71959%20C17.73954%2C14.226434%2018.16191%2C14.56433%2018.58428%2C14.56433%20C19.00665%2C14.56433%2019.42902%2C14.226434%2019.42902%2C13.71959%20C19.42902%2C13.212746%2019.00665%2C12.87485%2018.58428%2C12.87485%20C18.16191%2C12.87485%2017.73954%2C13.212746%2017.73954%2C13.71959%20Z%20M20.27376%2C13.71959%20C20.27376%2C14.226434%2020.69613%2C14.56433%2021.1185%2C14.56433%20C21.54087%2C14.56433%2021.96324%2C14.226434%2021.96324%2C13.71959%20C21.96324%2C13.212746%2021.54087%2C12.87485%2021.1185%2C12.87485%20C20.69613%2C12.87485%2020.27376%2C13.212746%2020.27376%2C13.71959%20Z%20M22.80798%2C13.71959%20C22.80798%2C14.226434%2023.23035%2C14.56433%2023.65272%2C14.56433%20C24.07509%2C14.56433%2024.49746%2C14.226434%2024.49746%2C13.71959%20C24.49746%2C13.212746%2024.07509%2C12.87485%2023.65272%2C12.87485%20C23.23035%2C12.87485%2022.80798%2C13.212746%2022.80798%2C13.71959%20Z%20M25.3422%2C13.71959%20C25.3422%2C14.226434%2025.76457%2C14.56433%2026.18694%2C14.56433%20C26.60931%2C14.56433%2027.03168%2C14.226434%2027.03168%2C13.71959%20C27.03168%2C13.212746%2026.60931%2C12.87485%2026.18694%2C12.87485%20C25.76457%2C12.87485%2025.3422%2C13.212746%2025.3422%2C13.71959%20Z%20M0%2C16.25381%20C0%2C16.760654%200.42237%2C17.09855%200.84474%2C17.09855%20C1.26711%2C17.09855%201.68948%2C16.760654%201.68948%2C16.25381%20C1.68948%2C15.746966%201.26711%2C15.40907%200.84474%2C15.40907%20C0.42237%2C15.40907%200%2C15.746966%200%2C16.25381%20Z%20M2.53422%2C16.25381%20C2.53422%2C16.760654%202.95659%2C17.09855%203.37896%2C17.09855%20C3.80133%2C17.09855%204.2237%2C16.760654%204.2237%2C16.25381%20C4.2237%2C15.746966%203.80133%2C15.40907%203.37896%2C15.40907%20C2.95659%2C15.40907%202.53422%2C15.746966%202.53422%2C16.25381%20Z%20M5.06844%2C16.25381%20C5.06844%2C16.760654%205.49081%2C17.09855%205.91318%2C17.09855%20C6.33555%2C17.09855%206.75792%2C16.760654%206.75792%2C16.25381%20C6.75792%2C15.746966%206.33555%2C15.40907%205.91318%2C15.40907%20C5.49081%2C15.40907%205.06844%2C15.746966%205.06844%2C16.25381%20Z%20M7.60266%2C16.25381%20C7.60266%2C16.760654%208.02503%2C17.09855%208.4474%2C17.09855%20C8.86977%2C17.09855%209.29214%2C16.760654%209.29214%2C16.25381%20C9.29214%2C15.746966%208.86977%2C15.40907%208.4474%2C15.40907%20C8.02503%2C15.40907%207.60266%2C15.746966%207.60266%2C16.25381%20Z%20M10.13688%2C16.25381%20C10.13688%2C16.760654%2010.55925%2C17.09855%2010.98162%2C17.09855%20C11.40399%2C17.09855%2011.82636%2C16.760654%2011.82636%2C16.25381%20C11.82636%2C15.746966%2011.40399%2C15.40907%2010.98162%2C15.40907%20C10.55925%2C15.40907%2010.13688%2C15.746966%2010.13688%2C16.25381%20Z%20M12.6711%2C16.25381%20C12.6711%2C16.760654%2013.09347%2C17.09855%2013.51584%2C17.09855%20C13.93821%2C17.09855%2014.36058%2C16.760654%2014.36058%2C16.25381%20C14.36058%2C15.746966%2013.93821%2C15.40907%2013.51584%2C15.40907%20C13.09347%2C15.40907%2012.6711%2C15.746966%2012.6711%2C16.25381%20Z%20M15.20532%2C16.25381%20C15.20532%2C16.760654%2015.62769%2C17.09855%2016.05006%2C17.09855%20C16.47243%2C17.09855%2016.8948%2C16.760654%2016.8948%2C16.25381%20C16.8948%2C15.746966%2016.47243%2C15.40907%2016.05006%2C15.40907%20C15.62769%2C15.40907%2015.20532%2C15.746966%2015.20532%2C16.25381%20Z%20M17.73954%2C16.25381%20C17.73954%2C16.760654%2018.16191%2C17.09855%2018.58428%2C17.09855%20C19.00665%2C17.09855%2019.42902%2C16.760654%2019.42902%2C16.25381%20C19.42902%2C15.746966%2019.00665%2C15.40907%2018.58428%2C15.40907%20C18.16191%2C15.40907%2017.73954%2C15.746966%2017.73954%2C16.25381%20Z%20M20.27376%2C16.25381%20C20.27376%2C16.760654%2020.69613%2C17.09855%2021.1185%2C17.09855%20C21.54087%2C17.09855%2021.96324%2C16.760654%2021.96324%2C16.25381%20C21.96324%2C15.746966%2021.54087%2C15.40907%2021.1185%2C15.40907%20C20.69613%2C15.40907%2020.27376%2C15.746966%2020.27376%2C16.25381%20Z%20M22.80798%2C16.25381%20C22.80798%2C16.760654%2023.23035%2C17.09855%2023.65272%2C17.09855%20C24.07509%2C17.09855%2024.49746%2C16.760654%2024.49746%2C16.25381%20C24.49746%2C15.746966%2024.07509%2C15.40907%2023.65272%2C15.40907%20C23.23035%2C15.40907%2022.80798%2C15.746966%2022.80798%2C16.25381%20Z%20M25.3422%2C16.25381%20C25.3422%2C16.760654%2025.76457%2C17.09855%2026.18694%2C17.09855%20C26.60931%2C17.09855%2027.03168%2C16.760654%2027.03168%2C16.25381%20C27.03168%2C15.746966%2026.60931%2C15.40907%2026.18694%2C15.40907%20C25.76457%2C15.40907%2025.3422%2C15.746966%2025.3422%2C16.25381%20Z%20M27.87642%2C16.25381%20C27.87642%2C16.760654%2028.29879%2C17.09855%2028.72116%2C17.09855%20C29.14353%2C17.09855%2029.5659%2C16.760654%2029.5659%2C16.25381%20C29.5659%2C15.746966%2029.14353%2C15.40907%2028.72116%2C15.40907%20C28.29879%2C15.40907%2027.87642%2C15.746966%2027.87642%2C16.25381%20Z%20M30.41064%2C16.25381%20C30.41064%2C16.760654%2030.83301%2C17.09855%2031.25538%2C17.09855%20C31.67775%2C17.09855%2032.10012%2C16.760654%2032.10012%2C16.25381%20C32.10012%2C15.746966%2031.67775%2C15.40907%2031.25538%2C15.40907%20C30.83301%2C15.40907%2030.41064%2C15.746966%2030.41064%2C16.25381%20Z%20M32.94486%2C16.25381%20C32.94486%2C16.760654%2033.36723%2C17.09855%2033.7896%2C17.09855%20C34.21197%2C17.09855%2034.63434%2C16.760654%2034.63434%2C16.25381%20C34.63434%2C15.746966%2034.21197%2C15.40907%2033.7896%2C15.40907%20C33.36723%2C15.40907%2032.94486%2C15.746966%2032.94486%2C16.25381%20Z%20M35.47908%2C16.25381%20C35.47908%2C16.760654%2035.90145%2C17.09855%2036.32382%2C17.09855%20C36.74619%2C17.09855%2037.16856%2C16.760654%2037.16856%2C16.25381%20C37.16856%2C15.746966%2036.74619%2C15.40907%2036.32382%2C15.40907%20C35.90145%2C15.40907%2035.47908%2C15.746966%2035.47908%2C16.25381%20Z%20M38.0133%2C16.25381%20C38.0133%2C16.760654%2038.43567%2C17.09855%2038.85804%2C17.09855%20C39.28041%2C17.09855%2039.70278%2C16.760654%2039.70278%2C16.25381%20C39.70278%2C15.746966%2039.28041%2C15.40907%2038.85804%2C15.40907%20C38.43567%2C15.40907%2038.0133%2C15.746966%2038.0133%2C16.25381%20Z%20M40.54752%2C16.25381%20C40.54752%2C16.760654%2040.96989%2C17.09855%2041.39226%2C17.09855%20C41.81463%2C17.09855%2042.237%2C16.760654%2042.237%2C16.25381%20C42.237%2C15.746966%2041.81463%2C15.40907%2041.39226%2C15.40907%20C40.96989%2C15.40907%2040.54752%2C15.746966%2040.54752%2C16.25381%20Z%20M0%2C18.78803%20C0%2C19.294874%200.42237%2C19.63277%200.84474%2C19.63277%20C1.26711%2C19.63277%201.68948%2C19.294874%201.68948%2C18.78803%20C1.68948%2C18.281186%201.26711%2C17.94329%200.84474%2C17.94329%20C0.42237%2C17.94329%200%2C18.281186%200%2C18.78803%20Z%20M2.53422%2C18.78803%20C2.53422%2C19.294874%202.95659%2C19.63277%203.37896%2C19.63277%20C3.80133%2C19.63277%204.2237%2C19.294874%204.2237%2C18.78803%20C4.2237%2C18.281186%203.80133%2C17.94329%203.37896%2C17.94329%20C2.95659%2C17.94329%202.53422%2C18.281186%202.53422%2C18.78803%20Z%20M5.06844%2C18.78803%20C5.06844%2C19.294874%205.49081%2C19.63277%205.91318%2C19.63277%20C6.33555%2C19.63277%206.75792%2C19.294874%206.75792%2C18.78803%20C6.75792%2C18.281186%206.33555%2C17.94329%205.91318%2C17.94329%20C5.49081%2C17.94329%205.06844%2C18.281186%205.06844%2C18.78803%20Z%20M7.60266%2C18.78803%20C7.60266%2C19.294874%208.02503%2C19.63277%208.4474%2C19.63277%20C8.86977%2C19.63277%209.29214%2C19.294874%209.29214%2C18.78803%20C9.29214%2C18.281186%208.86977%2C17.94329%208.4474%2C17.94329%20C8.02503%2C17.94329%207.60266%2C18.281186%207.60266%2C18.78803%20Z%20M10.13688%2C18.78803%20C10.13688%2C19.294874%2010.55925%2C19.63277%2010.98162%2C19.63277%20C11.40399%2C19.63277%2011.82636%2C19.294874%2011.82636%2C18.78803%20C11.82636%2C18.281186%2011.40399%2C17.94329%2010.98162%2C17.94329%20C10.55925%2C17.94329%2010.13688%2C18.281186%2010.13688%2C18.78803%20Z%20M12.6711%2C18.78803%20C12.6711%2C19.294874%2013.09347%2C19.63277%2013.51584%2C19.63277%20C13.93821%2C19.63277%2014.36058%2C19.294874%2014.36058%2C18.78803%20C14.36058%2C18.281186%2013.93821%2C17.94329%2013.51584%2C17.94329%20C13.09347%2C17.94329%2012.6711%2C18.281186%2012.6711%2C18.78803%20Z%20M15.20532%2C18.78803%20C15.20532%2C19.294874%2015.62769%2C19.63277%2016.05006%2C19.63277%20C16.47243%2C19.63277%2016.8948%2C19.294874%2016.8948%2C18.78803%20C16.8948%2C18.281186%2016.47243%2C17.94329%2016.05006%2C17.94329%20C15.62769%2C17.94329%2015.20532%2C18.281186%2015.20532%2C18.78803%20Z%20M17.73954%2C18.78803%20C17.73954%2C19.294874%2018.16191%2C19.63277%2018.58428%2C19.63277%20C19.00665%2C19.63277%2019.42902%2C19.294874%2019.42902%2C18.78803%20C19.42902%2C18.281186%2019.00665%2C17.94329%2018.58428%2C17.94329%20C18.16191%2C17.94329%2017.73954%2C18.281186%2017.73954%2C18.78803%20Z%20M20.27376%2C18.78803%20C20.27376%2C19.294874%2020.69613%2C19.63277%2021.1185%2C19.63277%20C21.54087%2C19.63277%2021.96324%2C19.294874%2021.96324%2C18.78803%20C21.96324%2C18.281186%2021.54087%2C17.94329%2021.1185%2C17.94329%20C20.69613%2C17.94329%2020.27376%2C18.281186%2020.27376%2C18.78803%20Z%20M22.80798%2C18.78803%20C22.80798%2C19.294874%2023.23035%2C19.63277%2023.65272%2C19.63277%20C24.07509%2C19.63277%2024.49746%2C19.294874%2024.49746%2C18.78803%20C24.49746%2C18.281186%2024.07509%2C17.94329%2023.65272%2C17.94329%20C23.23035%2C17.94329%2022.80798%2C18.281186%2022.80798%2C18.78803%20Z%20M25.3422%2C18.78803%20C25.3422%2C19.294874%2025.76457%2C19.63277%2026.18694%2C19.63277%20C26.60931%2C19.63277%2027.03168%2C19.294874%2027.03168%2C18.78803%20C27.03168%2C18.281186%2026.60931%2C17.94329%2026.18694%2C17.94329%20C25.76457%2C17.94329%2025.3422%2C18.281186%2025.3422%2C18.78803%20Z%20M27.87642%2C18.78803%20C27.87642%2C19.294874%2028.29879%2C19.63277%2028.72116%2C19.63277%20C29.14353%2C19.63277%2029.5659%2C19.294874%2029.5659%2C18.78803%20C29.5659%2C18.281186%2029.14353%2C17.94329%2028.72116%2C17.94329%20C28.29879%2C17.94329%2027.87642%2C18.281186%2027.87642%2C18.78803%20Z%20M30.41064%2C18.78803%20C30.41064%2C19.294874%2030.83301%2C19.63277%2031.25538%2C19.63277%20C31.67775%2C19.63277%2032.10012%2C19.294874%2032.10012%2C18.78803%20C32.10012%2C18.281186%2031.67775%2C17.94329%2031.25538%2C17.94329%20C30.83301%2C17.94329%2030.41064%2C18.281186%2030.41064%2C18.78803%20Z%20M32.94486%2C18.78803%20C32.94486%2C19.294874%2033.36723%2C19.63277%2033.7896%2C19.63277%20C34.21197%2C19.63277%2034.63434%2C19.294874%2034.63434%2C18.78803%20C34.63434%2C18.281186%2034.21197%2C17.94329%2033.7896%2C17.94329%20C33.36723%2C17.94329%2032.94486%2C18.281186%2032.94486%2C18.78803%20Z%20M35.47908%2C18.78803%20C35.47908%2C19.294874%2035.90145%2C19.63277%2036.32382%2C19.63277%20C36.74619%2C19.63277%2037.16856%2C19.294874%2037.16856%2C18.78803%20C37.16856%2C18.281186%2036.74619%2C17.94329%2036.32382%2C17.94329%20C35.90145%2C17.94329%2035.47908%2C18.281186%2035.47908%2C18.78803%20Z%20M38.0133%2C18.78803%20C38.0133%2C19.294874%2038.43567%2C19.63277%2038.85804%2C19.63277%20C39.28041%2C19.63277%2039.70278%2C19.294874%2039.70278%2C18.78803%20C39.70278%2C18.281186%2039.28041%2C17.94329%2038.85804%2C17.94329%20C38.43567%2C17.94329%2038.0133%2C18.281186%2038.0133%2C18.78803%20Z%20M40.54752%2C18.78803%20C40.54752%2C19.294874%2040.96989%2C19.63277%2041.39226%2C19.63277%20C41.81463%2C19.63277%2042.237%2C19.294874%2042.237%2C18.78803%20C42.237%2C18.281186%2041.81463%2C17.94329%2041.39226%2C17.94329%20C40.96989%2C17.94329%2040.54752%2C18.281186%2040.54752%2C18.78803%20Z%20M0%2C21.32225%20C0%2C21.829094%200.42237%2C22.16699%200.84474%2C22.16699%20C1.26711%2C22.16699%201.68948%2C21.829094%201.68948%2C21.32225%20C1.68948%2C20.815406%201.26711%2C20.47751%200.84474%2C20.47751%20C0.42237%2C20.47751%200%2C20.815406%200%2C21.32225%20Z%20M2.53422%2C21.32225%20C2.53422%2C21.829094%202.95659%2C22.16699%203.37896%2C22.16699%20C3.80133%2C22.16699%204.2237%2C21.829094%204.2237%2C21.32225%20C4.2237%2C20.815406%203.80133%2C20.47751%203.37896%2C20.47751%20C2.95659%2C20.47751%202.53422%2C20.815406%202.53422%2C21.32225%20Z%20M5.06844%2C21.32225%20C5.06844%2C21.829094%205.49081%2C22.16699%205.91318%2C22.16699%20C6.33555%2C22.16699%206.75792%2C21.829094%206.75792%2C21.32225%20C6.75792%2C20.815406%206.33555%2C20.47751%205.91318%2C20.47751%20C5.49081%2C20.47751%205.06844%2C20.815406%205.06844%2C21.32225%20Z%20M7.60266%2C21.32225%20C7.60266%2C21.829094%208.02503%2C22.16699%208.4474%2C22.16699%20C8.86977%2C22.16699%209.29214%2C21.829094%209.29214%2C21.32225%20C9.29214%2C20.815406%208.86977%2C20.47751%208.4474%2C20.47751%20C8.02503%2C20.47751%207.60266%2C20.815406%207.60266%2C21.32225%20Z%20M10.13688%2C21.32225%20C10.13688%2C21.829094%2010.55925%2C22.16699%2010.98162%2C22.16699%20C11.40399%2C22.16699%2011.82636%2C21.829094%2011.82636%2C21.32225%20C11.82636%2C20.815406%2011.40399%2C20.47751%2010.98162%2C20.47751%20C10.55925%2C20.47751%2010.13688%2C20.815406%2010.13688%2C21.32225%20Z%20M12.6711%2C21.32225%20C12.6711%2C21.829094%2013.09347%2C22.16699%2013.51584%2C22.16699%20C13.93821%2C22.16699%2014.36058%2C21.829094%2014.36058%2C21.32225%20C14.36058%2C20.815406%2013.93821%2C20.47751%2013.51584%2C20.47751%20C13.09347%2C20.47751%2012.6711%2C20.815406%2012.6711%2C21.32225%20Z%20M15.20532%2C21.32225%20C15.20532%2C21.829094%2015.62769%2C22.16699%2016.05006%2C22.16699%20C16.47243%2C22.16699%2016.8948%2C21.829094%2016.8948%2C21.32225%20C16.8948%2C20.815406%2016.47243%2C20.47751%2016.05006%2C20.47751%20C15.62769%2C20.47751%2015.20532%2C20.815406%2015.20532%2C21.32225%20Z%20M17.73954%2C21.32225%20C17.73954%2C21.829094%2018.16191%2C22.16699%2018.58428%2C22.16699%20C19.00665%2C22.16699%2019.42902%2C21.829094%2019.42902%2C21.32225%20C19.42902%2C20.815406%2019.00665%2C20.47751%2018.58428%2C20.47751%20C18.16191%2C20.47751%2017.73954%2C20.815406%2017.73954%2C21.32225%20Z%20M20.27376%2C21.32225%20C20.27376%2C21.829094%2020.69613%2C22.16699%2021.1185%2C22.16699%20C21.54087%2C22.16699%2021.96324%2C21.829094%2021.96324%2C21.32225%20C21.96324%2C20.815406%2021.54087%2C20.47751%2021.1185%2C20.47751%20C20.69613%2C20.47751%2020.27376%2C20.815406%2020.27376%2C21.32225%20Z%20M22.80798%2C21.32225%20C22.80798%2C21.829094%2023.23035%2C22.16699%2023.65272%2C22.16699%20C24.07509%2C22.16699%2024.49746%2C21.829094%2024.49746%2C21.32225%20C24.49746%2C20.815406%2024.07509%2C20.47751%2023.65272%2C20.47751%20C23.23035%2C20.47751%2022.80798%2C20.815406%2022.80798%2C21.32225%20Z%20M25.3422%2C21.32225%20C25.3422%2C21.829094%2025.76457%2C22.16699%2026.18694%2C22.16699%20C26.60931%2C22.16699%2027.03168%2C21.829094%2027.03168%2C21.32225%20C27.03168%2C20.815406%2026.60931%2C20.47751%2026.18694%2C20.47751%20C25.76457%2C20.47751%2025.3422%2C20.815406%2025.3422%2C21.32225%20Z%20M27.87642%2C21.32225%20C27.87642%2C21.829094%2028.29879%2C22.16699%2028.72116%2C22.16699%20C29.14353%2C22.16699%2029.5659%2C21.829094%2029.5659%2C21.32225%20C29.5659%2C20.815406%2029.14353%2C20.47751%2028.72116%2C20.47751%20C28.29879%2C20.47751%2027.87642%2C20.815406%2027.87642%2C21.32225%20Z%20M30.41064%2C21.32225%20C30.41064%2C21.829094%2030.83301%2C22.16699%2031.25538%2C22.16699%20C31.67775%2C22.16699%2032.10012%2C21.829094%2032.10012%2C21.32225%20C32.10012%2C20.815406%2031.67775%2C20.47751%2031.25538%2C20.47751%20C30.83301%2C20.47751%2030.41064%2C20.815406%2030.41064%2C21.32225%20Z%20M32.94486%2C21.32225%20C32.94486%2C21.829094%2033.36723%2C22.16699%2033.7896%2C22.16699%20C34.21197%2C22.16699%2034.63434%2C21.829094%2034.63434%2C21.32225%20C34.63434%2C20.815406%2034.21197%2C20.47751%2033.7896%2C20.47751%20C33.36723%2C20.47751%2032.94486%2C20.815406%2032.94486%2C21.32225%20Z%20M35.47908%2C21.32225%20C35.47908%2C21.829094%2035.90145%2C22.16699%2036.32382%2C22.16699%20C36.74619%2C22.16699%2037.16856%2C21.829094%2037.16856%2C21.32225%20C37.16856%2C20.815406%2036.74619%2C20.47751%2036.32382%2C20.47751%20C35.90145%2C20.47751%2035.47908%2C20.815406%2035.47908%2C21.32225%20Z%20M38.0133%2C21.32225%20C38.0133%2C21.829094%2038.43567%2C22.16699%2038.85804%2C22.16699%20C39.28041%2C22.16699%2039.70278%2C21.829094%2039.70278%2C21.32225%20C39.70278%2C20.815406%2039.28041%2C20.47751%2038.85804%2C20.47751%20C38.43567%2C20.47751%2038.0133%2C20.815406%2038.0133%2C21.32225%20Z%20M40.54752%2C21.32225%20C40.54752%2C21.829094%2040.96989%2C22.16699%2041.39226%2C22.16699%20C41.81463%2C22.16699%2042.237%2C21.829094%2042.237%2C21.32225%20C42.237%2C20.815406%2041.81463%2C20.47751%2041.39226%2C20.47751%20C40.96989%2C20.47751%2040.54752%2C20.815406%2040.54752%2C21.32225%20Z%20M0%2C23.85647%20C0%2C24.363314%200.42237%2C24.70121%200.84474%2C24.70121%20C1.26711%2C24.70121%201.68948%2C24.363314%201.68948%2C23.85647%20C1.68948%2C23.349626%201.26711%2C23.01173%200.84474%2C23.01173%20C0.42237%2C23.01173%200%2C23.349626%200%2C23.85647%20Z%20M2.53422%2C23.85647%20C2.53422%2C24.363314%202.95659%2C24.70121%203.37896%2C24.70121%20C3.80133%2C24.70121%204.2237%2C24.363314%204.2237%2C23.85647%20C4.2237%2C23.349626%203.80133%2C23.01173%203.37896%2C23.01173%20C2.95659%2C23.01173%202.53422%2C23.349626%202.53422%2C23.85647%20Z%20M5.06844%2C23.85647%20C5.06844%2C24.363314%205.49081%2C24.70121%205.91318%2C24.70121%20C6.33555%2C24.70121%206.75792%2C24.363314%206.75792%2C23.85647%20C6.75792%2C23.349626%206.33555%2C23.01173%205.91318%2C23.01173%20C5.49081%2C23.01173%205.06844%2C23.349626%205.06844%2C23.85647%20Z%20M7.60266%2C23.85647%20C7.60266%2C24.363314%208.02503%2C24.70121%208.4474%2C24.70121%20C8.86977%2C24.70121%209.29214%2C24.363314%209.29214%2C23.85647%20C9.29214%2C23.349626%208.86977%2C23.01173%208.4474%2C23.01173%20C8.02503%2C23.01173%207.60266%2C23.349626%207.60266%2C23.85647%20Z%20M10.13688%2C23.85647%20C10.13688%2C24.363314%2010.55925%2C24.70121%2010.98162%2C24.70121%20C11.40399%2C24.70121%2011.82636%2C24.363314%2011.82636%2C23.85647%20C11.82636%2C23.349626%2011.40399%2C23.01173%2010.98162%2C23.01173%20C10.55925%2C23.01173%2010.13688%2C23.349626%2010.13688%2C23.85647%20Z%20M12.6711%2C23.85647%20C12.6711%2C24.363314%2013.09347%2C24.70121%2013.51584%2C24.70121%20C13.93821%2C24.70121%2014.36058%2C24.363314%2014.36058%2C23.85647%20C14.36058%2C23.349626%2013.93821%2C23.01173%2013.51584%2C23.01173%20C13.09347%2C23.01173%2012.6711%2C23.349626%2012.6711%2C23.85647%20Z%20M15.20532%2C23.85647%20C15.20532%2C24.363314%2015.62769%2C24.70121%2016.05006%2C24.70121%20C16.47243%2C24.70121%2016.8948%2C24.363314%2016.8948%2C23.85647%20C16.8948%2C23.349626%2016.47243%2C23.01173%2016.05006%2C23.01173%20C15.62769%2C23.01173%2015.20532%2C23.349626%2015.20532%2C23.85647%20Z%20M17.73954%2C23.85647%20C17.73954%2C24.363314%2018.16191%2C24.70121%2018.58428%2C24.70121%20C19.00665%2C24.70121%2019.42902%2C24.363314%2019.42902%2C23.85647%20C19.42902%2C23.349626%2019.00665%2C23.01173%2018.58428%2C23.01173%20C18.16191%2C23.01173%2017.73954%2C23.349626%2017.73954%2C23.85647%20Z%20M20.27376%2C23.85647%20C20.27376%2C24.363314%2020.69613%2C24.70121%2021.1185%2C24.70121%20C21.54087%2C24.70121%2021.96324%2C24.363314%2021.96324%2C23.85647%20C21.96324%2C23.349626%2021.54087%2C23.01173%2021.1185%2C23.01173%20C20.69613%2C23.01173%2020.27376%2C23.349626%2020.27376%2C23.85647%20Z%20M22.80798%2C23.85647%20C22.80798%2C24.363314%2023.23035%2C24.70121%2023.65272%2C24.70121%20C24.07509%2C24.70121%2024.49746%2C24.363314%2024.49746%2C23.85647%20C24.49746%2C23.349626%2024.07509%2C23.01173%2023.65272%2C23.01173%20C23.23035%2C23.01173%2022.80798%2C23.349626%2022.80798%2C23.85647%20Z%20M25.3422%2C23.85647%20C25.3422%2C24.363314%2025.76457%2C24.70121%2026.18694%2C24.70121%20C26.60931%2C24.70121%2027.03168%2C24.363314%2027.03168%2C23.85647%20C27.03168%2C23.349626%2026.60931%2C23.01173%2026.18694%2C23.01173%20C25.76457%2C23.01173%2025.3422%2C23.349626%2025.3422%2C23.85647%20Z%20M27.87642%2C23.85647%20C27.87642%2C24.363314%2028.29879%2C24.70121%2028.72116%2C24.70121%20C29.14353%2C24.70121%2029.5659%2C24.363314%2029.5659%2C23.85647%20C29.5659%2C23.349626%2029.14353%2C23.01173%2028.72116%2C23.01173%20C28.29879%2C23.01173%2027.87642%2C23.349626%2027.87642%2C23.85647%20Z%20M30.41064%2C23.85647%20C30.41064%2C24.363314%2030.83301%2C24.70121%2031.25538%2C24.70121%20C31.67775%2C24.70121%2032.10012%2C24.363314%2032.10012%2C23.85647%20C32.10012%2C23.349626%2031.67775%2C23.01173%2031.25538%2C23.01173%20C30.83301%2C23.01173%2030.41064%2C23.349626%2030.41064%2C23.85647%20Z%20M32.94486%2C23.85647%20C32.94486%2C24.363314%2033.36723%2C24.70121%2033.7896%2C24.70121%20C34.21197%2C24.70121%2034.63434%2C24.363314%2034.63434%2C23.85647%20C34.63434%2C23.349626%2034.21197%2C23.01173%2033.7896%2C23.01173%20C33.36723%2C23.01173%2032.94486%2C23.349626%2032.94486%2C23.85647%20Z%20M35.47908%2C23.85647%20C35.47908%2C24.363314%2035.90145%2C24.70121%2036.32382%2C24.70121%20C36.74619%2C24.70121%2037.16856%2C24.363314%2037.16856%2C23.85647%20C37.16856%2C23.349626%2036.74619%2C23.01173%2036.32382%2C23.01173%20C35.90145%2C23.01173%2035.47908%2C23.349626%2035.47908%2C23.85647%20Z%20M38.0133%2C23.85647%20C38.0133%2C24.363314%2038.43567%2C24.70121%2038.85804%2C24.70121%20C39.28041%2C24.70121%2039.70278%2C24.363314%2039.70278%2C23.85647%20C39.70278%2C23.349626%2039.28041%2C23.01173%2038.85804%2C23.01173%20C38.43567%2C23.01173%2038.0133%2C23.349626%2038.0133%2C23.85647%20Z%20M40.54752%2C23.85647%20C40.54752%2C24.363314%2040.96989%2C24.70121%2041.39226%2C24.70121%20C41.81463%2C24.70121%2042.237%2C24.363314%2042.237%2C23.85647%20C42.237%2C23.349626%2041.81463%2C23.01173%2041.39226%2C23.01173%20C40.96989%2C23.01173%2040.54752%2C23.349626%2040.54752%2C23.85647%20Z%20M0%2C26.39069%20C0%2C26.897534%200.42237%2C27.23543%200.84474%2C27.23543%20C1.26711%2C27.23543%201.68948%2C26.897534%201.68948%2C26.39069%20C1.68948%2C25.883846%201.26711%2C25.54595%200.84474%2C25.54595%20C0.42237%2C25.54595%200%2C25.883846%200%2C26.39069%20Z%20M2.53422%2C26.39069%20C2.53422%2C26.897534%202.95659%2C27.23543%203.37896%2C27.23543%20C3.80133%2C27.23543%204.2237%2C26.897534%204.2237%2C26.39069%20C4.2237%2C25.883846%203.80133%2C25.54595%203.37896%2C25.54595%20C2.95659%2C25.54595%202.53422%2C25.883846%202.53422%2C26.39069%20Z%20M5.06844%2C26.39069%20C5.06844%2C26.897534%205.49081%2C27.23543%205.91318%2C27.23543%20C6.33555%2C27.23543%206.75792%2C26.897534%206.75792%2C26.39069%20C6.75792%2C25.883846%206.33555%2C25.54595%205.91318%2C25.54595%20C5.49081%2C25.54595%205.06844%2C25.883846%205.06844%2C26.39069%20Z%20M7.60266%2C26.39069%20C7.60266%2C26.897534%208.02503%2C27.23543%208.4474%2C27.23543%20C8.86977%2C27.23543%209.29214%2C26.897534%209.29214%2C26.39069%20C9.29214%2C25.883846%208.86977%2C25.54595%208.4474%2C25.54595%20C8.02503%2C25.54595%207.60266%2C25.883846%207.60266%2C26.39069%20Z%20M10.13688%2C26.39069%20C10.13688%2C26.897534%2010.55925%2C27.23543%2010.98162%2C27.23543%20C11.40399%2C27.23543%2011.82636%2C26.897534%2011.82636%2C26.39069%20C11.82636%2C25.883846%2011.40399%2C25.54595%2010.98162%2C25.54595%20C10.55925%2C25.54595%2010.13688%2C25.883846%2010.13688%2C26.39069%20Z%20M12.6711%2C26.39069%20C12.6711%2C26.897534%2013.09347%2C27.23543%2013.51584%2C27.23543%20C13.93821%2C27.23543%2014.36058%2C26.897534%2014.36058%2C26.39069%20C14.36058%2C25.883846%2013.93821%2C25.54595%2013.51584%2C25.54595%20C13.09347%2C25.54595%2012.6711%2C25.883846%2012.6711%2C26.39069%20Z%20M15.20532%2C26.39069%20C15.20532%2C26.897534%2015.62769%2C27.23543%2016.05006%2C27.23543%20C16.47243%2C27.23543%2016.8948%2C26.897534%2016.8948%2C26.39069%20C16.8948%2C25.883846%2016.47243%2C25.54595%2016.05006%2C25.54595%20C15.62769%2C25.54595%2015.20532%2C25.883846%2015.20532%2C26.39069%20Z%20M17.73954%2C26.39069%20C17.73954%2C26.897534%2018.16191%2C27.23543%2018.58428%2C27.23543%20C19.00665%2C27.23543%2019.42902%2C26.897534%2019.42902%2C26.39069%20C19.42902%2C25.883846%2019.00665%2C25.54595%2018.58428%2C25.54595%20C18.16191%2C25.54595%2017.73954%2C25.883846%2017.73954%2C26.39069%20Z%20M20.27376%2C26.39069%20C20.27376%2C26.897534%2020.69613%2C27.23543%2021.1185%2C27.23543%20C21.54087%2C27.23543%2021.96324%2C26.897534%2021.96324%2C26.39069%20C21.96324%2C25.883846%2021.54087%2C25.54595%2021.1185%2C25.54595%20C20.69613%2C25.54595%2020.27376%2C25.883846%2020.27376%2C26.39069%20Z%20M22.80798%2C26.39069%20C22.80798%2C26.897534%2023.23035%2C27.23543%2023.65272%2C27.23543%20C24.07509%2C27.23543%2024.49746%2C26.897534%2024.49746%2C26.39069%20C24.49746%2C25.883846%2024.07509%2C25.54595%2023.65272%2C25.54595%20C23.23035%2C25.54595%2022.80798%2C25.883846%2022.80798%2C26.39069%20Z%20M25.3422%2C26.39069%20C25.3422%2C26.897534%2025.76457%2C27.23543%2026.18694%2C27.23543%20C26.60931%2C27.23543%2027.03168%2C26.897534%2027.03168%2C26.39069%20C27.03168%2C25.883846%2026.60931%2C25.54595%2026.18694%2C25.54595%20C25.76457%2C25.54595%2025.3422%2C25.883846%2025.3422%2C26.39069%20Z%20M27.87642%2C26.39069%20C27.87642%2C26.897534%2028.29879%2C27.23543%2028.72116%2C27.23543%20C29.14353%2C27.23543%2029.5659%2C26.897534%2029.5659%2C26.39069%20C29.5659%2C25.883846%2029.14353%2C25.54595%2028.72116%2C25.54595%20C28.29879%2C25.54595%2027.87642%2C25.883846%2027.87642%2C26.39069%20Z%20M30.41064%2C26.39069%20C30.41064%2C26.897534%2030.83301%2C27.23543%2031.25538%2C27.23543%20C31.67775%2C27.23543%2032.10012%2C26.897534%2032.10012%2C26.39069%20C32.10012%2C25.883846%2031.67775%2C25.54595%2031.25538%2C25.54595%20C30.83301%2C25.54595%2030.41064%2C25.883846%2030.41064%2C26.39069%20Z%20M32.94486%2C26.39069%20C32.94486%2C26.897534%2033.36723%2C27.23543%2033.7896%2C27.23543%20C34.21197%2C27.23543%2034.63434%2C26.897534%2034.63434%2C26.39069%20C34.63434%2C25.883846%2034.21197%2C25.54595%2033.7896%2C25.54595%20C33.36723%2C25.54595%2032.94486%2C25.883846%2032.94486%2C26.39069%20Z%20M35.47908%2C26.39069%20C35.47908%2C26.897534%2035.90145%2C27.23543%2036.32382%2C27.23543%20C36.74619%2C27.23543%2037.16856%2C26.897534%2037.16856%2C26.39069%20C37.16856%2C25.883846%2036.74619%2C25.54595%2036.32382%2C25.54595%20C35.90145%2C25.54595%2035.47908%2C25.883846%2035.47908%2C26.39069%20Z%20M38.0133%2C26.39069%20C38.0133%2C26.897534%2038.43567%2C27.23543%2038.85804%2C27.23543%20C39.28041%2C27.23543%2039.70278%2C26.897534%2039.70278%2C26.39069%20C39.70278%2C25.883846%2039.28041%2C25.54595%2038.85804%2C25.54595%20C38.43567%2C25.54595%2038.0133%2C25.883846%2038.0133%2C26.39069%20Z%20M40.54752%2C26.39069%20C40.54752%2C26.897534%2040.96989%2C27.23543%2041.39226%2C27.23543%20C41.81463%2C27.23543%2042.237%2C26.897534%2042.237%2C26.39069%20C42.237%2C25.883846%2041.81463%2C25.54595%2041.39226%2C25.54595%20C40.96989%2C25.54595%2040.54752%2C25.883846%2040.54752%2C26.39069%20Z%20M15.20532%2C28.92491%20C15.20532%2C29.431754%2015.62769%2C29.76965%2016.05006%2C29.76965%20C16.47243%2C29.76965%2016.8948%2C29.431754%2016.8948%2C28.92491%20C16.8948%2C28.418066%2016.47243%2C28.08017%2016.05006%2C28.08017%20C15.62769%2C28.08017%2015.20532%2C28.418066%2015.20532%2C28.92491%20Z%20M17.73954%2C28.92491%20C17.73954%2C29.431754%2018.16191%2C29.76965%2018.58428%2C29.76965%20C19.00665%2C29.76965%2019.42902%2C29.431754%2019.42902%2C28.92491%20C19.42902%2C28.418066%2019.00665%2C28.08017%2018.58428%2C28.08017%20C18.16191%2C28.08017%2017.73954%2C28.418066%2017.73954%2C28.92491%20Z%20M20.27376%2C28.92491%20C20.27376%2C29.431754%2020.69613%2C29.76965%2021.1185%2C29.76965%20C21.54087%2C29.76965%2021.96324%2C29.431754%2021.96324%2C28.92491%20C21.96324%2C28.418066%2021.54087%2C28.08017%2021.1185%2C28.08017%20C20.69613%2C28.08017%2020.27376%2C28.418066%2020.27376%2C28.92491%20Z%20M22.80798%2C28.92491%20C22.80798%2C29.431754%2023.23035%2C29.76965%2023.65272%2C29.76965%20C24.07509%2C29.76965%2024.49746%2C29.431754%2024.49746%2C28.92491%20C24.49746%2C28.418066%2024.07509%2C28.08017%2023.65272%2C28.08017%20C23.23035%2C28.08017%2022.80798%2C28.418066%2022.80798%2C28.92491%20Z%20M25.3422%2C28.92491%20C25.3422%2C29.431754%2025.76457%2C29.76965%2026.18694%2C29.76965%20C26.60931%2C29.76965%2027.03168%2C29.431754%2027.03168%2C28.92491%20C27.03168%2C28.418066%2026.60931%2C28.08017%2026.18694%2C28.08017%20C25.76457%2C28.08017%2025.3422%2C28.418066%2025.3422%2C28.92491%20Z%20M15.20532%2C31.45913%20C15.20532%2C31.965974%2015.62769%2C32.30387%2016.05006%2C32.30387%20C16.47243%2C32.30387%2016.8948%2C31.965974%2016.8948%2C31.45913%20C16.8948%2C30.952286%2016.47243%2C30.61439%2016.05006%2C30.61439%20C15.62769%2C30.61439%2015.20532%2C30.952286%2015.20532%2C31.45913%20Z%20M17.73954%2C31.45913%20C17.73954%2C31.965974%2018.16191%2C32.30387%2018.58428%2C32.30387%20C19.00665%2C32.30387%2019.42902%2C31.965974%2019.42902%2C31.45913%20C19.42902%2C30.952286%2019.00665%2C30.61439%2018.58428%2C30.61439%20C18.16191%2C30.61439%2017.73954%2C30.952286%2017.73954%2C31.45913%20Z%20M20.27376%2C31.45913%20C20.27376%2C31.965974%2020.69613%2C32.30387%2021.1185%2C32.30387%20C21.54087%2C32.30387%2021.96324%2C31.965974%2021.96324%2C31.45913%20C21.96324%2C30.952286%2021.54087%2C30.61439%2021.1185%2C30.61439%20C20.69613%2C30.61439%2020.27376%2C30.952286%2020.27376%2C31.45913%20Z%20M22.80798%2C31.45913%20C22.80798%2C31.965974%2023.23035%2C32.30387%2023.65272%2C32.30387%20C24.07509%2C32.30387%2024.49746%2C31.965974%2024.49746%2C31.45913%20C24.49746%2C30.952286%2024.07509%2C30.61439%2023.65272%2C30.61439%20C23.23035%2C30.61439%2022.80798%2C30.952286%2022.80798%2C31.45913%20Z%20M25.3422%2C31.45913%20C25.3422%2C31.965974%2025.76457%2C32.30387%2026.18694%2C32.30387%20C26.60931%2C32.30387%2027.03168%2C31.965974%2027.03168%2C31.45913%20C27.03168%2C30.952286%2026.60931%2C30.61439%2026.18694%2C30.61439%20C25.76457%2C30.61439%2025.3422%2C30.952286%2025.3422%2C31.45913%20Z%20M15.20532%2C33.99335%20C15.20532%2C34.500194%2015.62769%2C34.83809%2016.05006%2C34.83809%20C16.47243%2C34.83809%2016.8948%2C34.500194%2016.8948%2C33.99335%20C16.8948%2C33.486506%2016.47243%2C33.14861%2016.05006%2C33.14861%20C15.62769%2C33.14861%2015.20532%2C33.486506%2015.20532%2C33.99335%20Z%20M17.73954%2C33.99335%20C17.73954%2C34.500194%2018.16191%2C34.83809%2018.58428%2C34.83809%20C19.00665%2C34.83809%2019.42902%2C34.500194%2019.42902%2C33.99335%20C19.42902%2C33.486506%2019.00665%2C33.14861%2018.58428%2C33.14861%20C18.16191%2C33.14861%2017.73954%2C33.486506%2017.73954%2C33.99335%20Z%20M20.27376%2C33.99335%20C20.27376%2C34.500194%2020.69613%2C34.83809%2021.1185%2C34.83809%20C21.54087%2C34.83809%2021.96324%2C34.500194%2021.96324%2C33.99335%20C21.96324%2C33.486506%2021.54087%2C33.14861%2021.1185%2C33.14861%20C20.69613%2C33.14861%2020.27376%2C33.486506%2020.27376%2C33.99335%20Z%20M22.80798%2C33.99335%20C22.80798%2C34.500194%2023.23035%2C34.83809%2023.65272%2C34.83809%20C24.07509%2C34.83809%2024.49746%2C34.500194%2024.49746%2C33.99335%20C24.49746%2C33.486506%2024.07509%2C33.14861%2023.65272%2C33.14861%20C23.23035%2C33.14861%2022.80798%2C33.486506%2022.80798%2C33.99335%20Z%20M25.3422%2C33.99335%20C25.3422%2C34.500194%2025.76457%2C34.83809%2026.18694%2C34.83809%20C26.60931%2C34.83809%2027.03168%2C34.500194%2027.03168%2C33.99335%20C27.03168%2C33.486506%2026.60931%2C33.14861%2026.18694%2C33.14861%20C25.76457%2C33.14861%2025.3422%2C33.486506%2025.3422%2C33.99335%20Z%20M15.20532%2C36.52757%20C15.20532%2C37.034414%2015.62769%2C37.37231%2016.05006%2C37.37231%20C16.47243%2C37.37231%2016.8948%2C37.034414%2016.8948%2C36.52757%20C16.8948%2C36.020726%2016.47243%2C35.68283%2016.05006%2C35.68283%20C15.62769%2C35.68283%2015.20532%2C36.020726%2015.20532%2C36.52757%20Z%20M17.73954%2C36.52757%20C17.73954%2C37.034414%2018.16191%2C37.37231%2018.58428%2C37.37231%20C19.00665%2C37.37231%2019.42902%2C37.034414%2019.42902%2C36.52757%20C19.42902%2C36.020726%2019.00665%2C35.68283%2018.58428%2C35.68283%20C18.16191%2C35.68283%2017.73954%2C36.020726%2017.73954%2C36.52757%20Z%20M20.27376%2C36.52757%20C20.27376%2C37.034414%2020.69613%2C37.37231%2021.1185%2C37.37231%20C21.54087%2C37.37231%2021.96324%2C37.034414%2021.96324%2C36.52757%20C21.96324%2C36.020726%2021.54087%2C35.68283%2021.1185%2C35.68283%20C20.69613%2C35.68283%2020.27376%2C36.020726%2020.27376%2C36.52757%20Z%20M22.80798%2C36.52757%20C22.80798%2C37.034414%2023.23035%2C37.37231%2023.65272%2C37.37231%20C24.07509%2C37.37231%2024.49746%2C37.034414%2024.49746%2C36.52757%20C24.49746%2C36.020726%2024.07509%2C35.68283%2023.65272%2C35.68283%20C23.23035%2C35.68283%2022.80798%2C36.020726%2022.80798%2C36.52757%20Z%20M25.3422%2C36.52757%20C25.3422%2C37.034414%2025.76457%2C37.37231%2026.18694%2C37.37231%20C26.60931%2C37.37231%2027.03168%2C37.034414%2027.03168%2C36.52757%20C27.03168%2C36.020726%2026.60931%2C35.68283%2026.18694%2C35.68283%20C25.76457%2C35.68283%2025.3422%2C36.020726%2025.3422%2C36.52757%20Z%20M15.20532%2C39.06179%20C15.20532%2C39.568634%2015.62769%2C39.90653%2016.05006%2C39.90653%20C16.47243%2C39.90653%2016.8948%2C39.568634%2016.8948%2C39.06179%20C16.8948%2C38.554946%2016.47243%2C38.21705%2016.05006%2C38.21705%20C15.62769%2C38.21705%2015.20532%2C38.554946%2015.20532%2C39.06179%20Z%20M17.73954%2C39.06179%20C17.73954%2C39.568634%2018.16191%2C39.90653%2018.58428%2C39.90653%20C19.00665%2C39.90653%2019.42902%2C39.568634%2019.42902%2C39.06179%20C19.42902%2C38.554946%2019.00665%2C38.21705%2018.58428%2C38.21705%20C18.16191%2C38.21705%2017.73954%2C38.554946%2017.73954%2C39.06179%20Z%20M20.27376%2C39.06179%20C20.27376%2C39.568634%2020.69613%2C39.90653%2021.1185%2C39.90653%20C21.54087%2C39.90653%2021.96324%2C39.568634%2021.96324%2C39.06179%20C21.96324%2C38.554946%2021.54087%2C38.21705%2021.1185%2C38.21705%20C20.69613%2C38.21705%2020.27376%2C38.554946%2020.27376%2C39.06179%20Z%20M22.80798%2C39.06179%20C22.80798%2C39.568634%2023.23035%2C39.90653%2023.65272%2C39.90653%20C24.07509%2C39.90653%2024.49746%2C39.568634%2024.49746%2C39.06179%20C24.49746%2C38.554946%2024.07509%2C38.21705%2023.65272%2C38.21705%20C23.23035%2C38.21705%2022.80798%2C38.554946%2022.80798%2C39.06179%20Z%20M25.3422%2C39.06179%20C25.3422%2C39.568634%2025.76457%2C39.90653%2026.18694%2C39.90653%20C26.60931%2C39.90653%2027.03168%2C39.568634%2027.03168%2C39.06179%20C27.03168%2C38.554946%2026.60931%2C38.21705%2026.18694%2C38.21705%20C25.76457%2C38.21705%2025.3422%2C38.554946%2025.3422%2C39.06179%20Z%20M15.20532%2C41.59601%20C15.20532%2C42.102854%2015.62769%2C42.44075%2016.05006%2C42.44075%20C16.47243%2C42.44075%2016.8948%2C42.102854%2016.8948%2C41.59601%20C16.8948%2C41.089166%2016.47243%2C40.75127%2016.05006%2C40.75127%20C15.62769%2C40.75127%2015.20532%2C41.089166%2015.20532%2C41.59601%20Z%20M17.73954%2C41.59601%20C17.73954%2C42.102854%2018.16191%2C42.44075%2018.58428%2C42.44075%20C19.00665%2C42.44075%2019.42902%2C42.102854%2019.42902%2C41.59601%20C19.42902%2C41.089166%2019.00665%2C40.75127%2018.58428%2C40.75127%20C18.16191%2C40.75127%2017.73954%2C41.089166%2017.73954%2C41.59601%20Z%20M20.27376%2C41.59601%20C20.27376%2C42.102854%2020.69613%2C42.44075%2021.1185%2C42.44075%20C21.54087%2C42.44075%2021.96324%2C42.102854%2021.96324%2C41.59601%20C21.96324%2C41.089166%2021.54087%2C40.75127%2021.1185%2C40.75127%20C20.69613%2C40.75127%2020.27376%2C41.089166%2020.27376%2C41.59601%20Z%20M22.80798%2C41.59601%20C22.80798%2C42.102854%2023.23035%2C42.44075%2023.65272%2C42.44075%20C24.07509%2C42.44075%2024.49746%2C42.102854%2024.49746%2C41.59601%20C24.49746%2C41.089166%2024.07509%2C40.75127%2023.65272%2C40.75127%20C23.23035%2C40.75127%2022.80798%2C41.089166%2022.80798%2C41.59601%20Z%20M25.3422%2C41.59601%20C25.3422%2C41.089166%2025.76457%2C40.75127%2026.18694%2C40.75127%20C26.60931%2C40.75127%2027.03168%2C41.089166%2027.03168%2C41.59601%20C27.03168%2C42.102854%2026.60931%2C42.44075%2026.18694%2C42.44075%20C25.76457%2C42.44075%2025.3422%2C42.102854%2025.3422%2C41.59601%20Z%22%20id%3D%22path-1%22%3E%3C%2Fpath%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2226.5190972%25%22%20y1%3D%2272.3155234%25%22%20x2%3D%2281.6678779%25%22%20y2%3D%2225.6692699%25%22%20id%3D%22linearGradient-3%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23EF635C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FC9376%22%20offset%3D%2243.6233108%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFEDD9%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22final%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Express-Double-Cash-Back%22%20transform%3D%22translate(-110.000000%2C%20-88.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Rectangle%22%20transform%3D%22translate(110.000000%2C%2088.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20transform%3D%22translate(0.689480%2C%200.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-2%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fmask%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Mask%22%20fill%3D%22%23000000%22%20fill-rule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20fill%3D%22url(%23linearGradient-3)%22%20mask%3D%22url(%23mask-2)%22%20x%3D%22-10.68948%22%20y%3D%22-9%22%20width%3D%2263%22%20height%3D%2260%22%3E%3C%2Frect%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") !important; + background-size: contain !important; + width: 100% !important; + height: 44px; + background-position: center !important; + background-repeat: no-repeat !important; + position: relative !important; +} +.ebca-notification .ebca-higher-cashback .ebca-notification-logo-bg .ebca-notification-logo-bg-arrow { + border-top: 68px solid white !important; + border-bottom: 68px solid white !important; + border-left: 16px solid transparent !important; +} +.ebca-notification .ebca-higher-cashback .ebca-notification-logo-bg.ebca-notification-logo-bg-activated .ebca-notification-activated { + line-height: 25px; + padding-top: 5px; +} +.ebca-notification .ebca-higher-cashback .ebca-body-wrapper { + display: flex; + text-align: center; + flex-direction: column; + font-family: 'Benton', sans-serif; +} +.ebca-notification .ebca-higher-cashback .ebca-body-wrapper .ebca-high-header { + display: flex; + flex-direction: row; + text-align: center; + align-items: baseline; + justify-content: center; +} +.ebca-notification .ebca-higher-cashback .ebca-body-wrapper .ebca-high-header .ebca-low-value { + color: #A0A0A0; + text-decoration: line-through; + font-size: 14px; + line-height: 17px; +} +.ebca-notification .ebca-higher-cashback .ebca-body-wrapper .ebca-high-header .ebca-high-value { + color: #ED5050; + font-weight: 600; + font-size: 16.72px; + line-height: 17px; + padding: 0 5px; +} +.ebca-notification .ebca-higher-cashback .ebca-body-wrapper .ebca-notification-button { + margin-top: 10px; + margin-bottom: 10px; +} +.ebca-notification .ebca-higher-cashback .ebca-body-wrapper .ebca-high-footer { + color: #666666; + font-size: 11px; + line-height: 16px; + font-weight: 400; +} + +.cbsp-button-mixing { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; +} +.cbsp-button-mixing:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.slide-fade-enter, +.slide-fade-leave-active { + transform: translateY(-20px); + opacity: 0; +} +.slide-fade-enter-active, +.slide-fade-leave-active { + transition: 0.5s; +} +.cbsp-wrapper { + position: fixed; + top: 0; + right: 0; + left: 0; + bottom: 0; + display: block; + z-index: 2147483647; +} +.cbsp-data-collection { + font-family: 'Benton', sans-serif; + min-width: 520px; + max-width: 520px; + top: 34px; + left: 50%; + transform: translateX(-50%); + margin-top: 0; + margin-left: 0; + padding: 5px; + border-radius: 5px!important; + border-style: none; + background-color: #fff; + position: fixed; + z-index: 2147483647; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important; + font-size: 14px; + line-height: 20px; + text-align: left !important; + text-transform: none; + letter-spacing: normal !important; + color: #434343; + min-height: 500px; +} +.cbsp-data-collection > div { + margin: 0px; + background: #fff; + overflow: hidden; +} +.cbsp-data-collection .cbsp-body { + padding: 16px; + margin: 0 auto; + display: flex; + flex-direction: column; + text-align: center; +} +.cbsp-data-collection .cbsp-body p { + color: #252525; + font-size: 16px !important; + font-weight: 600 !important; + line-height: 20px !important; + font-family: 'Benton', sans-serif !important; + padding: 0 !important; + margin: 16px 0 !important; + background-color: transparent !important; + width: initial !important; + text-align: center !important; +} +.cbsp-data-collection .cbsp-body a { + text-decoration: none; + color: #20A1E6; +} +.cbsp-data-collection .cbsp-body a:hover, +.cbsp-data-collection .cbsp-body a:visited { + color: #20A1E6; +} +.cbsp-data-collection .cbsp-body p, +.cbsp-data-collection .cbsp-body small { + cursor: default; +} +.cbsp-data-collection .cbsp-body__logo { + background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22110%22%20height%3D%22110%22%20viewBox%3D%220%200%20110%20110%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Crect%20width%3D%22110%22%20height%3D%22110%22%20fill%3D%22url(%23pattern0)%22%2F%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Cpattern%20id%3D%22pattern0%22%20patternContentUnits%3D%22objectBoundingBox%22%20width%3D%221%22%20height%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23image0%22%20transform%3D%22scale(0.00152905)%22%2F%3E%0A%20%20%20%20%20%20%20%20%3C%2Fpattern%3E%0A%20%20%20%20%20%20%20%20%3Cimage%20id%3D%22image0%22%20width%3D%22654%22%20height%3D%22654%22%20xlink%3Ahref%3D%22data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAAo4AAAKOCAYAAAAoDpjgAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAIAqSURBVHgB7d0HYGTXed79Z3rDoAO7wPbC5ZJcVlEUxaYuWbLkKluxHceJ7FhuiWOnOLETxylOj1NsJ3bc7c9yldV7o9h7XS65vTf0Nn3mznfOxS6JtrsDYICZuff%2Fo0ZYYAEsMBjMPPOec943UDUEAAAAXJ0TFAAAAFADgiMAAABqQnAEAABATQiOAAAAqAnBEQAAADUhOAIAAKAmBEcAAADUhOAIAACAmhAcAQAAUBOCIwAAAGpCcAQAAEBNCI4AAACoCcERAAAANSE4AgAAoCYERwAAANSE4AgAAICaEBwBAABQE4IjAAAAakJwBAAAQE0IjgAAAKgJwREAAAA1ITgCAACgJgRHAAAA1ITgCAAAgJoQHAEAAFATgiMAAABqQnAEAABATQiOAAAAqAnBEQAAADUhOAIAAKAmBEcAAADUhOAIAACAmhAcAQAAUBOCIwAAAGpCcAQAAEBNCI4AAACoCcERAAAANSE4AgAAoCYERwAAANSE4AgAAICaEBwBAABQE4IjAAAAakJwBAAAQE0IjgAAAKgJwREAAAA1ITgCAACgJgRHAAAA1ITgCAAAgJoQHAEAAFATgiMAAABqQnAEAABATQiOAAAAqAnBEQAAADUhOAIAAKAmBEcAAADUhOAIAACAmhAcAQAAUBOCIwAAAGpCcAQAAEBNCI4AAACoSVh%2BVjX%2Fq1x6af8PAHwkEJj9P%2FclZQQANfBlcKyWJafkuKGxOpsaAcCfAu7%2FFAiaABkNKBi69AYAWEKgasgvzHdaKThyyoRFAFjEBEYbHIMmQAZCpEcAizi%2BCY5Vp6pKruq%2BBABchVm2DseCCoQJjwDmcXyxq8VGY0IjANTIkcp5h%2FtMAIt4Pzia%2Bz2nwB0gACyLucss5xwBwFyeD47VSnV2TyMAYHkce5CQ%2B08Ab%2FB8cHSKHIQBgJWyHSgA4DJPB0d77sdhiRoAVsxtW8b9KIBLvF1x5IkyAKyaUxEAuDxecRTL1ACwSlQcAVzm7Yoj93UAsHrclwK4hOmkAAAAqAnBEQAAADUhOAIAAKAmBEcAAADUhOAIAACAmhAcAQAAUBOCIwAAAGpCcAQAAEBNCI4AAACoCcERAAAANSE4AgAAoCYERwAAANSE4AgAAICaEBwBAABQE4IjAAAAakJwBAAAQE0IjgAAAKgJwREAAAA1ITgCAACgJgRHAAAA1ITgCAAAgJoQHAEAAFATgiMAAABqQnAEAABATQiOAAAAqAnBEQAAADUhOAIAAKAmBEcAAADUhOAIAACAmhAcAQAAUJOw4HtOwVF5qqKqI8A3gtGAwu0hBUIBAQBqQ8XR56pOVeVph9AI33GKVVUy3PABYDkIjj5XLZpLpSrAjyoFgiMALAfB0eeqVUIjfIzcCADLQnAEAABATQiOAAAAqAnBEQAAADUhOAIAAKAmBEcAAADUhOAIAACAmhAcAQAAUBOCIwAAAGpCcAQAAEBNCI4AAACoCcERAAAANSE4AgAAoCYERwAAANSE4AgAAICaEBwBAABQE4IjAAAAakJwBAAAQE0Ijj4XCAQEAABQC4KjzwVC9v8E%2BFIgzI0fAJaD4Ohz9oEzGOVmAB8ymTGU4LYPAMsRFvzNPHiGO4Jy8gFVK1UBfhGMmCdNMYIjACwHwRHuPsdQgiU7AABwdTzdBgAAQE0IjgAAAKgJwREAAAA1ITgCAACgJgRHAAAA1ITgCAAAgJoQHAEAAFATgiMAAABqQnAEAABATQiOAAAAqAnBEQAAADUhOAIAAKAmBEcAAADUhOAIAACAmoQFYM045aoq9lKqqlqpyqnYl1LV%2FJ19fa5AKKCA%2B9JcggEFwwGFIrOXgHmKFwgEBABAIxEcgTqaPFvQ%2BMmixk7mNH2%2BpJnhkoqZivLTFZXyjsrmYl86pdkwOVfQ%2FDaGokGFowH3ZTQZVCwdVrw95F7aB6Pq2ZFQ97aY2jdHFQwSJAEA64vgCKxAueho%2BLWchg7nNHokp5FjBU2eKagwU9FKOWV7McEya1%2B7%2FHkKS76vDZUdm2LqMiGy77qE%2Bq9PqHdXXLF2fqUBAGsnUDXkUW5Vx1R3gNUqmKrh6JG8Lr6a1emnp3X2hYy7BN1Mgmapu%2B%2B6uLbd3a7B21Lq2RlXooMgidULRAIKx9kSD0AOwRG4gtxEWaPH8jr6rUmdfnZGufGyu%2BzcCr8xdrk72hbStrektfP%2BDvXuTqitL%2BzunQSWi%2BAI4BKCI3CZ%2FVWwYXH4YE7HHpnS%2Bf1Zd89ipdjavyL2kE3Hpqg27E1o613t6jcvOzfHBNSK4AjgEoJjQ5hrvOpU5dhDEhXPXv0tw55ynrxQ1CmzBH3mxYzOvZRp%2BbB4JXY5u3tHXDvemtau%2BzqU7o%2B4h3LQWO4p%2Bpg9SW%2BPz6vpEBwBXEJwbIRquarSRGVROxasM3P1XziU1YEvjev08zMqZv1VnbZtfjbsSej2D%2FeZl3HzOsGgoczVH%2BkMKdiEPweCI4BLCI6NUJ6pqJJhCb1RbG%2FF0y%2FMuIHx7P6Mqf7K12x7yI7BqPa9v1t73t6pUJR9kI0SsHtTu5qvBExwBHAJwbERSuNlOR5dCm1mbmB8bkZP%2F8Wwxk8XhMVSvRHd%2Bf192vbmNsVSIWH9xTZE1GwIjgAuITg2QtEExyrBcd04TlXnD2S1%2F3NjOvNSxg2QuDL3MI2pQN75fX0a2JckQK4zgiOAJkZwbASC4%2FqwgdG203npM2M69fyMygW2ByxHxASFjTckdNP7urXp1pR7sAZrj%2BAIoIkRHBuB4Lj2clMVvfa1cR3%2B1qQmzxeFlbNTam404XHf%2B7uU6OQI9lojOAJoYgTHRiA4rq2Lr2X12B9e1OiJvO8PvtRTqjusez66UVvf1Eb1cQ0RHAE0MYJjIxAc14YdC%2FjMnw%2B7lUZn5SOjcRV2%2F%2BP2u9K68yN96hiICvVHcATQxAiOjUBwrC97Ez73sq0yXtDEGZal10M8HdJb%2F%2B4G7b6%2FQ6gvgiOAJkZwbASCY%2F0UsxW98KlRdy9j1lyvWD9BEyauu69Dd3x%2Fr9p6mi%2FstCqCI4Am5rDTHS1r6mJJT%2F%2FpRR1%2FclreffrTvOwTs0MPTigzVtId39ur%2Fj1JBcgWAOBpBEe0pLHTBT30W%2Bc1fDgnNI4N7Ha%2B98xwSXf%2F3Y0auCmhMKMLAcCzWKpuAJaqV%2BfY49N65HfOqzDDCZhmYmdf3%2F49vbrdVB%2BxcixVA2hiLFWjddiJLy99bkzP%2FdWwKiWCd7OxP5Pn%2FnpEUxeLuu%2FHBph5DQAeRHBES6iY0Pjknwzp1a%2BOMzKwiTkVu%2B9xUqWco7f99KA7fQYA4B0ERzS9vFmSfvi3z%2Bvk09M09G4RJ56aNj%2B3027lsXMT%2FR4BwCsoB6Cp2abej%2F%2FBRZ14ktDYSuzO6fOvZPXUn17U2Mm8AADeQHBE0yqa0Pjo717UkYcnhdZ08pkZPfz%2FLigzWhIAoPURHNGU7PL0E38ypKOPEhpb3dDhnL72a2eVnaBBOwC0OoIjmk6lWNXTHx%2FSwW9MCN5gw%2BNX%2FssZlZqwPRYAoHYExwagScmV2VO5T%2F4podGLho%2Fk9OCvn1O5SHgEgFZFcGyAQIjoeCXPfWJUB74yzkEYjzr57Iwe%2BX8X3HY9WMw22gaAZkZwbIBgIshM3yUcf2JaL316RNUKfRq9qupUdezxKR16aEKVEuFxoVCS4AigudHHsQGCdnxXZ0iVbJXRg5dMnMnrod8%2Bz0QYH7A%2F42f%2FYkSxVEjXPdApGCHzv1RQoRjPKAE0N4JjgwQjQQU7BMOetv3a%2Fzrntt%2BBP9g54099fFib35JWx%2BaYAACtgae3aCgbFp%2F83QsaO06TaL%2FJjJT0tf90Wjna9ABAyyA4oqEOfH5Mr35hXPCn8%2FuzevT%2Fnnf3PgIAmh%2FBEQ1z%2FNEpvfiJUbcFD3zK%2FOgPfmVCr32J9ksA0ArY44iGsHvcnvz9i5q%2BUJSf2FZMQfNbF44u%2FZzNVt5sk%2Byqj7Z72u%2F5yd%2B%2FoIGbk%2Brcwn5HAGhmBEesOxsUnvnjIY0cycnLbMulaDKo9EBM29%2BaVu%2FuhNo3RRUyoTEUXrrtiq2%2B2gbZ0xdKGj6U07kXZjRyOKdSoapq2buV2Znhkh76X2f1bb%2ByTdG2kAAAzYngiHV38dWcXvrkqLys%2F4akbvpQt7a%2BJa2ubfEV9e3c%2B21dbiP0qfNFnbDL%2Bn81rNGj3j1EdPrZGZ14Ylp73k2LHgBoVoGqIY9ySlVVmI3bVBxTNfvLjx3xbLVx4OaU7vy7G7TrgfY1mRB09JuTevZPLurcSxlPTtfp2h7XB%2F7dNnVtZcm6mdiJNuE4W%2BIByCE4Yt3YoPP8Xw7rsf97Xl4T7wjpto%2F06a4f23jFZeh6KRccvWCuxyd%2F%2B4KKWe%2Fdvq9%2Fb5fe9S82KxhkikqzIDgCuMThngDrZvR4Xi%2BawOM1G%2Fcl9aH%2FulN3%2F%2Fjah0YrHAvqzh%2FeoO%2F%2BjV3ukrjXHHlwQudNRRUA0HwIjlgX9sDHK58dVWbUW82e%2B65P6N2%2FtFWb72xTYJ0rZIO3tum9v7xV296SlpdUilX3xH1%2BisbgANBsCI5YF%2Beez%2BjQV73Vq6%2Fv%2BqTe9Ytb3PDYEIHZ4Pq%2Bf7etcV%2FDGhl6Lafjj0wLANBcCI5Yc3as4MufGnV7N3qF7Tf43l%2Fe4h6GabRUb0Tv%2F%2Ffb1LXNOwdK7D5OO1UoP8X8cgBoJgRHrDl7gvrM8zPykgf%2B0Sb17W2eKl%2FProTu%2FelBhWPeOVBy8bWsXvsy4ygBoJkQHLGmbEPrZ%2F6%2FIZVy3jj9a%2Fsx7nxbh3a9o0OBQHOFtOve3andb%2FdOD0TbusmeHrf7YwEAzYHgiDV1%2BpkZU230zgnZ9MaI7v%2FZQTWre%2F%2FhoFJ93unrPzNU0kufGJV3m4YBQGshOGLN2Grjs6baaPtpesUuU9Hr3h5Xs0pviJrKY5e85Oi3JpQdKwkA0HgER6yZ0WN5nd%2FvnWpjKBrQ9e9r7lBml9LtqMJUj3eqjkMHczrrsT2yANCqCI5YMy%2F9zainxuIN7Etpw42rb7hdLVdVNlXYcmHBxbzN%2Ft1q9e1JaPObvNPb0d6GbCunCnsdAaDhvFOWQFMpFRwde2hSXrL9vnYFVzF%2FumKC4YnHp3TOVM%2FykxV3KX8uWy1MdIY1cEtK2%2B9pdyfErIT9uMHbUzr4Fe%2BcSD77YkZnXsho213eanYOAK2G4Ig1sf%2BT3urbaOf0br6jTSs1dDCrr%2F2707p4IFvT%2B2%2B4Kal3%2FLPNK%2B4Tab9WO8mm6nhjf6k9lX%2F4axPaemfaDdgAgMYgODaKeTy3h0aqFe8dF7WB8ciD3qo22j2Dia6V%2FbpkR0v6zM8d1%2FSFYs0fc%2FGVrL7%2BH07rg%2F95hzq3Lr%2Bxd7I7YqqXIWXHvDO2z%2B5zzFwsulVZrwmYSnYgoqZr8QQACxEcG8BWgSozjpy848k2IxPH8%2B6BBi%2BJpkKKryCw2P15L%2FzF8LJC42XD5jp86RMjuv8fDrrBYjmC5ktt6494KjjaOeenHp%2FWrnvb5TnmxxuMBhVOB5f9swaA9cSiTwM4BRMcc94MjTYUn3xmxjNLpJdFEkFF4sv%2FdSlMl80S68qrr4e%2FMaGZkeW3ogmZEBJNh%2BQldk%2FooQcnPHfbctkViILj3i8AQDMjODaADY5elTEVrjMveq91SjASUCiy%2FEpQMeto%2FFReK1WcrqiwgnnNAZMZwxHvVa5GT%2BQ1eX751dtWQXAE0OwIjg1Q9fAYjCmzJGsf3HFJVatqSVRd5cd7TWHG0fAxD9%2B%2B%2BFkDaHIER9TV6eczKheZD4e1YZerTz41LQBAYxAcUTeFTEUXD9bWbgZYqaEjeeUmvXPoBwBaCcERdZObrGh6iJnCWFulfEUXPHZqHwBaBcERdTN6oqDclHeafqM52QNH5%2FZT2QaARiA4om5OPzftzVYpaC7mJnbhtYwAAOuP4Ii6qBSr5sGcKhDWx%2FjposoFjiADwHojOKIuJs4V3MMxwHqwozrPvETVEQDWG8ERdWGbMpdyLFNj%2FZzbn%2FHk9CUAaGYER9TF8JE8%2BxuxruzsaparAWB9ERxRF8NHaY%2BC9WVneFdoNo8mZSeEOeXK6xfAK8ICVskxlcbxMwUB68lujygXbcUxJKBRbCjMTmY1dXFc5187peGTQ5o8N6rcdFalwhtz1aPJuNI9abX1dap7U686B7uV7u1UrC2hYCCgYDikQCigQODSjHk7brTqvD5ydG74tO9n3z8cCZvPG3vjY4B1QHDEquXGK8rTvxHrrJRz3KpjW29EwHqzW3PO7D%2Bup%2F7yIR16%2BGWdP3hGldLyJxol2lNKdqUUTycViUcUiUVf%2F%2FyFbF5OZTY55ibfOAwWiUWU7G5T58Zubbl1l%2Fa95w4NXL%2FFDZPAWiM4YtWmLhQFNMLkhZI27hWwbqomyL34xaf05f%2FxNzr1wlGtVm4q415W6vnPPKHP%2FLs%2F1eZ92%2FXun%2FlO3f6d9ygc5aEdaydQrXr3XKJTqqqSb77N88Xxsqoe2pt16MFJfev%2FnFOr6Ls%2BoX3f2aOBW9qU6Kz9GXr7YFQrMXVudcE60RlWJLn87ci5ibJK2dpu%2F7ZiPHwoq%2F2fGtW5F1qnzc2bvr9Xd3y4T14S29B8FdRAJKBwnC3xo2YZ%2BrP%2F8c%2F08pefMb8zzde31i5d7773Jn3Pr%2FywNt28Q8AacHhaglWbGW6d%2BdQ77u%2FQt%2F3brYq1h7Ve24JWGjhXywbORGdt79s%2BKPXvTWjPu7v00P88qwOfG1U53%2FxPbuzJarsHLECmwRo7%2B8pJ%2FdYP%2FUeNnR5WsyqbpfLXHnxR%2F%2BdvndZHf%2B%2FntfPN1ysQ4pcD9cUtCquWn1r%2Bvp5G6Nmd0Pv%2F%2FTbFO9YvNLYaW9m8%2F2cHtfUt7WoFucnKpQMywNqwew3PHzxtwtivNnVonGviwpj%2B%2BKd%2BXadfPi6g3giOWLXsZPMHx5BZarvjB3sVS7N5%2FFqiqZDu%2BweDLXFd5Wfo5Yi1dcaErz%2F4sf%2BhiXOjaiUjJy%2Fqr3%2Fx9zV9cUJAPREcGyAQ9Fa5KzvR%2FMExbpamt97VGlW0ZtC2IaKOTY1ZYl%2BOYtZRqQn3Ma8YlfDmYqqNRz7xtHoLUd19482656Zb3Mutu%2FZoS98GRcLNvdvr6JOv6aE%2F%2BrKAemKPYwMEYwE5eXlGK7TiCZnrvFF7DVtRzFQdbeWx2dnQWCl556BZOMVz%2BWYy%2FfhJbR%2BNafub3rLk3xdKJR07d0aPvvKSJmam1Ywe%2BYOv6M7vvk8brtskoB64l2qAUCw4%2BwDhkWu%2FwlIhGsTe9pyyB4KjuS8IJYIKJrhLbhblybwmv3bErTpeSSwS0Q3bduj73%2F5utwoZDjXfk62poQk9%2FdcPC6gXKo6NYJajQm0hBW2LFQ885pUY%2B4YGKZtqY7AtqGhvi9%2BV2SXqQIBDW00k%2B%2BxZlS7UVkVsT6b0jtvfpJ50ux478LLyxeaapPX0Xz%2Bkd%2Fzkh5TqTAlYLYJjA3llr2OZ4IgGsb1ancrsCDagbkyVMfP88nrThoMh3X7d9UrEYnr45Rc0lW2efqgzo1M69cIR3fD2WwWsFusiWDWWqlfGVssKmYoKMxWVC4TvlbD7G6sO1x3qqzSaVWl4RstlZ0bv3bpdd%2B290Q2SzaIwk9fQkdYZ0oDmRsURWGfTF4s69vCkhl7NuX92ylKyJ6zu7XFtflObNt6UVDjGczqgUYqnJ%2BTkV9YtwobHfTt269zIiA6cao4%2BinZA3Jn9JwTUA8ERWCcX9mf0%2BG%2Bd18knZ1StXLlKZkPkWz82oBs%2F1GMCJEuwwHqrTBXMksDKu0XYQzLvufMtGpma0NDEuJrB2KkhAfVAWQNYB8%2F%2F2bA%2B%2FXPHdOKx6auGRis7Wta3%2FvsZffmXTyg73hpTeQAvqVacVR9ctD0e33XHmxVskhNPkxebI8Ci9REcsWpUxa5u%2FydH3fnPNhDWyu55PPz1SX3lX59UZoTweCXBcMBzDfXReIFoyNy4Vn%2B7Guzp053X32A%2B1cofau3HRsMRrVYxW1ClyH0JVo%2BlaqxaKBo0Qaf5m4A3wpFvTOhbv3bWPf27XPbQx4nHpvT4b5%2FX%2Ff9o0G3KjflC0YA7ThKop2DCBLWQCXvl1R38s%2Fsdb9t9vY6fP6fhydpH%2F9mP6%2B%2Fo0u7NW7Slf4MiobAyuZwOnT2l4xfOuX9erkImr%2BPPHNLue24UsBpUHLFqUZoWL6kwXdFTv3dBxczKQ3XVPG699oUxnXhkSlgsbIJjkFY8qLNgtH5P0myPx7v27nPDYC0un8z%2BwN336K033qzNvf3a0NWtnYOb9N4736IPvvU%2BbdjYX%2FPnuyw7mdGrD74oYLV4xMeqRaiELen4w1O6%2BOryKwMLlXKOu9xN25nFbLU7SMURdRZMRuvaG9SGvoHu3pre1y5vv%2FP2O9XT3rno7%2Byy9ZbeDfqu%2B9%2Bm7q4OLYdTrujZv3lEj%2F7xV3X40QPKT2cFrATBEasWayM4LmR7W%2B7%2F9Ijq5cIrWV08wB39Qva2F6F1EeosGAvXZY%2FjZXY04Vtvutk9MHM1qXhcH37gnUpEY1d9v3Qgpg%2Fdfb%2FCkeXtNhs%2BfkEf%2F7nf0v%2F8jn%2Blf37Dj%2Bp3fuS%2F6uDDLwtYDvY4YtUSnQTHhSbPFjVxun5jx4rZisaO57VxHyPD5oqlQwrFqTiifoaPndfXf%2F0zOvrlF6RyVf2dndq9aau29m9QMDj7JGUqk9HLx4%2FoxIXzqpr%2FutJp7d2yXds2DFxxXvWWvg3aNbhZr506ccV%2F2%2FZ%2FvFa4vKw33ak927frwOEjWolSrqgXPveEXvvWS7r%2Bvn16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dlA0L31phu%2Fa5ebb09ZQIkp1%2BwPFVTSSxeuHqTcRsyOlIx97J9Q4fOjfbqlRMdOnbuoMrO%2FJPZQ0fP6S9%2F8Q909sBJfeCffUSxVH2rW07B0eSrsyG3av4LkDKWJXumpKEHp9W2qzknydgnPnbvcKw7rEA0yH7MVSI4wvNCkYC23JrSppuSOm0qCvu%2FOO6ewiZAzmcDY8%2F2mFmW7tbWN7W5J6eBlQjEQgr3JlWZrG3ecyIW1q7BLu3Y2KlTQ4N65uDLOjs6rFL5jb6QuYkZffP%2FfcGEx1P6of%2F5k%2Bra1Kt6yQ0Xlbtoeze%2BXqZqWoVKRqFg1FRGm2dPYXmmovGns0oMNm%2BksF9jcaykSGdYif6ou28XK8PhmAYojpdVZdm0YWxgPPX8jF76zKiGDuc4QGPuP3u3x3XDe7t03QMdbtBG43jhcIyVeeaMRj7%2Bgpzc8qc7VRxHx86f1VOvvqKL42NyFvySDtywVX%2F7f%2F%2BUtt9xneph5OkpPfHTr7p9deOhtIKB5gxATrWiF0Y%2FYx64A7q977vUTBJbIrrhX%2FW71b1mFzK35dSOuNuLFsvmUHGE79jK2vY3p922MiPH826APGMqkcWsvxKkDYiD%2B5La87ZObX9LmlGBqIvKVF6jf%2FWyss%2BdrXmc4UKhYFDXbdriXk5ePK8Xjh42S9hn3EBpnX%2F1lP73d%2F2K%2FtZ%2F%2B3Hd%2BT33rXpU4djzk6bQYD93wF2qblZ2CT1THFWuMukeJGqmvZjF4bKmXy2qfV9Mzc4WlLKnC0pujS1r7y5mERzhW%2FY%2Bt29nXO%2F4mUHNmCWME09Ou5ehI%2FkVP%2BA1OxsOe0x1cfNtKe26t13tproVasKG02hNTr6s0U%2Fsd6uN9bJtw4C29m%2FUyOSknj38qo6cPa18sahCJq8%2F%2BQe%2Fof1ffU7f82%2F%2BjjoHV3bq2h6gvPDQxOXXmjs4BoKKhdo0XTLL%2BNW8ooGEmkUlX9XYM9mWCI6W7dtpV%2F%2FifbQRWi6CI3zPPuNs74%2Fqlg%2F16Lr7OzR8NK%2FTZin7wsGc2wuy1fdC2vnRtgfjxr1JbbmtzW3cnewKs0EcdVc4Pqbs8%2FXvoG0ra32dnXrnbXdq345deslUIE8PXdRMLqsXPvu4u%2F%2Fxg%2F%2Fib2nbCpaus2fzmjmRe%2F31Zg6OVjycdk%2Be272O0WDzBEdr8qW8u0WsJZaAzY%2B5PFlW1d4XUnVcFoIjMEeiM%2BweDNlyR5uK5hmpXco%2B82JGJ56aVnaipEqx2vx7IgOzYTjeFtLmW9u0%2Fc429V6XULIj5IZIYE2YB%2BLM06dVLa3dL0g0EtHm3n4N9vTq4vi4jprl6wMnjuq1B1%2FSieeP6If%2F109r3%2FvetKyl6%2FH9M6rk3uiPZpuSN%2FOh6kS4XZVqWUUnY16r3wGheihPVpQ5VlT6%2BhapOuYcN%2BiGCI7LQnAElmCrcfZU8aabU%2B7ljg%2F3us3E7WGaoUM5XTySc4NlKVdt%2BLK2HQMYsa0mUiF1bo6ZymJCfbsT6jXL8DF6L2KdVB3zIFxcn2dVQXOjH%2BjucS937L5eh8%2Bd1qsnj%2BtPfuLXddfffrs%2B9Is%2FoHg6ee1PZH51hx4Zn%2FdksNnPi8aCbe4hGVtxbEb2dHXbddHWeJJqftSVgtOUYz6bGcERqIFtKN5vqnb2og%2FInUYzfqrgViRHjuU1fiavqQsl5afXp7O7bc7dsTFmgmLU7bm4YU9SvTviiiS5A0RjBEJBJW%2FaoMyz9dvfWItkPK5bd17nXo6fP6cDXzqgPznzG%2Fquf%2FvD6tsxcNWPLc2UNfbyzIK3NveSQiyUMsGxrFIlp2Zkl6sHP%2BQo3NEaT1rtSXosD8ERWAE3SO5JuJe5pi4WNXG2aEJlXtPDZeUmzJKSWQbLTVXcsFk2l4q5o3JbRS3YO2lPOdvDK6HobOsTGw5txTCeNpf2kNIbYuoyFcXOwag6BqJupRFoFtViReWpvD0SbfvpqBF2DAy6F7v38cl%2F9le69R%2B9T1vuvf6K7z%2Fy5KQKo%2FPbBTlNHhyjoaRCgYhy5Uk1o%2BKoWa4%2BUVLHrax2eBXBEaij9g1R97L1jjb3dcd5IyQ6ldn9ke7StmP%2FbsEHB%2B0S3OxhlmDo0pi30Oyf7Uv2J6Jpmdv02Kdf0fRDxxsWGudqSyR1k7kU%2FuyALr48rra7NitxwwYFE%2FNP0A49OrGo12%2BzL1VHgmZlIRjTdGlMzWrqQF7tN8d5cutRBEdgDQVtCDSVw3Br7BUHVqRwclwzT51Rtdxc1bpQRcq%2BeF6514aV2N2jxK0DSt7Yr3BX0gTEgIafWly1qzZ5xTFoqo2hQFS5yriaVeZEUaXJiqJdVB29iOAIAFiVmWfPyJkpqFnZ2dnZVy4qe2BIk90JJUx4DG7eqNwFOxJxYSW%2F2tTzqm210VYdc6XmXKq28qdLKlwsExw9iuAIAFiVarG5q3SvM8vQ5dGsph8%2BYf54Qlt2xTU1bpZ9J2OqlIJz3q25prLMFTbB0V6mikNN%2B3VWClXNHCkqvZelFi9iBwIAYFVi27vUah3l7Zfb0ZPXlt2T2nXjmHo2ZhSOXg7AzT12MBFKmwX1sgrOjJpV9nih2Q%2BoY4UIjg3AEQcAXtL2li3q%2Fu6bFEy25vi2WKKswe3T2nv7sLbumVCqc0aBYPOGx7ZYv%2FsyV55Ss8oPVVSeITl6EUvVDWBPyzbzM1oAjRFohVFtS7A9HNvfvVuJG%2Fo1%2BbUjbi%2FHZjsoU4tAoKqO7rzSnedVzI5rerRD2fG0KuXmeqi0FUer4DRnE3CrNGGDY0XhdupTXkNwbIBgIiin4DT%2F6DoA6yqUbN31CLvXLrq5Qz0%2FcKtSdwxq6uETyh8ecQ%2BmtJpg0FG8LatYKqdS37iyE23KmEsha%2Fu2Nv5nlAh3ui%2Fz9oBMc42rfl0l56howmN8sDWr0LgygmMD2AHw4c6QKtmqqkUqj4Dvhcz%2FUkGFYq1fnQnGwkreMqD4nj4THIc18bnXVDw3aSqQrXdfZyuQ0WTevbT3jys3k9SMrUJOtpkn%2Fo37WaXC3e5ex3xlWk3L%2FLjz50pqvzEueAvBsUGCkaCCHQIATwrGTYC82QTI3b3KPHNG04%2BeUOHUpHuyuRUFwxWlOqeV7Jgxy9gxzYzZAJlSuRBze0KuJzs5JhxMKNfMwdEojrOs5kUERwDAmrHTWtL371DqTZs1%2FvlXNfPkKTmZklqVrULGUnn30jUQ0tRwpxsii7n1q6wFAyG3n2NTVxyNSpbg6EUERwDAmrMnrnu%2B7xZ1vnePJr54UFMPH3dHFbYyW4XsHBh1L4VMXNMjXZoZT8tZ48M0wUBYsVCqaedVX%2Ba0Sn9PLAvBEQCwbkIdcXV%2F5BbFdvdo%2FFOvuA25vcBWIKPJC%2BrYOKrMWLsJkO1mSXttqpAhU3GMmqXqqdJFNbNwiskxXkRwBACsK3sCu%2B1NmxTpTWnqm0c188yZlq8%2BWnYZOxIruuEx1T2p%2FHTKLGO3m2pkQk6lfiEqEAiaimObCvnj5mpzTAWyOQ9VRXsJjl5EcAQArD8THu3Emd6%2F8ybF9%2FRq4gsHVR7zRvVxNkCWzGVCqa4pFfOx2dPYE2mVi%2FZhd3WHaQIKukvVTrWsQmVaiXDznbQMhANKbo4K3kNwBAA0jB2IkL53uxLX97nhcebpUy3ZuudKgiFH8VTOvZQ2jCo7mXZDZDEXW1VLn7ZIn%2FsyW55oyuAY7QlRcfQoWroDABoubJate%2F%2F27ebyJoV7kvIiW4Xs6B%2FT4PUn1LftnBLtGQWCKztAkrzUBDxbHlczSm6OuOER3kPFEQDQHIIBd%2B51ct8GTX79iCa%2FdljVkvdO5to52G09U%2B6lXIhoeqxDMyMdKhViNX%2BOy9NjMuUxNZv4xrAGviN9abwuvIbgCABoKsFUVJ0f2OvugZz40kEVTky0bOPwawmbKmTnxlF19I27rXwy4%2B3KzyTMMvbVq3Vt4S7Z3Y5ZO3bQjmlpglGIll2e3vKDnYoPMGrQqwiOAICmEwgH3dGF0S2dmnrwqKYfOSEn27qNw6%2FGHqYJhCtq75twq5ClXEyTF7uVzyZUzi99wCQYDLsteYpORk614vZ2bLREf0k7%2Fn6HEjsZM%2BhlBEcAQNMKdyXU9R03muXrjRr%2FzKvKHx31bPXRCgYdxVI59e04p5IJjbnJlKaGu1UuRuaPNjRhsy3aa95WVVWNuz5sJ6BQ3FHn5kmlO0cVcmxoTAveFahWvfsb6JSqquTpXA8AqxGIBBSON%2F4sZWW6oOlHT2ryq4c8W31cilMOKWt7Qg53KpdJqloJKpGeUTl%2BRvnptCLlDbN9ItdxZnYgPNtyKNWfU3vvhELVjPv2xP17Fd%2B3Va0iMRBVrI9l9WVwqDgCAFpCKB1T57ftUeL6Xo19%2BoDyh0Y8XX28zI42bOuaUqpz2h1tODPaKccJamCbLYxMqpjLKz%2BTVG4qpZwJmDZortnXYjJWoreots4JJTumFCgXNa%2FgWSgL3kbFEQBwVc1ScZyrWnGUeeqMxj%2F3qmcah9eLDZf5aRMkZ1Lu1JpKaRU1IrMkHk0UFG%2FLK9WXMy9nFKhcudobv3WbEnfvcU%2FItwIqjstGxREA0HoCoaDa3rpVib19Gv%2F8q5p%2B4pRZy%2FZ%2B9bEWdm52LJlXum%2FCLGEH3ZY%2FpXxMxULUhMiIKqYiWXUC7tK2UwkoaJ8T2AM6Icf8uaJwpKJQtOSOT4zEC%2B7rClbd%2FZeqXP3frpYq7r7LQJOc8kb9ERwBAC0r1JVQzw%2FdrtRdWzT21y%2BrdH7KU5NnViwwO7XGXsLRsuLpnPtm94BN9fLqsvmzXZQLXv6Qqvsme8p7pZx8aXbuOL2%2FPYvJMQCAlhYIBJTY06eNP3OPOt51nQIxaiJX4rb%2BcauHsxXEYNiZfWku9u2rCY1WtVT2xb5TPyM4AgA8IdQeV9d33aSBn7tfiX0bCJANUC078vDRCYjgCAA1cyqOjj12TK98Yb%2BGjwy7r6P5xLZ1asPH7la3CZGh9trH%2BKEOimWJ3OhpPB0DgBrMDM%2FoM7%2F4aZ169tTrb%2Bvc1Kltd23T1jdt1a77dyueZmJGs7CTZ9rfvlPpe7dp7BP7NfP0aV%2F1fmwYW22k4uhptONplOrs11flFCDQ9Ozd5KO%2F87Ce%2BOMnllyGC5sl0XR%2FWgP7BrTznl3adNMmtfWmFQzVtqgTCAUUiMzu1WtGzdiOZzns8mn%2ByIgmv3hQucPenjzTaMH2hNLffZeCydao9NKOZ9lox9MIVaeq8pSjatHh%2FgtoAWWz%2FHb%2BlQtX3LtVLpQ1fnrcvRz44gHFUjH179mgHW%2Feqa23bVO6L61429WrkcGoCWftITdEor5s9TGxt1%2Fx3b2a%2BuZRzTxxUsVz08Ia4EHN8wiODeDkq3IK7I0CWkUwGFSqO1Xz%2BxcyBZ1%2B%2FpR7scvXPdt7NbB3QFtu2aKuTd2mOtm%2BqBrpFM0KSdZROE0fk7ViA2THu3crefNGDf3VC8q%2BeN78HELuzxdAbQiODWAfIAC0jqAJHNfde52OPX5Uuencsj42P53X2ZfPuJfnPvms%2Bnb2a%2FDGQW2%2Fc6d6TaBMdiZfD5F2aw3BcY0FTGW3N6VqLKhcZkaRaFTReILwCNSIPY4NUBwvm2VqwiPQSuwWk9MvntLjf%2FqYLhw8L6e8%2BvsWu4RtA%2BSOu3Zo8KZNSqQTim1ovv1Wrb7HcaFKtqiTv%2FZ1Te8%2F574eMKExnkgoHIk27T7TVhE0Ffb097yFPY7e5RAcG4DgCLS2QragU8%2Bf1PGnjrkvp4dXv1%2FOVh0HbhjUde%2FYrV0P7FbPjp6mqYJ5LTiWJ3I68sufU2Foat7bQ2bZOpZImgBJkFgpgqPnERwbgeAIeIPt45ibzGn05IgOP3pYQ4cvaOjY0KqqkTZAxtvj6hjs0K77dmnrndu0Ye8G98BNo3gtOBaHZnTwH3%2FCPEaUF%2F2drTja5etILO4GSSwPwdHzOFUNACtlQ549NGMvW27d6lYip4endPBbB3XulbNuoLR7HJfDhtHseNa9nH%2FlvMJ%2F%2BIQbJHffv1t73nm9enf1qq2vjT15q1AaySwZGi1bSykWCiqXSoqa8BiJ2eVrruua2euK5X5Po%2BLYAFQcAe%2FLz%2BQ1Y5aw7X7Ik2Y5e9hUIqcuTqlSqmilwtGw2k0l0i5jbzeVyE23bVb3tm5Fk1GtJU9UHM1DXSVTUmkyq4mHj%2Brip16o4UMC5r56k%2BJpKZbMkodqEOpNq%2B1DdyoYb40qHhXHZWOpuhEIjoC%2F2Cri5MVJXXjtvE48c1znXzunzFhW5cIqJpmYENPW26aNN27U9ru2a9ud29W5pVOhaP3by7RUcLSDS4plVczFKVRUMuE9f2pcuVNj5s8zKgxNqzgyo2q5tgA%2Fee568wk71NE3ZirLkwpFVh78%2FSA80KXU%2B29TMEZw9CiCYyMQHAF%2Fs%2FsiT71w0j2lfdwEyZl6HK6JhLT19i3a%2Buat2nXvLm3Yu1H10vTB0Q5VmC6YgDimwtkJZU%2BOzf75gqnwZgpajakLu1XMzF6X0URe3ZuGlOyYcYM7Fgtv6VXbe29RINoaO%2BEIjstGcGwEgiOAy2w1cuT4sM68dFpHnzjqLm3bSTWrZUcg7rxnp3aaELnlTVvcfpEr1UzB0c6bzl0KiPnT48qfmX1pl6DXwszINuUnt8x7W6wtq86NI0q2ZxQIcl8%2BV3TPgJJvu8lttt4KCI7LRnBsBIIjgKXYiTP5SlbHnziuMy%2Bc0dkXzyg7trpAZE9jx9Ixbb5ti3bcvV2D%2BwbVs7N3WZ%2BjIcGx5KhglpZLZlm5cNEsN582VcTTEyqMTLnh0THL%2FNXy2t%2B%2FZ0Y3KTexY9HbA0FHqc5ptfePKt62vANQXha7dbuSb72uZQ7IEByXjeDYCARHAFdyuQG4bemTncjq1DOndOibh3TxtQtm2XR1h2sCwYCplsXUt7tPe9%2Bz1w2Ttu2PHYt41Y9by%2BBo7qIrmby71Gz3IGaPjih3fNRUFUdVyRbMfbipvprrolEPVdmJfmVH91zx7y8HyK7BYUViRd8vYSfeukfx27arVRAcl43g2AgERwBXcqXJMdOm6jZ8dFgnnjqpcy%2Bd0eS5SU0PrW5vZKI9oe7t3Rq4eVA737pT3Vu71D7QsWiOdl2CY9UuMxdVnjEB0VRRixen3EMr%2BbPjKo5mVJ7MuRNdqpXmus%2FOT3drZugGXSsR2tCY6p5SW%2FekIvGCb09gp95zi6K767e%2Fdq0RHJeN4NgIBEcAV3I5ONplWCdfNPdjptpWKLsHQCy7d6xUqeqCqUCeeuG0Tj1%2FWmMmgBVMIKs6K79fCUVC6t3Rq21v3qYtd251T2vbYBmOhZcdHN2v3SwlO7mSCYk55U%2BOugdV7F7E4ljGDYpOrqhWUMx2aOr8TeZPtX3%2F4WhR6d5Jcxk312nZdwEy%2FV13KTzQqVZBcFw2gmMjEBwBXIkNjnmzVDv%2B0GuzLWRGZmb389lKXMAGx5BCsahC6ZjC6YSifWnlwxFN5Et67bFjOvfqBZVW0%2BbnkmRX0t0Puf3uHdp7zw6FcwUT%2BOzXUjb3qyWFomEFU1FFzPtF%2B9MKt8eUPzGmjKmK5k6Muk227fuXZ%2FJutbFVlXIpTZ7fZ76H5YULW4FM942rc%2BOo%2FKTzo%2B9QoEVa8VgEx2UjODYCwRHAkszd8djXntP4wwdfrzAuSzAgU4zU8HhOFyYLGjaXXGn1fQftGL7uVET9Jhz2mUtHMuy%2BzQ%2FKhaQJjjea4B5f0cdH4kV1bBgzS9gTCoaa7%2FGongLxiDr%2F3jvUSgiOy8bIQQBoCiYoTjz6qiZWGhovfQ47XXljZ1z9HTEVy%2BZzZooani5obKakabN0vJJPbesLozNF8zmKOnJxRimzfL2hM6YuU3HsSkYUaZHWKysSqCgQrJjgqBUp5aMaPbVB0yMdajfL13YfpFcDZKivQ%2FA%2BgiMANIFKvqjJpw6tap%2FiXEFTEYxHAm6ItJey%2Bby5YlkXxgumGplXtlhRobS8AGO%2FMru%2FciJbci%2BhoP03gupNRzXYlVAyFlIyGvJUNTIYKpuL3Wua0krZ0YWFTELD2bgmLvSoa3BEiY4ZhcLemkIT7m8XvI%2FgCABNwLETTkxlz7bMqVd4nCtsPm%2FaLCWmByLa0Z9SplB2w9%2BIqUZOZcvu68v9ZyvmAzKFirnkdGY0r4QJjm3mstFUI9OJqPvnVq9GBgKOGxzrwgTIUiGmoRODiqVySvdMKtkxrXB09Q3fG83uvW2lQzFYOfY4NgB7HAEsZGcnl86Nq5KdUubQReWOj6g8lVW1VFmTIPn6v2s%2BtQ2N43ZJe6pklqQLbiXSWeVDQ8wExvZExF0y7%2BuIKh1r3X2R08PbVZjarLoLVBVLFNwT2IlLAbJVi7WhrpTS33u3ApGQWgl7HJeNwzGNUJqsyGnCrwtAYwVMcS566UHMBkbb6zB3bFiZ%2FeeUefWcyvm1b2FTNkvR0%2FmyLprl7DNjOWULq19OjYQD2juQdiudrSgzNqjc%2BE6tpXCkpJSpQHYNjLTkHsj4LduUuPd6tRqC47IRHBvBfk3lSW%2FtbQGweuG2oEKppSs2tg1O8cy4ModNNdJUJLPHh2db3awxN0ROFDQ0VdCYqUo6K6x%2B2j2X77m5T7EWq0hZs03Ab9R6CIYqau8bc3tB2hPZrcBWGds%2B9CaFN7TeUjXBcdkIjg1RtSO2KirnHHfcFgCfM5XGUMyERhMc7R7Ha3FMNdKZzit%2FakxZEyJn5ziPqZxZmyBpHyXKFUd5s4Rt90SOXDphvdzDNW%2B9rkd97VG1mmK2TVPnb9V6zRMMmCXsgKk6pszyddqEyFgq39RL2JEd%2FUq99xZz2229%2FawEx2WjHU9DmDuAUFtIwWSwpRvjAqgTGwpMMqg1HARNhSfYnVKbvdy6WU6x4h6umX76pKZePu1OaqnUcVnbfl32kIu9pBNhbetLvt7qxy5nT%2BbKZkm7rGuVIaLh1tzAF4rYhuo2JK9PtdSewq6WQ5oe7dTMeLvibVm3F2Q0mTdL2s11kMb2bozfsbMlQyNWhoojAHiInfdcMNXHzMtnNb3%2FjApDU%2B5%2BybViH0EK5YqmTXgcmS66%2FR5n8iWVTLCc%2B%2BCyoSOuu3Z1teThD6cc0fjZm02YS6pRAsGqCY45N0SmOqcVTRQavxfStmO6c5cSd%2BxQq57qoeK4bCxVA4BXlYZnTBXyuKaePan80KSc%2FOpHEV6L7Rc57i5llzRqqqAls5zdk45r14akEtHW299oOU5Ik%2BduVKXQHA2uQ%2BGyCZA5JbumlGjPuP0g7fL2ujJBMXr9oBJv2W1Wz2JqVQTHZSM4AoDX2TnXudcuaPSrBzR94Kzk3bv9NWGXjqcvXKditl%2FNxg2R6ZypQk4pZYKkrUyuh%2BiuDUo8cIOC8dbbszoXwXHZCI4A4CfFsxMa%2FfIrmnr%2BZF33QXpdZrxPubHmbjdjT2S7S9ld00qa5ey1mkwTHuxS2wffpECo9fc1EhyXjeAIAH5UGp7W5GPHzOWICmPTwtVVyiGNn3yzWmXgml26TnbMuFXIeDqrcLQO2xSCQUWv26ikqTTaSTFeQHBcNoIjAPhZeSyjiUePaPLJY%2B5BGpaxr2zi7G6V83a5urUqbUFTeUykZ9xKZCyZV8iEyOAylrQdJ6BQT1qpu3cqvKmn5abDXA3BcdkIjgAAEyAnssrsP6vJx48qd8q281n7gzStplSIa2ZoryrFNrWqcKzojja0k2rCMXOJm9fD5dkT2gHH7QxVNf9frQRVLptAlUopubdXHW%2FpVKSrdQ%2FBXAnBcdkIjgCAN1Rm8sodGtL4gwdNgBxROVNQS7J9Mc0Ld9BN9Y2WudVLTbwvP%2FLZgy%2F2fR1ntqPM7OvuJ5CtLJYrsx9TdoLu26amulWa6FcyGJH9F4IKXGrDuXQ7murcf1zLb90bmPOHwBo1IHdjgKlAVoMVVU14LJsKY7Q%2Fok1v61DXrUkTrMLuOEwvIjguG8ERALAEk7gK5yc09cgRjT92WOXs%2BhykuRzA3JduoAu4QSZgkkuxbF6vBlVx7MvZt9vXyxVTIbMvzeuVyuzflexLzX6821Db%2Frkq9%2B%2Bq9v1sQLSfozr77zmXPmfl0kNGxf24K3%2BdQfNfPBBSOBB0w2PoisHR%2FpvV1%2F9cXUZ0DMyJim5AvfRKWLMhNnjpMvv3C8Nr4NL7zf7LFfdfnv23Hfdrcty3lc1r9usrmZeVasVcH47750gsqMG9ab39J3YqmvZusCI4LhvBEQCwBPPIkJ0o6dyLWY28Nq3xh08oHRhTKpo1gSNowpcNcEE3kM176Ya2kBtyZt8edMOcfVmqzL7uhjQbWsr2nzFBpey4kWY2EJpl83LAfd0GQjRWe39M7%2FypXerb3brL81dDcFw2giMA4A3TF0s6%2BeSUXv3CmIYP5eVU1ucholo1tS%2BnZF5eHu%2BHZtHWFdUDP75Dm25ujgbo9URwXDaCIwBAGjmc08ufGdPxhydVzJgly2JjHhrsQ5K7sOoUzZ9brc9k4PVLIBC89DI0%2B7bAnL97%2FX0vu7yMbPdDugvJ5nu%2F%2FPLS29XYh%2Br23pje%2B%2FO71bU1JS8hOC4bwREA%2FCw%2FVdFLnxjWq1%2Ba0PSFZgpqZhHbVCFnA2RZjQ5Oi10OiHZZPvxGQLS7Dl8%2FXLNal3ZFumHaPJbZ66NacS%2BNuD427EqZyuMudW6KyysIjstGcAQAP7L3j%2BdezuiZPx7S2RdnZgtdTclEJhMeHSevZgiPs5XEsIJBGzZCl15fX7PBseIu6zvO%2BoVqG4h339Oje%2F%2FedkXiNAD3Kac1WuADAOrqxU%2BM6Lk%2FH1ZuvKzmFjAhLWYuYVUq2UuhqQFfhVtZnP06Gt0AfLa6ab%2BeqNvI24bHarVwqTK7dmyZ6diTY0p1RvTmH9gq%2BBPBEQB8xB52efjXz%2BmVz425VcfWEVIolLoUHtcv7M4GxvilCmMzClz62iJuqHacwpruDa2Uq3rxixe09Y4ubbg%2BLfiPR1t6AgCW8uB%2FO6OXPznaYqHxsqAJj23unsK1F3ADo%2F33mjc0zmdDbiiUNF%2BvPcCydq2M7LaGh3%2F3uKYv5gX%2FITgCgA9UilU9%2BXsX3EMwrS4YTJqQtJZhLuwGxlDIHgJpvV6SNuja6uxa7r8cP5%2FXc39zVuV8Y7YOoHEIjgDgcVWnqpNPTuv5Px92%2F9zqbCAKBuOX9vrV%2B3NH3KrdWnzu9WSrsvY6Wsvge%2BK5CR15bFTePWKLpRAcAcDjhg%2Fn9cTvXmhYb8a1YINdMJhQ%2FQTcwyazodEbD402BK%2FlMnsxV9ELnz2nzGiLzjPHihAcAcDDKoWqXvyrEY2d8N5%2BtNmqWkz1MBsabRD10pjD2X2aa%2Fk9TQ8X9eTHT8vDnf2wAKeqG8H8ftn%2BkpWMo2qFXzbA7wKhgEIJc0mG6v4Yf%2BzRSR17ZFJeZZdjq5caY6%2FUbGhszf2M13J5Wd9xclorp16Y0NmXJrX51k7B%2B6g4NkCl6Kg8XSE0AnDZ%2B4LyjHkymavvQQOnXNULfzmiUs7LgxACbn%2FFFX90IOzBSuN8wWBUa%2Fn9lc1j2stfuKBqmcc0PyA4NoCTrzbf9CwADVfJ1jfgnX52RsNH1q7S1CzsPr6VHWYJXNon6d3QOCuw5i2FLhye0YlnxwTvIzg2ggdONQKov3oPRTnw%2BfEW7de4XCurOq7VyezmFNVaslXHA18boijiAwTHBuD3CsBay0%2BWdeLxKfnFcitqs3v%2F1jZMNZNgMLjmIfn8a9OaGV27qTVoDgRHAPCgcy9m3P3U%2FhFY1kSZtT5t3HyCaz5xx51l%2FfgIfR09juAIAB50%2BrkZ%2BU2tFbWAQi0zRrCe1mNU49EnxlSYKQneRXAEAA8aOeK%2FOcKzwfHaVcTAGp8yblbrsZ9z5GRWE%2BeYYe1lBEcA8BqzVDh51o%2FTPEI1vc%2FazrluZkGtx8P%2B2Zf9s7fWjwiOAOAxTqWq3ERZfmMPvASuUUgMBsOeGSm4EutTdcyomPHf7c8vCI4A4DGFqbKqfjoX8zqbGq%2F%2BsLYe%2B%2FyamQ3Oa230REaZMU5XexXBEQA8Jj9d54aQLeVqJUf7kOeXvo1XsvYP%2B9mJkqaG%2FLhVwh8IjgDgMcGwn5dig1f9Oz8vU8%2By3%2F%2FaHgyy7XiGjmcEbyI4AoDHRFN%2Bvmu%2FWnD0e7XRWp%2FT5OOns4I3ERwBAJ5x9Yqiv%2Fc3WoFA4JoHiOphZqTojiGE9xAcAcBjwjH%2F9Sicb%2Bnvn4qjde0DRPVQylVUmOZktRcRHAHAYyJxPwekKz2s%2BT1Mz7X210UhU3HDI7yH4AgAHhSO%2BfXufenve72WaFvD2l8RpbypOGYJjl5EcAQADwpG%2FJqSAld5O8nRCqxDgrZN6PPTzKz2IoIjAHhQJO7Pu3ebiagsXsv6XEEzozQB9yKCIwB4UCTu54ojD23NoDDD4Rgv4rerAXg2DGBJdbxvCPu04mjR5Pta1udBKE9w9CR%2BuxogECU5AlgsWK82OubTRBI0AZ%2BrWq26F6yfQpbg6EUExwYIx0OzDxDkRwCWvTuIBBRuq18bnWjSxy15luzXSGhcbw6Hqj2JNvqNYOJ6pCMsp%2BDIKXNnBvhdIBRwn0wGgvV7NhkM%2B%2FeZaYBn5dewPtdPOU9y9CKCY6OY39tgPEjJF8CaiHf4uQn4UsGIJ%2BlvWJ%2FroupwnXsRuQUAPCiS8HtwJDwCa4HgCAAeFE36%2Be596eDI2Rhg9QiOAOBBsTZ%2FVxyXno7iCOsnkmQ3nBcRHAHAg6Ip%2FwbH2dDIUvWVrc%2F1EAxxSMmLCI4A4EGxtJ8rjhbBsdGicb%2FfBr2J4AgAHhRN%2BfvufanpMTQAX1%2F%2BPqDlXQRHAPAgf%2B9xtJZ6eGOP43pq64kI3kNwBAAPivl4j6O19LxqguN6SnREBe8hOAKAByU6%2FX6idamHN5aqZ6399RCKBpXqJjh6EcERADzInqoO%2BPgefqmT1bNbHAmP6yGWCisaJ2J4ET9VAPAgGxpjafrooTGiyRC3P48iOAKAR6X7%2FfzAvVQT8Kr7H9ZeujemeBuHY7yI4AgAXmQyU6ydfY5ojK5NCV9vlfAyfqwA4FHpXio%2Bi1BwXHO20tu3KyV4E8ERADwq0eXvperFD3FVkRzXnj1N3TEQF7yJ4AgAHtXW7%2B%2BK4%2BJejoTG9dC3I%2BXucYQ3ERwBwKPi7f5uycO86sYYvKXdPVUNbyI4AoBHxdvDCoYD8qvFp6qZV73WosmwNt%2FUIXgXwREAPCqSDPo6ODI95krW7jrYenuXUt0cyvIygiMAeFQ0HVIo7Oe7eZaql7KWRdddd3crFCFaeBlt3RvB%2FNJWnaoqOUfVEndigO8FAwolA6Y6GFw666xQPBUyn1M%2Bdnns4Nz7We5z10pbX1ybb2kXvI3g2ADVclWlyYqqFe7AAFhVOUWztNxhMmS0ftWaWIff9zi6%2F6%2B5YZE9jmvD7ifd%2B%2FY%2BBUN%2B3hrhD9STG6BScAiNAOZzpHLGUT2FIwFF4v5eql5q7CDqr60v5gZHeB%2FBsQFYngawlGqx%2FvcNSd8fVKCX41oLBAPa976NSnSwiOkHBMcG4G4LwLowxbZEp5%2F76V3e4zgX98D11rs9pd33dgv%2BQHAEAA9L%2BXxe9dLTYwiP9WIbfd%2F54U2Kt1Ft9AuCIwB4WKLT7w%2Fo8yuO9mwMB2TqxFy1227v1uCNnKT2E4IjAHhYssvfwZF51Wund3ub9r1%2Fo8%2BbzPsPwREAPCzWHlLY5yerUX%2B2yfcd373JhMeEWlqQ28dyERwBwMPsvOpIguA4X33bHvnRvT%2ByXVtva%2F0l6lCE4Lhc7GYFAA%2BLp4MKxwiOb6i6i9XEhZWxDb5339Or6%2B7tcdvwtLKA%2BV6Cvn5StTJcYwDgYbF0WLGUf%2B%2FqU71R3fPjO9W9I7VEM3As15ZbuvTWH96qoAcqdaFkkP2ZK0DFEQA8LN5plqqT%2Fu3lWMw4uvdntumGb%2B%2FXa18a1rMfP61SRlgmG7r7drXpvh%2Fd5rbgaXX2OUSsJ0zpeQWoOAKAh9mxg%2FF2%2FwbHct5RKV8xFceE7vnJrfqhP75DgzfTPmY5bGgcvKlDb%2F%2FYTiU7PdAX1IbGDRGF035ujr9yBEcA8LhUj78Xl3Jjldf%2F3Lk5rvRAVKjdhj1p3fsj29QxEFPLM6Ex3htRvC%2FK1oUVYqkaALzMPDamN%2Fo7KGVGS2ofnL0O7N48Lyy1rpfr39avu39oS%2BtfZ%2Bb3IGoq79HeqMI%2B3vNbDwRHAPA4v0%2BPyU9W5r0eJThcU6wtrFu%2Fd5Pu%2FP5BhaJXv77s6eRmZg%2FAhOJBBcyThmb%2FWlsBwREAPK6tLyI7QKXq0%2FaFmbHSvNdj7Tz0XU1bX1zv%2FIXrdN07ezh1jEX47QEAj4u1hdwm4PaEsR%2FlxsrzXrfXh78tPXYxkghr99v7dPePb1XPzqTYAoilEBwBwOMiZmnWTpApZoryo9xkWdVq9fXDENEkS9WzAu7klHhHVJtu69CNH9yobW%2FpMEv57AHFlREcAcDjoomQ289x6rxPg%2BN4WRXzrYcvHQr2%2B%2BGYXQ%2F0Kb0h7C7Z9%2BxMafMd7Wof9MCJaawLgmMD2Oe8VQHA%2BrCHQZId%2Fg1LNjg6ZXOvG5utOMZ83NfSets%2F3q7u7XEBK0G9vgE41QVgKYE1GuNm9zfGOvxbJ8iNV0xwfGN%2Fp58bolv%2Bnl2O1eLW0wB2qHqAax7AAmvVX87u7Ut2%2BTc4ZsdKqsw5WB1Lh7gPBlaIpeoGsA1ow50hObnq7PIJAF%2BzqxChREDB6BqlGdsEvN8Do%2BJWKD9ZVu5iQaHKbNWxNFb29SnzwmhJeZ8HZ%2Fs7F06F3P6OzKteHoJjgwQjQXMRAKyLVI9%2F73BsQMycLSl8qQ94caKsaDzk3%2BA4VFLEpz095wrGAmrbGXcfj1E7ri0A8IE2H1ccrfz0G9NjgqbaxPQYOIWqqb5WhOXhNwcAfCDZHXG3yfhVfvqNJuChcEAJn54yt6GZxt5vqDpsF1sugiMA%2BEAoGlDcxxNTCjNvVJYC5mqIxP358OdukeKR32VvB1Gfz3FfCa4xAPABO3M40RVWdrwsPyqb3Bjtng3OESek9gHb8HpG%2FmOW6dvDr18XK1HJVlXJOws%2FrSL2tHqLpAp7OCbSEVaYKULLRnAEAB%2Bwo%2BUSPm7JU65Wldx8qem1WZ1MDUblR7YNUXwwpuSGle95LWcqmjman%2F95A%2FawSVCJAX9er35C1AYAH7BL1QkfNwGfu8fRVseSLFGumG1jY6uLc1VNAbI4VpJT4ri21xEcAcAH7KEIe0DGr4rTjqqVNw5CJHr8GRzrdTgmviG6aApatSIVRsrM1PU4giMA%2BETPDv8uI%2BanyqqU3kg0bX3%2BDNG28hwIrj45hpJBRZao2hbHzPWcp8WNlxEcAcAn0htj8qtSzpEzt%2BLYzVL1asXMdbiwxZOt6uaHy6pWKTt6FcERAHyic7N%2FK46Fqcq8iqOfZ3fXSygRVHSJJf%2FydMVc2OvoVQRHAPCJlKkQ2aVKPypmTcVxTnCMJkOKpvzb17JebB%2FEUGxx1bE4Wpq3pxTeQXAEAJ%2BwM3n9ekCmMFOWM7cIZrJOyof7HMPRoNuSp16C5vPF%2BqPu9TlXaaai0qQ%2Fe4Z6HcERAPzChiWfniYu56oqLzi00dbnv%2BvCPVVd50f%2BSHtI4cSCT2qKjflhqo5eRHAEAB%2Fp8Gnjays%2FOT84ss%2BxPmxbnmjv4tuVUzRL1j6dVORlBEcA8JGkTyuOVma0NO91Py5Vr5VIe1CRjgV7Rqu2r6OpOpaoOnoJwREAfCS9wb8teXILql92v2c9ehq2knAisKhxdz3Y6zG%2BRBC3Vcf8SEnwDoIjAPhIeoN%2Fq2wzCwJMW39k0YlgrwsE1u77DSVDCrctPqlul6sdqo6eQXAEAB9J9fg3OObGFlQceyMK8ihYV3ETxheNIixX3SVrRhF6A78yAOAjfq44Tg8tqDia4BiK8jBYT7biGOlcXHUsjJZUydMU3Av4jQEAH0l0hhWO%2BfOu306PmTsJz86r9ltD9HA8YKqsa%2Fs9x0xVO7jwenUuHZSh6tjyCI4A4DOdW%2FzZkqdsKl6VwhtVr1jaVMd8FqLtIZbAGmflUDyoWO%2FiynZxoqxKtiK0NoIjAPiJCQ0dm%2Fx5srpcdFRasFza1u%2FfvpZrybbmWVR1tE3Bh2zVkbJjKyM4AoDPdG72Z3CsFKsqF%2BaEloA9IOOvvpZuxXEdHvnteMvYEu15KpmKShNUHVsZwREAfKZ9oz%2BrbKWcWaouzq84prr8dVjIXZoPrM%2B%2BzmhHWKHk%2FJhRtXsdh4vuSWu0JoIjAPiMrbIFI%2F46FGLZ0FheEBzbNjI9Zq0EwgHFl9jrWDFVX7vfEa2J4AgAPmNnNId9dprYsvsbS9kFFcfeyLos3fpVOB1SOLV4FGFxrCyHqmNL4tcFAHzGtuTxY%2F9CW%2Bmyy9Vz2ZPVIR9VX%2B2knGBI68Y2A48PLFF1NCG%2BcJFRhK2I4AgAPpPwacXRKs7MD47x9pCCYf9cF%2FZ7DazztxtOhNxT1gvZUYRVRhG2HIIjAPiMPSARS%2FvrNPFlhen5e%2BtiJtCEmR6ztgKzTcEDCwJ61akqb5uCO4THVsJvCwD4TcBOTfFncMzPzA%2BObUsEGi9zq6sN%2BHbdUYTpxZGjOFZSJUdwbCUERwDwIb82vs4v6CEYSZpAE%2FfPQ6HdzxkINiYox%2Fpj7p7Huarmx1EcLbkHZtAaCI4A4EPpDf5sQ1NYsMfR7vdLDzA9Zj3YgznRrsV7HUtTFZVzNAVvFQRHAPChtj5%2FtqHJTy3oH2iCY%2FuAf0J0ow8CxUylOxhd2BS8qvz5InsdWwTBEQB8KN4eViThv4eAwvTiyla7jyqO0bZ17MWzBBtc40tUu8sZR6VJqo6twNP3Gv5sNgEA15bsDvvyZHXJLIk6lfmVrbSP9ns2w%2BOi2xQ8uTh%2BFOwJa5qCNz1vP90kOQLAkhId4dm5xT5TKZjqVn7B2EE%2FBcdg4x8YbdUxap64LHyMtk3BGUXY%2FLx9rxHSujc6BYBWEO8Km2VL%2FwXHcqGy6ICMbQIe9snJ6nhHY5eqL4vYJy5ti0cRFkZLjCJsct5eqg4EmuLZFQA0m3Ak4M5p9ptKsbroBG%2FULJ3a0YNYP7YtT6xv8e3PMT%2BfwjCjCJuZ559iBX06VgsArirgz5Y85YKj0oKl6mgi6Ktejs3CNgUPty9ddWQUYfPy%2FG%2BKfVbjpzmkAFCrVI8Pg6OpaJUWTCqJmfASTfmj4hhrb67vM9EfUTCy4DHa5Pq8qTpWq4THZuT9p1jm9hiMBRZ1qwcAv2vr8%2BFSdclRMTN%2FqToUDfpmqbrZ9v2HkiG38riQPSRTyRIcm5EvavN2n2MwFnT3PAIAZqV6wr5bkSnnbcVxwfQY80iY6PRHa6JgE%2B77j%2FYunhdu2%2FK47XmoOjYd32zqCJonNLZvFJVHAJgVbQu7J4r9xCmZ4Jhf3Gg62eOP4NhsS9VWOGEqvkuOIizLyREcm42%2FdgMHZ2%2BgIbsJmn3QAHwuHA%2F4sgl4YWZxcGzr89%2F10EyiPdHFh1lNZsxdZBRhs%2FHfb4rd8xgxS9eRkHtjdPtFmZfcLAH4TdwszyZMpWf8pHylnHUWvS3pk9ZEwSZddbOhMdYXVe5sYd7by9MVU3msKOqTrQStwNc%2FCbv3MUS7HgA%2BleoNKtntvwMyuSVmIqf7I%2B5ex6ojT4s28SGgaFdYpfHSomBfHCm5zcIDdEhpCizYAoBP2YMxiS7%2F1Q8Wnqq2osmwYj5oydPM0csG9%2BgSe03tKMLCOKMImwXBEQD8KjBbafObwvQSwTEddJfuva7ZRytG0mGFFwR4WwUujZVUKXq8HNwiCI4A4GN%2BOU08V6mwOIDYamOzzHFeS80%2BIccuR8eXmGhkR0UWR6k6NgOCIwD4mB%2FnVecnFwcQW4nzW2uiZuWOIkwtHkVYHCvPHmhFQxEcAcDHkn4cO5hbXHGMJIKKtnk%2FOLbK9xgzVceFfZerlaoKF2kK3mgERwDwsWRnyDxAy1eKWWfR6emqWQqNRb3%2FkBiKtMbJ5IipOEY7lxhFOG5HEbLXsZEIjgDgY8GwXaL11z7HqlmpLuXmHJCxy6Bm%2BTruh1PVrfKob%2FJtpCu8eBShU3WXrGkK3jgERwDwMdvLNuaDJdq5HBs%2B5pystu1ebCUr0en96yHW1jpPEsJJU3VcYt9pyYT8SoaqY6MQHAHAx%2BwkrVgTN4VeC%2FaARe7S2EG7XS4%2FVDRVyKoSPqi8tkzF8ZL4xqgCkYVVRzuKsCS2OjYGwREAfCxklgKjKX89FNhlzssHZCpmybo8PfvnlMeboTfruMGrsUvVsSWmG7k%2Ft6mKsP4IjgDgY0E3OPqt4minxzju3sb8UOn1%2FXK2x2E47t2xdpFkaz7kR7vDCsYW%2FFzsz254tlKM9UVwBAAfC%2Fq04ljKVlScKJtq4xtVK3fZPkkvx2Zjfy7xDdFFb7enq%2B3PEOuL4AgAPhdL%2B%2BxUtSk2FmYqKoyU3MrVZXb%2FX9zD%2Bz1bteJouU3B25Zuz0NT8PVFcAQAn%2FPDaeK5nEpV2fNFVRY0Arf7PWMenh7TinscL7OV8fgSc9XtifjCUFFYPwRHAPC5eIfPKo42OC4x9zjaGVZ6MCavCkVa%2ByHfVhwj6cWjCAt2FGGJ9jzrheAIAD4XbeElzJWwbVwWLW%2BaqyDRF1Gy27shOtHV%2BtXUWN%2FiUYQymbFonwiwYr0uCI4A4HNdW71bZatVpD2ssLm0D0blVV74ObtVxyW2E%2BRHSirnaM%2BzHgiOAOBzfdcnPV1pW8jOa07Nqb65vQJ7Iu7hmM5t3gzRdkLQhn0peUGsN%2BLueZzHHngasU3BKTuuNYIjAPhcOB7Uzgc65Bc2dHRtfiMghlNBhZKzQaRne7zlpqvUIt4Z1o572uUFoURQkY7FVcfyjKNKnuC41giOAADd%2FoP9biXOD9L9EfVsi7t%2Ftvvl4v1RBQKz33uHCZS91yXkNTd%2BsNtTy%2FC26hhYUHW0zcAL54vsdVxjBEcAgHp3x%2FWuX9zc0r3%2BahFNhnTje7peX%2BqM9YYVis%2F%2Fnm%2F9vj7PhGhbPR24NaXbPtInLwnGgu7PTgt%2BTKVMRcVJmoKvJYIjAMB103f26p6fGlTMw02wN%2B1Latsdbe6fbcUq2rU4fNz0Hd3acb83lu67tsb13n%2B1VW19EXlNtDOiUGxBjKnONgW%2FPEYS9ReospMUADDHlFnue%2Fy3zuvYQ1PKe6h6M3hTUvd9dINSPbMhKmGWbu2hGC1RXMyMlPS5Xziu8y9k1IqPkqFYQDe8v1t3%2FdhGdXj4pHhhrKTcmcUNwJPme472ei8sNwGH4AgAWMQ%2BNGRHKxo%2BlNWF%2FVlNnC64YSo%2FWVEpV3FH9pXNsmCl6MipBpo3XJlQ2Lsjrl13p7Xzre2vjxQMmmDVtjtx1WkqRfP9vfDnw3r5k6OaOtf800nC8YD695qK6t3tuuGDXUr3RxefPvYY28w9c6owb%2Ba4ZZey07vii%2FZBYtUIjgCAa6uUqirb8W4mMFYKjsqFqia%2BeUxTj56U48x%2FcC6Vr7wLqmLe1wbNee9fmX1%2Fu7pYufRn%2Bzb76FQ2L923O3Nelw22s5%2BjOie0BoNVExSCSu3oUHJDTN0mMHZtjKrNhMXUgnZDiYGo20y6lu979Hhe51%2FM6OCfHNfMmKNMIex%2BHY0WSwaU7I%2BZ5eioNtyQ0uY3tal7Z1yJzrAnT4ZfSdncJmeO5ee9zZ07bn72MaqO9eb4a84UAGBF7GGRUCQ0b%2F9j6EBV4baC1ps7%2BeVScHRfzgmO0f6UNv3CrQq1xdyZ1JmjeXee8Vy2nUu0p7aHP%2Ft99%2B9JuJeeA89r%2BlROuWJYE5moxqZjmsjGVDRBuVIJqGLKm1WnvhUu%2Bz3ZSyhQVSTkqC1eUkeqqI5kUb23dWnrT%2B5zg6Kf2abg4VTIrYBfVrV9HS%2BWFDHXjderruuN4AgAaCm2c44NUlZoQe%2BVQOCN14tmaX1haAyYIBjfEDUVqeWHCadQUTw6e%2BkygXnHhmk3xOZLIeVNmLQBslgOqWBfLwXdyqutTBbMS1uVtX8u28qpZsOv3PBbnf1%2BQlXFwpXZS2T234hFHSWiZfdtUfu2sOOGyMui1ajvQ%2BNl8f6IMiedeYdi7BOHwlDRVJdjS%2B5jxcpwiwMAeEa14rgVSNvTrzix%2BGBPOBlUeCWnxm2VM1ta9GYb%2BhIm5NlLrdzlehskTYgMXKokhoLL3zVWujAlzLI%2FU9sU3J6onqs4bkJ3t7Oo5RJWjmsSAOAdZXcdW%2FnhkqkQLqhGmrwY64sqsILqkz2EUS3U54S5DYmR8Gw1MW4qiSsJje7XVHJUGs4Is9ym4AsOO9mfW%2F5isSVPxjcrgiMAwFMqOROolqg2Rtpts%2B%2BVrVk6M3k1o%2BLZSWFW0FQVo0ss3ZenHVWytVeEcXUERwCAZzjligq22lhaWG0MKNYfWdHeRquSKakZFU9PCLNsJdlOkwlGF1QdTQW6MFISTWTqg%2BAIAPCOsqk2zixRbewILZ4ysgyV6easOJYuzjAlZQ7bvzGyRNWxNFVxK49YPYIjAMA7lshQwWhw1f38KjPN2QC8NJqzTS%2BFN8R6wgolF48iLAyV3ENTWB2CIwDAM6qm4qgFhSW7fLmaaqNVmV7%2FfpW1qExk5RS9MxayHoIR80She%2FEThXKuYiqPXFerRTseAMCyZMey%2But%2F%2BAmdefaMKuWKu7csHJofzMLBoIIL9hPa95n7NvunSHj%2Bx9m3hcPz2%2BVEQrZtzfzPZT9u7tuCc76Gt5ivKX757dGAot2RVffxq%2BaaZ49jyYTjXKGkmXxJ02fG1GaWq7vTceEN7taEkeD8Pp626jhSNn8XXnT6GrUjOAIAajZ5blKf%2F%2BUv6OSTJ19%2Fmz1zYMPMXCU1bj%2FZjaYKF%2B9KuWPn3BYtdVhbW8%2BKozsnPF9WvlR2A2KuWNF0tqBsoayMCbBZ87aKUzUXR%2BVKVe3fOKS37upZFK79zAZDO3Iwc2L%2B3lQbJAtjZcX7GEW4UgRHAEBNpi5M64v%2F%2Bks69tAxNbNSfnY%2Foj0oEe2uz8OcU8dT1TYY2uBXKFVUNJdSxdFMtuhWEGdyRRMOiyqUZ%2F%2BuaF5WbA%2FJq3y%2BEybE3%2FrhW5XqTglviNhRhOZiZ1nPZScKxbpM1ZFRhCtCcAQAXJMNjV%2F7j1%2FTkW8dafq2JrlLJ6BjfStvvzOXnUbj5Je3N85xZsNhxXxs2bEVxKImTTgcN1%2FbjKke5k0oLFwKjbZau5rr1FZ%2Fz%2B8%2Fr90P7BbmCM7eBmxfT9sI%2FDLbqqkwWlK8P8oowhUgOAIArmrkyIi%2B8Ctf1KmnT7VEL7ySCWZ2H5u91IUJfk5pfnB0zDKx7YJzebnYhkBbKZwxAXHaLCfnzXJyxi43F81ys7k4a9gyp2yWsF%2F5%2FAGC4xIidhRhe9AdPTiX7esYbgsrnOKM8HIRHAEAVzR2ckx%2F9dN%2FpZFjo2oV%2BWzebclSry1%2FtlpVyhQ1ZqqFORPS7H7DmZwNhkV33%2BGUeX3hHs%2F1dua5s5q%2BOK30hrQwX6w3qtJUfl7VsVqxc6xNeEzGqDouE8ERALCIbSp96GuH9Ll%2F%2BXllx7NqJWYB2FSSQqqXvFli%2FvRXD2jiTPNOaRk%2FNaajjxzVbd97mzBfKBFUtCvknqieqzRRUbm7YsJj%2FW4rfkCNFgAwT95UZx75rUf1uV%2F6XMuFRqvslOtaRSqaamNmNKNmZoP%2Bi3%2F9EmP1rsBWHRcehnFHEQ4xinC5CI4AgNfZdjuf%2FRef1SP%2F5xFlJ3JqRbk6f932Oik1UR%2FHKxk6NKRzL50TFrP9PG0j%2BIUYRbh8BEcAgJyy457O%2FfiP%2FpkOmiVqe%2BCiVZWy9R0POHVuSq0gP53XkW8dFZYW7Qi7y9YLFUdL8%2FY%2F4uoIjgDgczMjM%2Frqf%2F6aPv7RP3NPUFed1n4QzY7Xt%2BI4cmxELcH82F746xdUzDXnXO1Ge72v54JtDKWZiorjjCKsFcERAHzKqTg6%2FK0j%2BtO%2F%2B3E99YdPqeyRmceVYqVuFVP7ucZOjatVTJ2f0sknTgpLi3aaqmN0QXI0gbs4Vm75J0zrhVPVAOAz9gHy4NcP6ak%2Femre6ECvqJQq7iUcW%2F1DnF3%2BzQw398GYhV78m5d03TuuExZ7fRThyfkjJCsFR4VRRhHWguAIAD5hK4zHHj2mp%2F%2F4GTcwtvI%2BxqupmO%2FLBsd6sKfKp4en1UqOPnTUPRkfb48Li4XbTdUxVVIlM%2BdQjCk2FoZLipmKZCBCY8erITgCgMcVMgWdfeGsHv7NR3T%2B5fMq5Zv%2FhPBq2DF%2Fdom5HrJjuZY5HHNZMVvUM3%2F6rO79iXsUCBCCFrJXSWKDqTqeKqhantMU3Pw5P1JSYiAqXBnBEQA8yi6z2urTMx9%2F1m3TUs774wBApVCpW8Vx%2BsJUS%2B79PPbIMb35h%2B9UrC0mLBZuCyliLsWJ%2BT9be0jGzrcOhgncV0JwBAAPsc2M7ei5F%2F%2FmRR3%2BxhGdf%2BW822rHT2zQq1fYmzg7qVZ09sWzGj0%2BpsGbB4SlRXvDKk1W5jUAd6uO54tKbmYU4ZUQHAHAI%2Bw86Vc%2B%2F4pe%2BKsX3NO1fnX5cEw9jB1vnRndc9n9q4e%2BcVAD%2BzayXH0FdtRgpCvknqiey4bJSq%2BzZM9HEBwBoKXZAy%2BvfeWg9n9mv44%2BfNSzB16Ww12qLqw%2BONp9kqMnx9SqDn39iG778G3q3NQpLC3eH1V5piKnOKfq6FSVu1BUaltMgSCheyGCIwC0oJmRjI48eFgvffIlnXvJ%2BwdelsNWG22gXq3cZF6FmYJa1fDhIfdQFMHxyuwowkhH2D1RPVd5umICpaNIe0iYj%2BAIAC3C7sWaPDvp7l888PlXNXZqzHf7F2thQ2Mhs%2FrpKbmJbN3nXq8ne9s48MVXdcP7blAwzLLrlcR6wqqYqmM5N%2F93qTBSMsvZQQU4KDMPwREAmpxdfj7%2FygW9%2FOmXdehrhzQzPDNvQz8Wy0%2BuPvDZimNuvHWDo2UrjmNmub13V6%2BwtGA06B6UKZ%2Be%2F2Sjkq2oME5T8IUIjgDQpOwy6fCRET3z%2Fz2jw18%2FrPxMXqhNfmr1S8zjp8brdsimUaaHpnXo64cIjtcQSYcVipdVyb9RdayaP5bGS4p1hak6zkHtGgCa0MzojL75Px7Un%2F7dP3UrjYTG5bE9LFfrwoELanmmMH3gCweYw3wNNhjG%2BhdXFiuFqoqTHDibi4ojADQROyruid97Qk%2F90dPuxBesTHF6ldedyVnDh4bkBcNHR3T88ePaee9O4cqinWEVR8sqZ%2BZUmc3tIH%2Bx5B6goSn4LIIjADQBt%2B%2BeWVJ86Dcf1ohZnqZCtDp2f%2BJq2CXqVm3%2BvZCdGHT80RMExxrYqTHzgqNmm4LbU9eMIpzFUjUANJg97PK5X%2FqcPvMLnzVVrmFCYx3kZlZ3qGVmaMat%2FnrF4W8ebukT4uslkg6Z6uLiFjy2SbhTpIOBRXAEgAbKjeX0pX%2F7Je3%2F7Cv0Yqyj3OjqQtLkhUlPzfaePD%2FpNorHNQRmq44LD8NUK1V3yZondQRHAGgYuxz69Mef1sGvHuIBqc5yk1mthq04ViqtfaJ6rmKmqFe%2F9Kpwbe4owvTiqmNpsqxKjt9TgiMANMipp07p8d99oi5TTjBfMbO66u3UuSk5JW%2F9XI4%2FdlzZsdUFar%2BI95uqY2RB1dHcHApDRfm9hSrBEQAawB6G%2BcavfcOtBKH%2BKsXyqnowDh0eltfYJyiP%2Fe7jNI%2BvQTAWVKx7cXuekp0wM%2B2dSvRKEBwBoAHssuHFV73R7qUZOWbp34bzFTG5auLsuLzoxGMnlJ%2BkJ2gtbHueYGxBC57q7ChCu%2BfRrwiOANAAh75%2BuOWnkjQz%2B8BenFlZNdf%2BXCbPTMmLLh68qHP7zwvXZkNjvHdx1bFsqo7FCf82BSc4AkADZMfZa7aW7LLsSoP5%2BMlxzzZfd8qO25rHvsS1hTvCCicXRyXbnsf2d%2FQjGoADwDorjJTVW9ppHpD6hLURNtWiyph5wN%2ByrA9zw8DQN6e1JXiLnKQ3w1XpwZT258%2Bp4%2FqENnxbh%2BL9RIErsdNiIl0RlbPzn0jYmdbF8bLbusdvAlV2yQLAuilnHD33U6c1fYB9ZmstfUNct%2F3vTe5etVqd%2FcSEXvtPF%2BUXXXcmdduvb2ac3jXMHMmZ8LjgiURIar8%2B6bfrzmGpGgDWUf5sidC4TrIni5p8sfbr2ilWNfzwjPwkc7yowpB%2F9%2BvVKr5xiXGDFbNkPeK%2Fpv0ERwBYR6FUQMEo1Z31EIyYZcbOUM3vHwgFlmz87GXBmLlNxrk9XksoFVK4bfFtozDqv1GEBEcAWEfxjRFt%2BcEu80AUdMebYW2EEgFt%2FnCHOvbFa%2F6YgMkFO3%2B8R227owp4Pdybby%2BUDGjL93Up0sUex2sJmOsrvuEKowiHSr5qCs4eRwBYZ06pqszRgrvf0a%2FyF0oqZ%2BeferbVvnodNoh0hJTaFl00%2FaMWRVNFyp4qupNCvMoGoUhnWMltEbfSihqYtJQ7V3CrjHPZSmRqR9y9Tn3AITgCANZdacKEs9OF1ys1tpKT3BxTpN1fS8VoLU7B0fTR%2FButeNxKZFRx%2B4SH4AgAwNqwjzzF8ZKKI7PVm1h%2FRNGOMMv3aHqlqbLyF0tueLS3W3c0oX9utwRHAAAA1IR2PAAAAKgNwREAAAA1ITgCAACgJgRHAAAA1ITgCAAAgJoQHAEAAFATgiMAAABqQnAEAABATQiOAAAAqAnBEQAAADUhOAIAAKAmBEcAAADUhOAIAACAmhAcAQAAUBOCIwAAAGpCcAQAAEBNCI4AAACoCcERAAAANSE4AgAAoCYERwAAANSE4AgAAICaEBwBAABQE4IjAAAAakJwBAAAQE0IjgAAAKgJwREAAAA1ITgCAACgJgRHAAAA1ITgCAAAgJoQHAEAAFATgiMAAABqQnAEAABATQiOAAAAqAnBEQAAADUhOAIAAKAmBEcAAADUhOAIAACAmhAcAQAAUBOCIwAAAGpCcAQAAEBNCI4AAACoCcERAAAANSE4AgAAoCYERwAAANSE4AgAAICaEBwBAABQE4IjAAAAakJwBAAAQE0IjgAAAKgJwREAAAA1ITgCAACgJgRHAAAA1ITgCAAAgJoQHAEAAFATgiMAAABqQnAEAABATQiOAAAAqAnBEQAAADUhOAIAAKAmBEcAAADUhOAIAACAmhAcAQAAUBOCIwAAAGpCcAQAAEBNCI4AAACoCcERAAAANSE4AgAAoCYERwAAANSE4AgAAICaEBwBAABQE4IjAAAAakJwBAAAQE0IjgAAAKgJwREAAAA1ITgCAACgJgRHAAAA1ITgCAAAgJqEzcURAAAAcHXV%2Fx%2FaTST5z2h96wAAAABJRU5ErkJggg%3D%3D%22%2F%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A"); + width: auto; + height: 110px; + background-size: contain; + background-repeat: no-repeat; + background-position: center; +} +.cbsp-data-collection .cbsp-body__header { + text-align: center; + max-width: 350px; + font-family: 'Stag', sans-serif; + font-size: 28px; + line-height: 36px; + font-weight: 600; + margin: 0 auto; + color: #252525; +} +.cbsp-data-collection .cbsp-body__row { + display: flex; + flex-direction: row; + text-align: center; + justify-content: center; +} +.cbsp-data-collection .cbsp-body__button { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; + min-width: 112px !important; + background-color: #8529CD !important; + padding: 17px 30px !important; + border: 1px solid #8529CD !important; + border-radius: 26px !important; + margin: 24px auto !important; + box-shadow: 0 4px 8px 0 rgba(10, 22, 70, 0.15); +} +.cbsp-data-collection .cbsp-body__button:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.cbsp-data-collection .cbsp-body__button:hover { + color: #8529CD !important; +} +.cbsp-data-collection .cbsp-body__title { + font-weight: 600; + margin-bottom: 20px; + cursor: pointer; +} +.cbsp-data-collection .cbsp-body__text, +.cbsp-data-collection .cbsp-body__title { + text-align: left; + padding: 0 30px 0 20px; + user-select: none; +} +.cbsp-data-collection .cbsp-body__tick { + font-size: 24px; + color: #8529CD; + min-width: 30px; + padding-top: 5px; +} +.cbsp-data-collection .cbsp-body__tick i { + cursor: pointer; +} +.cbsp-data-collection .cbsp-body__content { + margin-top: 25px; + font-size: 14px; + padding: 0 20px; + text-align: left; +} +.cbsp-data-collection .cbsp-body__note { + text-align: center; + font-size: 14px; + padding: 10px 50px 0; +} +.cbsp-data-collection .cbsp-body__footer { + justify-content: center; + align-items: center; + text-align: center; + display: flex; + flex-direction: column; + padding-bottom: 32px; +} +.cbsp-data-collection .cbsp-body__footer a { + color: #8529CD; + font-weight: 600; +} +.cbsp-data-collection .cbsp-body__footer a:hover, +.cbsp-data-collection .cbsp-body__footer a:visited, +.cbsp-data-collection .cbsp-body__footer a:link { + color: #8529CD; + cursor: pointer; +} +.cbsp-data-collection .cbsp-button { + background-color: #ED5050 !important; + border-radius: 23px !important; + white-space: nowrap; + font-size: 16px !important; + all: initial; + outline: 0 !important; + background-image: none !important; + color: #fff !important; + font-family: 'Benton', 'Montserrat', sans-serif !important; + font-weight: 400 !important; + line-height: 18px !important; + letter-spacing: inherit !important; + margin: 0 !important; + padding: 14px 30px !important; + text-transform: none !important; + text-shadow: none !important; + text-decoration: none !important; + text-align: center !important; + display: inline-block; + height: auto !important; + min-height: auto !important; + max-height: none !important; + width: auto; + min-width: 187px; + box-sizing: border-box; + float: none !important; + cursor: pointer; + border: 1px solid #ED5050 !important; + transition: background-color 0.2s, color 0.2s !important; + user-select: none !important; + min-width: initial !important; + padding: 6px 32px !important; + color: #252525 !important; + font-size: 14px !important; + line-height: 20px !important; + cursor: pointer !important; + background: #fff !important; + border-color: #252525 !important; +} +.cbsp-data-collection .cbsp-button:hover { + color: #ED5050 !important; + background-color: #fff !important; +} +.cbsp-data-collection .cbsp-button:hover { + color: #fff !important; + background-color: #252525 !important; +} +.cbsp-data-collection .cbsp-button.cancel { + border: none !important; + color: #888 !important; +} +.cbsp-data-collection .cbsp-button.cancel:hover { + color: #888 !important; + background-color: #fff !important; +} +.cbsp-data-collection .cbsp-close { + background-size: 100%; + text-align: center; + font-size: 16px; + font-family: "Roboto", sans-serif; + font-weight: 300; + text-decoration: underline; + color: #888; + cursor: pointer; + position: absolute; + top: 20px; + right: 20px; +} +.cbsp-data-collection_bg { + position: absolute; + top: 0; + right: 0; + left: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.5); +} + diff --git a/templates/assets/favicon.png b/templates/assets/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..f559e8bc23cfe9f1da484b6f0d5e4221fca9d497 GIT binary patch literal 284588 zcmeFXbx>SQw>~fN!JAoULsgz(9zP3m6FYwzUQTyq7;^8zdVGy2-xOA+thpZ+z={ zTSE5smk=l!nQ-|PVf6LY)MzDEpA}A>OHk^0aoo5&BP_7r) z^`HIYo?7@H#29R4h>P1^8Gk>w624zdsD?apZS&yIJ5c;mq#Vi)`+QS=)tkr^IMMEKu}eV>l6-Dd6%Qn$ zZX>pP-i{4et^Rr4(B=O;wEpA#Yuff5?O}^-jkx&pOLzjr)OH|(d@xEok zt~}{e{lmk{+Uj{0cLU*<`q`htzf!iJ_@&{9^oQ+2$F9d6a9qWVVs@m*Qpx?Xn zU3#A}mug7d7C~Voh!g3>vD=2Ga~`Uh4#tQ5HkrM` zzaKhZ541JI5!P=URl>3a?eDW%BfUt4-0%rq_Vx~`p+_`#Id@}U9`u?I$B`~JB`THm zv=AC0vRK)K!b{UjZ&@KoF}iXOD{N`smdJ}{I@@k`@T3oylI0V-u~0vyrJ{FoSNv}w7qkO*KuDVtwe)< zllAJ@;Ks*LFLM984LHj&ftj&}Rs)-?cgv))7Y06QI(kO$mWYMV8ha8Jn8i@9Z|f0i&j5Oy3O}Ix=N>iBc0d@9vQ#CKR{# zcjtQcjZ1Tv_h_2Y|DKzvtG|PTN?1oNIK|m(XQP>q`o*?UeTHSIvf1c5`o6RI>)oN_ zRrEA`!}z<<(oPPB$s17jt}M5mWCN-eXau;1K+WgZlDGcKmL>f&<38TaS8W~^zM zCwIo#uFtrfCe!ZWAu`kasB@hE9UPC~ zM**apXJ(P27SIp4#FU!U{r;her3yay!)D}6_itQvo2(P1?cDw_d8{{#YiuN$C*Er# zm!eyi5kp~e%%uZ-1{GYBweGT&tl*MS=@u3BsGxJ7rSdl(gPitsNpz_l#7hmBMK*rg z%S$YNd))64(qXMQ=#2Q{3dVIYEYFH;w&w1dgCYhXY+vCe*rjQb8FK)`?|HX5n+&Zg zd%9%Q_0lmm9Q;xsaUaUyh4mfrb6?z1oKP`iozdS=?F;&vA2SOqBZ>72>hY!BI7rNZ z_!2vE)REW+&f;U=);7rTPfJ0mcy{2s9MIh3>-06Mf{7M`arddxG?bzr>5-5tW!4bh zNb?XrKF$3)H+$|Ga%-l{cdof+5>ti`Ck_6N8SVFNH7Z>pbzCd$BYtVl4>c!L8-C&H z$VTWTf9y$;ZoDXqx(}j0El7BKT2ah0mWw;`t^J&8EMrL`R07hA?h|S6Cld9D^pQ`5 zq*L|n=7tUjaos*c;q^c>t@3O$3Sv7~$}wss_9(R-LK}$nMWeA24(BRtrCaIQ*|p;1 znluDqF&yAjS1Zn@!gZ$$VDwJcCR2)VAt~I-d_$w2kPt|#?{jjknj-x+vzevo7$iYC z0aN{X0&NivHH!!acCmO^tvRr zfjt-opbiPn;IJE(56n{O#yi{OR2-cRdL*z#dz1A#Q9fJ49-xr{ zh_MZ=Xn#zNWJEJ9=8L#=^fc+lK`dQ`Nc9!AjW7iy5<}dGM)VqNK3(&=!)54JsU1vS zvvq_lg=~o^Zd$mANopH3FfD0O`tLm5=40|%%=v7@4-!M+cK}IQ1|5p>#KJe9VWsj3 zG@E#DDN1-DZUm#dMkDL!2el1DTZ%ifpx@N_!Q}ce650e&Fa2Oqxm zv#TSN_JFV&LmMYC6bk|Fs4LesESJc|ILhe1Fut1ei6Cr`!-W&bp-?pEz!)nkNGmwt z897QA!(fq3R4DhfEiSL_0n`+P>vphq-|SIrq@u^=rAj6?BMlbz1DzDRe^2++froIG zH*j%TwRd(EYPt!LjH3s`lVaah>s1B`ej+*rt4CBZeT1G8XjO6`;EZ`eipo#NG4&0( ziGvz}DhiV;M3<3RISUy@{0`&WNbE`v42lYcg;%qdT9nuiV$!T?xZKd|v7(CunFT-E zm`K3L$yk)oK1tu)qF)8!@Quv);N6fZhOgzo)M*@L=M+~dm~5064A3!kQ>&DQ%0z3A zsLs+z%PRwm4Cx~k*}>!!g5?GVFm+4l#kTvBgt4_P>*Q@YgX|fiI zYD>dM82Q$)cuD1?SWVbx&6lhSsAM`^

*E@88UYdBGU2+q=M>_}uwHy(Sf|7bot1=g_)d2ysckk0Cp*S=;dx@ZSApjutpvZn&V;sgfyd15jX_+ z5gYxWlq;$+S*}7TlgfTfBG{tMPl<&6)6-e+KM^F3`2iE4w0Qbe2e!zTTo{pl4Z6X9 z0tiP`m@wFDPe8$I@NVEtr`B=OOaJ(s8QftNpQJ+F&XmQAJNB7gKuNRfP^0p)9TvJ>in{pAbuKzCAs5C{zIDhxMFT)mMnw)2^lvuDx z7-3oPa8IONXKP))t;J&$ySWi@)H^r=y3XLv@y~(3ScwqZd^}-3Mt+9Rk=ii zo+E~!q3GlrnsU;Aj9K4Ng*}~&lSY`x8{}sibaJVqOI>}HkTJve&b-{QV%ZUq*ru{| z1&vGAb`AiDMq3k808v;^4Z>YBs7>W(+t^5Xk)M*iLyhOFs{!1MC zt)HX}FHV>Fv-Ml?zAoFO-es>?zD#`!Bfw_^BH(buYyzJuWBAd*QJvD%z$)~5#1!Z$ z0NmmXk~Ce1;O`A~B~tlr>MHLt`F^TUdQIn)AZBnn{wEfN zuE=hhzAY-t5r&9{JDU62??Ff?d-s0n%ZvOCXeliG@!+& zX`kYehRG~phS^9iZ1d{)00%CkibWE!?BWF26{im(}>&_s|kumecO3QBbIQ(j*a;avOA979YGE?^;zu~(;)IUjAsCMXt z3>j^;xM7H*ha&nxrq~DT_WYUBLrBo+voWSi+gvc=nn3Tb70d~=U5odoSc+M==S-fnG`b>l-5eFF1Cd@b^}P%B zlBpAzDtDB1J<@(Y&f3+3-6mO(KMQYpYT;;M!EmF(7$4@RsK8BrG8{>4s*RYjh*zw6 zZ;oK2ElIb@2Y}Rl+H+a!$GJ3K(ygmoL>ywYjH8X9+Bc0%j1QvOBv46!5>s?DE-wuG z*|m4iyi7435eI2ZKVCyVsgz=8E;1M>|B=mHH|arbFE#T;YlRsn z;{aZ#b}@a-uc|Tz$)b5J&h>}F>}=kRT!!V!)Gl)DvUAo!kz`o@GhiE*tVJ&-=@Q`c z`3faKd&xwj{A!f>F?89Ue{GO@{52DZg%%0(KH{0F6=jSfxYg;uDK@MAyg`ULdk`f@ z2>B_MV5Y2$MzW#DGu8E${Ix2l$NJ0dtoYm%#Hn2n8i7q5_l4Hgu4BPnf zwkE_)B>r5RC$CyM!T?&BdNajrBnBYCZ45maWoQw)F?!{KIg&cBFO=jn9C_L2a4KT& zw4cm}aylsANH!K*9L6*<2uEmvY-EAGDM7b$+w*z19SrRo`xz16>?SS-O(e+*l*5k= zzZ&y^08>*@lJ*v%s1E;tBM{pY!G#_HQiU8KP`kX7v^dnU14yP?=93nK0`xt~b-w>z zyFjp!nKN;vaX1+O8>|U`ShrbV0yUd0}WGkIR0)@m)r>rZ4PB{n0rB z6^qbDd1MaE1gXPPt!dFNl5BVgtx>$c9G}NYP`05-MdCoQ7TGM8lufxekvBiu5FZrd zbEtSP=}di0Hj0aGFb*mEy+ChJHNfyAZsXvUp_4g(TgvzSg56}AkscI)n18!D95f@E zrbcpMOeZ>3#x6}OAb@9HXDUcr+a=#0yF!ij%(z~eEEp3i$mY@jC0c#jNMX|B7Uz9j zWU3CBK)JCfHMw7bxlk0+xwQpAxCrH?%e>sb z5^7mH@PfWCRlzs%g#k|8^Lt_v!fV59zz32qDX)Ve6nIrfXjc(cgw}K)WzC_ZzM3z$ zPNvOE63k_J6KK*^$T2uwpk5QRL1ju3;Nts23J3aKaLvSl3tY=!jSC{pRZQGa zxo>NXj>J;b_J@VYXY%M2dBfZcxcKC{V0uy2Mrnj=8-5`{F!qv_F92o;Y3Y1Kw$LW} z*%+@%cNM-4v;SVxGbOxl%mJF@(-G0ft2i5a*J8UMb1EL}wL`K@=d0rAs?&sh$K~F}@H`C|^^;^MzMfA)*z2{~vSQ1*?O`jMMqwDThDM5Phi#^hA>w==fh;yWc+hSB z=F2;1C@A{xp>>+}6Y9YTi+VY?d(qXppGMJkyi*}(1(k8DxQB69!@QwC2^gc6cd&Sw zcMaZXMnB04b5CbiqU!X_G$R~Llb|d!G2K^oO(cLd)cK;ii}$Pu$nq~i@Ai-{C&q!GvNoaxcs(=3eLl^=pwToYPd;K)dR2wz-r zH8kDeDI~krE-ocAz*&#tF5A7ekZg{}4js*EOwk=;F{>d5?#`L=Iu%?NFZY4Lp{5~? z%69l37g;ZdO~&xP8)1wyMkHlZ2JZz*ivN(bByw6is+RmlM=}0ALhP=z)ivLN1~Fj0 z;1?PWJ!1Wx!3b9hl#Z=QU8pw{9Lz%;6myu>dqqzFAy5oLV=AnSCG^WD-8>KPL`xW? z%Rxj0_{e5Dhh-hN|>90-H736oicQYyeE@dsIJ*8D0(w)*tI# zWIzdLx8k*#b;YQl5G8Tamk;9R>DR8f@)PbuKE59<4fT=n=K1(-F8>Y(-X50!Zls8t8Pl&6gs~hzO(;AF9j;Geh$1g>&R{($Nocf&3f`kg>|`cN%cM!| zL2m>#p%%#$oWG?1$@%0*c4yS8ig+-l=y;rX(^a<*|Kpo;yT;zws)&k7EJ9+bG!JMz zA4C=O5aO>9vot>1=Tx$Ypr82?68b%k75c0{&@Bworoz}c&C%S9n?10#D4EjXsz;69 z#vc?*&r%)=+oO`#qqlV3eXA(N70=nvBRgDv0C7dx-Dogp3~Mwi^$>Cu3n!>=$<%A+ zhZ&!*7n1pDe+GPal#$R}!>>OjeIpJ@Pu#c|H`ce&M>?wClT6lf35H54=xe`1oB*;c z;T}W=03p3(6TJZ5`anZG8U?S`1lNEbVn z?dA-;bbX-J4<_-OB_k>PVYqO()(C%au_4iDE`FxKWm<%EnA1Z*WoC{rXoj8iwwJ(|y+UITvUk5o3p1RRD9POPU-k*;h;@l4o;E4FW z^~=DC6#opJbwqyzFXs?us$gsG80u|wIy}3)K~#jOU>Ps)eGc6fC_F$&vY)?fQLiSZ zGAE3ONHLB=5}B_o>CGuCCNp&}cdl2Br#`C%QKCc--%>$GkrI@`$^Ot8RaID`EbnA$6#3QWD4a6eLl+=6Rjuu_oVF6jXu!7@su4jCLqggq2 zon=I1mY-s3wAD}xz22jUQ-wjD(0xloW>SPDZt?xB-rY|r*L0YebnbPpM&(a^*CaKp zsZ$J9l^Sf3W6LR_%`aFRA@WN=Y`x{dmtA!(s~aEz@s(cFi6k6`ZicZlQ>I_r`WPG( zcO})%dye55yd_p7!yCBQ?e@JKo(ds*RJxFiLvcBPZ+Ld3_=qFf`Mk~4g!DAbJr0W) zI)~Y=rU6I4q9C+l3sBAmQ-zOM6)jV;uJq1slr zn~*p`IYXA4u4WZizo=CTt-cA-uB1gNp|dwY@xv|Arc4za#cT+}YolepNge)jPne?x zqoO%4lpu>xh&Q_vw7mCw^%`5*&Kg?N``i&Gl8AFbdR!B{0ocTGJWV75C{0U_eep+! zQJ$oFH1s&A%@1S5Lxa}N6OA1;q)W@ms6A3mbe)xCo(c!D>YQCNP3c_`)wWP`rO)Fi=2N!4ijSACM#8}_bcOd4J6^-xqsyW{lB zp)GTs(ijf--kfdNUK#q!^tp(twNLK;L*i?!T-H8IDIsq`S2pjClAB;iQ3wNQ>1exw z@v|ir&uBbN*uDCdR=XFfrmmsy;51tla5BIxZa?3WhTu)b`Wqf8NqqJzLq)4>f^o1< zUf%Fo3`N#E>DbURHxBo0qT&6#n**pmUeeTs>D`%|8bMc@AN|}TF$T@?vDU*Pzeg#R zy8ox=MmhqEXBeRtJLYDR(^Rk-UhQEwZ0P$+Lz-u8c5vj3z0@uhmWg@iG@jR8g4qEH;N}oj*1)(J)QF&}NLe;u0yo`ssX$HQO|pcv1t4 z`oshTApq;o2_0&%8bszMd4ZD|I46Wv$cn0$#%M9GMvjQMlrc5D9K>XbO2DY6Q(vkS zw~MIXCvh7*`VLk}ae7d4b_2+205N6Ne5WCU}g_k zgr4=8s*8L<*GGxM$-m!kn764g>Mi1vCT41;d|=Z07&C>FZ{QY}qdh@Ot@W7HZ6v$S zWkqV?f9f$K-|V)LPknixn8LtW%zFDlRK_*6$_aLFdaCAt1oyZ`-=&n=VsN%asG9D< z<2yRa>y}CRJM7i*NLXC_%MAfkGXZrezB6jrgOQ?2X*YD%B^TJHCog_{ib5hBoe3bP zuJnC5>@0Cd2#f;{a*+i#Crg2Cq4%2UGb`v#OcCJt>z_ zEsVpxLj>)wD7cChN=I6hIrwgpqhW1(AWEhvptV$wmxVuTUW)8OvU<)3)Up73lj zgaq(#6$U>EK^+%y(FuoG>U}$5i!dWE!(hPC#>~FXmDC~F8=d#cImcF!e@6`kl|I)( z^R0^e+ln^aba3{e`Jy@Lm;mfPFXc;HjQriA*lH4LXusTN5=!DiUv>`P44Jfqk@yiB z#q<(|-LH`92>*KW?k!^+ZCcwB>(AJbp`)UyFQO={4K=;n zA#k&6D>U_5@Odb0!N6QsN-9V|rHRf*l3VSc2%*=XDQ^~#q^}Ndn4q@o`0fC!0B}tV z*D?!dlVwnb4sJ>LiHVYpph(C#4xRZ`xlo3JUBaO9W+LVIf)U&e?#pyRC2!T2l}cY% z>=!d$Ic%+?BY;Z#xL;WI+dZc8@YCh!?0KXus5E_CO|3}03nnUyD9^;Z-zVtax-P`R zm4rwOO z&pO$;Qb}2dWGAh;Y7%VnDw4^HN{7~%Nw;W^f>6ca!a=IoH#ir1!Vjh88sT<1?apb? zS`;pssfS&ic>Ovnlm}KA zr8GPU4WH7ut~VFgh@4DN8|e^Dabn^1D}RNsGa2UnfJNvV#Hbid%31F8z~k1gqd}(F zlF+vimFUA{u|mXY(40re-+VpfXL%80CXpxS+CtX6`5W6MU(`Ox&7uXb=nPFh@sX+u zDe$FoiRsm_`TerZnPrJ&n$f`Pw7H($i9y4pIPEp~u#!^T(N8h3$)bwl3LK0{s4;a2A=>s0$PvTpb$jFVV9x`nw zw!wsOx`NA4Yc{ym1;4a6KP*fl)t=F7@gvDL6*;apN~~Bo6}zK!f$-pHt8|CCcBJS0 zJ}!fhgf+v=jgXE-lMPLqf0b5 zg+0ARV`PKKCvyc-hy_Onx?Y&G;tNHYB*T$fC2h>mF?n9otgf&+?d{PuT9hWDQ(F){ z>C{C?q%4@TKPfj3+6PHuqd{@f-Nz%U-V`~27nh=7T@GYObLBNrD13+WW15(u)L@0oP>qbbPc8gL5de z6$C%Ct5UGEtu;D&i zPk{QaL5*an5ky!^t=rOs*xu@Kf(=0*!+LJD){QhU5rwbqF}> z)J8l#Zsb<;v69*z>I9AezU=SSRoLhcM?jTWGTBfT=_w+^wji&BTfYt zL5yn$9DU36US^m-FSjkGo z*m%-b{lw=;L(}B5)U2a&nZ$Cjo0|2$U)xm0+N2dKCUnCZFp-jU+QCASqyeVlg| zD^{w-+Qqm$YT;n>Ylkgd6z@LC++Uj1_ZPgWY@M#a)F;pN3_GtxJqUn#8}%)N3Ym=i zI5%Ks>4M>W&C~C52y{-Z2ni-V;_Ff&=cGzM5XG|k`{u3B1{52>CbpvLsC8(Zt~@Cg zqAVn1D_~@T3&d5JMrS%6Oq^luCWj>Hu}1bckv-kSmUFvCn_M(LwYRn{Hj7N zJ?!WW<~g7sAKHxHWhs9mpbf9NpzNCs^frGehSwqsN_dLHf>t`RJ4SaO%D>KM-GCHs zG5TdC!l=zosw=Wn%q8~ zMCe&{;?p_MvhpOokvWm@CQcBgjYuz;Tz4R0fpbSsmy(G=V|JHlDA-XS!y~Z!N#)L# z`&KCjIgCF5o&fsmWha^PhdD@O-_N!>MD#MgvxM=v6Auq%2h1hAy5XZR%A@t&ICld* zsAW+4(Mknjc|OSs%av~V`s2I@Geb>>5P$PZ7IJ1eYBGo7If)Wj8b*abZNtf*K)BK4 z%*SD4mg-?2H^i81+w>C*Y3IYi4||Nxfx!5k&&|J9^|bHuYTVf@(3?lw%4;d!2U&da z>G-N6QdbFI8!G&i4>0&u@&3aK=~2f7<)PSwaQNl9L-D2(THkjLeG;;h^{}990*l^* zW0`(l*yYNOH>;RILUUwg?)4SS%_q3ls2cUN(ZQKR$-tk*saW(+W&P+{lpEQ^1o<8v z6oR=BUHJ3liV_O-;>@f!UccJw*j7eRaW3^dn5NZQazC52ZGNp&O15U$dhZ50&N|A& z*+!sqd_qipVv8gAsevs*7$Em(kck%A$e zW)wB_hdzY+Ku42oF&**R?Wpa!)`}~#p4j@(ge~UO>T;ahoa6vqC5_{v8Il9fdF@g| zbO$fI@Gg5CUMpB4q^fz=`wM>|jI{~$gQF3^kVhCMj8?;AKHeKD$Jw=6wv2^gOs%gR zYmj2(z}pzr!@+aG1L;J*&;6rNm2p~^FB z%TC2%SONghjci}fK_w^cRn&pf&Te2J4;v2~2dk{NttS_i7&1`A&B|IxQ%3F| z5U)?7RBs^=7a?|bFE1}PFK#wxHyd_NK|w)w4lZ^sF4k8GR(BsK2*{h&$({NS#NQY) zV0TM5TNj9}vlH+SCdk6s10qUA_1X{oFZ&!_R8;;6@8tdu7GC*a_XfGJbFy);J36xe zyM{YN*7FtQ9|rwjHQcpdkCL-%g58}x+$_Peo?s^k^}j<{S^iVs#ly|vFL$gg*})EA z$5&DJ*HJnDV@P>L74?5={Gq_c*3soJtyi-DLlR)>eXG(7!{dx!JyECCK65t@;CH^$Nue<_7ayTL`jRadKF*@>uZku!3GM zR*(R{rKKQ0mo=E*;xB8gEQREp-5f!$;k0!G*?`$yoNWH;_(Qmmq`IOg6&D-FzgpBC zKoIL!1yQOuwoV@2|LV}Tbp&fcK!4ceopauI0RTb=lGnT3!YlOu4)WjP_kZd7U%LKV z4E(o*|2Mn-m#+U71OF}I|IM!d-{?aA*NzeF^!lRb^|~J%cc#I4-Alq-D9g+IwW|dD zlKvX_dWYnqVBih_AejF7K?!iuU%fUWKonJE5%y5v@t6rILj`mJ03bk7MpD~*`J}_= zv-6V9`kjIOIrn40-5UQ55Q_K!e&j8_0yL%cSTPfJKdLUY(kP8Ye*V_tBAja!V_7S< z9+N9m4`)W_wqiww%Mn zVt@}~$Lq4+Xt|157yUNd5d8A9QcNYly(8vTlkWa?%x%}Gh4#6;DVy9!xICt=8=I%x zyEbQWMJtSp<+}$H43T~>Q_^2sOJDZYFH+*Uq4q*jun-W61w1p%YrHj2Miux;<{5>) zKVGiF9^-hwU09wtoyn^!h*%0JHA05HZww_3^PW>OSG6vn#BB?~L`_ z_XRHRC(^=w&V*k~`;*%5=RCjCu7knc7Y9cFOT|3|n^HCuvreOXWrHNP9)}=F4;T42 z4ASzMC}Mh6d?L!(eC`7(iJFq(4HdjuA%4(*zk6c!w?pT%EEP)kMEgQZLT5rA zYubeHSgSScP$`@qZM1m~mBD3sNbm{4B&-e0mfX{J)&|f3w9-=|PkOQyRgAuJK6Om8 zcGDszFZQk@>mStKx5gukKb?7rD1Gr$_Sp!r>3RvN?clupK_3tK-HTDu&#i{A#;udv znRQ?yGdq#-Qw5$Ya?AJc+H}% zp$xtmb=%N3MvF8zZ|{vINWH?hT7|gg4(2Nd@>)dQhN9?Y$(J|J*Fh`jUxY52g@rpW zvc!$nTGm!yV~+DkZ14YLfMo4B?@<`zB6B9U^rJ>)L)2&SynCF;eUN^PRh6Y&3<#%{ zAY6=9%_0$ zBHwjwa8Y`Vt$if$9gF|FaftOSvLVx4I1ei>lqgXm&HXP_ zaF14`X~=SXI2V)9Ekno~98Z?v_6^3(cad$|CXxDZ+{Um!rr0)v%*O6PbdKEfXx^TX z8gDECU8^jMyE8mCYyXp^Z`gU4%o6Yb#ke6{voraUbsdO>PJ=gM)TxnH}f z_e;-EXI;kzBFB%z-^P5VevMU|Y|_qo`{rTtqpIVeZu_rX{xrL?y*hf?pLqRV7mz?( zBknt%qB&9fvRgV_bZl}zd8y@mO(5<+UTZ~2C#@>%pl2D_nZ@DN+9s(ypsg@c9!rg` ziK-|0qi9C_l+#@%EmP8YTmTMB_IsTLhaL^BLspVf+|?a-rH9`n-g{DNMjq`j5Jf5mC@Q_!s-`eruB5U8(upm|x|P3Jz7Gjmj2 z4y5CJ_UMab!2P&+TG*1JW?6je-kdghTeWVj#f^{zRKQi&eeGCy{jjxWm>nE zgh5u@K4Io#d|!DTM=Q&AK1GdiG8)9hLBtjx2c!9ZOK#1|Ke|}?r$RTpDRRhGPI3uR z*D>xTU$6Ms?2iK8GW*Wc#4Q(2gjy2`RU!Xjb<{)bLTH4dihTE;iG)e7dxHdYf0I zo~8Wi%56;hEuMR}!rs2x^+?A53khy8Eh(zc+hgbH4`zr z57~yMCwnRW)_zqhW)$#idw1>W=H2td9hvutX3~t9`r&UPoZtd!L#p(?kPpav8AzRn z3SQ_g`jZF~uHP38A|1Z!wo8h#72_8DW=hnIaWa5A#;(^c{?=;X@`K&yB$8I{GRFdM zN1y7WSBQ?}Ey}#|<2!t-lZ%1G**6MWf57joXOZt%2rYgL+*0o zhhc%gcPG-!i~}1M^tUI-eL7$%vM$%WF1a>lB2XiV%#fRj6u~_YaZEjmY$2-x7KEk} zJO$DO(6sy*i+ufxB8n&0r6CJ35YhM|t$`LKNy<6G1}C-2Ya}z|HF^QIN#?@f*|jrz z)9Y>Ln}u8}Q=M!t(bj#lfN!x@U;NL%_L3x|vGeqmjPiR%qik$b^>l4Qb^TU3-zL}5 zj`KZ^(nWB!;@|#Cr0P4oL3ZFNonynZE74CdX}4%nnh2x~kIm>-fbS3+M1N9ORLqBU zGu4zDNK_e=NlLx6m1^vh#nQ=O5+iA2nN0zlE}cXP1iYj9j>6}p-u;{O>+LG6o>1{| z5yzsnzbiz1TNkFvrvKP%33!ctF6G6?y>)n4 zgkgu@+kl%u&gorC#Fd6-di$a1TCG1YI5Nh4X!6>H{jsCgJK_=0t=75J^?Q?SeSzNU z1k;s;SzJBu`})1U*hb*J*>CrltLw;cda>q6`fT7=#>6uV7mcm9ac(DQ%aZJ$8pV3D z@BoP&Z-P}59lk9oiAI87nZ?Gi8L;bFyFA5Giahp0P89^5HdH;@aD$> zED8io`b9+y6b0TfR3fg<@55Axc=2#;VS#<1b$JrZxi5H zMC82>Mp2iv-#mVqnMk8B3+!9aw^X^H_;Bfm@qn}Dm6At-&7N&Xx}_f{>z;s$R12>a z&87mtgALB|Q-3cb>bZe8fpqG2ktN#W8ew?RiD9U%dN2@TMoP`;fSpUlsYR0M*RsKM z>0SY&Echy=3mJ*qi*M%T8CXYf|-+E?Knj(bD zx=fH1`p_v74qv*~5wp9=E#Ssy?`~`N2#P5>&X=K z?__6n)8!^qU*Jr;rHmsfXU|0h-7L|YW!+e8AWVyOQoK7OdPRuE1uu6vnqUMeNZL<;Q_tQ?TxPM7OVe*}Qh4khcSx-x zn2!7N;GrV|wt^I;%u)}5Je$dj_R|Ehgg8QSm~FIh>L}d!UBDXIV|NDy%#YuBzLkM9 zq5F^22wyU$uBqvWjztEKN<|$kX{i!OT~WxtmGcdl^6RAX{hKK4k;(EMUYp)^CpaMl@L@%o#scam+!V!q`h`fM4+T zR1vdQALbV)$qyl*v{Z$K2bAj~szNP@`IvlSZYx8I7_X~dmd#q9Dcj2Qj-oy2!*kam z@9U!V`Y!g85%qiRycFZdhTq<(7is7joh3qrO88izJ3jphjCRN?HtpwPJr z9gQYU>&zad{ZYJ^VB)egvd_$FSgZerT8?or1u5P1&%w1;fLI8Ll9nu9tEL2A21QZpuBjWQ+|uGhD@(e?Z3E}HeO z=e^oLtG#&1_TBpS0>#Jsf_Iyh6TXWCV-m5Ucr5ZZ#U=}a*bPutlLJhuR2T|T z+nALwHG(`V-`$N`z}IopV~Jza|?Gyod2!ZNd5%L=*E0D!fK%&R{wII z^hNX(bA)4Jc!%@(Hii`64!fVF%*jN`cVGxA&>`m7qb^Kw%mCy60G~i$zba_8Hj-bk zlOa|&HIVr%j?D$eF4i<|fry`D-_Bg{V@!Lzi|0g6JIq0k3v`N&1F5!7UmQQ_!3>oE z;!$GqBl|ggr4;n2z9sRgKu4hH@!+#BOLW#|_+)7HZ~#L=E_v<*kNQwC z1sxSOIXZst(W!)}ib2YXn}q9F?occE(39pFI~f}Wppq8D5jY;93&k@Ig>ur7rU^DZ z$s9XQuo+?{kcSvEFAHKh5`ze~pXmi&*k@k2nRyBD>c1%W>DJ75?+Pz_?8qPf=Ka)N z;od`mJ2sK1a}Os88#;VHV||a@IO18+2hOQ|My`&iIW%_L<(Tl;zC!Mp*ArlkHP!_GF&FpU=lz2N|Lrfnm9N_u?nq4m?2(%|DUink zGWNk+HV^(ZiVOobB*aQk*Ochqri!2Rs0qG}k!p+qBs#BR$kg1*rh-4R!?#^Hf^9Oc zhP#9wx(Fm7jp(JxNL?sbMl_{(ErTkG+6<>1q!h(OPGoW9bc-Eh=PF%}y{^XwpRCBq z(AEzU;H+&%YQ=_(Sm8VVq9pj=c&9)8T^IaYhXRl8xu*&?q%!c2bAPa0e>S;%}pDBkq_Vv3t zy6!6jdR(X?qwP;bIEqOrd}>(EkQ7*KI|Xh(I2C!Ud(ikp)z zNAa6P?i!9_S3-ie6#V8wnJs{KR|j%VA!FMZ9MUIj$Y{#=Qea;j7!;Ui{%Ac3)>var z@E=q0tMBr^{V=?O%JXX^M6VUSb)YVWmO@2fJB0d~6J6cZbi!*5?)tn$mv%AZ+rFXO z!M(sF;S4rAE=?52XxipAMzq()$Wb+T>M~h$U6n{sDOB&Q65uIKWC5QGX0eOcq|jv$ zLCO+)S_3~;EGyzpIUA8VKz?GxsJ7HlR@0`l?g8dA5o9UYjlyUA^8Nm#FM5jn$)ETA zde5F$xN^k;I96`XIF&@g$&|d1v%-}g@eqlzvxHt7Lp5 zFG0G5h=%O$QZNTRA-!NKtah?%tnp`vbqD`Z62Eo7KX*U#yCN_xNC|0CmWoUTI~M3W zBoT+C8K#0xhUY*udsb2(f+g%igvL8T&G8h7b;%8BzgSp@)`}h$AmJDyf-e>C6fKUs zVWQ}P(Oah7{bF2n}GZ!OV zg-Gfm`1ut6!SuIN!CKNqq{ipc%gD z0>D@+zMo?Ue)Tk13Wte0S7dSg2^(bSNH-7IYynz4I`u3^f%b$`k_tSw$8Rkm6}!!` z8#j;Z?h-tDcl;z0?PV7(Ndj}B64!MpL8(0Hk&B7iWzvvhg0px?;P%01^9t$(PdRw< zLx)}&vE$N;z0giTW8FiqXmh0VzC#XsI61{T0>qb66mJf`>ChpgP8jMqaDD(YWatCQ zufl6iM!xH1&y+W=C&LOeiV8?W-V@!o*APSzVpQ)9XeUz%8PmmJ)UYZY0u3*h z!Z_8iP7w*zyUZ2udy+U-tsVAr(7!g#H+<6tHES{IWbrv}%~&2^x?iwzxYo7+=tHj$%Ap{Zf=4;23;Q=>&Xy_xX-~s zp9^+=Y+^Caa@U4b9l6q@7YlVNxC*J=H)=(?E+k=H;GzUT5kanxfqHifRzw#fH@=(T z+BU9fvFM0P!LM!6;|v!i`0||w?>;5W>+b% zcy#Ms7af^Me7{)$>lO>k(Ln=jXCAxpF~=UZIF5zpd{U@2I!}*e?ls2wbUDOuQbWcc z=jg^3Ej=uCCKk|M9&Ygj&O-l^KAGKoh;@Uf~cTbV;r3Y zUp&NlHUl~&-oIb?(I=kpkH6v>^41U6y?W)F{FnAKU(hK$y2o5dD)^NluG#rSt%i8W z(3(a!D(?80qS)$E+l4!-8Q%E_-Yas}huBL}{OFLw363ts)W&0)K}RIot5ji)^~UU3$Z3$|2D1AxW;fYj(_IUNAUb3*n< z++(lJwu>aPpTe^{H5J4KSls5Pe;FZUVo zf>qGn5j!-A+)anhH99jDyp|B$*>u$1jP!zx1MKGZ9v93*cGXWuI33U~;kyNy7t9i} zNx}110Zp)kLY~YqLKb(d)Zo&e_1wo>c)`nG{`imWU-LHqD-T@oD;HCAp!+agu~A8j z?&3%-)IN%)T58yl2K%NBKNn=G zA!REmii~SLY3$<{y-ho;Pv~q>08MReu+4aNv`?XSCk_kHC;Vy$eL^2T;59&WTpf`s zU4Q_~5^I^I2Bj`(Gm>%K_4W$JT@Wugp{bCjFg9|l$hA|%qF{83XG|apxe^m6pBAJ8 z*^IGXC{dX?{c#@%who*HYcu_pMxaPb@W`tm;0{Ufag0&D8QxI%KJ>^uM-kG*d^i^BM#&P?Dlx}2Azl&D0Cc_JPVRo@ljV`e z^WMGTz5dC+`A58V7Cw2JqO&d)zZ%9X94mG#(TN`l{)E#o^l5u%5sAbpik1?hFpCFn zVzfLGRD&~ zSG+p5NhFcbUuc%IPG~kTRlJiJJXL9~bb;3Qs~djmbMINX@oTK{!Lg#~{~W{J_4W7j zx%)j|`tXjwC5ji|)`T36_}Peb0+P{Eu;UTwhSmWk(s7|K9!c?Jz&8R4x|^aq8@t$% zt3;wn3Iz2{9CWFHTbsg`6LIJ>vgv{c-x5Ae45iXuXDKnN-A$2*Rq?XmO$+_ok` z+$9XceXVL!$V)LI$9c~)p2VY%_kFy(^8TUYN}1uVEAg3*QHc4xM1ni%LIU*Qh%P@93D4rnd-MReEJCo)h^GMW|M ze}V6pNbF|=oX^k+ezt{ej{BP=bP=2ebc}+e_Ch*N*tEnx{;m_$DxUiftatWPxCx(* z=qAI-fXsG#YG4&~>_S=39d)ISU5wdP{>bLkk)%l{u`8GE`y=jO`4TL(=5~Fh!^srF-6v?3PQTL#> zO$O(OP%9H+6dj^pk-$6s0B<-c^f?^AZXIIJSp!`!DsY&wDH8Fe^_v$y@V%wRzJ8t~ zd8dqQdgP>!&fW}eO);V!y6DtY@!1ip(M@Z3fr|^wC3fcma$EvrbuC8tY0QyG=B8_Y z`#Eg@K^(ss$zA${B#kx1Ne^xzn_3OVK9Y`JD&PnBuRi^GoV-XrU`_kDOkdvaSKe{K zgEI_MfjQ`5x@qctUB>rIbi+9kncUdnLpbI6(UG&^j#DI8WRdREKyL_n5cLX5D-@^5kPXCfe_WX;*$bAmp z@iBIc+UMKJ2oFjcsv!wlEfQI&x8-BS1@8o(YS4@D)*(grEO;b?QUi!aGYOeP*IT!J z*ow|IC~g{~b8*3vBHm`Qiy?i&mx64%FfdVp-4v3s7CTnk_6R|1^T}`t*;!GEo$UD( zhqF6++Tla&lJHMsz$v!%-BA_b>bj>hiyV3&2x(9xq8T|9!ux| zs0Mm{?2$XK@uZjCD~~&m`k(%;KeQ{{vDD})$BdjG!*W#wRmU{PCC-ZOmk_Iw8u$n^ zeCXiO9ey&zDh8UXUz9nXQtoO4KXnq6Igo^=ZbGf#7Zy|Ai$Mfij_d$`0AHh3B_SQ1**R90-qrg z4s$f~n(Fx3CY~<`<`Uq!L`W*THMo7kN=0f2=E#+8JdXr@PMYeXdw~1sl>gzgpDKTI zJ!RHdV;#|d#N#!8;P*ar8z-g!03ZNKL_t)z-+|4@(h8NX!^;xg_O^?k;f5Yc zB&DP=wb&m+b+4)8%AwJ&a(J8j#WA|fD=E4^8h3t)BUN z0vAzY)gp@_yIXKJ;u}R(a1F&o>vEeISd8|kidzYFLl3K4N)4l&Bna9V4q3b31$i<=Xx2J{8 zNgqmJrG(t*!w0H`vljCVyCZVr5Q=XKb?74Dt488z-HTZ4q+@)(pu35BsL0Lel*tNX z0KKfX#OD%{w5eIQR)^gZ2k)k9)F{Do2V}fY*hvpr@u9<0hni74h2A5fZu$_KArS7| z+(iPh){U2n8O>r=Zg=HADBd?JU2TRUF2RXE9V4-i8Ow@!MQY#;#2oE1vhDC~hmNs} zO;c$+^Av0Wvp|GzJN)_ya<#+z%<~@a`|9pu;f@EFzUINxXKcv-VllFwmbezg$X!l4 z>~s@F9zr_K*i-_4aj~GgW0(RZ4R^m99Dm;(N|@ry@{|?gw%CGi_1Co zzg9zh#RQ*A>|$~1p@jB)mqNL0u2`b!*&C{cklKnr=uMcTI}4+mPSLSzV_^r3Dv5OK z7;6TLWaFZd_^ZY1hz1%xH8UFb0Cm+81}xQ395#k)ha4ux55w)1`N(5*oZUDexr=Ud z6V|$(6e&UXlUZXOQiGnR)x+X73$lcCYxuYWn-1$VB!Np5Q-&iqCb+&KJ#>K$4G`&$ z-#B0!MQg(6rTGL9>z~sBH^)Z}VBT(yq&;Zd!!AMgFmO98SZc;aXB%W2U`;QTG=?_3 zB#^E{Yv3Zx1!gd<=+Fg6-2^#3!QDtImW3j|osB zinSWv^Qnf4B3(>ryc&`dPhU@(HP-l`gK514AO84_KlUd-aD&$!7VgQ~4*ZH-%v4o$ zlMq*Y>|ozSVG{Ucao7*Jjjcn+ol@~b!OnVeP9ZI8AxI;S?65I_ZaM{D{x?VdoN-=q;4oy`}y;1F)7^fofJ;g)Qem6l!i0kBZ zdkVp^;JXR$J5m>iyh{MD^pdV;z_v-MdLaITIv2@YtYTdX)OO1W(zMPkCB$l2kuD|n z)@K9ndFoYO@;OhF_dlNZ_@Dm1|J2PLUpj%D?H8B~&rKG%5Jk=T96Rqm zM^ZbVgPCw>PHLkDn%+Yj-uER6u1-V#x085IwAsThb7&c;;AcaK|KxD@^Fm-KhUNia z9#pfdn^-Z7Atn@*!wKJ)aJAd^$Yl8WA=CrM0q;DDzT+ILqsfu6O-|f`#+EhSmtW#V z5|Z0)KYx${W2azX5~59bXwe5KvB}>xF9J$wtT@kYklbqhiQ0URG_LZTuZejT7zq7yzTWhNGB;jrnIBu;oeyn0=J<>Z&9{-jVnPz;lrh->O*kGS(f0aOA=(R)N5m49rkk+UG713JL%CZ$ZXiY;8Tf$ zs!uTV$XPH8R2-QqdOlOHZP6q!q~Men$BzZC70#y^$LHvrMKo0KhDhQ*Ta5Luoxn*C zR->qsm?F6t(hGhzqEmneAy^QW^!C17)S9|pDmLYcI$#F^e;DOkm3vL$0g*L^r zF{5)c$Vp90zR}#&EM9M}QOx83tl3e}EaAomR65i_jx%sq#M`jOF zd15HOT{-c&|^i%7*AgUpEL<{i7bL8i9Kks08^PXk(rJ()v(jdDaP`uc#5t@ z8sFRzq*TlWrTLK80M@A(mJ&%~H!K=bvz~)ym!xT%=P(}eN{oeb!Ua;>3o|N8)4ktj z{16?y*T(yn5*=rw)Uy;kb;!04gPPe0%Q#{R(Z#OTY6)SML;$zOA+F67tBK2zyfqM* z?Bg@D8G`q1^#cq542mLW865uFBR9Fz-M>;q{Dbe;tM2oE=aGqjR|-$QvgL>is%06UH=z9Q-1r$e$VG=ro&(a(Js2#)ZQyiVCbZW8%Hb!^S}p1pLl`~9cee? z*4Pra4#74^2?mX8mn?*CDhL(3GDM-|m5QQc3NxYEk<(2~b;gXT2N%Af(M%v!!92$B zp)X%wDr*Q|!0jGlt1h6oaS_$FY)er|~R+Em>x=h%%We%3dq!048_#BAuL zcYBJ}#$k!INOKhQrVXz-=x8*1VERk0dZ6M>A>}r*zbvGZwu1HYd)sr@7!zh~MU@2a zJ6sJdty3Sn00z!6qBj+^Z<-J^A*be^7zF`M9=H`FeTQ!|-|+Oitsp466mX-S4I~s_ zN+gfjkZFldYTE~}s(HuT?6I3wja7g zBIk|`Z_LW~ef9I?r$6{U|IB^n_=<#Vr`!2w28u#8k zsAkPrFz)Xh7QmPzCgD#|mslI6#^DEiu2FpAK~22u^lJ$^93J<{^wLN$u5qH#A{!8~ z*}{5lQpsmyypIwLi%UTqZ=g`E))WdgT=ha7DZq9Brqm?dzwP*uPrZZxO4gnH8f$`I ze4cT_RZkkEk(T59!(f#@$YqDMp^28p_=p z0)45m-`~V;)6@c$UV=;ReN#tUVuB!T%t;?U++It7oaPeU+{GM+`jF5ZymYJ}sdb7? z9`({w-fM85eF;^)@DZ=5M8_;mnUB5;5Zn@z3TlndI4=PtI~p~&2`;Sz9XsSWH`m;R zEf(FRdF=DODd$OykG)p(e2QrZ7Q5pV!YjDPm{=o$b66tjwH>wW8>hU)SXqxHIP61o zyxI$2|L?sZtV-YQKK|-&^K1K==X-ReDj})rC3Ns(G@WoYu#7KDBxsGKuL`mc=7UU8 zT-CFYqz$`Jn-=@!9=naIMM8&PaVQeN#%(4ajoKy1ZJMJJf;y^Ai7p4-&8^`BEWm1g zifewTt;q3kxYLAhay(->hle|YRIrXFwj{yG=yQDHE~ZgoMARlnSp1AG#qY;u0Y&Wd zT|!$PYtG1}#>AoRcibB$<+A!*0!1IcKiZ6#8Vh8|{Ngk2k}qCQp*21pW8J}j1ma0g z=goig2RyPj?kpgEMtWlRsRC2MyKc*UZS zx=7ATL$6)-Do*J26_Wk-%gOy><}|(~;eboknpXGz--f z9j7;N8T$oq#v^KiU)rM{W@PrzRnLlff!z{+-qk>UTfvJppd-jqu}h5t%}7q+>_&jy zbn%#c5G#kj4!jcJo$uf?44ykg!B#ai*2xJx)CQ$iym27i7Nk$;#e|)VVesT$uRC5necTh&A{=4w#FdGGSQ3c)In90o;nIaU_d-lI4w!i(H}5Rqv;iPl&< z_%$B)c>N#xC*C~pt8U!8n*(%Z7Mw<}MOri5;-J#~vDw z6-SmZygBJ%+w(fB=waepPB;9-ZsOVF5Jk&u;n{wu)KN)&k83155vWrQo%}vPhIQMc zX87qQ0Ga!_?VUYDg~pCr9W8+e@NFv^8pSZc7#8M$ z{1!~wRH4}I$%`}qCAIm*x95=5wC}x5sYDuRHI_3pVIOZsOOoUIe&bWG%m2KdL~E=G zevQXHe)cW?qqFhyX~D9RRbtPs8rOg5S`zda16P_4dpp!R#g8$*m$3^g*gibe9isbg z>U8v>RA*!COQF$|ZmYnBzPRsaD2|ecWzC0#2X)7h8zi5 z+JwN`2;K!3L;JoZiaBIbMPM7FdASs_se#&dm9Ug;LO^a!;jLN|Z*gS5gc(Z;T9hXb z@t$J|Ww^P-etM42K^I+MaHboGYiLY{sm8?P@=}{&n-Q%`Bo2V{ncB5o_7WYkiz0`G zdNz;`74H-~?Rbm8vq;G9fF($?Q!Pf^o+Xm`l@Xt2&=lk7afr`49Ya^XOHl+|zA1Oq zg_<-*_$jr|QNxI)YX&bu_`0_u;d1Qn377(pU^y@maUT?4mWHDc=mvE7Am&Avky4^V z7YSjWKH;6T=j!tBEAB)=mQx5C%@sFk-t7&@iJ?iOu+s2!cZu}^w}F0yAPx$L`k^so@=~t?cZ{&FZ*qULKW8`dTg6Bx zLmcw^IYz5v3e>Y}(9&)ku|pH9Ng-7$i$zy@*2P%zkqheS2K5?z=dN+#&GAjwfLA#> zm$^m<FrwTx*svare}$Xua)$FAYGdW5vVE zUfS0*&G0&8(y_)`BFSy@5e`$>sph6h-*&jJ8ckja&v6pB1%c!eP4CuL^Q{}zHo~1f zl4xx_X_3&zANnX-8lKQ=LH8wIbE=WZ`;6?50g_9OqM^<1N`Qr!UEDO_4<~4^FR?HT_W4Nwv$I=EPb*G#zhy?5Ch~m!Py3( zX&__?(VCn>Vx}cab)sY5FOm3atVg6+BwwT@R>9{P9fsC5xBH}edx|5ffjwyV(=FH% z*77{WO2bt`t?se_n``LFH+4O7iZ|A#Dw5l3M4J&!lQ6!`C@JBdCyiE$HSlG-x9;sV z8c0ygLKvwb_`}{|zzjPYIxo~t&@QY#n^Vp0X@e|H-n2_mRG7ssmXN>o-5iH;3WT$h0x;F(+nGSz zqdColGu}3%7fXoK^ck&0L6SnpUfQ17rHyqMc|f;&t2_Jg{&CMFOk0OCen7U|2$`bqf8pVQ`Vw*&o3Z8mwOe753 zPxw+vi{aO{QIKp}5;EZCF$$D1M*^;)Y{%korHjOOWoX4x+;__*MQH~gj_@iF_AuP4*%nr2R{0S7K72Sn|AynRPnwsc$c&- zsHtw_1okVUNeZVOFRnY8`nSQU?a(B->EL~P@&F$?w41TOj{!UljD15lk+qaL9<3oB zJDS+!(E=?R15Iux5BkT>Y5oh(eCSG4D+>A{o zMlB_8;sfBOd#fw9^(qo$=WF}ZN$x`f-4_#xf)eKVdC%b0t{7s6FU;Pzt@b8(~@p?kNK3)s_>*H_u@dy8W{M^re zi2tAi-*g22>a6C zpAI^-$r%o}K~tI+RglL{Q=P4mp`829-l$;)q5BB#MA0>gbxMxxme4q~OC>8Vw#MB! z2yMr+^zxSt_SiU~4rfzx>73SH1`E!$OUK+83S&l}a<|$oa{>=0?vWLU(P)Na=L!G# z8&37%XfFKX>@79hPK7h~N z7$kF2{~hmN<#%tu7oTMZ%pjT34BKbFNUp-R!Qb1_-+QFS{qxTx!#y8_$a|M8E+hjy zxNhkUcy?vVgZ>1MSE1Xo2L9r+0$zkXG-U=fAs+fpqqPa8yDJkx_Qk^ymrY?qYFzSO zp* zxjTOR3H*4cwwOCddUfMMSFq5oIGVw?E6HirS(t8v(@cOxv=QpIC+2&{z7YaVSGd~& z-#VIPYJTQ4B#-XSLJ0uza)ZBjLEkod$!kJthYIdFfUD8R{F%f(yvLn<0D@^dR{&1; zxEKz*W=fr$_Ksw6cfbwt;R_r<-$myY)Ypx?gX_kK*nvtaqdI^wsd%%YLmU7LrsEB*7j6eV0wlkSFMJ5QJa7ts8HkU| zAKpwvz?1v!_a6Aq?~}D|t&=SI-T}NlU}L~y2cF&{K5S?oyoJC2$XeTXv~g0-XpQXr z$4*(9b>MhLJU+l4iGmoomqw#x&}hO>#=0rN%{s}4*A3V^Vh9$8H03>6^udP1xo@YX zFB97A9F$3d*NB`2$_eQ^&t|3>ikpE;!9l#%gJcDg-E_aYn%m4Oh~Ua7WN-wneW2TE zrthSN=m|Eo$2NLei6ZlZ!I1hX6k!^5a9sr&CE*o&wS|WprHt=(8Mj~HVy-tbR)_|uQ z&65D&fV}R3eo?aqsE9Kw0WMiy7^mefdt_My8?5AZ7$>s;jzJ=3>zbHT_9i99pkp3# ziq_d<0lCuYGpR1SNS1s_{dsXd&=qn7@l0Au?_^MPusQNw>k8<-Hxs8s|9>}p?U%i0 z-|)Bl9QcmU#cy%omz}Z}zBK&zz2Vn>{zH88kNqn9-q(}z_3>KZe~>*s^R4kOeD@de z8x1n`*m$tKeWumu%PI2?D~VIH4gSFs;=K!9y`B$EAssjlPR9UESgseK8;w>ze1?7O z!c?`x5$8#G^67v*bol#^Xi(n!hX>;Qowl}H?(GLBs6z+lP6!t-C#QID$M4$(b{uj% z7hiaI%MTpJV(lJ8DZ*gyUl}2K4*oZ-rfW}soUo?@aorIQ zg!5zDxNp96=7i@2IZg%Fkh+E4WLKK{{|(JLJ@^GdlS{zH$PPz5JLP<`PNmV0Am2k4 zu+Ikxjn@k$c1}pUJ>O`Py9exS^cC1e7&}hs^y$^#tn)g5$e7!>Ug$X3#3t7-G2pN- zJ|nI?@EfxUA2Mlt*aD@ z3lRxYtdqY003ZNKL_t(*o4f>E6L$LCcdZdDN+;ivDZlS*JXKi38eI+zLKL95SfVv% zMuZ^ka-m`znB>f+!XJ`jx~DlFS0*7Yi4PL-H#$7hqd}?;_i7|C0{@R0ey;^S+Zw`l z{GLx=>`(s9o&kUPgZOd-e*SUd*TL|K(E27x15VDv*$v;(I(~~g{^a%J_+P#pc>9+= zz$f+x{9Rvp!8ZdK?*<^fK3*TM1^y#?{Go4)ul@dK{MYWlX9>jldk<)vyu2SeC1l!( z+Tn<&8+Y)VvdUdM$_J6{P6Nh46B`B2_|pyT3pYBSJ#r6E2QztgpPZ7$)v%odI#10DpuYT_a3DS-3jKK2-NiA!WaH-~MT630@zEYI-9eP@J`DCgA0+ilReMyYmC z3@o$I8=3!Okia$u&^zP7gN|t9($N(`3dbx$y~8gGyGag#)08E`f%mVR!q2GZ_rAf# zNi&~^4G`He6xb3TgqS;+NalRacwqyQu7J^vZhFlShYI)+ycUfG8|Mi;$?)al57a*# z2UFf|H#RXZqljzX$@Gq$e1LX3&4Ui{F|HGyhLi)?j19*v6o(76hYi>oG8&zc#6z+| z?zC+a44(S%9FLzUufv5pdq)}r>B&M|3IRsmJ6aRz(=@4D!s{jrTotwR)J~i{3{P)? zMb~iZZ#0+|!3MccGz(c{RZUS~=+d!-OnEtp()S%Rl4l9$CG-F3%b_|yg8`l{)FeY_UWXcS8TR$%N!~GQ8!@m9YFxu5}-OAbjn5U$?>ZwLvqLFvWlFUD@AO#XTN6p=T4R ztjj0!nK347guZ9_YqpTBXZOtR!jZ-7gO zJs+?Sp5c!dk`uw`;BIO_YtWP^ zC$2|o-i3i!=Be2J0>XrR~!RoY@n<85wW!zr4Ef;@5xnL;Q=-1pcu{*z*aTC*pb~dF(iWH&^5sWVZp|>8EaQ4>FlA zg6JF5xZ=%K?rA)*!(Cw>jWF`LQ31QzhNq3?jXGVPB+$2lPivG2fD#pXrR z^iH(GE`o3~ZLGCoO51tl@WiCNlqC%3?s#kSz?K1zT{k@!$$gd{=^;jWCjl_hOFw0Q zCvYN|n0Gr!ak%V~lu5dE9Ei5l!=QC41+2q|LTVN?BpxfaQM>=cna79 zRTt<6eDR|tQi6s57-B6q#cv*TU5lX9>m1BO*WqVxZ?rVMDu?|%dGOZcz{AyCk~SYD z`NA${et_?B1bm$6A3S4x@;$USJM3_H4C$ZeL5IemoPs%%9i3V6k5^7{w}XXWEN4ow zPT-kreGEo``qt5th_!EAA()`%y;BlrMt8XYC-sAov2;bVIo<3{7OB$dJN@zz0latR z8e~X@2uD22{N^I(I2DW#8qk_dc8u>AAD&biY*xg^Q1NE^+kp3m_U1yOpaFP3*hpm2 z0G;ZZ8Es>)7p`WXPqN!TJh?l6r2ah z-Kr&=_Y;D?0hVOAl(r3e9i(R7biEM_a*1YBmYMtbbPL>@-eXoGp9AvgaHF)cB@7=7 zu*v2uB290^pb)y?n$8XL8s=+wr?sugJ{XpIkEj|=`JJwTck1w6(X(ciT8HX2mhXId z%|Gk|A4&u2>jG=e6t8dkp;Y06yt~-|?{HKmYQpee-J-crEZhWFNo#|B7$8bo~62 z(n;uZpvlTce|N|^&7ggC+QLe{;Xg1Rt_r1r-Ni(=J$KHV#7TR#ek^0uq zT%*=Gm`#4&DZBgP3t`?jSF~{WNhzCe^8k;_B54wmfvuNJ&pZf&N`s9GtWns?Nn#kx z2xqG}AphH;3GcYo^b;4swl61H>W8xtLTHke>)-)+knqE< z5e>g|9@x%2fDkjB%=n$3_svGwU+TCx2T_7h#{0ttn9CN}N`l4?%5@E7_;O|yPtdw% zYhcLLaFa8i>z1?<6xo^+idjuW-1|&O#ni-T+9fno`!9+gW`}DTW z$=j@&8DLK5RFWuywx)WK^wiL@Aj^&zn6}1($6=tOVNUoilc^*R7STkeJ^-)nIVQs3 z34Mss7oH>mA!2+#uIDpB?_pZi3CUo#z1Cm(+70)OQLa>cfh`6jfTMSQKOMTR$&(0t zcJKH#U-8EN!?loq-xu*S(eW>xjvpI_-?#(c;0^!wIPoix7S~WCnCb>0DqBloWvvb; zA13Paf7T4Y79D^5hdj8?1HUJ;$GF;-LA z9X!l?9)_9@#vsXTBl*uy5s)4`+M5S>oUj){&9--j$ec_di;rKqLk8%1-;$S=CM7)7 zXxDb?P%uj3j=^HEQO@O?GQeRpddUD2C>?ABNqP?*(Kp)M4%aR{D$$M_drr;PH?AI> zDSTP<0`!8fo$(p)51u&zUphl)HaYP$2F-dB`i)D2ec_qk-zOd^ zTXbVW-|ehDxIG`d2A2-IZuB!amEzWnYa0Wj=#y*$=EM-a8xb4^3HM5<9#C=1nM2a7J+QJD-o5eaS2ph8Mk+3Zcny(gJLHUBt}dM@WIvG9W?xke0+n71X>JGC?Po z?iR%*@Bsd_8NLMrKLrhst>e>4tR71oDw3-T;A0ZK%m?&MfULFepS4G}+k2T@WWHXR_ghVn7Y+^jPOWu>;Ab<9gcCm4e zI>gJnJrx97E6ZJT>f3P}%yKUY*I?ADJoN2w#KR`-x(>`E;3ANvOw6wv+NJaQZ%wwo z4%;?PYrCfF5{Jv2CW%~d=zHc(c$ zjIc#%)?*mZ)n#-g#7VBk`%K75k?g$wa^)_l>C7;pK>jA?;H;5;{s!GAbT8(AoS`tH z#cM%Cy|9@<&!*RBaaYqot-Xky*=P*8E9xFYBhk;6CLwp_^xWqefK4&DKBwOZA$$2; zP}7i(eA4$LC3cyjlfSK8QG_P>Jj4xi)sRIv8?BNnwlWb~Yz^tZ(X5`^y9N?9R(0)9 zA!jz%19feKB+KvW9lz|85BB?BE5vJo|3Ufq-~M7eKE2@IJstntapL3GE-O&uA^ReT z{cv~>^nFJ>55!6NRP%seE7Ce3%<8bBA0Qei;wM``d%nm!waQxNy1C0mdR=-r=sJW(lj+IERX~CxGU&JHm{rM zKm_9Xn6Pgcwe)>M?3-+9of0!2B7liuFH7I>AenAUa?#-7VhT-pIoMQa7wm$^Lxw-C z%eih0%DOuL9?qeVA0i_@hKjh;BcM02wsmk1kmu0&{n%~L1joHLEot&&#{h;?3%++2 z{@fLBY^ow!CBUU;eDnsq4EWyAH+l?E`JmtC5LvPXzn}cvnxZ+0s+rpuSQN7RwOm;Q zq1al{Wa{3@4`G9z0k+#rkPE`e1Y_oI9Nidt1h9Y$qQ>yD$YsdUQoynqNZ)z9vqpwI z5};t1zD%krqQ%xvP+c6Byc98fa`v*mZ;Rb-%z_+U92D2zNv3|PShT>ergpewhbFim zdM;7(nv@iR?zx(9W!FPd&UXK~liZT%MNZKW0dYN`SKNEV^yObQ_DxMh7HYZukv}t= z*7|Sx)ui!HGW#(b41WGb^5BU1MzYC_wb(Cx*VgbgpM1~$kJoDP(LY|TYX3hz-oC}Z z@!^555B?C{19qMjxB@|y@vy0r4;s-lLZI#ebU}{pggOIc#U~`#4ECu3o4 z0GL2$zh7aOMnc-&WmY5Rx;(rQjEikAl(OM*gE^V(cs_W@C-Lh&9n?3)(&nx(oA%2^ zggE-+M>D3UiP>)90JhqTr)D`ied8lo4E=FO-+3^$+f9Ye5SL5=6GpSAAgXkQb>;*f~~^y#x_^FxV$!Y&T6~ITZ>H zZ8y5^VaIgXQ$icA8!dQGk_3EXv2Q-Oz8C?t9r5xaw>inq9*tS)PY3Yk!ijwZ{6$j7 z_cx%+$2}!(na-!l+P3sHkb~cO@Lo#@U&(EDdO^LpN@gKScsh9?s5OUolaB+7iVdj_ znp6out)>W%ixjtQn#4)C%+Qw@{C8=(6NVx!qE*Fb0|?CDg(7A{s~O9cm#lAH1j@>q zA49TAt*ufgpAdNR7a}IiE^Yuh9YaJn%oRmK{Z8^K%c576i$>xfS|{1E+e~&u`E&U8G4R7%hdtj2i<ta_uD_qCVIQ z%8cRCe={2%*9LpZX)9!)!u=&z2$F9ppFOS_j-!n4aG?|Q)kjY8$KZbcVMBwLP8nlx z65KSsUoJcb4nenR_A|8qYba6@RG5&dbDFwLqepqHhgi`rGnn9BJ@$pbwMd@h9Ng3Q zuHvB`d+!xYhLaOJnkHp5u0L=uSu8tXxdX-~F2)(t3GSw*M5+ikPX2H(sV?;Ib{13| zp%`D?7n_NZt!UNc0-Rd4sHlW{krSIhh-fj_s4l`BcyRG8%qp!e z*Bvy^>4g@ANQ;#;qcv4r$S$|E15P8Jd{eS94)G`~UqelS-H1ha%ttdO_NIw#lmlK$net`Z>NRf4N4G{8d{biD^GRtQ zjCu5plWJ^@1u5P2n&9P&pvp{})AVUuTMU7qs8%uJU6AOuK-nvln874^tpT$6Yibdk zZy{;Ywox+ZI+)eKnUh#FccfO#a_)Ouk?=eWZ470c^Y6q4`nbaoZ3ixdL2S^EKOuQ+ zn;tY2wUg0m}h;F)I_8*84s0Dyye8!coDZgy#_MaMQLtGxIK$mlVe?V zOuW}ZE0dD<3lz@@OAPnpN4U2Tf?S2i=!)IHz)u3_w@Zs`ezmkl)ez%iZ{@v8)KW2!Mh?~@O+Y0 zeIYvv1u&bte8Y6nOP>I+Va=zBL>%O_M`WPabA&Y!5*O&+FuyY?ByuHJ+b8@g>)39GA~y9yej4zD8Q85EMou1?$89vCNk^|3 zg9&5#^wvxA1?8KYyL8+na~0d!ND{J3msMxVqvnsh)?-^&T&fpQ%9SH-UCiRv1XnY$ zE;fTbZv1@CNi6a}ypV}by)+MA%Y(6ZHYpw=#pPj3cpuM$Q18}ZUw9!T`?$g6%7+2C z#oVI`-h@nR&}No6G_jXCiqn9{`_%j=%$X~If;#ii%Bjz}yEik+78Qn)`|o;e`gWvYQ97fY znk4t8{q_*#YIVpr?WehWwn;1uHL1P9%;!Gb#e(m)pg>X1YL;5;EjZPlXBDt8o1K(R z)_TUxhW5wS5;a*cV6(dhEF)#1`@NpO-Tg3Cq|)&%mWIJ92Dy+8=X*{fXio5Rx)1Hx zbq{v{LmU#zwM|R}A}8x+)ie^qmknS`lpw00N65e@9Rp`aqaxq$3ws*>u@=w?ALQPRyQvT{Sv8WJYK}BL(4X>s=^>T*WaQtIm`EmP0 zuNCCAz<)_U{?~7d|NZ9p$#SQPeWPTnH8Ia+&3e+v+_nxp-w-z@#kJOe$BQP@U~!Z~ z9lCb2CMJGDY(cUb6tfwdtX&W0ahLUHmm7uByQ~}VGDY@O?yzDZ3HIja>^jZKMtVZd?I)Nd2^ z-ukqGeL2gi&&&8lui2Nqt`l*|JuIi;w!pT_>5ww3rhC5I;_IFex)S4ZxZH#ejHQs5 zJTnXTTHtkWhDvBMzC}K@oD#F7WrLUfTJE9K#jiZ|o8){V0%ijuqKRo`lL>W}a6wxv zcvU1B#H5lOSr~It?lnXQ3@uVsU~IgSlo@PPLtgu3T!ST;ri*Zw@Vvr;ES(qABnQjn zo&-IFrg{_svl?5h`*xf1xMcs2F`MGE19l*N{3CR(b$drSK(M804|bPg3CCxx;~)64 zNBi@yRphn6e@Q<6#COKu_t_8ejR|vyGYRafO!Su%-qIjLhsEJ!Q8zIDvrEo&Wr2pP z*dhvIMg-a!EWGbufe~n@lQ`rdjr7R_>S1G3F~D8y+?(MB#FvMkPD~dTnL&al&|Ses|#<2mah?BUhG+* zqRGfdIqS*ZE_f9SyWVnjkPLB~VKPdo36oQyPaS%qtB7i8u`DRQOlxw#tKGe4j4syVh1pC<1yT8YX#jOB40n@(knD4tlmoQa zohU%%)|XOXl)Y`L#3GRjYYNT5+|kRmv9cY2x$<~d4p&bYQ$3LH-FhKLrA%0*h=b$#+QO65k(Ki*JCQfc#JzICKMg3PJPJ+Kr34d4D{Z}4NxY`j*J z*8=|~_4vl`iC_GMxA?8kCoY*MeJV5i)PBwlw%cM=3E0bx#XcN<0PQ0G?!C`Ea*O(L z#wPO3Aj!#kS1K8eatr_t$525sYn-&Zy6YCe$=zmqJ`oSSSg#`j8_0g2nc0&yAJ+}- zb`)o)3#weP=jV3)932#Puh=-i^l9+|u z1vi_{XsLZyD2=62i!Z+NIq{v!Wx<-a_~dDEq9l(ZPT9FGx^S*Ok|f!SE7w||#ID1OZQekR zh>e4dP&P_6DXJ;Zo;6fV3aU*KUbp*QYa#>sa}g6MfYuw>dNIiFcC`gr$26d^Ulm~VBTP@Uqs8})ZXjl|Lv6!X48zq>wVU`H&rd+)&98KG=eD*($?OM>(<7A-mE z&cAl)nDVuk$But$mR2nS1xX*h0Vi-KIZ5q6_PkA4DmB$EV)lm%JAF*8=|~_4vboK7P{6 zi9c4&E-gDPoQZDkz{`zO@F{pSgCcq_I1c;9!hH@Vx8)8r&0P|deb}mTz#-#Ir)Rnk zn#>p&uo7eNFdl-@cUj*8Xg(Ov+Kn!4Y0lNGy6wolymrvowkb=xjk)`dMVjN>;gghy znl#fyBa`27>1EOB;V^VD@G%bsL8sW3LV9MHN#lCpbY361_SNpxt-?`~_+wjxJGJOG z$oy?C1R%Ufb@kbYCdrhSA$O-qgyO#?B;BfTBytc3nfTuHFZaEe#Z|C;kUW@EQ<}wO zX8g;^>$3F<6p)dBA zycy6o+Vsy{NoA8jB}$0D)9#ktY}O-WVZ3l~W+NpZg$nMOYpa+>y>m}*_c6PnINpp6 z4k3GWPuSAD`CP-;>VO9tbN#YUJlb!4ttvmTk5?W1U+3{)_+f1ajwr{lx|^R>*sm8v z2MJTH!N&o+?)+~Ll9+|jB&7j(l=k%o*_KKsb8WEOIZ3#hENt6qH;L;8eE5vvBx1EQ z5Fx+xL2q+Y0E-3Yj$EcQ$ttH)m7wE0DZECBLw}YKKM8!DeKhuKcAY+ zWr`z9+=RWYD_L#m;BMp-;5g;St*Pd+iP$HNecI}FLD73o1S&8pPLXhUQ_g1dIY~qM zX9Fuv57@I-1hV)Iz4vtM3c0_Tb;9NY#WuIzd2Ki2x$PMbYE@kA4i;6x-%_716O_|u zdRpF7&4{3!05*Q#_TmJbyP-vc?`eB1WJ82LYpklREe%uO3L>{KMBjv<)A$9)$;n&t z#L$7A4G%J5u0^dJCZ{Xjb*h=W@s{X@xFmV))?(sQwZMQJL-@Hc!Z{&lhP+9hB=t8% z001BWNkl$!33_d5AeQmbgv|WBi1;sF{pw!}{Flt*B(&FH zh-+h^1rP_+>1t@hoHAc?R`7OJSYW&#=fD+;xwJU0P4My z*_(zZx$g`apWtDqI$&#P*Nxid+X>v{OlFcK$@Bw~21aj)6SA@;>z_ zT=3F*_w*v6k$FuQt#;C2CloT%`X+ZWO%#_+7OBc8EeGuBEDx%Sy zRsQgH`W#BT$VQ>v_{#~qwweUllr-Ri+Nqa}OvJ#*_}$I8vgw`nsJDZB3tieKWvZypx=Uk0`#t{7S7>IxNB>dnO4nKL@PLoR}jo!>JJQQak;Y z+I&ocIDIZU_y5cFfO|EN6mAIWF7lksdn~4M1}@G^R}o!(?vuQk5c{@GnP(yb@TomxMe_B5VJO(9h(X5>5+9B`sUHkHz6U^J&679_ilx|)s0wc6)U^C?J zZM=prfpL*WT#VvKcDsmv2EyL~FNify4w~0UW3ThH`5LQ9NI$mD!}K^O{QZ36bb3mk zo(3yhpRzm;pbfF4+jJc(E&beShQdzbJeATV6QLx;9ZM=&sxdSX#omCILxZFudT*TM zVzWsSOGG4POMA)^hrH?S-g)$HkcvAZSH=~$)U*#^QsTV|91FaVl={45A$f@rFQg!X zs*XrGS~Q*ieBQQg2y@w(yL#{cN)31iHZ88p$Iw$q>*+ldtk?M8Rq8ReNmKQ>~Bj*0URw<)0 zAny1o`Rg3o;q`mu^EZ6)CH~<1SNq1->hfCPKk~=ZfiFMAG9J_76OWxgAX%}7_L+A0 z^r09gfA&T%a(KCq#gKbj8)doKLXf@ky-jhfF@V@)s`9X*)U!Kb_J}lp37B1Hk=yl} zFDLLqNmqNkh%Kxi^WNsJ{FI&MF5BEw2jF$*XM~JaWVhQ4OdiW{k|dKo9h}y#oAlkz z;%sby;uAZI!A?V$_I&a+u96vT4J{{18OTJ4pj2eHg#KCqf~JWzjPgIELC~PQscHRz zPGrEZ7xYc?x8s}~3!PArYl2MI0%6+_v9b+ivD@@@55fJdsaXjT0xt{@nq+B1!S0=60K01O*qU)|u8jbIC4n*0FwyCl`fBAq!WZX(*{e%!bT zZ;LmniT8o&2Qc^KG1=rhC7J|f_`EZpZSLZu2#hfu+4Ngu4uFbu#+9bhK}}7D##mS- z+!25h(G*9>)ZFx>)f}CW9NwkfHvygVX>wX@SztP9Qe+=LseyuLA1^y#{JfHZfPlVg!Doffi z_~Xqm6`k6tJ1#?-O9+7ys`tOk6dP`DW?{}s;Q0gDi0?GLzC|BGUGB&jS*cxyVMCzk< z^~u!FVvs)P)`bk%LR?D-^i<)y_DPUbVI%oVhBaLzy$mtIEWlP4tl7k<&?b4#8WkCW zS~DIs_ zd}gJi&)3N7A}xG#Og{rzvK9wlN`#7<-Naf?*S}ncpCr2BVMn^u@j7+AH^1|ck0hW< z-wz)mMp~r^a@DaU?WGjYM>QO#*RWJPqy5RW^d=4+RO*r<$aG!e624#Y`oR_jKR+;Pf+6ToHXlzZv? zVP>3c{xDB5#8vp3_N68ZR2x9tZivpEI-q>>Q$Fd}j(!CESrhBU$o|jdsBrE~TayQR zgM$P-HzlIw^s_6oeE4MCAChm$%Y6Wxbh{4C(*^INVnNGiylVo@xYp3L(PGN!770>8 zoJbo~H5z+ne%tgB?~RFiXq9})(kE2lvJ0;Fns&nQg z^+pn*`U%3}zIdxeSrG#w!6g?W(GwF}TBbAwQHYfu8ETXtMLTb{dJC1a7b${I0;Zt%Aga%e=x%&u0viPHzYGcwGnVtWIW>opbjTn&t4 zy3eU_Q^lhDZ-}t6O_qQ0GejmtqWP6Nr*&Nf+Bqf@xKaa`d(GzbZcDF_ii<4<{t*DL z1^%_bf3%O=4c~M+@UX$plRn|yDjL)_y0f(~YN0b+WVmw0S*#7tjB_;DC3kvkiK91$ z&jiSXPK|b^Yq{XOo2$U}B7)Tq_(kboAGrol9k6k ziU=jBxsxR1A_?YH;0SsU05y||?WHCFl^IWIUAnfVyn4u?uGe%F2}jFlr@Zl7pG8~d zLpWW`<7DDbf*v#}Swi(-forboxbZVJpSw#m`Il=qK5~WWBzaoq52Q!Hh^ec-4X#vr z%F`5lWXmo%Q~Tg5u&EuN1gUy%pGXWKmp_+}L7x0c_!2r182TtaR~PBuF4lNc5?mVB zH2L>0z@+94SmJuq zr+%Ueh*Xg9o-xS-F$SCP%rrPpog@7oaY?c#qMR-5OkO}Db+&8>7MH0g939xNu!uc6SLefI?#`?xKKfdm@}62+Gg=Pho(XKek*b| zcJ2e?>5%=YYn>p}KvFdvBHTP)>AnY_MO4h<)RNoQn22^`26{`_Rt6cSuG3W57~-Od zMTI^}jz)cVC?+%|f2O249wws)u@bdTXvTDnQbXC3&mN090b0$#ryHFLG?qVakv793hLu5!lIg5ZBc-Qf%G9!1 zDnEj0JcCT@OJW|Fy%5VJp6`u zw<2X`pGM*+ws*{V7AxHP%@`>4tcC#<^b@B8ZyxYdzx-l;CQgHt=m)*j86N@hUVPLkAZXirbL-kke)G+NS5 zVwuC9hmzfV+R2Upu4MzpsoMkn5d3JtZrxqcuJid#)}^s;z~-l2-?_nJ*fA~v(bwyhz~6aNr^*8=}K!GH9RZ~C72*Iy3&JB}(&Wrun? z@b(b9ULNreTWNaDQBxfH3?sqTf%6dCIrYOjj7-v{YcIRgmR7LN02|x7WLTO;7B@5; z+NZjZ0$IRX*RqjqYp}w&HTElVh2+hIl?n1Z&D7&onJ=P{pWM*oHg+qDdd0 zghU7IJjo4kARhOcq{=g6%lt5rmF~i^CEL5Sa>q;4k-DKZvAcp^%CY?Av@fY_>9A%-X=a-0 zbfC*Hr3`f%5Zg9COYK8(XA^73L=+(A`D_-VpxTm2na={Bg|fxnB%cwhIRzS~FZx6% zSV+r3uaGjI_uTrqRX{7yCkM((a*O58uvGiciG667?>=?wE83v&q%he6H_7`_Ss;lU zMiR?V!8>MC%U>8wsun6FXL28~aWw^?)^m4g3w@<0`eSR~&}Mc(qFP}HKO|ejjMw!U z)RbHZG@dmxiZ2Q`jkOoSs71%0`;z9iRK%=>k{*JCz25ka2Fxex%ij_>*O zBYu>by?w1PuLb@idwkdT$B+KLXME!^@Gu;9+3<1;>|>NUO=(j%P;zsfmYQ)o_x4G+ z6N9#N;(#XWUOyP?%u9!Bx2h127$T`H@sZJb<)fP-AS1vg#7spye{nM9NOP)VOp}wn z5kW{RO?Bng_!_vK)6n87tJFg>zkQoYWM>xg0o!+3?rPfGdYSUHt;1V~ov!J+7epU} zq$QV}ju5BK;&)G_U2i<LQqoexI7})za1M&irm|0GP!f;;QHMq`8c{i{KecT};xL z%v%yISUC;JSx^)0;fq0>)+aus3eYsKf5#@Vm0S%nOS0pHOV-#H$v_-K>Wwx{i?XR- zo2R@+#n(XjxEpe^XJVx7eVMA;JrsVPQjlOFny$`t`d_(CmK0NDMYNsoJ;rpVOOFSw z2rAlE`uK=B-B&?RiA7(KsWX;U*wQe&ryPR-LI-~0SH5q5`nAfuLi8Wmq_Gd zO9P8Mco8g^4#bcp?1d7War%UmhrHM~$bK>>73G=lt@eTrLB9D*t|^Ea_MF(&%^xHK zvC&ac>VgJ6V7CLfY&2+ThIY#FuWL%oxqahdVk;tO_tQ??$-7KuD>*@BgsFNE|hpTU#d5)TDbXXiO`c+(ZGwXYyM*s#W8lDK19bY0RggPWruDxgE}F zGwu)J49sU z>5?#(VJVqMfOU!&n>`x68_fB;NK4g>j7=-rrr+XFVe7pYGH{nM?~qB(0NhI+nzFb1 zG(elKg^Gra3R)5JHZnWj%E__5OYM4QLoH-zq*p?l%80GqHKLX>w9H7bbSF&5y5uex zR}sA}{GL-1OWkjoSg7VVj$3`-mMs1xO0Jf{L&#Gsyps&iS$dH|0s0EIM7{TD6Vf-I zh)2lKNUs8G8-CXZZ}82p73Ot<|41L7`Alpd|8e-E?)V9ZmrW_uspF6YO=KEN=(
rQXVZcm=fF<>L8ch})<&FD;*Q|s#3c4w|(H9bP)Few zzZYFjSO(bh;G| zCB(k$t@99XGT@1Y(3Hu3i%o4IFe_0jvWUtBFVEN7=d181wB4rfHzbFO{P#tAi&95~ z1y?D4FEz7F2o%B;N=mFfZ7ilhdHv6G-hWwT`&I{ftRV|RpRAAt%zL;sY1=W)Z;X5J zJA;>z34Mbrr>@^wq|V$@^;zL35y9W5cJGjz8=S^dcZ4uO(P1*`IrW^$ziC7Pk|z=g zS*z(T;%F@7LlJbXH==rJ>6<8l3UNyk;x>(DJSA&Fxg3txHW34@(DJ-@%X!Y{eM`PV zFOps*DHg<_>wiuIBl2gYEQnUQSbP(D-&MTx9&NKxT^lYeiG=%xU-VUP?03FanAZaT zkw5;_cg5E~-|*`$U6W#~{Wl3^%osQ2o_ja6Oy{cL2Aff!$>~VhLD9!jT-)NTA_W42 zKf2z(3UFUo;a#5Qo@hl(&2f^f?Ed!=W6G-NOVB3l{tf|(Q|pB6qsMXx6AhW?e-t!Y zv*5sejyEu2^H@C9D|IcFHB6n=%5k4?a4he0q4>?Itfn>>AmAi&6-^s8^;%!BKWW8N zeULfqY^tVC+E(W}EHSdPjng(DXu&MbOO(k_lwE3^F|*1urOihL2o;w9eB(b~=}*v< z9k3dxM{l%YJ`M%!Y>3vUo1yXqYGsj)bs{b+$#7jkXVPOzUZp+>EE2L~ED@`?*T471 z_fm)gc{z5{;SvhyG08ED!4Sa#!56-R*+e2*D`FgV`+1kUcJWk_M97>go9!g=VDBkwIwLGYL!bxrFSggWlu;Z}%{{ELRKq9AMGEE)bssaU3Lq^*-f=3FiwA zrE8Z0KC+ngg$b4rxa&ghi`$mq*6^500k@Ki&Ehy=$1vPkhu6Q1Wil5MQu3lK_{-pu zahXW8pbJ4MlXRK2U`Be@YGuiq5BH>$$?w|=p{VXda;jOxm$Wxu3TQ(6xhr4zPxnr9 z>t_&~z9wt`Yn&6QRlomEOcx*xbLN_5%F2?!SEzy5?L;k%VLaK~6hU*!$cpThz;R>N z!VGsI@eye$o&RhT@h~Ig%>bM>8^ioDznq-nn^@>uFYDRRx+X1@L$^7G(@`;-n?dcl z3EoFxq-AbErv^T+)+pDVyxTJ3%%=_L|L(2Qvyd)gN%+kj@S ze_S_w{nqg4j(_5mHE1kTz;YnZnx!95&qO&_oH4VutB@D$JK^gG3sx7>USa8 zW5vQQGjKWT)vkEWXrJ|?Wynp}G@9!vtpv(+t!EtZa!I#M9z+sZ)O9)cxwYEb(EktK6iuKR8E=r1Tgui<==BBK@gZ-MKrru}5^$BfGbsu-}iEKOH7S_>=k zT|=n)JGLkjA{HIGtYF8IVwS|ld0EL~hpzj1menxV1bvd+5;-}&P@-9IW;jZQrlhrW z=(lJ`h&<`~E;*@MHoJoQZQSqNi;XVyrR8q?a#1)A`8D*NmwV)8E9+g;T4LrusQ4x? zGFJ@eT*;(2N3E^0`3{`{3QaPZT@|bUE(vbQ;FZBntT_g{S3Njp_&CW&5_phu(_BRq zdXTxe5i<%`s+7-n!_WQdPuL%MtuC(<{73${-SCSpf~(~>Zc4MN2~b5mq$f8x<}e`> zmCMdQ)3_)#*{`SJ2jyBxgqj}K*+n}rJN!u9`N`)~myf1YDw6|UI??$F8?9hpT8*Z0 z42f$d$xG^Zla%HP*s+To_N`>A@##6J-%wp?ho5NwlP<-^D9FCNh%fM^61~ zYM&#}TsEu8A<)_<@(Ue4r{^h{D*_ga=zwqA!aG?x2AB=Ty5J6_H6GMyN9(}8^Ea5q zEj{$_!ccnUwwn=!Nx4|a^d%YYzHyaiw{tdDYW`ftGNF{jl;8!HxY^{oG_LV5cDS zmp+Ie_xWf1lR6DY1p1I8R1&%h8YZ-EPSciY|0vte7~F>~2NL({#sfX~>gOP=n8{!& zOijA`@L-CW2cqqF`roGgo(%|E?_}I2kt!o1D;HuJX?vUd z7JZi-2Efy)si~tj>**?&DP*~0gx~SK%BD0qI=SDjXUZBE3%siXEA4JE*WmBCVi#Or zizkSgGHB-9XTFhpcX$H@4n4YB+S%4`sOdb@M4swEvz3R*Y->q)a@{0qAtl% z@KfFgB&m}7aZYp&Gcbk?2ecMSLTT4pNooT#MNCha-?|2f{3~EKjyW%ycYP6{1L!U?}pv!_1<I}PZOWM!ic&=S1zy(cm$67@j02ODm;oO-M7JdmppUBUwIf#( z6e$nPYcKUdP0co^qR>t~y~gk0=oa@o>IEUK*?nsT!IlSk-19!B(T?m{#r{r1n%X!h z+BA}Yg*oLX%Rgat_c4Q2GWWdA!oGUxTkHD!3)e*UtJMs-F-xJ~aUS~R1K?_Cl`K~u zuHAdk-@)M4W=K#H=!77|wu$8CO8CPh#dV=2!S6CoWd(#G_MPET=`0z5Cs7SXzQERJ z1Z^|e&E@#FT>Bz8>bvcIUeCxsH>!a}?Q?R3~>*F@A7=vP|(WG2T-VpD^V>26KZn~ia#_Htr0 zMvX?d`5Ck~FLRNc%ua`&DiSSu1q)wG(=qFn*VKXLgejrsLlcNKD~55hwz0C%^Ds** z({YlQ0H)?;VG2(;Tx6&|r>vUhGdnymQ{u9&G?YCow)?GfR7_?{4mIidSfo@@p&WCS z(C%Hy@^c7^%{_FY0c%me^DM92be~Ox?x~WoW$dXwUp?Ps-Bl7^UTc?X!|a_1TD+qi zNtSmuiLIBDmAg16xV&*1^pj~I3&SnBcBZ1Jsa;iZxBnM+44*n*) z5BO!HV#Z`x6$5yAQK%F7A2wucwWJ*KGfm^C3V4CD(Qm!h2^K~bMt&Ko&T+bDMw@4t z?HeU|x)N6hf2Hw9LCd*&PyKODmMWIDZZ#~^P%L2^ z+Jp99M6@W|(Kgw$nN4q#uUww!xj$}{EExiEB%8RGCwno?b8mn8oT75XY|5nGr!+3F z1rK%}7%sN5?X#ekgV$W!RSas{$A+#^t4rwhorH{Y%7mshlAE&GS$+u~WEUqbEels$ z_3HT?>0q}K*RtS2x!VZ?FGM;lmaS`%L>i9x!WXa=mY>9=B0X8Vw}J(xp-e=1^;aWg zGt4JVQ7m`8h{fe@vAC6OE6NHLcYmhb;}pZXN;8XHU)p<3ZP`?~PcQX%tZez-)ci7t zorWvYxqD9hYk|+lNH2byT!l@lm$XB-Ao)!QPXiFQb0*uZZgayck~I|dY7ttYbrRTy zPZOZzXejf&qIo^acnEzK_B1Z?W6*Z`y44RnIUAllk+QXw`0O~z?7uX$`tK_E2tw#7 zV@pUR*MYvI>tU`DDtEpjUl)lY`Xtnv;Cvb3#6=36W6Ym#HFP=y)vH(p@N#e+vm3lO z{DVK{%U{#wUJLw3@c6DT#MeC!{I(1xIme7>TmoCBCO5+#7JcYOGG6h8QoFiodK^l7 ztDNP9ov)NL!l09|lRK}FbC*d=o314#AQr34xC`@XwZ=Kw&XDiTp`1HA?+x>{-yrOf4d6qz~E3dX8nE;9h1 z>iFcRK4qVOtv0U^{SV0FFMk+6`Mlw0Y&-t$riThl^oYl(k8S9-*Rx%!3WoluieK`hDdMP zD`w+CqR-s6@=<@fgYpUy`jn;O@Y_!8V(oO+ac# zXh74RHVJH5tg<+}87v0w&BMG`~%~j2aazQlRFR^Xaq@iim zbvjp1F_j09$GeRHj+3ts-b>+5W_0FlIhPS=nx#|9?v)uG4;c3|R07S!)!n3%N{J(9IFD)oq&6 zX_-wqT+oCFw6`7>=!uw}F;gL%%|uI~AC^2IMejya6XXGWVaG29@SnX_p4SQf@A%{U zK8&w@KJnYez{9rb#@CNNcS(5|HCuvNFrA@n(S)Y74Lnq0%(zZdL?jP8?e`8}oYtytD@-S;# zo3blgM(CKbr`QZFz1g!U_E4DKeNl=9qAZ3#rY+`QZI3(ISj+x5d?EprF4pd+M)y)c zxVh*n!xPU-m&%k;T$43e}+i`hGq z$C7}SlOQGsg*o@zyf#U+)BRrkP)pW6@8LwxYBkVoNjP2k5V#}iL6dy>TG*n^&$w8Z zwQs5=lFzb)3Pog*V`CTlMJ6#c!wFY-NPR>2 zahI=9s7da%lx<+J$$W1%4Y`yM2Sp8|2^Ba7^D(S(&p&`TH83dF7Hb37h}`+}3A<=# z9}bI#Z}@w^!oK#k`n(qSzuo(F```tC&*^yj)FZz8b5HnZhT}Jnz?;%WFP&)w;*_PU z!a!;gOGw+7!@r6<6z9nw01KO>GFajimm0;)U9@5{9$K=sL$wD`GcFf z>qu?7vf(0Gvk9A>2M?8}k**M6*-g3gsh{$2fetH@E+B?A_P0*tT-kbnKzSmgX z)9SAo?sVhJ2);y+Vx_p<9n?j5TwwhAv*pOe=WjL1_DMc`*N=XI-wX0iM>0%L?p%l5 zPxEcAbATmho2+v-R4$fzo3O1--oV;C#ybSJv}mn#w8eFf4Z&Eh(xPZ+YAW*Duh4rU z0qveYfCbjSgW1O^$10MqL{Cv-X+2NBPf@}&_dtMcke5tlH zJ&Q^pVRJU-c};rdxKAc}8nX?$$hjJnTkw~#cA1q*82ia8E`m!mkn;M37qR7$?W{3-kx@}O>B2xnq)N_ z)+Vv^Jg0MVq9)c!>K)VQ2V?a%h-s(1^_jP@HGJcb`ZD|kEB(alY{!7%JHzqSIPWGK0PJALN+i>S*4rIymU+tP=@iAuE<|ay0pQHtCiS#7 z99~o2k{V`W#3pMz|MNgeTxuE;%9af6CQ}SFtKpo6Jah7!6S4m9G1T#Q$(wZeZ#J{4 zGc+fd!WM4RaHe*x@9giIrh|qF!*A>o%4{Sjx@986-DJI<|7(otl!djG5xzDTcijRo zRnjphx*|v|tB@u8I>PTE=R^$h{rna8m=}srkhs5V2Rrwwks9ZkTs6fdM7u1G^UvR{ zSukI#3Wv=}xDIKXq|hwNSwQaNaru5MrF^ky;?w#zuitVHMJ9j>Oy6s|0aS)SEExeIkM`v|UsofMB)BApc@;M79E9fRgSM-mLB+(~!NrYP#(X3&j8 z33v^6-M9n(u{ZchU;Ua7|GI`=AHOJAP`QSoH6GVgClEWo4iH{YZK@ z=&HxATShq9$=lrD)ovRNcc~;fc(@Lmi;QQ63Rps|$?odOa9&0c>(i6IFK}#<+k$&c z`Q54TcoF8XC;_6iB{y17>tfkDwe=&I^-&ffd`-tT>%wbpO_{-7A=+j=0_?EZZcB*?Uf4S3y+M{+0c zf8JqNRbwhgBXMvMG5NZeH@TRR8vWz$S?-PbZUxiV3(#a%+wR(M>wc8QslC$M)(X;VHhwGcer`gwL)=vCc8sOGA{LL9c@{@CT&86E_=Y%5=aa#h!ki+}U^ruKv*_U^$I* zG`+Dq4toyYote@IA3{_P$Wjbf(kK@6=6M=UL^SJMQ_h&bzI#{@f#1EwF93Kg@UI2_ z|KHaSKh@u}1b_6L_+=>QVfKq(r7HldWnPgfZXQ7?F`BY#s;!Hsuz-c%v}lt7x1Dhy zork%%;Q(+zkH4VO?k10H6r9{l)55SK*~y-7ZSWo{lp~VjVmFu`(#Sv0JoG#O!b;WL zrlR>*)^cl}UTf}fiysVOfj{y~v9|aW5jRe-^ZW|%1LC>+IPx}6OrBb8^3U!m2{BufM)HERqG-fR)$-z-JFZ9HvOc>6OVRj&h zbIq0B^>8Rz0Nn3(4~ke^Zkid6jTEVfeVjHIOTW*<`7oR!ZzBVv^!WrGT=!#qcF%5p z)1z_ySrbPlNS0ljcgy$R>?AwCzD|16X@ub1!G{6R6h|`16NBB|j_lg#6zHeRJStpi zL*a!Va?It%P>*R1_Z#+YfUhPVl0AoxVgEjUC);54PXPGSuVwiaqW^pP`oTN>oh109 z=fc0*A;_G{Yj2i>pg74tK8PEosnf_xYx>6eS6gkDYVUH8wdsIIBj@-YaNB(cf}E~+TpC)E z$~*U+r;g!8-S>PVriYCQaGSWfB4Pt>j-7Vq07%7M#%ItVc)TD|NtIc`_V*jSp6++t zcJR6%{?y2kO_Sa=(Oc@dn}nF7VVS?AHoq0%O5vg^eDOC+&@FT8eRDMlIn8S6<7;Ez z8lHAtb2YNk@CMLqaB^MLZr5brXQRvM(Xh$s;(g01a-!DMosM?N>eqtc!9^mJNE{4P zAEXmxqAb18GuwS1&(vy8f<37Y1U$|xrWz(UZmW!tl}Y)sr+E^ig);ejag!!^7CSLp zlkCqB2l6HAEcYU(rpb&L6QTa7Rq(N}DTPHQ?U z`7zG_va|j z>20~qjqKMW*alaT_E3uq%*aF1NlODMb2Fx`G$y&EIf_fy*Z18&$|MF{n&;kBXd?mUv@g3vuktsmw|Ol}O0l49<6gpci=3o)}g#&TLpj%#K*A!HZqEhQUuvVyJM} zETY5QOhTT;Ex4u{pzv^r?MNUHyR?)VSxg}l%bHGp zNX~^>#v)%^wt|s}C+?mIDYCD-;TcOm46&Bm5j(*z+ys{xbUpzgKXYy_pS_thR{!o> z;C8p?`8Es@4M#|C-sSKH2J^W#og^_b8j3u)B)k5AkF-|1L|HYn>oEq zu34nVsM+>X+_Shu!<7zmt8wZoREDByO!&X$tvkmchkRl`WA&v)lo5S-WP=CW~i=HKUW6* z;OUl)jiE2zh`V%_e3HPUR`5P%~K;?cGwYJT$5*EY`!^jMG&?tq@4``rr1ar5=0 zuLPDtBOpf^^f>MM4o-fHT?YDWip{J}ZGG3W2?>hF@jv%N@*J#TuMTXCqn_d-*%=zYm zD)SmH*?iN(ZExENA2%9zqhd+^%%n z-slcrH_KSnv%)*P(d!xP(L_W+7fxJzz ztA53t(L`voRE8>qoRSzA-)n#JB+*V14Td#WYAC!B0 z>kt|Q9x}NphEqB0uT0gzM5Aynw{N~x27)Y@Eu5KAnLoyW-h4&I2WT+(v^~1HKpHJ4(sfh8ahCAP(>a*Ty~a_tHWy~ zZBM94zT0eCW5Vh1X-i5GdHrmzRGVZo7znwGCo0XIE2%;m0yrx2WYGZ?~T(wmjy zB+I7mtA*z3RuVJ4{O$@(L3|2r(oB;Vv{ixb%M5DoLsXI(tsoCl>8@|sb=nt3bcThD z!;82Tgl@(Y1U>G}L`ttvs~_LFCsZHrHwsnkzhl4KUQb$~HuIm1JBV$oNM*?L00(p} zjStZfj%*ThRpKoEZ0;nbi|W@g$yi|z+c*jolFT^Z)tUIwMU8S2AaG@=w>62OH4RzQ zW-^rb5_@y(MABna?tR)P_t;fj|(9g#_^(j=)gpwI{HjjufIiE4s){(; z9)70bLlhB#?dE8Mh^a+ahV3e9*XCaAnOPPEGbVNQY*DEqmiqb2u2|i2{{L`hbLHHZg9qSk>f?xN4chxcY z@&qbXjA{|<3dAVlpHHV@a?*76xuQtmK?}xjYaE7$Me}AlrFy%4Pv&6TR=O*$*ILkE4t!&Ub=g_(7i6j5RGCE51Vd!;!dz znnp6y+hOJ?=mE8z~xP@r~^rD!Y40I7I5LmPe8h%3+I+w4r~m23Nw`26*SFvS^K5|h$AUw zi7PpkX3sY`$yl5=wkt`Ex{={D+3;l{(gH

sqD`90kWG0toPTCdLY*AwcST-%h5~ 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