
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_bd9f1e6c9529e5155b48bd58.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_404ce6d936ec64c9f13b4f99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e860dee5e127b706adbad43b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b387cff45c7e1814912b77f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c778a6ca6e476edb3fce59f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0f6b6e74bb49b7d871ecd2b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_51a8244e6628783c31212545.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.118164;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f58a4dc351f85ffca7a54100.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bb8b2378641a3c8e16538173.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1b69feee2a98bf730248966d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_66767aebd77790d3be985bb0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_62a5916e43bb0ffe3b339a68.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4f5dc7a0d4f46375f24e8d6e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cb6e791b0dcb33c0575e740f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.737305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_23fabb638abdba9c17cb7674.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2c063dbe270fd81eedcbb00e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_583619a97482dd4fff85b7a3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6446ab81dd4c7d69eaf82f32.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_400b3c0dcc1a12b3ff21669d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_68b0e9b94404fa0da8ab413f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.713867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a59a2a9317223425457d2e17.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_e3c446dc370619224e13039a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_49c7b6996b4022be0e98aafc.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.683105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7ee881c157961408b7ce5fb7.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.681152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_674e23ef5ce6f108b24ba9a3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.914551;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2a76b381219ac39beb16e4b3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_76c3f0a1c57bea0b0877846e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_21c1125621e52d6495b7e8b5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_ef964e0c770de64000298a60.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_86c408c6ba97a3498ab6a926.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.683105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_562eb7422d4af48b3e984952.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.681152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_5cb81b82b040a8025334f3d1.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.914551;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_ae5415f800f8a1d940760030.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_52d011ad8f790baa04428bf2.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_8d0b1c6da008a69ac5f12896.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.844727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_62fde57b1e1a8186e9bd636f.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_26ef730541b535aae9a6d9c2.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_d1707894c41c77e1925bac51.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_9cbc358cc72f0521b7cc936d.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_541affad845cedc7e93073ac.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.275879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_2a062bb918a3984a5e36193c.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_d8b2d28788dfab354f491e05.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_f7cc68e69db99125c1ea548d.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.877930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_70a3b71e691921b4e73ff938.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_f9639816b9e3b50b5edb8f71.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_859fcdd1fc9f989925c455ba.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.275879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_c84aae46cea18735f3d963cd.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_8d08a041c9fabb3b976e42c8.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_e2a29e8417fd03b5601e42d8.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_9654390eaf90036cdcf62355.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_05103740a71c40e784d9f988.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.273926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_f2ad58b7dadac5a80d02943b.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_1ac83d57945dbe339ebea443.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_a05b66364e258c8e71013dc4.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.273926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_c2c91b54f213bb8a32f634d8.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_46e407f3307a9bc82a670c45.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_48366a877ceecb70d8bdbd55.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.964355;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.161731,-0.190637,0.190642,0.161727,0,0);-ms-transform:matrix(0.161731,-0.190637,0.190642,0.161727,0,0);-webkit-transform:matrix(0.161731,-0.190637,0.190642,0.161727,0,0);}
.m8{transform:matrix(0.174559,-0.178967,0.178971,0.174555,0,0);-ms-transform:matrix(0.174559,-0.178967,0.178971,0.174555,0,0);-webkit-transform:matrix(0.174559,-0.178967,0.178971,0.174555,0,0);}
.m4{transform:matrix(0.193182,-0.158687,0.158693,0.193175,0,0);-ms-transform:matrix(0.193182,-0.158687,0.158693,0.193175,0,0);-webkit-transform:matrix(0.193182,-0.158687,0.158693,0.193175,0,0);}
.m5{transform:matrix(0.193905,-0.157803,0.157808,0.193898,0,0);-ms-transform:matrix(0.193905,-0.157803,0.157808,0.193898,0,0);-webkit-transform:matrix(0.193905,-0.157803,0.157808,0.193898,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-51.840000px;}
.v6{vertical-align:-37.440000px;}
.v4{vertical-align:-28.800000px;}
.v5{vertical-align:-23.040000px;}
.v2{vertical-align:-14.400000px;}
.v9{vertical-align:-8.639925px;}
.v8{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.400000px;}
.v1{vertical-align:27.360000px;}
.lse{letter-spacing:-0.318384px;}
.ls1f{letter-spacing:-0.296352px;}
.lsc{letter-spacing:-0.289440px;}
.ls1c{letter-spacing:-0.284256px;}
.ls19{letter-spacing:-0.254016px;}
.ls1d{letter-spacing:-0.247968px;}
.ls68{letter-spacing:-0.238464px;}
.ls1a{letter-spacing:-0.229824px;}
.ls10{letter-spacing:-0.225216px;}
.ls20{letter-spacing:-0.223776px;}
.ls64{letter-spacing:-0.192096px;}
.ls15{letter-spacing:-0.172224px;}
.ls5f{letter-spacing:-0.165600px;}
.lsd{letter-spacing:-0.164016px;}
.ls16{letter-spacing:-0.158976px;}
.ls48{letter-spacing:-0.156122px;}
.ls4e{letter-spacing:-0.154757px;}
.ls62{letter-spacing:-0.152352px;}
.ls1e{letter-spacing:-0.151200px;}
.ls14{letter-spacing:-0.145728px;}
.ls63{letter-spacing:-0.139104px;}
.ls13{letter-spacing:-0.132480px;}
.ls57{letter-spacing:-0.130200px;}
.ls12{letter-spacing:-0.125856px;}
.ls1b{letter-spacing:-0.120960px;}
.ls60{letter-spacing:-0.119232px;}
.lsb{letter-spacing:-0.115776px;}
.ls65{letter-spacing:-0.092736px;}
.ls66{letter-spacing:-0.086112px;}
.ls67{letter-spacing:-0.079488px;}
.lsf{letter-spacing:-0.066240px;}
.ls61{letter-spacing:-0.059616px;}
.ls11{letter-spacing:-0.052992px;}
.ls44{letter-spacing:-0.036000px;}
.ls54{letter-spacing:-0.024872px;}
.ls41{letter-spacing:-0.021600px;}
.ls17{letter-spacing:-0.014400px;}
.ls18{letter-spacing:-0.007200px;}
.lsa{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.007200px;}
.ls45{letter-spacing:0.010080px;}
.ls25{letter-spacing:0.010656px;}
.ls23{letter-spacing:0.011520px;}
.ls47{letter-spacing:0.014112px;}
.ls26{letter-spacing:0.014400px;}
.ls37{letter-spacing:0.015408px;}
.ls24{letter-spacing:0.015840px;}
.ls21{letter-spacing:0.021600px;}
.ls36{letter-spacing:0.028800px;}
.ls4f{letter-spacing:0.077379px;}
.ls49{letter-spacing:0.078061px;}
.ls51{letter-spacing:0.084441px;}
.ls4b{letter-spacing:0.085186px;}
.ls56{letter-spacing:0.113400px;}
.ls4{letter-spacing:0.138240px;}
.ls3{letter-spacing:0.138384px;}
.ls2{letter-spacing:0.139680px;}
.ls1{letter-spacing:0.139824px;}
.ls50{letter-spacing:0.148616px;}
.ls4a{letter-spacing:0.149927px;}
.ls46{letter-spacing:0.156960px;}
.ls52{letter-spacing:0.168882px;}
.ls4c{letter-spacing:0.170371px;}
.ls53{letter-spacing:0.174104px;}
.ls4d{letter-spacing:0.175640px;}
.ls3f{letter-spacing:0.191520px;}
.ls39{letter-spacing:0.210384px;}
.ls33{letter-spacing:0.250992px;}
.ls3a{letter-spacing:0.270864px;}
.ls2f{letter-spacing:0.306000px;}
.ls40{letter-spacing:0.327600px;}
.ls3e{letter-spacing:0.347760px;}
.ls43{letter-spacing:0.393120px;}
.ls42{letter-spacing:0.418320px;}
.ls59{letter-spacing:0.558600px;}
.ls5d{letter-spacing:0.634200px;}
.ls3c{letter-spacing:0.688176px;}
.ls3b{letter-spacing:0.688320px;}
.ls5a{letter-spacing:0.697200px;}
.ls5c{letter-spacing:1.054198px;}
.ls2a{letter-spacing:1.563840px;}
.ls9{letter-spacing:1.847088px;}
.ls2d{letter-spacing:3.771360px;}
.ls2b{letter-spacing:4.150080px;}
.ls32{letter-spacing:4.722912px;}
.ls2e{letter-spacing:4.723200px;}
.ls31{letter-spacing:11.289600px;}
.ls29{letter-spacing:13.564080px;}
.ls28{letter-spacing:13.564656px;}
.ls35{letter-spacing:20.004480px;}
.ls38{letter-spacing:20.004624px;}
.ls30{letter-spacing:23.130720px;}
.ls34{letter-spacing:23.238864px;}
.ls27{letter-spacing:24.722352px;}
.ls2c{letter-spacing:24.723360px;}
.ls58{letter-spacing:47.358000px;}
.ls5b{letter-spacing:48.588480px;}
.ls55{letter-spacing:60.084576px;}
.ls6{letter-spacing:86.630256px;}
.ls22{letter-spacing:108.986832px;}
.ls8{letter-spacing:114.122448px;}
.ls7{letter-spacing:122.882256px;}
.ls5{letter-spacing:197.280000px;}
.ls5e{letter-spacing:1414.371596px;}
.ls0{letter-spacing:1448.548848px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-24.766416px;}
.ws2f{word-spacing:-18.734400px;}
.ws30{word-spacing:-18.727200px;}
.ws9{word-spacing:-18.720000px;}
.ws15{word-spacing:-18.712800px;}
.ws2d{word-spacing:-18.705600px;}
.ws3c{word-spacing:-18.014400px;}
.ws36{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.222400px;}
.ws7{word-spacing:-17.156160px;}
.ws3{word-spacing:-17.096544px;}
.ws4{word-spacing:-17.089920px;}
.ws5{word-spacing:-17.076672px;}
.ws40{word-spacing:-17.070048px;}
.ws8{word-spacing:-17.063424px;}
.ws6{word-spacing:-17.050176px;}
.ws2{word-spacing:-16.997184px;}
.wsd{word-spacing:-13.547520px;}
.ws10{word-spacing:-13.517280px;}
.ws11{word-spacing:-13.444704px;}
.wsf{word-spacing:-13.420512px;}
.wsc{word-spacing:-13.414464px;}
.ws3e{word-spacing:-9.605400px;}
.ws39{word-spacing:-9.605384px;}
.ws32{word-spacing:-7.785962px;}
.ws34{word-spacing:-7.717910px;}
.ws35{word-spacing:-6.220759px;}
.ws24{word-spacing:-0.468720px;}
.ws27{word-spacing:-0.443520px;}
.ws22{word-spacing:-0.398160px;}
.ws19{word-spacing:-0.378000px;}
.ws2e{word-spacing:-0.318384px;}
.ws18{word-spacing:-0.241920px;}
.ws25{word-spacing:-0.100800px;}
.ws12{word-spacing:-0.093600px;}
.wsa{word-spacing:-0.072000px;}
.wsb{word-spacing:-0.064800px;}
.ws28{word-spacing:-0.036000px;}
.ws13{word-spacing:0.000000px;}
.wse{word-spacing:0.223776px;}
.ws1b{word-spacing:9.932256px;}
.ws21{word-spacing:9.943200px;}
.ws23{word-spacing:11.685312px;}
.ws1d{word-spacing:11.911104px;}
.ws1c{word-spacing:11.911248px;}
.ws1a{word-spacing:11.933280px;}
.ws20{word-spacing:11.943360px;}
.ws1e{word-spacing:11.943504px;}
.ws1f{word-spacing:11.988000px;}
.ws14{word-spacing:15.933600px;}
.ws2a{word-spacing:15.933744px;}
.ws26{word-spacing:18.610848px;}
.ws2c{word-spacing:18.610992px;}
.ws29{word-spacing:19.686096px;}
.ws17{word-spacing:19.686240px;}
.ws16{word-spacing:19.932624px;}
.ws2b{word-spacing:22.609872px;}
.ws33{word-spacing:914.573266px;}
.ws31{word-spacing:922.638058px;}
.ws3d{word-spacing:1407.373327px;}
.ws38{word-spacing:1407.384607px;}
.ws3b{word-spacing:1407.385500px;}
.ws3f{word-spacing:1407.386887px;}
.ws3a{word-spacing:1408.091640px;}
.ws37{word-spacing:1408.097106px;}
._13{margin-left:-209.816928px;}
._12{margin-left:-197.296848px;}
._f{margin-left:-177.187536px;}
._18{margin-left:-154.396080px;}
._1d{margin-left:-75.708720px;}
._1c{margin-left:-56.116800px;}
._17{margin-left:-48.151872px;}
._9{margin-left:-14.039712px;}
._8{margin-left:-13.039200px;}
._7{margin-left:-11.762064px;}
._a{margin-left:-9.457056px;}
._6{margin-left:-7.481808px;}
._4{margin-left:-6.300288px;}
._5{margin-left:-5.019552px;}
._19{margin-left:-4.003920px;}
._3{margin-left:-2.787552px;}
._1{margin-left:-1.061280px;}
._2{width:1.061280px;}
._e{width:2.722320px;}
._11{width:3.839184px;}
._16{width:8.004528px;}
._14{width:11.479392px;}
._15{width:17.200656px;}
._d{width:20.161728px;}
._10{width:21.766320px;}
._0{width:27.450720px;}
._1a{width:48.987360px;}
._1b{width:197.279568px;}
._c{width:750.768480px;}
._1e{width:845.280000px;}
._b{width:1448.548848px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(192,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:27.635533px;}
.fs14{font-size:27.635594px;}
.fsd{font-size:27.879336px;}
.fsc{font-size:27.879342px;}
.fs12{font-size:30.705875px;}
.fsb{font-size:30.976570px;}
.fs11{font-size:33.776410px;}
.fsa{font-size:34.074230px;}
.fs3{font-size:41.760000px;}
.fs16{font-size:41.999929px;}
.fs18{font-size:42.000000px;}
.fs10{font-size:42.989180px;}
.fs9{font-size:43.368813px;}
.fs6{font-size:47.520000px;}
.fs5{font-size:50.400000px;}
.fse{font-size:55.270530px;}
.fs7{font-size:55.757835px;}
.fs4{font-size:60.480000px;}
.fs15{font-size:65.999888px;}
.fs17{font-size:66.000000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:96.480000px;}
.fsf{font-size:110.541060px;}
.fs8{font-size:111.515670px;}
.y0{bottom:0.000000px;}
.y86{bottom:5.926198px;}
.y74{bottom:5.978412px;}
.y8d{bottom:7.584313px;}
.y7b{bottom:7.651062px;}
.ya9{bottom:10.559535px;}
.yb2{bottom:10.560912px;}
.ybd{bottom:10.919535px;}
.ya1{bottom:10.920911px;}
.y8c{bottom:19.375363px;}
.y7a{bottom:19.546212px;}
.y1e{bottom:21.840000px;}
.y40{bottom:23.100000px;}
.y8b{bottom:31.166413px;}
.y79{bottom:31.441212px;}
.y3f{bottom:43.500000px;}
.y1d{bottom:48.000000px;}
.ybf{bottom:58.080000px;}
.y8a{bottom:58.248900px;}
.y78{bottom:58.762500px;}
.y3e{bottom:75.240000px;}
.y1c{bottom:75.600000px;}
.y1b{bottom:95.760000px;}
.y1a{bottom:120.240000px;}
.y71{bottom:122.040000px;}
.y3d{bottom:147.600000px;}
.ydd{bottom:154.080000px;}
.y70{bottom:164.520000px;}
.y9e{bottom:166.320000px;}
.y85{bottom:170.448148px;}
.y19{bottom:170.640000px;}
.y73{bottom:171.950862px;}
.y3c{bottom:172.080000px;}
.yad{bottom:175.800000px;}
.y98{bottom:176.896370px;}
.y96{bottom:184.818478px;}
.y6f{bottom:189.000000px;}
.y9d{bottom:190.800000px;}
.y97{bottom:195.872010px;}
.y3b{bottom:196.560000px;}
.y95{bottom:199.557283px;}
.y81{bottom:199.644012px;}
.y18{bottom:209.160000px;}
.y94{bottom:215.217268px;}
.y9c{bottom:215.280000px;}
.y83{bottom:221.761231px;}
.y6e{bottom:225.720000px;}
.y84{bottom:226.765800px;}
.y80{bottom:227.894562px;}
.y93{bottom:231.429958px;}
.y3a{bottom:239.040000px;}
.y9b{bottom:239.760000px;}
.y68{bottom:243.360000px;}
.y82{bottom:246.108947px;}
.y92{bottom:246.352993px;}
.y17{bottom:247.320000px;}
.y7f{bottom:253.357362px;}
.yc4{bottom:255.240000px;}
.y9f{bottom:258.926550px;}
.yb4{bottom:261.121056px;}
.y91{bottom:262.012993px;}
.ybb{bottom:263.520000px;}
.y39{bottom:264.600000px;}
.yb0{bottom:265.680000px;}
.y89{bottom:268.276993px;}
.y77{bottom:270.642312px;}
.yba{bottom:274.800000px;}
.y90{bottom:275.830543px;}
.y7e{bottom:278.820162px;}
.ydc{bottom:281.520000px;}
.ya6{bottom:282.240000px;}
.y16{bottom:285.840000px;}
.y8f{bottom:296.464993px;}
.y88{bottom:297.386143px;}
.yc3{bottom:298.080000px;}
.y76{bottom:300.008112px;}
.y7d{bottom:302.052612px;}
.yaf{bottom:306.000000px;}
.y38{bottom:307.800000px;}
.yac{bottom:311.520000px;}
.y8e{bottom:313.230343px;}
.y87{bottom:313.598743px;}
.y75{bottom:316.363662px;}
.yc5{bottom:317.004750px;}
.ya5{bottom:322.560000px;}
.y15{bottom:324.360000px;}
.yb1{bottom:325.168950px;}
.y7c{bottom:325.842612px;}
.y67{bottom:328.320000px;}
.yc1{bottom:332.400000px;}
.ya7{bottom:341.517300px;}
.yb5{bottom:341.640000px;}
.y62{bottom:346.320000px;}
.y37{bottom:350.640000px;}
.y66{bottom:352.800000px;}
.y14{bottom:362.880000px;}
.ydb{bottom:366.840000px;}
.y61{bottom:370.800000px;}
.ya8{bottom:372.360000px;}
.y36{bottom:375.120000px;}
.y65{bottom:377.640000px;}
.y60{bottom:395.280000px;}
.y13{bottom:401.040000px;}
.y64{bottom:402.120000px;}
.yda{bottom:409.320000px;}
.y34{bottom:418.680000px;}
.ybe{bottom:419.520000px;}
.y5f{bottom:420.120000px;}
.y63{bottom:426.600000px;}
.y35{bottom:428.040000px;}
.y12{bottom:439.200000px;}
.y5e{bottom:444.600000px;}
.yd9{bottom:451.800000px;}
.y32{bottom:463.680000px;}
.y4b{bottom:470.880000px;}
.yb6{bottom:471.720000px;}
.yb7{bottom:472.080000px;}
.ya2{bottom:472.080697px;}
.y33{bottom:473.040000px;}
.y11{bottom:477.000000px;}
.y5d{bottom:487.080000px;}
.yd8{bottom:493.560000px;}
.y31{bottom:508.320000px;}
.yb8{bottom:510.240000px;}
.ya3{bottom:510.240633px;}
.y5c{bottom:511.560000px;}
.y4a{bottom:513.360000px;}
.yd7{bottom:516.240000px;}
.y10{bottom:528.480000px;}
.y30{bottom:532.800000px;}
.yae{bottom:535.080000px;}
.y5b{bottom:536.040000px;}
.y49{bottom:537.840000px;}
.yd6{bottom:556.560000px;}
.y5a{bottom:560.520000px;}
.y48{bottom:562.320000px;}
.y2f{bottom:576.360000px;}
.y6d{bottom:578.160000px;}
.yd5{bottom:578.880000px;}
.yf{bottom:579.960000px;}
.y59{bottom:585.000000px;}
.y47{bottom:599.400000px;}
.yd4{bottom:601.560000px;}
.y6c{bottom:602.640000px;}
.y2e{bottom:619.920000px;}
.yb3{bottom:622.200442px;}
.yd3{bottom:623.880000px;}
.y6b{bottom:627.120000px;}
.y58{bottom:627.480000px;}
.ye{bottom:631.440000px;}
.yaa{bottom:633.720000px;}
.yb9{bottom:639.120000px;}
.y2d{bottom:644.400000px;}
.y6a{bottom:651.600000px;}
.y57{bottom:651.960000px;}
.yd2{bottom:664.560000px;}
.y2b{bottom:669.600000px;}
.yab{bottom:670.800000px;}
.y2c{bottom:673.200000px;}
.y69{bottom:676.080000px;}
.y56{bottom:676.440000px;}
.yd{bottom:682.920000px;}
.yd1{bottom:686.880000px;}
.yc0{bottom:693.480000px;}
.yc6{bottom:700.680309px;}
.y55{bottom:700.920000px;}
.yc7{bottom:702.480306px;}
.ybc{bottom:702.840000px;}
.ya0{bottom:702.840305px;}
.yc{bottom:707.760000px;}
.y2a{bottom:709.200000px;}
.y29{bottom:712.800000px;}
.y72{bottom:713.114100px;}
.yd0{bottom:727.560000px;}
.yb{bottom:732.240000px;}
.y54{bottom:743.760000px;}
.ycf{bottom:749.880000px;}
.y28{bottom:755.640000px;}
.ya{bottom:756.000000px;}
.y53{bottom:768.240000px;}
.yce{bottom:790.200000px;}
.y52{bottom:792.720000px;}
.y9{bottom:796.320000px;}
.y27{bottom:798.840000px;}
.ycd{bottom:812.880000px;}
.y51{bottom:835.200000px;}
.y8{bottom:837.000000px;}
.y26{bottom:841.680000px;}
.y7{bottom:859.320000px;}
.y50{bottom:859.680000px;}
.y25{bottom:866.160000px;}
.ycc{bottom:875.880000px;}
.y4f{bottom:884.160000px;}
.y24{bottom:890.640000px;}
.ycb{bottom:898.200000px;}
.y6{bottom:902.160000px;}
.y46{bottom:906.840000px;}
.y4e{bottom:908.640000px;}
.y23{bottom:915.120000px;}
.y4d{bottom:933.120000px;}
.y5{bottom:934.920000px;}
.yca{bottom:938.520000px;}
.y45{bottom:949.680000px;}
.y22{bottom:957.600000px;}
.yc9{bottom:961.200000px;}
.y4c{bottom:975.600000px;}
.yc8{bottom:983.520000px;}
.y4{bottom:983.880000px;}
.y44{bottom:992.160000px;}
.y21{bottom:1000.080000px;}
.y9a{bottom:1000.800000px;}
.y3{bottom:1010.160000px;}
.y43{bottom:1016.640000px;}
.y20{bottom:1024.560000px;}
.y99{bottom:1041.120000px;}
.ya4{bottom:1042.560000px;}
.y2{bottom:1042.920000px;}
.y42{bottom:1059.120000px;}
.yc2{bottom:1060.560000px;}
.y1f{bottom:1067.400000px;}
.y41{bottom:1083.600000px;}
.y1{bottom:1108.080000px;}
.h1d{height:18.419231px;}
.h1c{height:18.428060px;}
.h15{height:19.058140px;}
.h14{height:19.058144px;}
.h1b{height:20.465585px;}
.h13{height:20.646005px;}
.h1a{height:23.089343px;}
.h12{height:23.292931px;}
.h23{height:27.993164px;}
.h21{height:28.567334px;}
.h26{height:28.567383px;}
.h19{height:30.772529px;}
.h11{height:31.044277px;}
.hb{height:35.560547px;}
.h25{height:36.339782px;}
.h24{height:36.339844px;}
.h17{height:36.838024px;}
.hf{height:37.162815px;}
.hc{height:40.310156px;}
.h20{height:43.989183px;}
.h22{height:43.989258px;}
.h7{height:47.988281px;}
.h8{height:48.000000px;}
.h1e{height:48.796875px;}
.hd{height:49.500000px;}
.h1{height:49.992188px;}
.h9{height:50.800781px;}
.h6{height:55.089844px;}
.h5{height:58.154063px;}
.h4{height:59.087812px;}
.h3{height:68.873906px;}
.ha{height:69.489844px;}
.h18{height:73.676048px;}
.h2{height:73.820391px;}
.h10{height:74.325630px;}
.h16{height:327.634200px;}
.he{height:330.525900px;}
.h1f{height:723.000000px;}
.h0{height:1188.000000px;}
.w1{width:178.500000px;}
.w3{width:583.425000px;}
.w2{width:588.576900px;}
.w4{width:723.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:8.318355px;}
.x13{left:9.996208px;}
.x2f{left:13.354500px;}
.x1a{left:18.626160px;}
.x2c{left:23.388710px;}
.x2a{left:38.460780px;}
.x30{left:44.474850px;}
.x19{left:49.068060px;}
.x2b{left:50.800261px;}
.x38{left:52.136700px;}
.x3b{left:58.608000px;}
.x29{left:74.202345px;}
.x18{left:78.620445px;}
.x28{left:86.897295px;}
.x3d{left:88.329000px;}
.x1{left:96.120108px;}
.x27{left:99.606795px;}
.x1b{left:103.505330px;}
.xb{left:106.412112px;}
.x17{left:109.014045px;}
.x26{left:113.715645px;}
.x5{left:118.015524px;}
.x25{left:127.262595px;}
.x1c{left:133.441391px;}
.x3e{left:138.645252px;}
.x24{left:139.892295px;}
.x16{left:143.448495px;}
.x32{left:149.250120px;}
.x23{left:152.447445px;}
.x8{left:158.250120px;}
.x22{left:163.146345px;}
.x21{left:174.033345px;}
.x15{left:179.686095px;}
.x35{left:192.791672px;}
.x1f{left:260.463195px;}
.x12{left:262.763145px;}
.x1d{left:264.781245px;}
.x10{left:267.119445px;}
.x2{left:268.929576px;}
.x1e{left:273.033645px;}
.x11{left:275.444745px;}
.x39{left:341.836500px;}
.x2d{left:349.639500px;}
.x4{left:351.154188px;}
.x33{left:371.882368px;}
.x2e{left:374.232000px;}
.x31{left:402.091350px;}
.x3a{left:418.198500px;}
.x6{left:426.335760px;}
.x3c{left:445.530000px;}
.x3{left:462.757680px;}
.x20{left:538.065195px;}
.x14{left:542.816895px;}
.x34{left:552.675560px;}
.x9{left:642.240000px;}
.x7{left:651.000000px;}
.xe{left:679.320000px;}
.xd{left:684.720000px;}
.xa{left:699.840000px;}
.x37{left:703.461000px;}
.x36{left:819.000000px;}
.xc{left:829.440000px;}
@media print{
.v7{vertical-align:-46.080000pt;}
.v6{vertical-align:-33.280000pt;}
.v4{vertical-align:-25.600000pt;}
.v5{vertical-align:-20.480000pt;}
.v2{vertical-align:-12.800000pt;}
.v9{vertical-align:-7.679934pt;}
.v8{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.800000pt;}
.v1{vertical-align:24.320000pt;}
.lse{letter-spacing:-0.283008pt;}
.ls1f{letter-spacing:-0.263424pt;}
.lsc{letter-spacing:-0.257280pt;}
.ls1c{letter-spacing:-0.252672pt;}
.ls19{letter-spacing:-0.225792pt;}
.ls1d{letter-spacing:-0.220416pt;}
.ls68{letter-spacing:-0.211968pt;}
.ls1a{letter-spacing:-0.204288pt;}
.ls10{letter-spacing:-0.200192pt;}
.ls20{letter-spacing:-0.198912pt;}
.ls64{letter-spacing:-0.170752pt;}
.ls15{letter-spacing:-0.153088pt;}
.ls5f{letter-spacing:-0.147200pt;}
.lsd{letter-spacing:-0.145792pt;}
.ls16{letter-spacing:-0.141312pt;}
.ls48{letter-spacing:-0.138775pt;}
.ls4e{letter-spacing:-0.137562pt;}
.ls62{letter-spacing:-0.135424pt;}
.ls1e{letter-spacing:-0.134400pt;}
.ls14{letter-spacing:-0.129536pt;}
.ls63{letter-spacing:-0.123648pt;}
.ls13{letter-spacing:-0.117760pt;}
.ls57{letter-spacing:-0.115733pt;}
.ls12{letter-spacing:-0.111872pt;}
.ls1b{letter-spacing:-0.107520pt;}
.ls60{letter-spacing:-0.105984pt;}
.lsb{letter-spacing:-0.102912pt;}
.ls65{letter-spacing:-0.082432pt;}
.ls66{letter-spacing:-0.076544pt;}
.ls67{letter-spacing:-0.070656pt;}
.lsf{letter-spacing:-0.058880pt;}
.ls61{letter-spacing:-0.052992pt;}
.ls11{letter-spacing:-0.047104pt;}
.ls44{letter-spacing:-0.032000pt;}
.ls54{letter-spacing:-0.022108pt;}
.ls41{letter-spacing:-0.019200pt;}
.ls17{letter-spacing:-0.012800pt;}
.ls18{letter-spacing:-0.006400pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.006400pt;}
.ls45{letter-spacing:0.008960pt;}
.ls25{letter-spacing:0.009472pt;}
.ls23{letter-spacing:0.010240pt;}
.ls47{letter-spacing:0.012544pt;}
.ls26{letter-spacing:0.012800pt;}
.ls37{letter-spacing:0.013696pt;}
.ls24{letter-spacing:0.014080pt;}
.ls21{letter-spacing:0.019200pt;}
.ls36{letter-spacing:0.025600pt;}
.ls4f{letter-spacing:0.068781pt;}
.ls49{letter-spacing:0.069388pt;}
.ls51{letter-spacing:0.075059pt;}
.ls4b{letter-spacing:0.075721pt;}
.ls56{letter-spacing:0.100800pt;}
.ls4{letter-spacing:0.122880pt;}
.ls3{letter-spacing:0.123008pt;}
.ls2{letter-spacing:0.124160pt;}
.ls1{letter-spacing:0.124288pt;}
.ls50{letter-spacing:0.132103pt;}
.ls4a{letter-spacing:0.133268pt;}
.ls46{letter-spacing:0.139520pt;}
.ls52{letter-spacing:0.150118pt;}
.ls4c{letter-spacing:0.151441pt;}
.ls53{letter-spacing:0.154759pt;}
.ls4d{letter-spacing:0.156124pt;}
.ls3f{letter-spacing:0.170240pt;}
.ls39{letter-spacing:0.187008pt;}
.ls33{letter-spacing:0.223104pt;}
.ls3a{letter-spacing:0.240768pt;}
.ls2f{letter-spacing:0.272000pt;}
.ls40{letter-spacing:0.291200pt;}
.ls3e{letter-spacing:0.309120pt;}
.ls43{letter-spacing:0.349440pt;}
.ls42{letter-spacing:0.371840pt;}
.ls59{letter-spacing:0.496533pt;}
.ls5d{letter-spacing:0.563733pt;}
.ls3c{letter-spacing:0.611712pt;}
.ls3b{letter-spacing:0.611840pt;}
.ls5a{letter-spacing:0.619733pt;}
.ls5c{letter-spacing:0.937065pt;}
.ls2a{letter-spacing:1.390080pt;}
.ls9{letter-spacing:1.641856pt;}
.ls2d{letter-spacing:3.352320pt;}
.ls2b{letter-spacing:3.688960pt;}
.ls32{letter-spacing:4.198144pt;}
.ls2e{letter-spacing:4.198400pt;}
.ls31{letter-spacing:10.035200pt;}
.ls29{letter-spacing:12.056960pt;}
.ls28{letter-spacing:12.057472pt;}
.ls35{letter-spacing:17.781760pt;}
.ls38{letter-spacing:17.781888pt;}
.ls30{letter-spacing:20.560640pt;}
.ls34{letter-spacing:20.656768pt;}
.ls27{letter-spacing:21.975424pt;}
.ls2c{letter-spacing:21.976320pt;}
.ls58{letter-spacing:42.096000pt;}
.ls5b{letter-spacing:43.189760pt;}
.ls55{letter-spacing:53.408512pt;}
.ls6{letter-spacing:77.004672pt;}
.ls22{letter-spacing:96.877184pt;}
.ls8{letter-spacing:101.442176pt;}
.ls7{letter-spacing:109.228672pt;}
.ls5{letter-spacing:175.360000pt;}
.ls5e{letter-spacing:1257.219196pt;}
.ls0{letter-spacing:1287.598976pt;}
.ws0{word-spacing:-22.014592pt;}
.ws2f{word-spacing:-16.652800pt;}
.ws30{word-spacing:-16.646400pt;}
.ws9{word-spacing:-16.640000pt;}
.ws15{word-spacing:-16.633600pt;}
.ws2d{word-spacing:-16.627200pt;}
.ws3c{word-spacing:-16.012800pt;}
.ws36{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.308800pt;}
.ws7{word-spacing:-15.249920pt;}
.ws3{word-spacing:-15.196928pt;}
.ws4{word-spacing:-15.191040pt;}
.ws5{word-spacing:-15.179264pt;}
.ws40{word-spacing:-15.173376pt;}
.ws8{word-spacing:-15.167488pt;}
.ws6{word-spacing:-15.155712pt;}
.ws2{word-spacing:-15.108608pt;}
.wsd{word-spacing:-12.042240pt;}
.ws10{word-spacing:-12.015360pt;}
.ws11{word-spacing:-11.950848pt;}
.wsf{word-spacing:-11.929344pt;}
.wsc{word-spacing:-11.923968pt;}
.ws3e{word-spacing:-8.538133pt;}
.ws39{word-spacing:-8.538119pt;}
.ws32{word-spacing:-6.920855pt;}
.ws34{word-spacing:-6.860364pt;}
.ws35{word-spacing:-5.529563pt;}
.ws24{word-spacing:-0.416640pt;}
.ws27{word-spacing:-0.394240pt;}
.ws22{word-spacing:-0.353920pt;}
.ws19{word-spacing:-0.336000pt;}
.ws2e{word-spacing:-0.283008pt;}
.ws18{word-spacing:-0.215040pt;}
.ws25{word-spacing:-0.089600pt;}
.ws12{word-spacing:-0.083200pt;}
.wsa{word-spacing:-0.064000pt;}
.wsb{word-spacing:-0.057600pt;}
.ws28{word-spacing:-0.032000pt;}
.ws13{word-spacing:0.000000pt;}
.wse{word-spacing:0.198912pt;}
.ws1b{word-spacing:8.828672pt;}
.ws21{word-spacing:8.838400pt;}
.ws23{word-spacing:10.386944pt;}
.ws1d{word-spacing:10.587648pt;}
.ws1c{word-spacing:10.587776pt;}
.ws1a{word-spacing:10.607360pt;}
.ws20{word-spacing:10.616320pt;}
.ws1e{word-spacing:10.616448pt;}
.ws1f{word-spacing:10.656000pt;}
.ws14{word-spacing:14.163200pt;}
.ws2a{word-spacing:14.163328pt;}
.ws26{word-spacing:16.542976pt;}
.ws2c{word-spacing:16.543104pt;}
.ws29{word-spacing:17.498752pt;}
.ws17{word-spacing:17.498880pt;}
.ws16{word-spacing:17.717888pt;}
.ws2b{word-spacing:20.097664pt;}
.ws33{word-spacing:812.954014pt;}
.ws31{word-spacing:820.122718pt;}
.ws3d{word-spacing:1250.998513pt;}
.ws38{word-spacing:1251.008540pt;}
.ws3b{word-spacing:1251.009333pt;}
.ws3f{word-spacing:1251.010567pt;}
.ws3a{word-spacing:1251.637013pt;}
.ws37{word-spacing:1251.641872pt;}
._13{margin-left:-186.503936pt;}
._12{margin-left:-175.374976pt;}
._f{margin-left:-157.500032pt;}
._18{margin-left:-137.240960pt;}
._1d{margin-left:-67.296640pt;}
._1c{margin-left:-49.881600pt;}
._17{margin-left:-42.801664pt;}
._9{margin-left:-12.479744pt;}
._8{margin-left:-11.590400pt;}
._7{margin-left:-10.455168pt;}
._a{margin-left:-8.406272pt;}
._6{margin-left:-6.650496pt;}
._4{margin-left:-5.600256pt;}
._5{margin-left:-4.461824pt;}
._19{margin-left:-3.559040pt;}
._3{margin-left:-2.477824pt;}
._1{margin-left:-0.943360pt;}
._2{width:0.943360pt;}
._e{width:2.419840pt;}
._11{width:3.412608pt;}
._16{width:7.115136pt;}
._14{width:10.203904pt;}
._15{width:15.289472pt;}
._d{width:17.921536pt;}
._10{width:19.347840pt;}
._0{width:24.400640pt;}
._1a{width:43.544320pt;}
._1b{width:175.359616pt;}
._c{width:667.349760pt;}
._1e{width:751.360000pt;}
._b{width:1287.598976pt;}
.fs13{font-size:24.564918pt;}
.fs14{font-size:24.564972pt;}
.fsd{font-size:24.781632pt;}
.fsc{font-size:24.781637pt;}
.fs12{font-size:27.294111pt;}
.fsb{font-size:27.534729pt;}
.fs11{font-size:30.023476pt;}
.fsa{font-size:30.288204pt;}
.fs3{font-size:37.120000pt;}
.fs16{font-size:37.333270pt;}
.fs18{font-size:37.333333pt;}
.fs10{font-size:38.212605pt;}
.fs9{font-size:38.550056pt;}
.fs6{font-size:42.240000pt;}
.fs5{font-size:44.800000pt;}
.fse{font-size:49.129360pt;}
.fs7{font-size:49.562520pt;}
.fs4{font-size:53.760000pt;}
.fs15{font-size:58.666567pt;}
.fs17{font-size:58.666667pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.760000pt;}
.fsf{font-size:98.258720pt;}
.fs8{font-size:99.125040pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:5.267731pt;}
.y74{bottom:5.314144pt;}
.y8d{bottom:6.741611pt;}
.y7b{bottom:6.800944pt;}
.ya9{bottom:9.386253pt;}
.yb2{bottom:9.387477pt;}
.ybd{bottom:9.706253pt;}
.ya1{bottom:9.707477pt;}
.y8c{bottom:17.222545pt;}
.y7a{bottom:17.374410pt;}
.y1e{bottom:19.413333pt;}
.y40{bottom:20.533333pt;}
.y8b{bottom:27.703478pt;}
.y79{bottom:27.947744pt;}
.y3f{bottom:38.666667pt;}
.y1d{bottom:42.666667pt;}
.ybf{bottom:51.626667pt;}
.y8a{bottom:51.776800pt;}
.y78{bottom:52.233333pt;}
.y3e{bottom:66.880000pt;}
.y1c{bottom:67.200000pt;}
.y1b{bottom:85.120000pt;}
.y1a{bottom:106.880000pt;}
.y71{bottom:108.480000pt;}
.y3d{bottom:131.200000pt;}
.ydd{bottom:136.960000pt;}
.y70{bottom:146.240000pt;}
.y9e{bottom:147.840000pt;}
.y85{bottom:151.509465pt;}
.y19{bottom:151.680000pt;}
.y73{bottom:152.845210pt;}
.y3c{bottom:152.960000pt;}
.yad{bottom:156.266667pt;}
.y98{bottom:157.241218pt;}
.y96{bottom:164.283091pt;}
.y6f{bottom:168.000000pt;}
.y9d{bottom:169.600000pt;}
.y97{bottom:174.108454pt;}
.y3b{bottom:174.720000pt;}
.y95{bottom:177.384251pt;}
.y81{bottom:177.461344pt;}
.y18{bottom:185.920000pt;}
.y94{bottom:191.304238pt;}
.y9c{bottom:191.360000pt;}
.y83{bottom:197.121094pt;}
.y6e{bottom:200.640000pt;}
.y84{bottom:201.569600pt;}
.y80{bottom:202.572944pt;}
.y93{bottom:205.715518pt;}
.y3a{bottom:212.480000pt;}
.y9b{bottom:213.120000pt;}
.y68{bottom:216.320000pt;}
.y82{bottom:218.763508pt;}
.y92{bottom:218.980438pt;}
.y17{bottom:219.840000pt;}
.y7f{bottom:225.206544pt;}
.yc4{bottom:226.880000pt;}
.y9f{bottom:230.156933pt;}
.yb4{bottom:232.107605pt;}
.y91{bottom:232.900438pt;}
.ybb{bottom:234.240000pt;}
.y39{bottom:235.200000pt;}
.yb0{bottom:236.160000pt;}
.y89{bottom:238.468438pt;}
.y77{bottom:240.570944pt;}
.yba{bottom:244.266667pt;}
.y90{bottom:245.182705pt;}
.y7e{bottom:247.840144pt;}
.ydc{bottom:250.240000pt;}
.ya6{bottom:250.880000pt;}
.y16{bottom:254.080000pt;}
.y8f{bottom:263.524438pt;}
.y88{bottom:264.343238pt;}
.yc3{bottom:264.960000pt;}
.y76{bottom:266.673877pt;}
.y7d{bottom:268.491210pt;}
.yaf{bottom:272.000000pt;}
.y38{bottom:273.600000pt;}
.yac{bottom:276.906667pt;}
.y8e{bottom:278.426971pt;}
.y87{bottom:278.754438pt;}
.y75{bottom:281.212144pt;}
.yc5{bottom:281.782000pt;}
.ya5{bottom:286.720000pt;}
.y15{bottom:288.320000pt;}
.yb1{bottom:289.039067pt;}
.y7c{bottom:289.637877pt;}
.y67{bottom:291.840000pt;}
.yc1{bottom:295.466667pt;}
.ya7{bottom:303.570933pt;}
.yb5{bottom:303.680000pt;}
.y62{bottom:307.840000pt;}
.y37{bottom:311.680000pt;}
.y66{bottom:313.600000pt;}
.y14{bottom:322.560000pt;}
.ydb{bottom:326.080000pt;}
.y61{bottom:329.600000pt;}
.ya8{bottom:330.986667pt;}
.y36{bottom:333.440000pt;}
.y65{bottom:335.680000pt;}
.y60{bottom:351.360000pt;}
.y13{bottom:356.480000pt;}
.y64{bottom:357.440000pt;}
.yda{bottom:363.840000pt;}
.y34{bottom:372.160000pt;}
.ybe{bottom:372.906667pt;}
.y5f{bottom:373.440000pt;}
.y63{bottom:379.200000pt;}
.y35{bottom:380.480000pt;}
.y12{bottom:390.400000pt;}
.y5e{bottom:395.200000pt;}
.yd9{bottom:401.600000pt;}
.y32{bottom:412.160000pt;}
.y4b{bottom:418.560000pt;}
.yb6{bottom:419.306667pt;}
.yb7{bottom:419.626667pt;}
.ya2{bottom:419.627287pt;}
.y33{bottom:420.480000pt;}
.y11{bottom:424.000000pt;}
.y5d{bottom:432.960000pt;}
.yd8{bottom:438.720000pt;}
.y31{bottom:451.840000pt;}
.yb8{bottom:453.546667pt;}
.ya3{bottom:453.547229pt;}
.y5c{bottom:454.720000pt;}
.y4a{bottom:456.320000pt;}
.yd7{bottom:458.880000pt;}
.y10{bottom:469.760000pt;}
.y30{bottom:473.600000pt;}
.yae{bottom:475.626667pt;}
.y5b{bottom:476.480000pt;}
.y49{bottom:478.080000pt;}
.yd6{bottom:494.720000pt;}
.y5a{bottom:498.240000pt;}
.y48{bottom:499.840000pt;}
.y2f{bottom:512.320000pt;}
.y6d{bottom:513.920000pt;}
.yd5{bottom:514.560000pt;}
.yf{bottom:515.520000pt;}
.y59{bottom:520.000000pt;}
.y47{bottom:532.800000pt;}
.yd4{bottom:534.720000pt;}
.y6c{bottom:535.680000pt;}
.y2e{bottom:551.040000pt;}
.yb3{bottom:553.067060pt;}
.yd3{bottom:554.560000pt;}
.y6b{bottom:557.440000pt;}
.y58{bottom:557.760000pt;}
.ye{bottom:561.280000pt;}
.yaa{bottom:563.306667pt;}
.yb9{bottom:568.106667pt;}
.y2d{bottom:572.800000pt;}
.y6a{bottom:579.200000pt;}
.y57{bottom:579.520000pt;}
.yd2{bottom:590.720000pt;}
.y2b{bottom:595.200000pt;}
.yab{bottom:596.266667pt;}
.y2c{bottom:598.400000pt;}
.y69{bottom:600.960000pt;}
.y56{bottom:601.280000pt;}
.yd{bottom:607.040000pt;}
.yd1{bottom:610.560000pt;}
.yc0{bottom:616.426667pt;}
.yc6{bottom:622.826941pt;}
.y55{bottom:623.040000pt;}
.yc7{bottom:624.426938pt;}
.ybc{bottom:624.746667pt;}
.ya0{bottom:624.746938pt;}
.yc{bottom:629.120000pt;}
.y2a{bottom:630.400000pt;}
.y29{bottom:633.600000pt;}
.y72{bottom:633.879200pt;}
.yd0{bottom:646.720000pt;}
.yb{bottom:650.880000pt;}
.y54{bottom:661.120000pt;}
.ycf{bottom:666.560000pt;}
.y28{bottom:671.680000pt;}
.ya{bottom:672.000000pt;}
.y53{bottom:682.880000pt;}
.yce{bottom:702.400000pt;}
.y52{bottom:704.640000pt;}
.y9{bottom:707.840000pt;}
.y27{bottom:710.080000pt;}
.ycd{bottom:722.560000pt;}
.y51{bottom:742.400000pt;}
.y8{bottom:744.000000pt;}
.y26{bottom:748.160000pt;}
.y7{bottom:763.840000pt;}
.y50{bottom:764.160000pt;}
.y25{bottom:769.920000pt;}
.ycc{bottom:778.560000pt;}
.y4f{bottom:785.920000pt;}
.y24{bottom:791.680000pt;}
.ycb{bottom:798.400000pt;}
.y6{bottom:801.920000pt;}
.y46{bottom:806.080000pt;}
.y4e{bottom:807.680000pt;}
.y23{bottom:813.440000pt;}
.y4d{bottom:829.440000pt;}
.y5{bottom:831.040000pt;}
.yca{bottom:834.240000pt;}
.y45{bottom:844.160000pt;}
.y22{bottom:851.200000pt;}
.yc9{bottom:854.400000pt;}
.y4c{bottom:867.200000pt;}
.yc8{bottom:874.240000pt;}
.y4{bottom:874.560000pt;}
.y44{bottom:881.920000pt;}
.y21{bottom:888.960000pt;}
.y9a{bottom:889.600000pt;}
.y3{bottom:897.920000pt;}
.y43{bottom:903.680000pt;}
.y20{bottom:910.720000pt;}
.y99{bottom:925.440000pt;}
.ya4{bottom:926.720000pt;}
.y2{bottom:927.040000pt;}
.y42{bottom:941.440000pt;}
.yc2{bottom:942.720000pt;}
.y1f{bottom:948.800000pt;}
.y41{bottom:963.200000pt;}
.y1{bottom:984.960000pt;}
.h1d{height:16.372650pt;}
.h1c{height:16.380498pt;}
.h15{height:16.940569pt;}
.h14{height:16.940572pt;}
.h1b{height:18.191631pt;}
.h13{height:18.352004pt;}
.h1a{height:20.523861pt;}
.h12{height:20.704827pt;}
.h23{height:24.882812pt;}
.h21{height:25.393186pt;}
.h26{height:25.393229pt;}
.h19{height:27.353359pt;}
.h11{height:27.594913pt;}
.hb{height:31.609375pt;}
.h25{height:32.302028pt;}
.h24{height:32.302083pt;}
.h17{height:32.744910pt;}
.hf{height:33.033613pt;}
.hc{height:35.831250pt;}
.h20{height:39.101496pt;}
.h22{height:39.101562pt;}
.h7{height:42.656250pt;}
.h8{height:42.666667pt;}
.h1e{height:43.375000pt;}
.hd{height:44.000000pt;}
.h1{height:44.437500pt;}
.h9{height:45.156250pt;}
.h6{height:48.968750pt;}
.h5{height:51.692500pt;}
.h4{height:52.522500pt;}
.h3{height:61.221250pt;}
.ha{height:61.768750pt;}
.h18{height:65.489821pt;}
.h2{height:65.618125pt;}
.h10{height:66.067226pt;}
.h16{height:291.230400pt;}
.he{height:293.800800pt;}
.h1f{height:642.666667pt;}
.h0{height:1056.000000pt;}
.w1{width:158.666667pt;}
.w3{width:518.600000pt;}
.w2{width:523.179467pt;}
.w4{width:642.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.394093pt;}
.x13{left:8.885519pt;}
.x2f{left:11.870667pt;}
.x1a{left:16.556587pt;}
.x2c{left:20.789965pt;}
.x2a{left:34.187360pt;}
.x30{left:39.533200pt;}
.x19{left:43.616053pt;}
.x2b{left:45.155787pt;}
.x38{left:46.343733pt;}
.x3b{left:52.096000pt;}
.x29{left:65.957640pt;}
.x18{left:69.884840pt;}
.x28{left:77.242040pt;}
.x3d{left:78.514667pt;}
.x1{left:85.440096pt;}
.x27{left:88.539373pt;}
.x1b{left:92.004738pt;}
.xb{left:94.588544pt;}
.x17{left:96.901373pt;}
.x26{left:101.080573pt;}
.x5{left:104.902688pt;}
.x25{left:113.122307pt;}
.x1c{left:118.614570pt;}
.x3e{left:123.240224pt;}
.x24{left:124.348707pt;}
.x16{left:127.509773pt;}
.x32{left:132.666773pt;}
.x23{left:135.508840pt;}
.x8{left:140.666773pt;}
.x22{left:145.018973pt;}
.x21{left:154.696307pt;}
.x15{left:159.720973pt;}
.x35{left:171.370375pt;}
.x1f{left:231.522840pt;}
.x12{left:233.567240pt;}
.x1d{left:235.361107pt;}
.x10{left:237.439507pt;}
.x2{left:239.048512pt;}
.x1e{left:242.696573pt;}
.x11{left:244.839773pt;}
.x39{left:303.854667pt;}
.x2d{left:310.790667pt;}
.x4{left:312.137056pt;}
.x33{left:330.562105pt;}
.x2e{left:332.650667pt;}
.x31{left:357.414533pt;}
.x3a{left:371.732000pt;}
.x6{left:378.965120pt;}
.x3c{left:396.026667pt;}
.x3{left:411.340160pt;}
.x20{left:478.280173pt;}
.x14{left:482.503907pt;}
.x34{left:491.267165pt;}
.x9{left:570.880000pt;}
.x7{left:578.666667pt;}
.xe{left:603.840000pt;}
.xd{left:608.640000pt;}
.xa{left:622.080000pt;}
.x37{left:625.298667pt;}
.x36{left:728.000000pt;}
.xc{left:737.280000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  