
    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_e30e550f55e9b4115d6417ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.115000;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_7a7d492ddae10c13ad874b14.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.048000;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_d94e09c9effbff8e8aaddd16.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.128418;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_d894a94cf2768b3c90432b10.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.724000;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_c26fa9137417fb03ea458f62.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.077000;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_cc76c8415ee6ccc67816d84c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128906;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_8ab54ff07c0a08b30276384f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_00fe5e0915cd26d32781d18c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.724000;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_9302ad0946e87eb23472dbec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.915000;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_8131e9910001d72d0e509e3a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.928223;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_8421bae1e915e57c64b2f551.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8b514ac77a2b4bc7c6b1a775.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.931152;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_3888c203ce99e424e5e5a1b3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.121582;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_818615e4f3fa04fd8d50312a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.724000;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_ad70384ef4efaad437ad3396.woff2')format("woff");}.fff{font-family:fff;line-height:0.973633;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_ff6cb8fe2db9f4137dfc6786.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.931152;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_84333acd0c1a02d5f36ea1fb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.724000;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_e79f7436f699f96b9f14ad7d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.121582;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_d83cd38b80004871bcc2c720.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.972656;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_c3d9392d52da2760a896f1e5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.724000;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_19c3553fcf4c183f178a5ba1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.973633;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_b58c208032fb837dd719d95e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.724000;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_3da09e3ae2e91c850e544a43.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.126953;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_bc9f2ebc0a7916aa0c026b12.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.724000;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_862c833d98f92b177bb391ab.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.972656;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_35f09b4816c474bb1d058141.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.126953;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_baf974119452e19ffef6fff8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.724000;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_1ef82cc799ee8ffa80d6bec3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.973633;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_94b5a38184b3f684add2a720.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.724000;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_db4d48226c00b3d34160699b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.126953;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_6d7338fa6be145925bb5d74e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.724000;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_0f8675fdd5a8399b415ada30.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.126953;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_28dfd8c2b48742fca0676526.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.724000;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_021d9dfdaab21595fd36534c.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.126953;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_22f9aad0bcf7249e6f479f3c.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.724000;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_dfa60ea994fcaef06b31f4c9.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.973145;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_c2e280f4635b740ed1589da6.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.972656;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_3fdb9b7e6031fa777b5ccce9.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.724000;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_b94e09669d038e9cd8a351f0.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.973145;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_d11628a7ce446c69f28d5b42.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.724000;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_e8b1b6cda4b5ecb114201289.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.121582;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_b33315220d51e8b494ad2b8d.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.711000;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_81b50a6bd9db4753cec91ffa.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.121582;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_b082ea0b2046c2b188d1c642.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.723000;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_f6f7ddeb7772e25bd144935f.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.126953;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_11b727c131c11354049de7dd.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.972656;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_f5a2a058926c518af482eb9f.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.711000;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_883890f9948822aadab8773b.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.121582;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_d2e1baed05c97342a4a0282d.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.716000;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_3dc421d183a61b2a1b1429d4.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.973145;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_c1a7cc3a72d9986cde632678.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.711000;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_9d7ad82e8ac8330704332f91.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.126953;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_50ff1f41e7c862f0e40864b0.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.724000;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_0b3560fd10d7feceee96d425.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.973633;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_9854104054b33a5dea64bd41.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.972656;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_b2465e3ce92f83b557a6d915.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.711000;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_039dde6ef3ffea6674128b3d.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.126953;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:ff3a;src:url('chunks/assets/font_3701e30119e5842f5fe50a09.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.724000;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:ff3b;src:url('chunks/assets/font_c28a8aa3216638f8c1637b2e.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.121582;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:ff3c;src:url('chunks/assets/font_6a0266237a9d4419025f6042.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.724000;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:ff3d;src:url('chunks/assets/font_d544dfaa03bc5023e5d8127b.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.126953;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:ff3e;src:url('chunks/assets/font_34fe4ff48b68d60d4c252f7d.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.724000;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:ff3f;src:url('chunks/assets/font_8e2f18d7e55c3c121a08be5b.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.126953;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:ff40;src:url('chunks/assets/font_313eb91013b137d4bc363f20.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.723000;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:ff41;src:url('chunks/assets/font_47b017570fc8637287488591.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.973633;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:ff42;src:url('chunks/assets/font_b36b7147f0f397e5db10f8e1.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.723000;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:ff43;src:url('chunks/assets/font_e71b63d55ef31b8e3d064208.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.126953;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:ff44;src:url('chunks/assets/font_87a09083803b466e517e407d.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.972656;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:ff45;src:url('chunks/assets/font_0270d355a5f1335587f8f437.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.723000;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:ff46;src:url('chunks/assets/font_7db23a1b8992560a595eb415.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.126953;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:ff47;src:url('chunks/assets/font_4b833d23c88e050a84116af1.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.723000;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:ff48;src:url('chunks/assets/font_dd2fc76ae3849fe3ba59cf59.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.121582;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:ff49;src:url('chunks/assets/font_374851fd66d1f5958c1440fe.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.966797;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:ff4a;src:url('chunks/assets/font_12a5dab73d1b0077258e6efd.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.723000;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:ff4b;src:url('chunks/assets/font_8575edd89e4fdd776b7788d3.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.121582;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:ff4c;src:url('chunks/assets/font_9824e78e5c9ffacbc8c68493.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.724000;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:ff4d;src:url('chunks/assets/font_ab7a41ecbfbfbd5650a138ad.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.126953;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:ff4e;src:url('chunks/assets/font_22769e90f7cbe4bb9533ae93.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.723000;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:ff4f;src:url('chunks/assets/font_8a5426729bd10f14be926efb.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.126953;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:ff50;src:url('chunks/assets/font_8dc7760c04f7ff8694568ae1.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.724000;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:ff51;src:url('chunks/assets/font_fc7046122e57d087671ed150.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.121582;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:ff52;src:url('chunks/assets/font_406432c5864b40a6b6472232.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.724000;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:ff53;src:url('chunks/assets/font_667b1d38a8e3293be0c3f5f2.woff2')format("woff");}.ff53{font-family:ff53;line-height:1.126953;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:ff54;src:url('chunks/assets/font_8a6c1d89614b5ef9468f0fa7.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.857000;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:ff55;src:url('chunks/assets/font_a08f69af8c22ea319e2d7b11.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.724000;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:ff56;src:url('chunks/assets/font_e0cc067fe6580119d68c9dd4.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.126953;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:ff57;src:url('chunks/assets/font_574f38c517fe1b76596319c0.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.711000;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:ff58;src:url('chunks/assets/font_6dafb13e07caaba72f99e7f7.woff2')format("woff");}.ff58{font-family:ff58;line-height:1.126953;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:ff59;src:url('chunks/assets/font_e5c68c53c657e57a7f4f854a.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.723000;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:ff5a;src:url('chunks/assets/font_5884a8e3d751158f42e0eeb7.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:1.126953;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.978880px;}
.v2{vertical-align:34.500000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-18.084000px;}
.ws2{word-spacing:-16.002000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-15.715782px;}
._b{margin-left:-13.277274px;}
._0{margin-left:-11.759472px;}
._a{margin-left:-9.250614px;}
._1a{margin-left:-6.287148px;}
._d{margin-left:-5.190671px;}
._1{margin-left:-3.247121px;}
._11{margin-left:-2.136988px;}
._10{margin-left:-1.107166px;}
._14{width:1.015812px;}
._6{width:2.020629px;}
._8{width:3.538333px;}
._9{width:4.790982px;}
._e{width:6.281068px;}
._f{width:7.893585px;}
._2{width:9.148463px;}
._c{width:10.797798px;}
._3{width:12.448305px;}
._5{width:13.700676px;}
._4{width:14.761704px;}
._13{width:16.947000px;}
._19{width:19.000611px;}
._16{width:20.361285px;}
._15{width:21.576366px;}
._1c{width:22.996638px;}
._12{width:24.803667px;}
._1d{width:26.296641px;}
._18{width:27.487560px;}
._17{width:28.904274px;}
._20{width:64.776000px;}
._1b{width:86.832000px;}
._21{width:95.780400px;}
._1f{width:97.160400px;}
._1e{width:266.196000px;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.729000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:144.000000px;}
.fs0{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:36.189300px;}
.yf3{bottom:80.787300px;}
.y112{bottom:81.701850px;}
.y1cc{bottom:81.962100px;}
.y12b{bottom:82.204050px;}
.ycb{bottom:84.506100px;}
.y1a4{bottom:86.462100px;}
.y14e{bottom:87.212100px;}
.y1e7{bottom:89.948100px;}
.y5e{bottom:90.521400px;}
.y9f{bottom:93.009900px;}
.y181{bottom:94.458300px;}
.y1ce{bottom:94.458450px;}
.yb5{bottom:97.262100px;}
.y2c{bottom:98.648550px;}
.y184{bottom:98.709900px;}
.y7f{bottom:100.803900px;}
.y12a{bottom:102.454050px;}
.y111{bottom:102.701850px;}
.y173{bottom:102.962100px;}
.yca{bottom:105.056100px;}
.y14d{bottom:107.462100px;}
.y1e6{bottom:110.948100px;}
.y5d{bottom:111.071400px;}
.y9e{bottom:113.559900px;}
.y180{bottom:115.458300px;}
.y1a3{bottom:115.458450px;}
.y250{bottom:116.403300px;}
.yf2{bottom:116.702670px;}
.y1be{bottom:116.758050px;}
.yb4{bottom:117.812100px;}
.y183{bottom:119.709900px;}
.y2b{bottom:120.150150px;}
.y7e{bottom:121.353900px;}
.y129{bottom:122.704050px;}
.y14{bottom:122.921550px;}
.y20d{bottom:122.945850px;}
.y110{bottom:123.701850px;}
.y172{bottom:123.962100px;}
.yc9{bottom:125.606100px;}
.y14c{bottom:127.712100px;}
.y1cb{bottom:128.214300px;}
.y235{bottom:130.777500px;}
.y5c{bottom:131.621400px;}
.y1e5{bottom:131.948100px;}
.y24f{bottom:132.903300px;}
.y9d{bottom:134.109900px;}
.y17f{bottom:136.458300px;}
.y1a2{bottom:136.458450px;}
.y1bd{bottom:136.633500px;}
.yf1{bottom:137.702670px;}
.yb3{bottom:138.362100px;}
.y20c{bottom:139.445850px;}
.y182{bottom:140.709900px;}
.y7d{bottom:141.903900px;}
.y128{bottom:142.954050px;}
.y2a{bottom:143.377350px;}
.y10f{bottom:144.701850px;}
.y171{bottom:144.962100px;}
.yc8{bottom:146.156100px;}
.y1b9{bottom:146.383050px;}
.y234{bottom:147.277500px;}
.y14b{bottom:147.962100px;}
.y1ca{bottom:149.214300px;}
.y24e{bottom:149.403300px;}
.y5b{bottom:152.171400px;}
.y1e4{bottom:152.948100px;}
.y1bc{bottom:153.883500px;}
.y9c{bottom:154.659900px;}
.y20b{bottom:155.945850px;}
.y1a1{bottom:157.458450px;}
.yf0{bottom:158.702670px;}
.yb2{bottom:158.912100px;}
.y17e{bottom:161.709900px;}
.y7c{bottom:162.453900px;}
.y127{bottom:163.204050px;}
.y233{bottom:163.777500px;}
.y13{bottom:164.921550px;}
.y10e{bottom:165.701850px;}
.y24d{bottom:165.903300px;}
.y170{bottom:165.962100px;}
.y29{bottom:166.604550px;}
.yc7{bottom:166.706100px;}
.y14a{bottom:168.212100px;}
.y1c9{bottom:170.214300px;}
.y1bb{bottom:171.133500px;}
.y5a{bottom:172.721400px;}
.y1e3{bottom:173.948100px;}
.y20a{bottom:174.572250px;}
.y9b{bottom:175.209900px;}
.y1a0{bottom:178.458450px;}
.yb1{bottom:179.462100px;}
.yef{bottom:179.702670px;}
.y232{bottom:182.403300px;}
.y17d{bottom:182.709900px;}
.y7b{bottom:183.003900px;}
.y126{bottom:183.454050px;}
.y24c{bottom:184.529100px;}
.y28{bottom:185.579550px;}
.y10d{bottom:186.701850px;}
.y16f{bottom:186.962100px;}
.y1ba{bottom:188.383500px;}
.y149{bottom:188.462100px;}
.y209{bottom:191.072250px;}
.y1c8{bottom:191.214300px;}
.yc6{bottom:191.508300px;}
.y59{bottom:193.271400px;}
.y1e2{bottom:194.948100px;}
.y9a{bottom:195.759900px;}
.y231{bottom:198.903300px;}
.y19f{bottom:199.458450px;}
.yb0{bottom:200.012100px;}
.yee{bottom:200.702670px;}
.y24b{bottom:201.029100px;}
.y7a{bottom:203.553900px;}
.y125{bottom:203.704050px;}
.y17c{bottom:203.709900px;}
.y12{bottom:206.921550px;}
.y10c{bottom:207.701850px;}
.y16e{bottom:207.962100px;}
.y148{bottom:208.712100px;}
.y1b6{bottom:208.728000px;}
.y208{bottom:209.698050px;}
.yc5{bottom:212.058300px;}
.y1c7{bottom:212.214300px;}
.y230{bottom:215.403300px;}
.y99{bottom:216.309900px;}
.y24a{bottom:217.529100px;}
.y58{bottom:218.073600px;}
.y1e1{bottom:220.200300px;}
.y19e{bottom:220.458450px;}
.yaf{bottom:220.562100px;}
.yed{bottom:221.702670px;}
.y79{bottom:224.103900px;}
.y17b{bottom:224.709900px;}
.y1b5{bottom:225.978000px;}
.y27{bottom:226.056150px;}
.y207{bottom:226.198050px;}
.y1b1{bottom:227.103000px;}
.y124{bottom:228.206250px;}
.y10b{bottom:228.701850px;}
.y147{bottom:228.962100px;}
.yc4{bottom:232.608300px;}
.y1c6{bottom:233.214300px;}
.y22f{bottom:234.029100px;}
.y1b8{bottom:234.603000px;}
.y98{bottom:236.859900px;}
.y57{bottom:238.623600px;}
.yae{bottom:241.112100px;}
.y1e0{bottom:241.200300px;}
.y19d{bottom:241.458450px;}
.y206{bottom:242.698050px;}
.yec{bottom:242.702670px;}
.y1b4{bottom:243.228000px;}
.y78{bottom:244.653900px;}
.y17a{bottom:245.709900px;}
.y26{bottom:247.558350px;}
.y123{bottom:248.456250px;}
.y146{bottom:249.212100px;}
.y10a{bottom:249.701850px;}
.y16d{bottom:249.962100px;}
.y22e{bottom:250.529100px;}
.y1b7{bottom:251.853000px;}
.y249{bottom:252.655500px;}
.yc3{bottom:253.158300px;}
.y11{bottom:253.173750px;}
.y1c5{bottom:254.214300px;}
.y97{bottom:257.409900px;}
.y56{bottom:259.173600px;}
.y1b3{bottom:260.478000px;}
.y205{bottom:261.323850px;}
.yad{bottom:261.662100px;}
.y1df{bottom:262.200300px;}
.y19c{bottom:262.458450px;}
.yeb{bottom:263.702670px;}
.y77{bottom:265.203900px;}
.y179{bottom:266.709900px;}
.y1e9{bottom:266.710050px;}
.y122{bottom:268.706250px;}
.y22d{bottom:269.155500px;}
.y145{bottom:269.462100px;}
.y109{bottom:270.701850px;}
.y16c{bottom:270.962100px;}
.yc2{bottom:273.708300px;}
.y1c4{bottom:275.214300px;}
.y1b2{bottom:277.728000px;}
.y204{bottom:277.823850px;}
.y96{bottom:277.959900px;}
.y55{bottom:279.723600px;}
.yac{bottom:282.212100px;}
.y1de{bottom:283.200300px;}
.y19b{bottom:283.458450px;}
.yea{bottom:284.702670px;}
.y22c{bottom:285.655500px;}
.y76{bottom:285.753900px;}
.ydb{bottom:286.464300px;}
.y178{bottom:287.709900px;}
.y248{bottom:287.781300px;}
.y25{bottom:288.035550px;}
.y121{bottom:288.956250px;}
.y144{bottom:289.712100px;}
.y108{bottom:291.701850px;}
.y16b{bottom:291.962100px;}
.yc1{bottom:294.258300px;}
.y1c3{bottom:296.214300px;}
.y203{bottom:296.450250px;}
.y1b0{bottom:298.485000px;}
.y95{bottom:298.509900px;}
.y54{bottom:300.273600px;}
.y22b{bottom:302.155500px;}
.yab{bottom:302.762100px;}
.y10{bottom:303.677400px;}
.y1dd{bottom:304.200300px;}
.y247{bottom:304.281300px;}
.y19a{bottom:304.458450px;}
.ye9{bottom:305.702670px;}
.y75{bottom:306.303900px;}
.yda{bottom:307.014300px;}
.y1af{bottom:307.110000px;}
.y177{bottom:308.709900px;}
.y1cd{bottom:308.710050px;}
.y120{bottom:309.206250px;}
.y24{bottom:309.537750px;}
.y143{bottom:309.962100px;}
.y107{bottom:312.701850px;}
.y202{bottom:312.950250px;}
.y16a{bottom:312.962100px;}
.yc0{bottom:314.808300px;}
.y1c2{bottom:317.214300px;}
.y94{bottom:319.059900px;}
.y22a{bottom:320.781300px;}
.y53{bottom:320.823600px;}
.yaa{bottom:323.312100px;}
.yf{bottom:324.677400px;}
.y1dc{bottom:325.200300px;}
.y199{bottom:325.458450px;}
.ye8{bottom:326.702670px;}
.y74{bottom:326.853900px;}
.yd9{bottom:327.564300px;}
.y201{bottom:329.450250px;}
.y11f{bottom:329.456250px;}
.y176{bottom:329.709900px;}
.y142{bottom:330.212100px;}
.y23{bottom:332.764950px;}
.y106{bottom:333.701850px;}
.y169{bottom:333.962100px;}
.ybf{bottom:335.358300px;}
.y1ae{bottom:336.490500px;}
.y229{bottom:337.281300px;}
.y1c1{bottom:338.214300px;}
.y93{bottom:339.609900px;}
.y52{bottom:341.373600px;}
.ya9{bottom:343.862100px;}
.y1ad{bottom:345.115500px;}
.y200{bottom:345.950250px;}
.y1db{bottom:346.200300px;}
.y198{bottom:346.458450px;}
.y73{bottom:347.403900px;}
.ye7{bottom:347.702670px;}
.yd8{bottom:348.114300px;}
.y11e{bottom:349.706250px;}
.ye{bottom:349.929600px;}
.y141{bottom:350.462100px;}
.y175{bottom:350.709900px;}
.y228{bottom:353.781300px;}
.y105{bottom:354.701850px;}
.y168{bottom:354.962100px;}
.y246{bottom:355.907100px;}
.ybe{bottom:355.908300px;}
.y1c0{bottom:359.214300px;}
.y92{bottom:360.159900px;}
.y51{bottom:361.923600px;}
.ya8{bottom:364.412100px;}
.y1ff{bottom:364.576050px;}
.y1da{bottom:367.200300px;}
.y197{bottom:367.458450px;}
.y72{bottom:367.953900px;}
.yd7{bottom:368.664300px;}
.ye6{bottom:368.702670px;}
.y11d{bottom:369.956250px;}
.y140{bottom:370.712100px;}
.y174{bottom:371.709900px;}
.y227{bottom:372.407100px;}
.y22{bottom:373.242150px;}
.yd{bottom:375.181800px;}
.y104{bottom:375.701850px;}
.y167{bottom:375.962100px;}
.ybd{bottom:376.458300px;}
.y1ac{bottom:380.214300px;}
.y91{bottom:380.709900px;}
.y1fe{bottom:381.076050px;}
.y50{bottom:382.473600px;}
.y4{bottom:384.301650px;}
.ya7{bottom:384.962100px;}
.y1d9{bottom:388.200300px;}
.y196{bottom:388.458450px;}
.y226{bottom:388.907100px;}
.yd6{bottom:389.214300px;}
.ye5{bottom:389.702670px;}
.y11c{bottom:390.206250px;}
.y157{bottom:390.962100px;}
.y71{bottom:392.756100px;}
.y21{bottom:394.744350px;}
.y13f{bottom:395.214300px;}
.y103{bottom:396.701850px;}
.y166{bottom:396.962100px;}
.y1fd{bottom:397.576050px;}
.yc{bottom:400.433400px;}
.y1bf{bottom:401.214300px;}
.y90{bottom:401.259900px;}
.y4f{bottom:403.023600px;}
.y3{bottom:405.301650px;}
.y245{bottom:405.407100px;}
.ya6{bottom:405.512100px;}
.y225{bottom:407.533500px;}
.y1d8{bottom:409.200300px;}
.y195{bottom:409.458450px;}
.yd5{bottom:409.764300px;}
.y11b{bottom:410.456250px;}
.ye4{bottom:410.702670px;}
.y156{bottom:411.212100px;}
.y70{bottom:413.306100px;}
.y13e{bottom:415.464300px;}
.y1fc{bottom:416.202450px;}
.y102{bottom:417.701850px;}
.y165{bottom:417.962100px;}
.y20{bottom:417.971550px;}
.y8f{bottom:421.809900px;}
.y244{bottom:421.907100px;}
.y1ab{bottom:422.214300px;}
.y4e{bottom:423.573600px;}
.y224{bottom:424.033500px;}
.ya5{bottom:426.062100px;}
.y1d7{bottom:430.200300px;}
.yd4{bottom:430.314300px;}
.y194{bottom:430.458450px;}
.y11a{bottom:430.706250px;}
.y155{bottom:431.462100px;}
.ye3{bottom:431.702670px;}
.y1fb{bottom:432.702450px;}
.y6f{bottom:433.856100px;}
.y13d{bottom:435.714300px;}
.y243{bottom:438.407100px;}
.y101{bottom:438.701850px;}
.y164{bottom:438.962100px;}
.y8e{bottom:442.359900px;}
.y223{bottom:442.659300px;}
.y1aa{bottom:443.214300px;}
.y4d{bottom:444.123600px;}
.ya4{bottom:446.612100px;}
.y1fa{bottom:449.202450px;}
.yd3{bottom:450.864300px;}
.yb{bottom:450.937650px;}
.y119{bottom:450.956250px;}
.y1d6{bottom:451.200300px;}
.y193{bottom:451.458450px;}
.y154{bottom:451.712100px;}
.ye2{bottom:452.702670px;}
.y6e{bottom:454.406100px;}
.y13c{bottom:455.964300px;}
.y242{bottom:457.033500px;}
.y222{bottom:459.159300px;}
.y100{bottom:459.701850px;}
.y163{bottom:459.962100px;}
.y8d{bottom:462.909900px;}
.y1a9{bottom:464.214300px;}
.y1f{bottom:464.425800px;}
.y4c{bottom:464.673600px;}
.ya3{bottom:467.162100px;}
.y1f9{bottom:467.828250px;}
.y118{bottom:471.206250px;}
.yd2{bottom:471.414300px;}
.y153{bottom:471.962100px;}
.y1d5{bottom:472.200300px;}
.y192{bottom:472.458450px;}
.y241{bottom:473.533500px;}
.ye1{bottom:473.702670px;}
.y6d{bottom:474.956100px;}
.y221{bottom:475.659300px;}
.y13b{bottom:476.214300px;}
.y162{bottom:480.962100px;}
.y2{bottom:481.057500px;}
.y8c{bottom:483.459900px;}
.y1f8{bottom:484.328250px;}
.yff{bottom:484.954050px;}
.y1a8{bottom:485.214300px;}
.y4b{bottom:485.223600px;}
.y1e{bottom:485.927400px;}
.ya2{bottom:487.712100px;}
.y240{bottom:490.033500px;}
.y117{bottom:491.456250px;}
.yd1{bottom:491.964300px;}
.y152{bottom:492.212100px;}
.y191{bottom:493.458450px;}
.y220{bottom:494.285100px;}
.ye0{bottom:494.702670px;}
.y13a{bottom:496.464300px;}
.y1d4{bottom:497.451900px;}
.y6c{bottom:499.758300px;}
.ya{bottom:501.441300px;}
.y161{bottom:501.962100px;}
.y1f7{bottom:502.954050px;}
.y37{bottom:503.875050px;}
.ybc{bottom:504.009900px;}
.y4a{bottom:505.773600px;}
.y1a7{bottom:506.214300px;}
.y8b{bottom:508.262100px;}
.y23f{bottom:508.659300px;}
.y1d{bottom:509.154600px;}
.yfe{bottom:510.206250px;}
.y21f{bottom:510.785100px;}
.y116{bottom:511.706250px;}
.y151{bottom:512.462100px;}
.yd0{bottom:512.514300px;}
.y190{bottom:514.458450px;}
.y139{bottom:516.714300px;}
.y1f6{bottom:519.454050px;}
.ydf{bottom:519.954870px;}
.y6b{bottom:520.308300px;}
.y1{bottom:522.457500px;}
.y1d3{bottom:522.703500px;}
.y160{bottom:522.962100px;}
.ybb{bottom:524.559900px;}
.y23e{bottom:525.159300px;}
.y36{bottom:525.376650px;}
.y49{bottom:526.323600px;}
.y1a6{bottom:527.214300px;}
.y21e{bottom:527.285100px;}
.y8a{bottom:528.812100px;}
.y115{bottom:531.956250px;}
.y150{bottom:532.712100px;}
.ycf{bottom:533.064300px;}
.y18f{bottom:535.458450px;}
.y1f5{bottom:535.954050px;}
.y138{bottom:536.964300px;}
.y6a{bottom:540.858300px;}
.y23d{bottom:541.659300px;}
.y252{bottom:543.785100px;}
.y15f{bottom:543.962100px;}
.yba{bottom:545.109900px;}
.y21d{bottom:545.911500px;}
.y48{bottom:546.873600px;}
.y1d2{bottom:547.955100px;}
.y1a5{bottom:548.214300px;}
.y35{bottom:548.603850px;}
.y89{bottom:549.362100px;}
.y1c{bottom:549.631800px;}
.y9{bottom:551.944950px;}
.y14f{bottom:552.962100px;}
.yce{bottom:553.614300px;}
.y1f4{bottom:554.579850px;}
.y114{bottom:556.458450px;}
.y137{bottom:557.214300px;}
.y23c{bottom:558.159300px;}
.y69{bottom:561.408300px;}
.y21c{bottom:562.411500px;}
.y15e{bottom:564.962100px;}
.y1b{bottom:566.881800px;}
.y47{bottom:567.423600px;}
.y187{bottom:569.214300px;}
.y88{bottom:569.912100px;}
.yde{bottom:570.458550px;}
.y1f3{bottom:571.079850px;}
.y34{bottom:571.831050px;}
.y8{bottom:572.944950px;}
.y1d1{bottom:573.206700px;}
.ycd{bottom:574.164300px;}
.y23b{bottom:576.785100px;}
.y18e{bottom:577.458450px;}
.y136{bottom:577.464300px;}
.y21b{bottom:578.911500px;}
.y1e8{bottom:581.710050px;}
.y68{bottom:581.958300px;}
.yfd{bottom:585.962100px;}
.y46{bottom:587.973600px;}
.y1a{bottom:588.383400px;}
.y1f2{bottom:589.706250px;}
.y186{bottom:590.214300px;}
.y87{bottom:590.462100px;}
.y23a{bottom:593.285100px;}
.ycc{bottom:594.714300px;}
.y21a{bottom:595.411500px;}
.y135{bottom:597.714300px;}
.y1d0{bottom:598.458300px;}
.y18d{bottom:598.458450px;}
.y67{bottom:602.508300px;}
.y1f1{bottom:606.206250px;}
.yfc{bottom:606.962100px;}
.y45{bottom:608.523600px;}
.y86{bottom:611.012100px;}
.y185{bottom:611.214300px;}
.y19{bottom:611.610600px;}
.y239{bottom:611.911500px;}
.y219{bottom:614.037300px;}
.ya1{bottom:615.264300px;}
.y134{bottom:617.964300px;}
.y33{bottom:618.284700px;}
.y18c{bottom:619.458450px;}
.y1f0{bottom:622.706250px;}
.y66{bottom:623.058300px;}
.y7{bottom:623.449200px;}
.y1cf{bottom:623.709900px;}
.y113{bottom:627.962100px;}
.y238{bottom:628.411500px;}
.y44{bottom:629.073600px;}
.y218{bottom:630.537300px;}
.y85{bottom:631.562100px;}
.yfb{bottom:632.214300px;}
.ya0{bottom:635.814300px;}
.y133{bottom:638.214300px;}
.y32{bottom:639.786900px;}
.y18b{bottom:640.458450px;}
.y1ef{bottom:641.332050px;}
.ydd{bottom:646.215000px;}
.y217{bottom:647.037300px;}
.y65{bottom:647.859900px;}
.y6{bottom:648.701400px;}
.y15d{bottom:648.962100px;}
.y43{bottom:649.623600px;}
.yb9{bottom:652.112100px;}
.yfa{bottom:653.214300px;}
.y84{bottom:656.364300px;}
.y1ee{bottom:657.832050px;}
.y18{bottom:658.064850px;}
.y132{bottom:658.464300px;}
.y18a{bottom:661.458450px;}
.y216{bottom:663.537300px;}
.y64{bottom:668.409900px;}
.y15c{bottom:669.962100px;}
.y42{bottom:670.173600px;}
.yb8{bottom:672.662100px;}
.y5{bottom:673.953000px;}
.yf9{bottom:674.214300px;}
.y1ed{bottom:676.458450px;}
.y83{bottom:676.914300px;}
.y131{bottom:678.714300px;}
.y17{bottom:679.566450px;}
.y237{bottom:680.037300px;}
.y215{bottom:682.163100px;}
.y189{bottom:682.458450px;}
.y31{bottom:686.240550px;}
.y63{bottom:688.959900px;}
.y41{bottom:690.723600px;}
.y15b{bottom:690.962100px;}
.y1ec{bottom:692.958450px;}
.yb7{bottom:693.212100px;}
.yf8{bottom:695.214300px;}
.ydc{bottom:697.014300px;}
.y82{bottom:697.464300px;}
.y214{bottom:698.663100px;}
.y130{bottom:698.964300px;}
.y188{bottom:707.710050px;}
.y30{bottom:707.742750px;}
.y1eb{bottom:709.458450px;}
.y40{bottom:711.273600px;}
.y15a{bottom:711.962100px;}
.y62{bottom:713.762100px;}
.y236{bottom:715.163100px;}
.yf7{bottom:716.214300px;}
.y213{bottom:717.289500px;}
.y81{bottom:718.014300px;}
.y12f{bottom:719.214300px;}
.y1ea{bottom:730.210050px;}
.y251{bottom:731.663100px;}
.y3f{bottom:731.823600px;}
.y159{bottom:732.962100px;}
.y212{bottom:733.789500px;}
.y61{bottom:734.312100px;}
.yf6{bottom:737.214300px;}
.y80{bottom:738.564300px;}
.y12e{bottom:739.464300px;}
.y3b{bottom:743.514300px;}
.y211{bottom:750.289500px;}
.y3e{bottom:752.373600px;}
.y158{bottom:753.962100px;}
.y2f{bottom:754.196400px;}
.yb6{bottom:754.862100px;}
.yf5{bottom:758.214300px;}
.y60{bottom:759.114300px;}
.y12d{bottom:759.714300px;}
.y3a{bottom:762.414300px;}
.y210{bottom:768.915300px;}
.y16{bottom:772.474500px;}
.y3d{bottom:772.923600px;}
.y2e{bottom:775.698600px;}
.yf4{bottom:779.214300px;}
.y5f{bottom:779.664300px;}
.y12c{bottom:779.964300px;}
.y39{bottom:781.314300px;}
.y20f{bottom:785.415300px;}
.y3c{bottom:797.725800px;}
.y2d{bottom:798.925800px;}
.y38{bottom:800.214300px;}
.y20e{bottom:801.915300px;}
.h15{height:38.226563px;}
.h12{height:42.000000px;}
.h16{height:42.300000px;}
.h6{height:42.720000px;}
.hd{height:43.429688px;}
.h5{height:43.757813px;}
.h17{height:47.250000px;}
.hf{height:47.619141px;}
.h11{height:47.649902px;}
.he{height:47.680664px;}
.h19{height:49.148438px;}
.h18{height:51.264000px;}
.h9{height:52.080000px;}
.h14{height:54.609375px;}
.hc{height:57.001465px;}
.h10{height:57.339844px;}
.ha{height:57.432129px;}
.hb{height:57.462891px;}
.h8{height:59.598000px;}
.h4{height:64.512000px;}
.h7{height:65.016000px;}
.h13{height:89.109375px;}
.h3{height:130.032000px;}
.h2{height:215.040000px;}
.h0{height:892.920000px;}
.h1{height:893.250000px;}
.w1{width:573.750000px;}
.w0{width:574.020000px;}
.x0{left:0.000000px;}
.x13{left:80.787300px;}
.x28{left:85.602000px;}
.x8{left:102.751800px;}
.x27{left:108.409350px;}
.x20{left:110.551500px;}
.x2b{left:124.898400px;}
.x6{left:141.089400px;}
.x1{left:144.479250px;}
.x2{left:149.561670px;}
.x10{left:158.231283px;}
.xf{left:167.339688px;}
.xe{left:195.367938px;}
.x4{left:210.166920px;}
.xc{left:213.403148px;}
.xa{left:216.619950px;}
.xb{left:221.339678px;}
.xd{left:224.207838px;}
.x9{left:226.088700px;}
.x12{left:227.212500px;}
.x5{left:228.499500px;}
.x2a{left:248.031000px;}
.x3{left:256.561470px;}
.x24{left:266.826000px;}
.x7{left:268.302300px;}
.x25{left:269.728500px;}
.x2c{left:271.056000px;}
.x26{left:272.631000px;}
.x21{left:274.056000px;}
.x22{left:275.383500px;}
.x11{left:277.018500px;}
.x1b{left:307.318560px;}
.x17{left:335.593860px;}
.x14{left:351.705450px;}
.x1e{left:360.164700px;}
.x1f{left:370.558800px;}
.x1a{left:375.644010px;}
.x15{left:378.763050px;}
.x18{left:381.822660px;}
.x29{left:388.346100px;}
.x19{left:397.288560px;}
.x16{left:401.398350px;}
.x23{left:402.474000px;}
.x1d{left:408.778950px;}
.x1c{left:429.315000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.647893pt;}
.v2{vertical-align:30.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.074667pt;}
.ws2{word-spacing:-14.224000pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-13.969584pt;}
._b{margin-left:-11.802021pt;}
._0{margin-left:-10.452864pt;}
._a{margin-left:-8.222768pt;}
._1a{margin-left:-5.588576pt;}
._d{margin-left:-4.613930pt;}
._1{margin-left:-2.886330pt;}
._11{margin-left:-1.899545pt;}
._10{margin-left:-0.984147pt;}
._14{width:0.902944pt;}
._6{width:1.796115pt;}
._8{width:3.145185pt;}
._9{width:4.258651pt;}
._e{width:5.583172pt;}
._f{width:7.016520pt;}
._2{width:8.131967pt;}
._c{width:9.598043pt;}
._3{width:11.065160pt;}
._5{width:12.178379pt;}
._4{width:13.121515pt;}
._13{width:15.064000pt;}
._19{width:16.889432pt;}
._16{width:18.098920pt;}
._15{width:19.178992pt;}
._1c{width:20.441456pt;}
._12{width:22.047704pt;}
._1d{width:23.374792pt;}
._18{width:24.433387pt;}
._17{width:25.692688pt;}
._20{width:57.578667pt;}
._1b{width:77.184000pt;}
._21{width:85.138133pt;}
._1f{width:86.364800pt;}
._1e{width:236.618667pt;}
.fs7{font-size:32.648000pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:128.000000pt;}
.fs0{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:32.168267pt;}
.yf3{bottom:71.810933pt;}
.y112{bottom:72.623867pt;}
.y1cc{bottom:72.855200pt;}
.y12b{bottom:73.070267pt;}
.ycb{bottom:75.116533pt;}
.y1a4{bottom:76.855200pt;}
.y14e{bottom:77.521867pt;}
.y1e7{bottom:79.953867pt;}
.y5e{bottom:80.463467pt;}
.y9f{bottom:82.675467pt;}
.y181{bottom:83.962933pt;}
.y1ce{bottom:83.963067pt;}
.yb5{bottom:86.455200pt;}
.y2c{bottom:87.687600pt;}
.y184{bottom:87.742133pt;}
.y7f{bottom:89.603467pt;}
.y12a{bottom:91.070267pt;}
.y111{bottom:91.290533pt;}
.y173{bottom:91.521867pt;}
.yca{bottom:93.383200pt;}
.y14d{bottom:95.521867pt;}
.y1e6{bottom:98.620533pt;}
.y5d{bottom:98.730133pt;}
.y9e{bottom:100.942133pt;}
.y180{bottom:102.629600pt;}
.y1a3{bottom:102.629733pt;}
.y250{bottom:103.469600pt;}
.yf2{bottom:103.735707pt;}
.y1be{bottom:103.784933pt;}
.yb4{bottom:104.721867pt;}
.y183{bottom:106.408800pt;}
.y2b{bottom:106.800133pt;}
.y7e{bottom:107.870133pt;}
.y129{bottom:109.070267pt;}
.y14{bottom:109.263600pt;}
.y20d{bottom:109.285200pt;}
.y110{bottom:109.957200pt;}
.y172{bottom:110.188533pt;}
.yc9{bottom:111.649867pt;}
.y14c{bottom:113.521867pt;}
.y1cb{bottom:113.968267pt;}
.y235{bottom:116.246667pt;}
.y5c{bottom:116.996800pt;}
.y1e5{bottom:117.287200pt;}
.y24f{bottom:118.136267pt;}
.y9d{bottom:119.208800pt;}
.y17f{bottom:121.296267pt;}
.y1a2{bottom:121.296400pt;}
.y1bd{bottom:121.452000pt;}
.yf1{bottom:122.402373pt;}
.yb3{bottom:122.988533pt;}
.y20c{bottom:123.951867pt;}
.y182{bottom:125.075467pt;}
.y7d{bottom:126.136800pt;}
.y128{bottom:127.070267pt;}
.y2a{bottom:127.446533pt;}
.y10f{bottom:128.623867pt;}
.y171{bottom:128.855200pt;}
.yc8{bottom:129.916533pt;}
.y1b9{bottom:130.118267pt;}
.y234{bottom:130.913333pt;}
.y14b{bottom:131.521867pt;}
.y1ca{bottom:132.634933pt;}
.y24e{bottom:132.802933pt;}
.y5b{bottom:135.263467pt;}
.y1e4{bottom:135.953867pt;}
.y1bc{bottom:136.785333pt;}
.y9c{bottom:137.475467pt;}
.y20b{bottom:138.618533pt;}
.y1a1{bottom:139.963067pt;}
.yf0{bottom:141.069040pt;}
.yb2{bottom:141.255200pt;}
.y17e{bottom:143.742133pt;}
.y7c{bottom:144.403467pt;}
.y127{bottom:145.070267pt;}
.y233{bottom:145.580000pt;}
.y13{bottom:146.596933pt;}
.y10e{bottom:147.290533pt;}
.y24d{bottom:147.469600pt;}
.y170{bottom:147.521867pt;}
.y29{bottom:148.092933pt;}
.yc7{bottom:148.183200pt;}
.y14a{bottom:149.521867pt;}
.y1c9{bottom:151.301600pt;}
.y1bb{bottom:152.118667pt;}
.y5a{bottom:153.530133pt;}
.y1e3{bottom:154.620533pt;}
.y20a{bottom:155.175333pt;}
.y9b{bottom:155.742133pt;}
.y1a0{bottom:158.629733pt;}
.yb1{bottom:159.521867pt;}
.yef{bottom:159.735707pt;}
.y232{bottom:162.136267pt;}
.y17d{bottom:162.408800pt;}
.y7b{bottom:162.670133pt;}
.y126{bottom:163.070267pt;}
.y24c{bottom:164.025867pt;}
.y28{bottom:164.959600pt;}
.y10d{bottom:165.957200pt;}
.y16f{bottom:166.188533pt;}
.y1ba{bottom:167.452000pt;}
.y149{bottom:167.521867pt;}
.y209{bottom:169.842000pt;}
.y1c8{bottom:169.968267pt;}
.yc6{bottom:170.229600pt;}
.y59{bottom:171.796800pt;}
.y1e2{bottom:173.287200pt;}
.y9a{bottom:174.008800pt;}
.y231{bottom:176.802933pt;}
.y19f{bottom:177.296400pt;}
.yb0{bottom:177.788533pt;}
.yee{bottom:178.402373pt;}
.y24b{bottom:178.692533pt;}
.y7a{bottom:180.936800pt;}
.y125{bottom:181.070267pt;}
.y17c{bottom:181.075467pt;}
.y12{bottom:183.930267pt;}
.y10c{bottom:184.623867pt;}
.y16e{bottom:184.855200pt;}
.y148{bottom:185.521867pt;}
.y1b6{bottom:185.536000pt;}
.y208{bottom:186.398267pt;}
.yc5{bottom:188.496267pt;}
.y1c7{bottom:188.634933pt;}
.y230{bottom:191.469600pt;}
.y99{bottom:192.275467pt;}
.y24a{bottom:193.359200pt;}
.y58{bottom:193.843200pt;}
.y1e1{bottom:195.733600pt;}
.y19e{bottom:195.963067pt;}
.yaf{bottom:196.055200pt;}
.yed{bottom:197.069040pt;}
.y79{bottom:199.203467pt;}
.y17b{bottom:199.742133pt;}
.y1b5{bottom:200.869333pt;}
.y27{bottom:200.938800pt;}
.y207{bottom:201.064933pt;}
.y1b1{bottom:201.869333pt;}
.y124{bottom:202.850000pt;}
.y10b{bottom:203.290533pt;}
.y147{bottom:203.521867pt;}
.yc4{bottom:206.762933pt;}
.y1c6{bottom:207.301600pt;}
.y22f{bottom:208.025867pt;}
.y1b8{bottom:208.536000pt;}
.y98{bottom:210.542133pt;}
.y57{bottom:212.109867pt;}
.yae{bottom:214.321867pt;}
.y1e0{bottom:214.400267pt;}
.y19d{bottom:214.629733pt;}
.y206{bottom:215.731600pt;}
.yec{bottom:215.735707pt;}
.y1b4{bottom:216.202667pt;}
.y78{bottom:217.470133pt;}
.y17a{bottom:218.408800pt;}
.y26{bottom:220.051867pt;}
.y123{bottom:220.850000pt;}
.y146{bottom:221.521867pt;}
.y10a{bottom:221.957200pt;}
.y16d{bottom:222.188533pt;}
.y22e{bottom:222.692533pt;}
.y1b7{bottom:223.869333pt;}
.y249{bottom:224.582667pt;}
.yc3{bottom:225.029600pt;}
.y11{bottom:225.043333pt;}
.y1c5{bottom:225.968267pt;}
.y97{bottom:228.808800pt;}
.y56{bottom:230.376533pt;}
.y1b3{bottom:231.536000pt;}
.y205{bottom:232.287867pt;}
.yad{bottom:232.588533pt;}
.y1df{bottom:233.066933pt;}
.y19c{bottom:233.296400pt;}
.yeb{bottom:234.402373pt;}
.y77{bottom:235.736800pt;}
.y179{bottom:237.075467pt;}
.y1e9{bottom:237.075600pt;}
.y122{bottom:238.850000pt;}
.y22d{bottom:239.249333pt;}
.y145{bottom:239.521867pt;}
.y109{bottom:240.623867pt;}
.y16c{bottom:240.855200pt;}
.yc2{bottom:243.296267pt;}
.y1c4{bottom:244.634933pt;}
.y1b2{bottom:246.869333pt;}
.y204{bottom:246.954533pt;}
.y96{bottom:247.075467pt;}
.y55{bottom:248.643200pt;}
.yac{bottom:250.855200pt;}
.y1de{bottom:251.733600pt;}
.y19b{bottom:251.963067pt;}
.yea{bottom:253.069040pt;}
.y22c{bottom:253.916000pt;}
.y76{bottom:254.003467pt;}
.ydb{bottom:254.634933pt;}
.y178{bottom:255.742133pt;}
.y248{bottom:255.805600pt;}
.y25{bottom:256.031600pt;}
.y121{bottom:256.850000pt;}
.y144{bottom:257.521867pt;}
.y108{bottom:259.290533pt;}
.y16b{bottom:259.521867pt;}
.yc1{bottom:261.562933pt;}
.y1c3{bottom:263.301600pt;}
.y203{bottom:263.511333pt;}
.y1b0{bottom:265.320000pt;}
.y95{bottom:265.342133pt;}
.y54{bottom:266.909867pt;}
.y22b{bottom:268.582667pt;}
.yab{bottom:269.121867pt;}
.y10{bottom:269.935467pt;}
.y1dd{bottom:270.400267pt;}
.y247{bottom:270.472267pt;}
.y19a{bottom:270.629733pt;}
.ye9{bottom:271.735707pt;}
.y75{bottom:272.270133pt;}
.yda{bottom:272.901600pt;}
.y1af{bottom:272.986667pt;}
.y177{bottom:274.408800pt;}
.y1cd{bottom:274.408933pt;}
.y120{bottom:274.850000pt;}
.y24{bottom:275.144667pt;}
.y143{bottom:275.521867pt;}
.y107{bottom:277.957200pt;}
.y202{bottom:278.178000pt;}
.y16a{bottom:278.188533pt;}
.yc0{bottom:279.829600pt;}
.y1c2{bottom:281.968267pt;}
.y94{bottom:283.608800pt;}
.y22a{bottom:285.138933pt;}
.y53{bottom:285.176533pt;}
.yaa{bottom:287.388533pt;}
.yf{bottom:288.602133pt;}
.y1dc{bottom:289.066933pt;}
.y199{bottom:289.296400pt;}
.ye8{bottom:290.402373pt;}
.y74{bottom:290.536800pt;}
.yd9{bottom:291.168267pt;}
.y201{bottom:292.844667pt;}
.y11f{bottom:292.850000pt;}
.y176{bottom:293.075467pt;}
.y142{bottom:293.521867pt;}
.y23{bottom:295.791067pt;}
.y106{bottom:296.623867pt;}
.y169{bottom:296.855200pt;}
.ybf{bottom:298.096267pt;}
.y1ae{bottom:299.102667pt;}
.y229{bottom:299.805600pt;}
.y1c1{bottom:300.634933pt;}
.y93{bottom:301.875467pt;}
.y52{bottom:303.443200pt;}
.ya9{bottom:305.655200pt;}
.y1ad{bottom:306.769333pt;}
.y200{bottom:307.511333pt;}
.y1db{bottom:307.733600pt;}
.y198{bottom:307.963067pt;}
.y73{bottom:308.803467pt;}
.ye7{bottom:309.069040pt;}
.yd8{bottom:309.434933pt;}
.y11e{bottom:310.850000pt;}
.ye{bottom:311.048533pt;}
.y141{bottom:311.521867pt;}
.y175{bottom:311.742133pt;}
.y228{bottom:314.472267pt;}
.y105{bottom:315.290533pt;}
.y168{bottom:315.521867pt;}
.y246{bottom:316.361867pt;}
.ybe{bottom:316.362933pt;}
.y1c0{bottom:319.301600pt;}
.y92{bottom:320.142133pt;}
.y51{bottom:321.709867pt;}
.ya8{bottom:323.921867pt;}
.y1ff{bottom:324.067600pt;}
.y1da{bottom:326.400267pt;}
.y197{bottom:326.629733pt;}
.y72{bottom:327.070133pt;}
.yd7{bottom:327.701600pt;}
.ye6{bottom:327.735707pt;}
.y11d{bottom:328.850000pt;}
.y140{bottom:329.521867pt;}
.y174{bottom:330.408800pt;}
.y227{bottom:331.028533pt;}
.y22{bottom:331.770800pt;}
.yd{bottom:333.494933pt;}
.y104{bottom:333.957200pt;}
.y167{bottom:334.188533pt;}
.ybd{bottom:334.629600pt;}
.y1ac{bottom:337.968267pt;}
.y91{bottom:338.408800pt;}
.y1fe{bottom:338.734267pt;}
.y50{bottom:339.976533pt;}
.y4{bottom:341.601467pt;}
.ya7{bottom:342.188533pt;}
.y1d9{bottom:345.066933pt;}
.y196{bottom:345.296400pt;}
.y226{bottom:345.695200pt;}
.yd6{bottom:345.968267pt;}
.ye5{bottom:346.402373pt;}
.y11c{bottom:346.850000pt;}
.y157{bottom:347.521867pt;}
.y71{bottom:349.116533pt;}
.y21{bottom:350.883867pt;}
.y13f{bottom:351.301600pt;}
.y103{bottom:352.623867pt;}
.y166{bottom:352.855200pt;}
.y1fd{bottom:353.400933pt;}
.yc{bottom:355.940800pt;}
.y1bf{bottom:356.634933pt;}
.y90{bottom:356.675467pt;}
.y4f{bottom:358.243200pt;}
.y3{bottom:360.268133pt;}
.y245{bottom:360.361867pt;}
.ya6{bottom:360.455200pt;}
.y225{bottom:362.252000pt;}
.y1d8{bottom:363.733600pt;}
.y195{bottom:363.963067pt;}
.yd5{bottom:364.234933pt;}
.y11b{bottom:364.850000pt;}
.ye4{bottom:365.069040pt;}
.y156{bottom:365.521867pt;}
.y70{bottom:367.383200pt;}
.y13e{bottom:369.301600pt;}
.y1fc{bottom:369.957733pt;}
.y102{bottom:371.290533pt;}
.y165{bottom:371.521867pt;}
.y20{bottom:371.530267pt;}
.y8f{bottom:374.942133pt;}
.y244{bottom:375.028533pt;}
.y1ab{bottom:375.301600pt;}
.y4e{bottom:376.509867pt;}
.y224{bottom:376.918667pt;}
.ya5{bottom:378.721867pt;}
.y1d7{bottom:382.400267pt;}
.yd4{bottom:382.501600pt;}
.y194{bottom:382.629733pt;}
.y11a{bottom:382.850000pt;}
.y155{bottom:383.521867pt;}
.ye3{bottom:383.735707pt;}
.y1fb{bottom:384.624400pt;}
.y6f{bottom:385.649867pt;}
.y13d{bottom:387.301600pt;}
.y243{bottom:389.695200pt;}
.y101{bottom:389.957200pt;}
.y164{bottom:390.188533pt;}
.y8e{bottom:393.208800pt;}
.y223{bottom:393.474933pt;}
.y1aa{bottom:393.968267pt;}
.y4d{bottom:394.776533pt;}
.ya4{bottom:396.988533pt;}
.y1fa{bottom:399.291067pt;}
.yd3{bottom:400.768267pt;}
.yb{bottom:400.833467pt;}
.y119{bottom:400.850000pt;}
.y1d6{bottom:401.066933pt;}
.y193{bottom:401.296400pt;}
.y154{bottom:401.521867pt;}
.ye2{bottom:402.402373pt;}
.y6e{bottom:403.916533pt;}
.y13c{bottom:405.301600pt;}
.y242{bottom:406.252000pt;}
.y222{bottom:408.141600pt;}
.y100{bottom:408.623867pt;}
.y163{bottom:408.855200pt;}
.y8d{bottom:411.475467pt;}
.y1a9{bottom:412.634933pt;}
.y1f{bottom:412.822933pt;}
.y4c{bottom:413.043200pt;}
.ya3{bottom:415.255200pt;}
.y1f9{bottom:415.847333pt;}
.y118{bottom:418.850000pt;}
.yd2{bottom:419.034933pt;}
.y153{bottom:419.521867pt;}
.y1d5{bottom:419.733600pt;}
.y192{bottom:419.963067pt;}
.y241{bottom:420.918667pt;}
.ye1{bottom:421.069040pt;}
.y6d{bottom:422.183200pt;}
.y221{bottom:422.808267pt;}
.y13b{bottom:423.301600pt;}
.y162{bottom:427.521867pt;}
.y2{bottom:427.606667pt;}
.y8c{bottom:429.742133pt;}
.y1f8{bottom:430.514000pt;}
.yff{bottom:431.070267pt;}
.y1a8{bottom:431.301600pt;}
.y4b{bottom:431.309867pt;}
.y1e{bottom:431.935467pt;}
.ya2{bottom:433.521867pt;}
.y240{bottom:435.585333pt;}
.y117{bottom:436.850000pt;}
.yd1{bottom:437.301600pt;}
.y152{bottom:437.521867pt;}
.y191{bottom:438.629733pt;}
.y220{bottom:439.364533pt;}
.ye0{bottom:439.735707pt;}
.y13a{bottom:441.301600pt;}
.y1d4{bottom:442.179467pt;}
.y6c{bottom:444.229600pt;}
.ya{bottom:445.725600pt;}
.y161{bottom:446.188533pt;}
.y1f7{bottom:447.070267pt;}
.y37{bottom:447.888933pt;}
.ybc{bottom:448.008800pt;}
.y4a{bottom:449.576533pt;}
.y1a7{bottom:449.968267pt;}
.y8b{bottom:451.788533pt;}
.y23f{bottom:452.141600pt;}
.y1d{bottom:452.581867pt;}
.yfe{bottom:453.516667pt;}
.y21f{bottom:454.031200pt;}
.y116{bottom:454.850000pt;}
.y151{bottom:455.521867pt;}
.yd0{bottom:455.568267pt;}
.y190{bottom:457.296400pt;}
.y139{bottom:459.301600pt;}
.y1f6{bottom:461.736933pt;}
.ydf{bottom:462.182107pt;}
.y6b{bottom:462.496267pt;}
.y1{bottom:464.406667pt;}
.y1d3{bottom:464.625333pt;}
.y160{bottom:464.855200pt;}
.ybb{bottom:466.275467pt;}
.y23e{bottom:466.808267pt;}
.y36{bottom:467.001467pt;}
.y49{bottom:467.843200pt;}
.y1a6{bottom:468.634933pt;}
.y21e{bottom:468.697867pt;}
.y8a{bottom:470.055200pt;}
.y115{bottom:472.850000pt;}
.y150{bottom:473.521867pt;}
.ycf{bottom:473.834933pt;}
.y18f{bottom:475.963067pt;}
.y1f5{bottom:476.403600pt;}
.y138{bottom:477.301600pt;}
.y6a{bottom:480.762933pt;}
.y23d{bottom:481.474933pt;}
.y252{bottom:483.364533pt;}
.y15f{bottom:483.521867pt;}
.yba{bottom:484.542133pt;}
.y21d{bottom:485.254667pt;}
.y48{bottom:486.109867pt;}
.y1d2{bottom:487.071200pt;}
.y1a5{bottom:487.301600pt;}
.y35{bottom:487.647867pt;}
.y89{bottom:488.321867pt;}
.y1c{bottom:488.561600pt;}
.y9{bottom:490.617733pt;}
.y14f{bottom:491.521867pt;}
.yce{bottom:492.101600pt;}
.y1f4{bottom:492.959867pt;}
.y114{bottom:494.629733pt;}
.y137{bottom:495.301600pt;}
.y23c{bottom:496.141600pt;}
.y69{bottom:499.029600pt;}
.y21c{bottom:499.921333pt;}
.y15e{bottom:502.188533pt;}
.y1b{bottom:503.894933pt;}
.y47{bottom:504.376533pt;}
.y187{bottom:505.968267pt;}
.y88{bottom:506.588533pt;}
.yde{bottom:507.074267pt;}
.y1f3{bottom:507.626533pt;}
.y34{bottom:508.294267pt;}
.y8{bottom:509.284400pt;}
.y1d1{bottom:509.517067pt;}
.ycd{bottom:510.368267pt;}
.y23b{bottom:512.697867pt;}
.y18e{bottom:513.296400pt;}
.y136{bottom:513.301600pt;}
.y21b{bottom:514.588000pt;}
.y1e8{bottom:517.075600pt;}
.y68{bottom:517.296267pt;}
.yfd{bottom:520.855200pt;}
.y46{bottom:522.643200pt;}
.y1a{bottom:523.007467pt;}
.y1f2{bottom:524.183333pt;}
.y186{bottom:524.634933pt;}
.y87{bottom:524.855200pt;}
.y23a{bottom:527.364533pt;}
.ycc{bottom:528.634933pt;}
.y21a{bottom:529.254667pt;}
.y135{bottom:531.301600pt;}
.y1d0{bottom:531.962933pt;}
.y18d{bottom:531.963067pt;}
.y67{bottom:535.562933pt;}
.y1f1{bottom:538.850000pt;}
.yfc{bottom:539.521867pt;}
.y45{bottom:540.909867pt;}
.y86{bottom:543.121867pt;}
.y185{bottom:543.301600pt;}
.y19{bottom:543.653867pt;}
.y239{bottom:543.921333pt;}
.y219{bottom:545.810933pt;}
.ya1{bottom:546.901600pt;}
.y134{bottom:549.301600pt;}
.y33{bottom:549.586400pt;}
.y18c{bottom:550.629733pt;}
.y1f0{bottom:553.516667pt;}
.y66{bottom:553.829600pt;}
.y7{bottom:554.177067pt;}
.y1cf{bottom:554.408800pt;}
.y113{bottom:558.188533pt;}
.y238{bottom:558.588000pt;}
.y44{bottom:559.176533pt;}
.y218{bottom:560.477600pt;}
.y85{bottom:561.388533pt;}
.yfb{bottom:561.968267pt;}
.ya0{bottom:565.168267pt;}
.y133{bottom:567.301600pt;}
.y32{bottom:568.699467pt;}
.y18b{bottom:569.296400pt;}
.y1ef{bottom:570.072933pt;}
.ydd{bottom:574.413333pt;}
.y217{bottom:575.144267pt;}
.y65{bottom:575.875467pt;}
.y6{bottom:576.623467pt;}
.y15d{bottom:576.855200pt;}
.y43{bottom:577.443200pt;}
.yb9{bottom:579.655200pt;}
.yfa{bottom:580.634933pt;}
.y84{bottom:583.434933pt;}
.y1ee{bottom:584.739600pt;}
.y18{bottom:584.946533pt;}
.y132{bottom:585.301600pt;}
.y18a{bottom:587.963067pt;}
.y216{bottom:589.810933pt;}
.y64{bottom:594.142133pt;}
.y15c{bottom:595.521867pt;}
.y42{bottom:595.709867pt;}
.yb8{bottom:597.921867pt;}
.y5{bottom:599.069333pt;}
.yf9{bottom:599.301600pt;}
.y1ed{bottom:601.296400pt;}
.y83{bottom:601.701600pt;}
.y131{bottom:603.301600pt;}
.y17{bottom:604.059067pt;}
.y237{bottom:604.477600pt;}
.y215{bottom:606.367200pt;}
.y189{bottom:606.629733pt;}
.y31{bottom:609.991600pt;}
.y63{bottom:612.408800pt;}
.y41{bottom:613.976533pt;}
.y15b{bottom:614.188533pt;}
.y1ec{bottom:615.963067pt;}
.yb7{bottom:616.188533pt;}
.yf8{bottom:617.968267pt;}
.ydc{bottom:619.568267pt;}
.y82{bottom:619.968267pt;}
.y214{bottom:621.033867pt;}
.y130{bottom:621.301600pt;}
.y188{bottom:629.075600pt;}
.y30{bottom:629.104667pt;}
.y1eb{bottom:630.629733pt;}
.y40{bottom:632.243200pt;}
.y15a{bottom:632.855200pt;}
.y62{bottom:634.455200pt;}
.y236{bottom:635.700533pt;}
.yf7{bottom:636.634933pt;}
.y213{bottom:637.590667pt;}
.y81{bottom:638.234933pt;}
.y12f{bottom:639.301600pt;}
.y1ea{bottom:649.075600pt;}
.y251{bottom:650.367200pt;}
.y3f{bottom:650.509867pt;}
.y159{bottom:651.521867pt;}
.y212{bottom:652.257333pt;}
.y61{bottom:652.721867pt;}
.yf6{bottom:655.301600pt;}
.y80{bottom:656.501600pt;}
.y12e{bottom:657.301600pt;}
.y3b{bottom:660.901600pt;}
.y211{bottom:666.924000pt;}
.y3e{bottom:668.776533pt;}
.y158{bottom:670.188533pt;}
.y2f{bottom:670.396800pt;}
.yb6{bottom:670.988533pt;}
.yf5{bottom:673.968267pt;}
.y60{bottom:674.768267pt;}
.y12d{bottom:675.301600pt;}
.y3a{bottom:677.701600pt;}
.y210{bottom:683.480267pt;}
.y16{bottom:686.644000pt;}
.y3d{bottom:687.043200pt;}
.y2e{bottom:689.509867pt;}
.yf4{bottom:692.634933pt;}
.y5f{bottom:693.034933pt;}
.y12c{bottom:693.301600pt;}
.y39{bottom:694.501600pt;}
.y20f{bottom:698.146933pt;}
.y3c{bottom:709.089600pt;}
.y2d{bottom:710.156267pt;}
.y38{bottom:711.301600pt;}
.y20e{bottom:712.813600pt;}
.h15{height:33.979167pt;}
.h12{height:37.333333pt;}
.h16{height:37.600000pt;}
.h6{height:37.973333pt;}
.hd{height:38.604167pt;}
.h5{height:38.895833pt;}
.h17{height:42.000000pt;}
.hf{height:42.328125pt;}
.h11{height:42.355469pt;}
.he{height:42.382813pt;}
.h19{height:43.687500pt;}
.h18{height:45.568000pt;}
.h9{height:46.293333pt;}
.h14{height:48.541667pt;}
.hc{height:50.667969pt;}
.h10{height:50.968750pt;}
.ha{height:51.050781pt;}
.hb{height:51.078125pt;}
.h8{height:52.976000pt;}
.h4{height:57.344000pt;}
.h7{height:57.792000pt;}
.h13{height:79.208333pt;}
.h3{height:115.584000pt;}
.h2{height:191.146667pt;}
.h0{height:793.706667pt;}
.h1{height:794.000000pt;}
.w1{width:510.000000pt;}
.w0{width:510.240000pt;}
.x0{left:0.000000pt;}
.x13{left:71.810933pt;}
.x28{left:76.090667pt;}
.x8{left:91.334933pt;}
.x27{left:96.363867pt;}
.x20{left:98.268000pt;}
.x2b{left:111.020800pt;}
.x6{left:125.412800pt;}
.x1{left:128.426000pt;}
.x2{left:132.943707pt;}
.x10{left:140.650029pt;}
.xf{left:148.746389pt;}
.xe{left:173.660389pt;}
.x4{left:186.815040pt;}
.xc{left:189.691687pt;}
.xa{left:192.551067pt;}
.xb{left:196.746380pt;}
.xd{left:199.295856pt;}
.x9{left:200.967733pt;}
.x12{left:201.966667pt;}
.x5{left:203.110667pt;}
.x2a{left:220.472000pt;}
.x3{left:228.054640pt;}
.x24{left:237.178667pt;}
.x7{left:238.490933pt;}
.x25{left:239.758667pt;}
.x2c{left:240.938667pt;}
.x26{left:242.338667pt;}
.x21{left:243.605333pt;}
.x22{left:244.785333pt;}
.x11{left:246.238667pt;}
.x1b{left:273.172053pt;}
.x17{left:298.305653pt;}
.x14{left:312.627067pt;}
.x1e{left:320.146400pt;}
.x1f{left:329.385600pt;}
.x1a{left:333.905787pt;}
.x15{left:336.678267pt;}
.x18{left:339.397920pt;}
.x29{left:345.196533pt;}
.x19{left:353.145387pt;}
.x16{left:356.798533pt;}
.x23{left:357.754667pt;}
.x1d{left:363.359067pt;}
.x1c{left:381.613333pt;}
}




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