
    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_efc15c733f6ea42372b71c9d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2fbb8495ddbcb65a40ea880e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_319257eeb17ed2b71de246d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960938;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_e4305c17dfcf34275a3380c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.781738;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_c6eef50fac3934545af1b431.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_5879d252b35270292016768c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_fa291f8c22ac35b4e7406104.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_7ba235c59c0b0228875599ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_6b9006f933f90b150593572d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_2e3e66141dbfc0164aae650c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1e1e14f8133eefa5d739a53a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3ab8192304da0d628e0a16a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_ce5e5b79b3935bee08a593b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_13caae84aa02fd20e9f53e4f.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_8c7b7831f6da3a2c00b15ddd.woff2')format("woff");}.fff{font-family:fff;line-height:0.730957;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_8617277991542fda6ec34794.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_82d945f6892f0fe14cdd7c0a.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_2923fdaa7e3efad39c22fde5.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f0b18364714e175f771e1642.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_a561b7662cc30f9a3343e659.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.678223;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_47e3ffea44df0abd33210b26.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_f2c6718511a37b8d45bb02de.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;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_ea8f2404415c2c5857b099e5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.718750;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_ba045bf9891fe249a7b24342.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_b9733dd10493157ae8ec804b.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_2cf797f3373f7d31e29c5f41.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_0e0e59440b6aec37235845d8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.709473;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_bce27905d76ffd28fa85b768.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_7e45d8c524522cf88272d4c7.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_9196b93c874e8e70bdfcdac6.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_2f83aded57275303ea7c9053.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_b5b25b445b5bcf04e2f8424a.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_307366279654c08769bac92b.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938477;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_0eaa2494c3e5e620e189ace8.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_797bbfff448c9e5197b4c58d.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_996f3f960b62eba6974bec34.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938477;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_6a1cf6409d727647d2cd8dbe.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.872559;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_d8f3340b48c7e9900ebe127d.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.872559;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_b6468e885c7cc566ce03d655.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_e5e52fb0ba74f40c0915b490.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_dd7609387bc38a4cc7f74471.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.677734;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_4b8afd29f26d551a0dffca60.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.681641;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_3b996e0117bc524cb9e50efa.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_04ac50b353d2a935eeede07b.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.730957;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;}
.m6{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,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);}
.m5{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v5{vertical-align:-17.110298px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.760000px;}
.v7{vertical-align:23.760000px;}
.v6{vertical-align:30.240000px;}
.v4{vertical-align:33.120000px;}
.v2{vertical-align:38.880000px;}
.ls2d{letter-spacing:-1.043430px;}
.ls4d{letter-spacing:-0.238464px;}
.ls38{letter-spacing:-0.205344px;}
.ls37{letter-spacing:-0.198720px;}
.ls31{letter-spacing:-0.160056px;}
.ls18{letter-spacing:-0.158976px;}
.ls2a{letter-spacing:-0.143208px;}
.ls1b{letter-spacing:-0.125856px;}
.ls1d{letter-spacing:-0.119232px;}
.ls2b{letter-spacing:-0.117936px;}
.ls3f{letter-spacing:-0.099193px;}
.ls30{letter-spacing:-0.084240px;}
.ls1a{letter-spacing:-0.079488px;}
.ls2f{letter-spacing:-0.075816px;}
.ls1c{letter-spacing:-0.039744px;}
.ls1e{letter-spacing:-0.014400px;}
.ls17{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.007920px;}
.lsa{letter-spacing:0.008280px;}
.ls29{letter-spacing:0.008640px;}
.ls9{letter-spacing:0.011520px;}
.ls8{letter-spacing:0.014400px;}
.ls26{letter-spacing:0.028666px;}
.ls25{letter-spacing:0.032262px;}
.lsc{letter-spacing:0.043776px;}
.ls43{letter-spacing:0.047880px;}
.ls28{letter-spacing:0.050400px;}
.ls27{letter-spacing:0.050544px;}
.ls40{letter-spacing:0.050616px;}
.ls2{letter-spacing:0.051120px;}
.ls10{letter-spacing:0.076608px;}
.ls44{letter-spacing:0.080640px;}
.ls3a{letter-spacing:0.113040px;}
.ls19{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.124488px;}
.ls2c{letter-spacing:0.131862px;}
.ls1f{letter-spacing:0.134064px;}
.ls4f{letter-spacing:0.139680px;}
.ls4e{letter-spacing:0.140400px;}
.ls20{letter-spacing:0.143640px;}
.ls6{letter-spacing:0.148320px;}
.ls2e{letter-spacing:0.161385px;}
.ls46{letter-spacing:0.172368px;}
.ls12{letter-spacing:0.241920px;}
.ls3d{letter-spacing:0.279360px;}
.ls3c{letter-spacing:0.280800px;}
.lsd{letter-spacing:0.297360px;}
.ls11{letter-spacing:0.380160px;}
.lsf{letter-spacing:0.407520px;}
.lse{letter-spacing:0.509040px;}
.ls34{letter-spacing:0.529412px;}
.ls32{letter-spacing:1.247294px;}
.ls14{letter-spacing:1.385294px;}
.ls45{letter-spacing:1.399765px;}
.ls35{letter-spacing:1.439294px;}
.ls7{letter-spacing:1.442118px;}
.ls24{letter-spacing:1.620000px;}
.ls16{letter-spacing:1.628512px;}
.ls13{letter-spacing:1.632668px;}
.ls0{letter-spacing:1.633680px;}
.ls1{letter-spacing:1.634400px;}
.ls41{letter-spacing:1.840320px;}
.ls15{letter-spacing:1.880042px;}
.ls5{letter-spacing:1.910824px;}
.ls4{letter-spacing:1.913648px;}
.ls4c{letter-spacing:1.941177px;}
.ls21{letter-spacing:1.953177px;}
.ls3{letter-spacing:2.105648px;}
.ls33{letter-spacing:2.145177px;}
.ls39{letter-spacing:2.148000px;}
.ls42{letter-spacing:2.358000px;}
.ls47{letter-spacing:2.596968px;}
.ls48{letter-spacing:2.597040px;}
.ls49{letter-spacing:2.598480px;}
.ls4b{letter-spacing:3.472560px;}
.ls4a{letter-spacing:4.438080px;}
.ls3b{letter-spacing:7.728480px;}
.ls22{letter-spacing:7.989120px;}
.ls23{letter-spacing:8.509104px;}
.ls3e{letter-spacing:12.354480px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1e{word-spacing:-26.793648px;}
.ws1d{word-spacing:-26.764920px;}
.wsc{word-spacing:-26.745768px;}
.ws7{word-spacing:-26.697888px;}
.ws1c{word-spacing:-26.669160px;}
.wsf{word-spacing:-26.621280px;}
.wse{word-spacing:-23.940000px;}
.ws8{word-spacing:-23.470596px;}
.ws17{word-spacing:-23.418720px;}
.ws16{word-spacing:-23.342904px;}
.ws12{word-spacing:-23.300784px;}
.ws18{word-spacing:-23.258664px;}
.wsa{word-spacing:-20.030400px;}
.wsb{word-spacing:-20.001600px;}
.ws1{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.374976px;}
.ws2{word-spacing:-18.335232px;}
.ws1b{word-spacing:-18.295488px;}
.ws3{word-spacing:-18.288864px;}
.ws9{word-spacing:-18.255744px;}
.ws1a{word-spacing:-18.216000px;}
.ws1f{word-spacing:-18.176256px;}
.ws19{word-spacing:-15.012000px;}
.ws13{word-spacing:-13.088735px;}
.ws14{word-spacing:-12.985539px;}
.ws15{word-spacing:-11.913443px;}
.ws0{word-spacing:-0.179280px;}
.wsd{word-spacing:-0.095760px;}
.ws5{word-spacing:-0.093882px;}
.ws11{word-spacing:-0.084240px;}
.ws6{word-spacing:-0.063360px;}
.ws10{word-spacing:0.000000px;}
._0{margin-left:-4.239360px;}
._8{margin-left:-3.145824px;}
._7{margin-left:-2.046672px;}
._2{margin-left:-1.018368px;}
._1{width:1.854720px;}
._a{width:3.164112px;}
._b{width:4.234752px;}
._4{width:5.533200px;}
._3{width:6.690240px;}
._5{width:8.171280px;}
._6{width:9.234432px;}
._9{width:10.544256px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs15{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs12{font-size:52.941175px;}
.fsd{font-size:53.597693px;}
.fs3{font-size:54.000000px;}
.fs10{font-size:57.331296px;}
.fs9{font-size:58.588236px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.117647px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs11{font-size:70.167590px;}
.fs13{font-size:70.852378px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:74.212184px;}
.fsc{font-size:82.457984px;}
.fs4{font-size:82.588248px;}
.fsf{font-size:84.240000px;}
.fs5{font-size:93.882384px;}
.fs6{font-size:95.760000px;}
.fs14{font-size:105.882336px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.900000px;}
.yd9{bottom:4.260000px;}
.y4a{bottom:5.340000px;}
.y3{bottom:5.460000px;}
.y4c{bottom:5.590596px;}
.y49{bottom:5.618820px;}
.yd8{bottom:5.700000px;}
.yd7{bottom:5.978820px;}
.y45{bottom:12.989120px;}
.y97{bottom:15.498931px;}
.y47{bottom:15.885854px;}
.y2{bottom:52.500000px;}
.y1{bottom:57.960000px;}
.y2c{bottom:75.435536px;}
.y2a{bottom:78.300000px;}
.y42{bottom:83.160000px;}
.y2e{bottom:87.020895px;}
.y72{bottom:88.020000px;}
.y70{bottom:89.460000px;}
.y71{bottom:89.710560px;}
.yd5{bottom:90.720000px;}
.y95{bottom:97.020000px;}
.y29{bottom:97.200000px;}
.y2b{bottom:99.616286px;}
.y41{bottom:102.240000px;}
.yd4{bottom:110.700000px;}
.y6f{bottom:113.040000px;}
.y94{bottom:115.920000px;}
.y28{bottom:118.080000px;}
.y40{bottom:121.140000px;}
.y6e{bottom:127.800000px;}
.yd3{bottom:134.820000px;}
.y93{bottom:136.080000px;}
.y3f{bottom:140.220000px;}
.y27{bottom:143.820000px;}
.y6d{bottom:145.800000px;}
.y2d{bottom:148.524195px;}
.y26{bottom:154.260000px;}
.yd2{bottom:156.960000px;}
.y3e{bottom:159.120000px;}
.y92{bottom:159.660000px;}
.y6b{bottom:161.640000px;}
.y6c{bottom:161.890560px;}
.yd1{bottom:171.720000px;}
.y25{bottom:172.260000px;}
.y58{bottom:173.340000px;}
.y3d{bottom:178.020000px;}
.y91{bottom:178.560000px;}
.y6a{bottom:185.220000px;}
.y57{bottom:188.100000px;}
.yea{bottom:188.640000px;}
.y24{bottom:188.820000px;}
.yd0{bottom:190.800000px;}
.y3c{bottom:197.280000px;}
.y90{bottom:197.460000px;}
.y69{bottom:199.980000px;}
.y46{bottom:203.364899px;}
.y56{bottom:206.460000px;}
.ye9{bottom:207.540000px;}
.ycf{bottom:208.800000px;}
.y44{bottom:211.857020px;}
.y23{bottom:215.820000px;}
.y8f{bottom:217.620000px;}
.y3b{bottom:217.800000px;}
.y68{bottom:218.520000px;}
.y55{bottom:222.660000px;}
.yce{bottom:223.560000px;}
.ye8{bottom:226.620000px;}
.yd6{bottom:231.000000px;}
.y22{bottom:232.020000px;}
.y3a{bottom:233.280000px;}
.y67{bottom:235.800000px;}
.y66{bottom:236.050560px;}
.y54{bottom:239.760000px;}
.y8e{bottom:241.200000px;}
.ycd{bottom:244.080000px;}
.ye7{bottom:245.520000px;}
.y53{bottom:246.780000px;}
.y21{bottom:250.380000px;}
.y8d{bottom:260.100000px;}
.y65{bottom:261.540000px;}
.y64{bottom:261.790560px;}
.ye6{bottom:264.420000px;}
.y20{bottom:266.400000px;}
.ycc{bottom:270.180000px;}
.y8c{bottom:280.080000px;}
.y1f{bottom:281.880000px;}
.ye5{bottom:283.500000px;}
.y63{bottom:287.280000px;}
.y62{bottom:287.530560px;}
.ycb{bottom:289.080000px;}
.y8b{bottom:302.220000px;}
.ye4{bottom:302.400000px;}
.yca{bottom:307.080000px;}
.y61{bottom:313.560000px;}
.y60{bottom:313.810560px;}
.y8a{bottom:318.240000px;}
.ye3{bottom:321.480000px;}
.yc9{bottom:322.200000px;}
.yc8{bottom:323.640000px;}
.yc7{bottom:323.918820px;}
.ye2{bottom:336.960000px;}
.y5f{bottom:340.200000px;}
.y89{bottom:340.740000px;}
.yc6{bottom:350.280000px;}
.y88{bottom:355.500000px;}
.y5e{bottom:356.760000px;}
.y5d{bottom:357.010560px;}
.yc5{bottom:365.040000px;}
.y87{bottom:375.480000px;}
.yc4{bottom:383.040000px;}
.y5c{bottom:383.580000px;}
.yc3{bottom:398.160000px;}
.y5b{bottom:399.060000px;}
.y86{bottom:399.600000px;}
.yc2{bottom:399.878820px;}
.y5a{bottom:417.960000px;}
.y85{bottom:422.640000px;}
.yc1{bottom:426.240000px;}
.y59{bottom:433.440000px;}
.y84{bottom:438.120000px;}
.y96{bottom:438.171900px;}
.yc0{bottom:441.000000px;}
.ybf{bottom:459.000000px;}
.ybe{bottom:474.120000px;}
.ybc{bottom:475.560000px;}
.ybd{bottom:475.838820px;}
.y52{bottom:477.000000px;}
.y51{bottom:496.080000px;}
.ybb{bottom:503.280000px;}
.y50{bottom:514.980000px;}
.yba{bottom:522.180000px;}
.y4f{bottom:530.460000px;}
.y1e{bottom:537.310620px;}
.yb9{bottom:541.080000px;}
.y1d{bottom:556.740000px;}
.yb7{bottom:561.960000px;}
.yb8{bottom:562.238820px;}
.y1c{bottom:580.140000px;}
.yb6{bottom:588.600000px;}
.y1b{bottom:600.840000px;}
.y39{bottom:601.200000px;}
.yb5{bottom:603.720000px;}
.yb4{bottom:605.160000px;}
.yb3{bottom:605.438820px;}
.y43{bottom:613.891950px;}
.y38{bottom:613.980000px;}
.y1a{bottom:622.440000px;}
.y19{bottom:622.690560px;}
.yb2{bottom:632.700000px;}
.y18{bottom:646.560000px;}
.yb1{bottom:651.780000px;}
.y17{bottom:662.580000px;}
.yb0{bottom:670.680000px;}
.y16{bottom:680.580000px;}
.yaf{bottom:689.940000px;}
.yad{bottom:691.380000px;}
.yae{bottom:691.658820px;}
.y15{bottom:695.700000px;}
.y14{bottom:697.140000px;}
.y13{bottom:697.418820px;}
.yac{bottom:718.020000px;}
.y12{bottom:724.680000px;}
.yaa{bottom:734.580000px;}
.yab{bottom:734.858820px;}
.y10{bottom:745.560000px;}
.y11{bottom:745.838820px;}
.ye1{bottom:749.880000px;}
.ya9{bottom:761.760000px;}
.yf{bottom:769.680000px;}
.ye0{bottom:770.040000px;}
.ya8{bottom:777.780000px;}
.ydf{bottom:793.440000px;}
.ya7{bottom:796.680000px;}
.yde{bottom:808.920000px;}
.ya6{bottom:815.760000px;}
.y83{bottom:829.620000px;}
.ya5{bottom:835.920000px;}
.y82{bottom:844.380000px;}
.ya4{bottom:859.320000px;}
.y81{bottom:864.360000px;}
.ya3{bottom:879.480000px;}
.y80{bottom:887.580000px;}
.ya2{bottom:902.880000px;}
.y7f{bottom:905.580000px;}
.y7e{bottom:920.520000px;}
.ya1{bottom:923.040000px;}
.y7d{bottom:941.040000px;}
.ya0{bottom:945.900000px;}
.yd{bottom:950.940000px;}
.ye{bottom:951.190596px;}
.y7c{bottom:959.940000px;}
.y9e{bottom:963.180000px;}
.y9f{bottom:963.430596px;}
.yc{bottom:975.420000px;}
.y7b{bottom:977.940000px;}
.y37{bottom:987.300000px;}
.y9d{bottom:987.660000px;}
.y7a{bottom:993.780000px;}
.ya{bottom:995.580000px;}
.yb{bottom:995.830596px;}
.y36{bottom:1006.380000px;}
.y9c{bottom:1007.820000px;}
.y79{bottom:1017.900000px;}
.y9{bottom:1020.420000px;}
.y35{bottom:1025.280000px;}
.y9b{bottom:1031.400000px;}
.y8{bottom:1040.580000px;}
.y78{bottom:1042.020000px;}
.y33{bottom:1044.739412px;}
.y32{bottom:1045.980000px;}
.y34{bottom:1046.230588px;}
.y9a{bottom:1051.560000px;}
.y7{bottom:1059.120000px;}
.y77{bottom:1064.160000px;}
.y31{bottom:1073.700000px;}
.y99{bottom:1074.960000px;}
.y6{bottom:1078.740000px;}
.y76{bottom:1078.920000px;}
.y48{bottom:1081.500000px;}
.ydd{bottom:1085.400000px;}
.y30{bottom:1094.220000px;}
.y98{bottom:1095.120000px;}
.y5{bottom:1097.640000px;}
.y74{bottom:1099.080000px;}
.y75{bottom:1099.330596px;}
.y4e{bottom:1099.620000px;}
.yda{bottom:1106.820000px;}
.ydb{bottom:1107.070596px;}
.ydc{bottom:1107.128826px;}
.y4d{bottom:1118.520000px;}
.y4{bottom:1118.880000px;}
.y2f{bottom:1119.960000px;}
.y73{bottom:1122.660000px;}
.h11{height:20.155078px;}
.h2{height:22.500000px;}
.h1d{height:30.000000px;}
.hd{height:32.152148px;}
.he{height:35.991211px;}
.hf{height:39.049288px;}
.h15{height:39.830273px;}
.h1a{height:39.863167px;}
.h16{height:41.401655px;}
.h3{height:44.820000px;}
.h6{height:45.403594px;}
.h23{height:47.223386px;}
.h8{height:48.224531px;}
.h1{height:48.656250px;}
.h1c{height:48.788403px;}
.h5{height:50.650313px;}
.h13{height:51.528186px;}
.h7{height:52.417969px;}
.h4{height:54.703125px;}
.h18{height:56.146289px;}
.h14{height:57.253542px;}
.h9{height:57.343989px;}
.h21{height:58.490859px;}
.h17{height:61.329023px;}
.ha{height:65.185913px;}
.h20{height:66.231211px;}
.h1f{height:67.089023px;}
.hb{height:69.715898px;}
.h25{height:70.570991px;}
.h24{height:70.803911px;}
.h1e{height:75.475898px;}
.h10{height:78.660000px;}
.hc{height:84.420000px;}
.h12{height:176.575350px;}
.h1b{height:365.040000px;}
.h19{height:369.966000px;}
.h22{height:388.928100px;}
.h0{height:1188.000000px;}
.w1{width:10.500000px;}
.w2{width:387.944100px;}
.w7{width:400.500000px;}
.w6{width:464.988600px;}
.w3{width:546.450000px;}
.w4{width:670.950000px;}
.w5{width:742.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:1.200000px;}
.x22{left:11.460000px;}
.x16{left:12.749685px;}
.x23{left:40.276254px;}
.x49{left:60.646680px;}
.x1{left:64.799928px;}
.x76{left:74.506710px;}
.x33{left:76.745718px;}
.x53{left:77.784300px;}
.x12{left:81.411264px;}
.x32{left:84.936042px;}
.x3b{left:86.940000px;}
.xb{left:93.616326px;}
.x3c{left:98.319942px;}
.x77{left:101.820000px;}
.x3d{left:105.300000px;}
.x24{left:107.001354px;}
.x5a{left:108.720000px;}
.x60{left:115.020000px;}
.x4e{left:117.792108px;}
.xc{left:120.960000px;}
.x78{left:124.469940px;}
.x25{left:128.280000px;}
.x1f{left:130.931970px;}
.x34{left:134.640000px;}
.x61{left:136.892574px;}
.x1e{left:142.226520px;}
.x35{left:154.726308px;}
.xd{left:164.549934px;}
.x21{left:171.304320px;}
.x79{left:177.462120px;}
.x5b{left:180.360000px;}
.x7e{left:183.496140px;}
.xe{left:185.940000px;}
.x6{left:191.340000px;}
.x20{left:194.266920px;}
.xf{left:199.530360px;}
.x4c{left:201.420000px;}
.x7{left:202.747140px;}
.x3e{left:208.260000px;}
.x62{left:212.940000px;}
.x4d{left:214.473240px;}
.x4f{left:215.479620px;}
.x3f{left:219.633840px;}
.x71{left:223.158780px;}
.x14{left:224.806320px;}
.x54{left:227.160000px;}
.x50{left:230.940000px;}
.x7a{left:233.400000px;}
.x36{left:239.760000px;}
.x55{left:240.850620px;}
.x63{left:242.100000px;}
.x13{left:244.504020px;}
.x40{left:246.420000px;}
.x37{left:251.115660px;}
.x51{left:252.749700px;}
.x56{left:256.320000px;}
.x64{left:263.857860px;}
.x38{left:277.920000px;}
.x72{left:280.440000px;}
.x18{left:291.420000px;}
.x73{left:293.482980px;}
.x7b{left:295.860000px;}
.x19{left:301.758840px;}
.x5c{left:304.200000px;}
.x7c{left:309.450360px;}
.x52{left:315.081720px;}
.x5d{left:317.784240px;}
.x9{left:322.560000px;}
.x41{left:325.994040px;}
.x57{left:327.420000px;}
.x26{left:329.160000px;}
.x15{left:331.821720px;}
.x5e{left:333.180000px;}
.x4a{left:338.040000px;}
.x27{left:340.475880px;}
.xa{left:351.364320px;}
.x5f{left:355.054320px;}
.x39{left:357.475680px;}
.x3a{left:364.500000px;}
.x7d{left:367.500000px;}
.x42{left:374.400000px;}
.x65{left:376.850160px;}
.x28{left:378.480000px;}
.x4b{left:381.497760px;}
.x43{left:386.379360px;}
.x10{left:389.160000px;}
.x29{left:390.340560px;}
.x74{left:406.620000px;}
.x11{left:421.781220px;}
.x75{left:428.440500px;}
.x8{left:452.700000px;}
.x66{left:468.900000px;}
.x30{left:472.679820px;}
.x2a{left:478.380000px;}
.x67{left:482.529780px;}
.x2b{left:489.723600px;}
.x68{left:497.880000px;}
.x69{left:519.799860px;}
.x48{left:529.739820px;}
.x44{left:544.320000px;}
.x4{left:548.640000px;}
.x6a{left:557.100000px;}
.x5{left:559.961460px;}
.x45{left:561.006180px;}
.x2c{left:562.080000px;}
.x6b{left:570.764700px;}
.x2d{left:575.707080px;}
.x6c{left:586.260000px;}
.x1a{left:593.640000px;}
.x6d{left:608.034600px;}
.x1c{left:611.099820px;}
.x1b{left:613.847520px;}
.x7f{left:624.239820px;}
.x6e{left:665.460000px;}
.x6f{left:678.358980px;}
.x70{left:686.340000px;}
.x46{left:706.680000px;}
.x1d{left:735.660000px;}
.x47{left:737.280000px;}
.x58{left:768.600000px;}
.x59{left:810.536220px;}
.x17{left:820.499940px;}
.x2e{left:830.460000px;}
.x2{left:843.000000px;}
.x2f{left:853.739820px;}
.x31{left:873.360000px;}
@media print{
.v5{vertical-align:-15.209154pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.120000pt;}
.v7{vertical-align:21.120000pt;}
.v6{vertical-align:26.880000pt;}
.v4{vertical-align:29.440000pt;}
.v2{vertical-align:34.560000pt;}
.ls2d{letter-spacing:-0.927493pt;}
.ls4d{letter-spacing:-0.211968pt;}
.ls38{letter-spacing:-0.182528pt;}
.ls37{letter-spacing:-0.176640pt;}
.ls31{letter-spacing:-0.142272pt;}
.ls18{letter-spacing:-0.141312pt;}
.ls2a{letter-spacing:-0.127296pt;}
.ls1b{letter-spacing:-0.111872pt;}
.ls1d{letter-spacing:-0.105984pt;}
.ls2b{letter-spacing:-0.104832pt;}
.ls3f{letter-spacing:-0.088172pt;}
.ls30{letter-spacing:-0.074880pt;}
.ls1a{letter-spacing:-0.070656pt;}
.ls2f{letter-spacing:-0.067392pt;}
.ls1c{letter-spacing:-0.035328pt;}
.ls1e{letter-spacing:-0.012800pt;}
.ls17{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.007040pt;}
.lsa{letter-spacing:0.007360pt;}
.ls29{letter-spacing:0.007680pt;}
.ls9{letter-spacing:0.010240pt;}
.ls8{letter-spacing:0.012800pt;}
.ls26{letter-spacing:0.025481pt;}
.ls25{letter-spacing:0.028677pt;}
.lsc{letter-spacing:0.038912pt;}
.ls43{letter-spacing:0.042560pt;}
.ls28{letter-spacing:0.044800pt;}
.ls27{letter-spacing:0.044928pt;}
.ls40{letter-spacing:0.044992pt;}
.ls2{letter-spacing:0.045440pt;}
.ls10{letter-spacing:0.068096pt;}
.ls44{letter-spacing:0.071680pt;}
.ls3a{letter-spacing:0.100480pt;}
.ls19{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.110656pt;}
.ls2c{letter-spacing:0.117211pt;}
.ls1f{letter-spacing:0.119168pt;}
.ls4f{letter-spacing:0.124160pt;}
.ls4e{letter-spacing:0.124800pt;}
.ls20{letter-spacing:0.127680pt;}
.ls6{letter-spacing:0.131840pt;}
.ls2e{letter-spacing:0.143454pt;}
.ls46{letter-spacing:0.153216pt;}
.ls12{letter-spacing:0.215040pt;}
.ls3d{letter-spacing:0.248320pt;}
.ls3c{letter-spacing:0.249600pt;}
.lsd{letter-spacing:0.264320pt;}
.ls11{letter-spacing:0.337920pt;}
.lsf{letter-spacing:0.362240pt;}
.lse{letter-spacing:0.452480pt;}
.ls34{letter-spacing:0.470588pt;}
.ls32{letter-spacing:1.108706pt;}
.ls14{letter-spacing:1.231373pt;}
.ls45{letter-spacing:1.244236pt;}
.ls35{letter-spacing:1.279373pt;}
.ls7{letter-spacing:1.281883pt;}
.ls24{letter-spacing:1.440000pt;}
.ls16{letter-spacing:1.447566pt;}
.ls13{letter-spacing:1.451261pt;}
.ls0{letter-spacing:1.452160pt;}
.ls1{letter-spacing:1.452800pt;}
.ls41{letter-spacing:1.635840pt;}
.ls15{letter-spacing:1.671148pt;}
.ls5{letter-spacing:1.698510pt;}
.ls4{letter-spacing:1.701020pt;}
.ls4c{letter-spacing:1.725491pt;}
.ls21{letter-spacing:1.736157pt;}
.ls3{letter-spacing:1.871687pt;}
.ls33{letter-spacing:1.906824pt;}
.ls39{letter-spacing:1.909334pt;}
.ls42{letter-spacing:2.096000pt;}
.ls47{letter-spacing:2.308416pt;}
.ls48{letter-spacing:2.308480pt;}
.ls49{letter-spacing:2.309760pt;}
.ls4b{letter-spacing:3.086720pt;}
.ls4a{letter-spacing:3.944960pt;}
.ls3b{letter-spacing:6.869760pt;}
.ls22{letter-spacing:7.101440pt;}
.ls23{letter-spacing:7.563648pt;}
.ls3e{letter-spacing:10.981760pt;}
.ws1e{word-spacing:-23.816576pt;}
.ws1d{word-spacing:-23.791040pt;}
.wsc{word-spacing:-23.774016pt;}
.ws7{word-spacing:-23.731456pt;}
.ws1c{word-spacing:-23.705920pt;}
.wsf{word-spacing:-23.663360pt;}
.wse{word-spacing:-21.280000pt;}
.ws8{word-spacing:-20.862752pt;}
.ws17{word-spacing:-20.816640pt;}
.ws16{word-spacing:-20.749248pt;}
.ws12{word-spacing:-20.711808pt;}
.ws18{word-spacing:-20.674368pt;}
.wsa{word-spacing:-17.804800pt;}
.wsb{word-spacing:-17.779200pt;}
.ws1{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.333312pt;}
.ws2{word-spacing:-16.297984pt;}
.ws1b{word-spacing:-16.262656pt;}
.ws3{word-spacing:-16.256768pt;}
.ws9{word-spacing:-16.227328pt;}
.ws1a{word-spacing:-16.192000pt;}
.ws1f{word-spacing:-16.156672pt;}
.ws19{word-spacing:-13.344000pt;}
.ws13{word-spacing:-11.634431pt;}
.ws14{word-spacing:-11.542701pt;}
.ws15{word-spacing:-10.589727pt;}
.ws0{word-spacing:-0.159360pt;}
.wsd{word-spacing:-0.085120pt;}
.ws5{word-spacing:-0.083451pt;}
.ws11{word-spacing:-0.074880pt;}
.ws6{word-spacing:-0.056320pt;}
.ws10{word-spacing:0.000000pt;}
._0{margin-left:-3.768320pt;}
._8{margin-left:-2.796288pt;}
._7{margin-left:-1.819264pt;}
._2{margin-left:-0.905216pt;}
._1{width:1.648640pt;}
._a{width:2.812544pt;}
._b{width:3.764224pt;}
._4{width:4.918400pt;}
._3{width:5.946880pt;}
._5{width:7.263360pt;}
._6{width:8.208384pt;}
._9{width:9.372672pt;}
.fsa{font-size:26.880000pt;}
.fs15{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs12{font-size:47.058822pt;}
.fsd{font-size:47.642394pt;}
.fs3{font-size:48.000000pt;}
.fs10{font-size:50.961152pt;}
.fs9{font-size:52.078432pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.215686pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs11{font-size:62.371191pt;}
.fs13{font-size:62.979891pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:65.966386pt;}
.fsc{font-size:73.295986pt;}
.fs4{font-size:73.411776pt;}
.fsf{font-size:74.880000pt;}
.fs5{font-size:83.451008pt;}
.fs6{font-size:85.120000pt;}
.fs14{font-size:94.117632pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:3.466667pt;}
.yd9{bottom:3.786667pt;}
.y4a{bottom:4.746667pt;}
.y3{bottom:4.853333pt;}
.y4c{bottom:4.969419pt;}
.y49{bottom:4.994507pt;}
.yd8{bottom:5.066667pt;}
.yd7{bottom:5.314507pt;}
.y45{bottom:11.545884pt;}
.y97{bottom:13.776828pt;}
.y47{bottom:14.120759pt;}
.y2{bottom:46.666667pt;}
.y1{bottom:51.520000pt;}
.y2c{bottom:67.053810pt;}
.y2a{bottom:69.600000pt;}
.y42{bottom:73.920000pt;}
.y2e{bottom:77.351907pt;}
.y72{bottom:78.240000pt;}
.y70{bottom:79.520000pt;}
.y71{bottom:79.742720pt;}
.yd5{bottom:80.640000pt;}
.y95{bottom:86.240000pt;}
.y29{bottom:86.400000pt;}
.y2b{bottom:88.547810pt;}
.y41{bottom:90.880000pt;}
.yd4{bottom:98.400000pt;}
.y6f{bottom:100.480000pt;}
.y94{bottom:103.040000pt;}
.y28{bottom:104.960000pt;}
.y40{bottom:107.680000pt;}
.y6e{bottom:113.600000pt;}
.yd3{bottom:119.840000pt;}
.y93{bottom:120.960000pt;}
.y3f{bottom:124.640000pt;}
.y27{bottom:127.840000pt;}
.y6d{bottom:129.600000pt;}
.y2d{bottom:132.021507pt;}
.y26{bottom:137.120000pt;}
.yd2{bottom:139.520000pt;}
.y3e{bottom:141.440000pt;}
.y92{bottom:141.920000pt;}
.y6b{bottom:143.680000pt;}
.y6c{bottom:143.902720pt;}
.yd1{bottom:152.640000pt;}
.y25{bottom:153.120000pt;}
.y58{bottom:154.080000pt;}
.y3d{bottom:158.240000pt;}
.y91{bottom:158.720000pt;}
.y6a{bottom:164.640000pt;}
.y57{bottom:167.200000pt;}
.yea{bottom:167.680000pt;}
.y24{bottom:167.840000pt;}
.yd0{bottom:169.600000pt;}
.y3c{bottom:175.360000pt;}
.y90{bottom:175.520000pt;}
.y69{bottom:177.760000pt;}
.y46{bottom:180.768799pt;}
.y56{bottom:183.520000pt;}
.ye9{bottom:184.480000pt;}
.ycf{bottom:185.600000pt;}
.y44{bottom:188.317351pt;}
.y23{bottom:191.840000pt;}
.y8f{bottom:193.440000pt;}
.y3b{bottom:193.600000pt;}
.y68{bottom:194.240000pt;}
.y55{bottom:197.920000pt;}
.yce{bottom:198.720000pt;}
.ye8{bottom:201.440000pt;}
.yd6{bottom:205.333333pt;}
.y22{bottom:206.240000pt;}
.y3a{bottom:207.360000pt;}
.y67{bottom:209.600000pt;}
.y66{bottom:209.822720pt;}
.y54{bottom:213.120000pt;}
.y8e{bottom:214.400000pt;}
.ycd{bottom:216.960000pt;}
.ye7{bottom:218.240000pt;}
.y53{bottom:219.360000pt;}
.y21{bottom:222.560000pt;}
.y8d{bottom:231.200000pt;}
.y65{bottom:232.480000pt;}
.y64{bottom:232.702720pt;}
.ye6{bottom:235.040000pt;}
.y20{bottom:236.800000pt;}
.ycc{bottom:240.160000pt;}
.y8c{bottom:248.960000pt;}
.y1f{bottom:250.560000pt;}
.ye5{bottom:252.000000pt;}
.y63{bottom:255.360000pt;}
.y62{bottom:255.582720pt;}
.ycb{bottom:256.960000pt;}
.y8b{bottom:268.640000pt;}
.ye4{bottom:268.800000pt;}
.yca{bottom:272.960000pt;}
.y61{bottom:278.720000pt;}
.y60{bottom:278.942720pt;}
.y8a{bottom:282.880000pt;}
.ye3{bottom:285.760000pt;}
.yc9{bottom:286.400000pt;}
.yc8{bottom:287.680000pt;}
.yc7{bottom:287.927840pt;}
.ye2{bottom:299.520000pt;}
.y5f{bottom:302.400000pt;}
.y89{bottom:302.880000pt;}
.yc6{bottom:311.360000pt;}
.y88{bottom:316.000000pt;}
.y5e{bottom:317.120000pt;}
.y5d{bottom:317.342720pt;}
.yc5{bottom:324.480000pt;}
.y87{bottom:333.760000pt;}
.yc4{bottom:340.480000pt;}
.y5c{bottom:340.960000pt;}
.yc3{bottom:353.920000pt;}
.y5b{bottom:354.720000pt;}
.y86{bottom:355.200000pt;}
.yc2{bottom:355.447840pt;}
.y5a{bottom:371.520000pt;}
.y85{bottom:375.680000pt;}
.yc1{bottom:378.880000pt;}
.y59{bottom:385.280000pt;}
.y84{bottom:389.440000pt;}
.y96{bottom:389.486133pt;}
.yc0{bottom:392.000000pt;}
.ybf{bottom:408.000000pt;}
.ybe{bottom:421.440000pt;}
.ybc{bottom:422.720000pt;}
.ybd{bottom:422.967840pt;}
.y52{bottom:424.000000pt;}
.y51{bottom:440.960000pt;}
.ybb{bottom:447.360000pt;}
.y50{bottom:457.760000pt;}
.yba{bottom:464.160000pt;}
.y4f{bottom:471.520000pt;}
.y1e{bottom:477.609440pt;}
.yb9{bottom:480.960000pt;}
.y1d{bottom:494.880000pt;}
.yb7{bottom:499.520000pt;}
.yb8{bottom:499.767840pt;}
.y1c{bottom:515.680000pt;}
.yb6{bottom:523.200000pt;}
.y1b{bottom:534.080000pt;}
.y39{bottom:534.400000pt;}
.yb5{bottom:536.640000pt;}
.yb4{bottom:537.920000pt;}
.yb3{bottom:538.167840pt;}
.y43{bottom:545.681733pt;}
.y38{bottom:545.760000pt;}
.y1a{bottom:553.280000pt;}
.y19{bottom:553.502720pt;}
.yb2{bottom:562.400000pt;}
.y18{bottom:574.720000pt;}
.yb1{bottom:579.360000pt;}
.y17{bottom:588.960000pt;}
.yb0{bottom:596.160000pt;}
.y16{bottom:604.960000pt;}
.yaf{bottom:613.280000pt;}
.yad{bottom:614.560000pt;}
.yae{bottom:614.807840pt;}
.y15{bottom:618.400000pt;}
.y14{bottom:619.680000pt;}
.y13{bottom:619.927840pt;}
.yac{bottom:638.240000pt;}
.y12{bottom:644.160000pt;}
.yaa{bottom:652.960000pt;}
.yab{bottom:653.207840pt;}
.y10{bottom:662.720000pt;}
.y11{bottom:662.967840pt;}
.ye1{bottom:666.560000pt;}
.ya9{bottom:677.120000pt;}
.yf{bottom:684.160000pt;}
.ye0{bottom:684.480000pt;}
.ya8{bottom:691.360000pt;}
.ydf{bottom:705.280000pt;}
.ya7{bottom:708.160000pt;}
.yde{bottom:719.040000pt;}
.ya6{bottom:725.120000pt;}
.y83{bottom:737.440000pt;}
.ya5{bottom:743.040000pt;}
.y82{bottom:750.560000pt;}
.ya4{bottom:763.840000pt;}
.y81{bottom:768.320000pt;}
.ya3{bottom:781.760000pt;}
.y80{bottom:788.960000pt;}
.ya2{bottom:802.560000pt;}
.y7f{bottom:804.960000pt;}
.y7e{bottom:818.240000pt;}
.ya1{bottom:820.480000pt;}
.y7d{bottom:836.480000pt;}
.ya0{bottom:840.800000pt;}
.yd{bottom:845.280000pt;}
.ye{bottom:845.502752pt;}
.y7c{bottom:853.280000pt;}
.y9e{bottom:856.160000pt;}
.y9f{bottom:856.382752pt;}
.yc{bottom:867.040000pt;}
.y7b{bottom:869.280000pt;}
.y37{bottom:877.600000pt;}
.y9d{bottom:877.920000pt;}
.y7a{bottom:883.360000pt;}
.ya{bottom:884.960000pt;}
.yb{bottom:885.182752pt;}
.y36{bottom:894.560000pt;}
.y9c{bottom:895.840000pt;}
.y79{bottom:904.800000pt;}
.y9{bottom:907.040000pt;}
.y35{bottom:911.360000pt;}
.y9b{bottom:916.800000pt;}
.y8{bottom:924.960000pt;}
.y78{bottom:926.240000pt;}
.y33{bottom:928.657255pt;}
.y32{bottom:929.760000pt;}
.y34{bottom:929.982745pt;}
.y9a{bottom:934.720000pt;}
.y7{bottom:941.440000pt;}
.y77{bottom:945.920000pt;}
.y31{bottom:954.400000pt;}
.y99{bottom:955.520000pt;}
.y6{bottom:958.880000pt;}
.y76{bottom:959.040000pt;}
.y48{bottom:961.333333pt;}
.ydd{bottom:964.800000pt;}
.y30{bottom:972.640000pt;}
.y98{bottom:973.440000pt;}
.y5{bottom:975.680000pt;}
.y74{bottom:976.960000pt;}
.y75{bottom:977.182752pt;}
.y4e{bottom:977.440000pt;}
.yda{bottom:983.840000pt;}
.ydb{bottom:984.062752pt;}
.ydc{bottom:984.114512pt;}
.y4d{bottom:994.240000pt;}
.y4{bottom:994.560000pt;}
.y2f{bottom:995.520000pt;}
.y73{bottom:997.920000pt;}
.h11{height:17.915625pt;}
.h2{height:20.000000pt;}
.h1d{height:26.666667pt;}
.hd{height:28.579688pt;}
.he{height:31.992188pt;}
.hf{height:34.710478pt;}
.h15{height:35.404688pt;}
.h1a{height:35.433926pt;}
.h16{height:36.801471pt;}
.h3{height:39.840000pt;}
.h6{height:40.358750pt;}
.h23{height:41.976344pt;}
.h8{height:42.866250pt;}
.h1{height:43.250000pt;}
.h1c{height:43.367469pt;}
.h5{height:45.022500pt;}
.h13{height:45.802832pt;}
.h7{height:46.593750pt;}
.h4{height:48.625000pt;}
.h18{height:49.907812pt;}
.h14{height:50.892037pt;}
.h9{height:50.972434pt;}
.h21{height:51.991875pt;}
.h17{height:54.514688pt;}
.ha{height:57.943034pt;}
.h20{height:58.872188pt;}
.h1f{height:59.634688pt;}
.hb{height:61.969687pt;}
.h25{height:62.729769pt;}
.h24{height:62.936809pt;}
.h1e{height:67.089688pt;}
.h10{height:69.920000pt;}
.hc{height:75.040000pt;}
.h12{height:156.955867pt;}
.h1b{height:324.480000pt;}
.h19{height:328.858667pt;}
.h22{height:345.713867pt;}
.h0{height:1056.000000pt;}
.w1{width:9.333333pt;}
.w2{width:344.839200pt;}
.w7{width:356.000000pt;}
.w6{width:413.323200pt;}
.w3{width:485.733333pt;}
.w4{width:596.400000pt;}
.w5{width:660.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.066667pt;}
.x22{left:10.186667pt;}
.x16{left:11.333053pt;}
.x23{left:35.801115pt;}
.x49{left:53.908160pt;}
.x1{left:57.599936pt;}
.x76{left:66.228187pt;}
.x33{left:68.218416pt;}
.x53{left:69.141600pt;}
.x12{left:72.365568pt;}
.x32{left:75.498704pt;}
.x3b{left:77.280000pt;}
.xb{left:83.214512pt;}
.x3c{left:87.395504pt;}
.x77{left:90.506667pt;}
.x3d{left:93.600000pt;}
.x24{left:95.112315pt;}
.x5a{left:96.640000pt;}
.x60{left:102.240000pt;}
.x4e{left:104.704096pt;}
.xc{left:107.520000pt;}
.x78{left:110.639947pt;}
.x25{left:114.026667pt;}
.x1f{left:116.383973pt;}
.x34{left:119.680000pt;}
.x61{left:121.682288pt;}
.x1e{left:126.423573pt;}
.x35{left:137.534496pt;}
.xd{left:146.266608pt;}
.x21{left:152.270507pt;}
.x79{left:157.744107pt;}
.x5b{left:160.320000pt;}
.x7e{left:163.107680pt;}
.xe{left:165.280000pt;}
.x6{left:170.080000pt;}
.x20{left:172.681707pt;}
.xf{left:177.360320pt;}
.x4c{left:179.040000pt;}
.x7{left:180.219680pt;}
.x3e{left:185.120000pt;}
.x62{left:189.280000pt;}
.x4d{left:190.642880pt;}
.x4f{left:191.537440pt;}
.x3f{left:195.230080pt;}
.x71{left:198.363360pt;}
.x14{left:199.827840pt;}
.x54{left:201.920000pt;}
.x50{left:205.280000pt;}
.x7a{left:207.466667pt;}
.x36{left:213.120000pt;}
.x55{left:214.089440pt;}
.x63{left:215.200000pt;}
.x13{left:217.336907pt;}
.x40{left:219.040000pt;}
.x37{left:223.213920pt;}
.x51{left:224.666400pt;}
.x56{left:227.840000pt;}
.x64{left:234.540320pt;}
.x38{left:247.040000pt;}
.x72{left:249.280000pt;}
.x18{left:259.040000pt;}
.x73{left:260.873760pt;}
.x7b{left:262.986667pt;}
.x19{left:268.230080pt;}
.x5c{left:270.400000pt;}
.x7c{left:275.066987pt;}
.x52{left:280.072640pt;}
.x5d{left:282.474880pt;}
.x9{left:286.720000pt;}
.x41{left:289.772480pt;}
.x57{left:291.040000pt;}
.x26{left:292.586667pt;}
.x15{left:294.952640pt;}
.x5e{left:296.160000pt;}
.x4a{left:300.480000pt;}
.x27{left:302.645227pt;}
.xa{left:312.323840pt;}
.x5f{left:315.603840pt;}
.x39{left:317.756160pt;}
.x3a{left:324.000000pt;}
.x7d{left:326.666667pt;}
.x42{left:332.800000pt;}
.x65{left:334.977920pt;}
.x28{left:336.426667pt;}
.x4b{left:339.109120pt;}
.x43{left:343.448320pt;}
.x10{left:345.920000pt;}
.x29{left:346.969387pt;}
.x74{left:361.440000pt;}
.x11{left:374.916640pt;}
.x75{left:380.836000pt;}
.x8{left:402.400000pt;}
.x66{left:416.800000pt;}
.x30{left:420.159840pt;}
.x2a{left:425.226667pt;}
.x67{left:428.915360pt;}
.x2b{left:435.309867pt;}
.x68{left:442.560000pt;}
.x69{left:462.044320pt;}
.x48{left:470.879840pt;}
.x44{left:483.840000pt;}
.x4{left:487.680000pt;}
.x6a{left:495.200000pt;}
.x5{left:497.743520pt;}
.x45{left:498.672160pt;}
.x2c{left:499.626667pt;}
.x6b{left:507.346400pt;}
.x2d{left:511.739627pt;}
.x6c{left:521.120000pt;}
.x1a{left:527.680000pt;}
.x6d{left:540.475200pt;}
.x1c{left:543.199840pt;}
.x1b{left:545.642240pt;}
.x7f{left:554.879840pt;}
.x6e{left:591.520000pt;}
.x6f{left:602.985760pt;}
.x70{left:610.080000pt;}
.x46{left:628.160000pt;}
.x1d{left:653.920000pt;}
.x47{left:655.360000pt;}
.x58{left:683.200000pt;}
.x59{left:720.476640pt;}
.x17{left:729.333280pt;}
.x2e{left:738.186667pt;}
.x2{left:749.333333pt;}
.x2f{left:758.879840pt;}
.x31{left:776.320000pt;}
}




    .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; }
  