
    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_f770a007434398819c1b8be8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.965000;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_6fcd32f2421d2b5c4593f962.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_93a2a724f0b25b3b37fa80b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.988000;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_7709c0ad573588e0c028ceec.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b7cd780563750b1b0473f352.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cb3291377e56d1e4e6159b46.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_72f72a2ddb30d05e3cbd769f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_071c5829d4d238f296a2e126.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_9bd54dfeb573c4cb4a4b04e4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_3a577292d4b8be15b45f66d5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;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_dabf17bea81f15de0fb15d5a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bb171616691311b376a481d9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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;}
.md{transform:matrix(-0.009891,-0.249804,0.249804,-0.009891,0,0);-ms-transform:matrix(-0.009891,-0.249804,0.249804,-0.009891,0,0);-webkit-transform:matrix(-0.009891,-0.249804,0.249804,-0.009891,0,0);}
.mf{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.174993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174993,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.174997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174997,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.200004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200004,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.200006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200006,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.200006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200006,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.200007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200007,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.200017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200017,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.202502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202502,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.231268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231268,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.231272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231272,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.235445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235445,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.235447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235447,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);}
.v5{vertical-align:-3.186490px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.201171px;}
.v4{vertical-align:17.330602px;}
.v2{vertical-align:22.767600px;}
.v1{vertical-align:31.968000px;}
.ls6{letter-spacing:-2.784000px;}
.ls2{letter-spacing:-2.304000px;}
.ls7{letter-spacing:-2.112000px;}
.ls8{letter-spacing:-0.840000px;}
.ls5{letter-spacing:-0.672000px;}
.ls15{letter-spacing:-0.569052px;}
.lsc{letter-spacing:-0.493295px;}
.ls12{letter-spacing:-0.493178px;}
.lse{letter-spacing:-0.483038px;}
.lsa{letter-spacing:-0.379458px;}
.ls14{letter-spacing:-0.379368px;}
.lsf{letter-spacing:-0.371568px;}
.ls19{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.189729px;}
.ls13{letter-spacing:-0.189684px;}
.ls10{letter-spacing:-0.185784px;}
.ls18{letter-spacing:-0.035225px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.055968px;}
.lsd{letter-spacing:0.371568px;}
.ls11{letter-spacing:0.379368px;}
.ls9{letter-spacing:0.379458px;}
.ls3{letter-spacing:0.503712px;}
.ls17{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.924000px;}
.ls0{letter-spacing:8.640000px;}
.ls16{letter-spacing:221.070845px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.600000px;}
.ws5{word-spacing:-19.488000px;}
.ws0{word-spacing:-19.296000px;}
.ws6{word-spacing:-18.900000px;}
.ws4{word-spacing:-18.816000px;}
.ws58{word-spacing:-16.920000px;}
.ws59{word-spacing:-16.200000px;}
.ws1{word-spacing:-13.096512px;}
.ws3{word-spacing:-12.648768px;}
.ws5b{word-spacing:-12.150000px;}
.ws7{word-spacing:-8.640000px;}
.wsd{word-spacing:-8.537805px;}
.ws3d{word-spacing:-8.535780px;}
.ws23{word-spacing:-8.360280px;}
.ws10{word-spacing:-8.348076px;}
.ws40{word-spacing:-8.346096px;}
.ws2b{word-spacing:-8.174496px;}
.ws16{word-spacing:-8.158347px;}
.ws2c{word-spacing:-7.988712px;}
.ws52{word-spacing:-7.739107px;}
.ws57{word-spacing:-7.532688px;}
.ws53{word-spacing:-7.056245px;}
.ws50{word-spacing:-6.638940px;}
.ws55{word-spacing:-4.519613px;}
.ws4f{word-spacing:-4.438606px;}
.ws35{word-spacing:-4.235875px;}
.ws5e{word-spacing:-1.800000px;}
.ws5d{word-spacing:-1.080000px;}
.ws5f{word-spacing:-0.924000px;}
.ws1b{word-spacing:-0.758916px;}
.ws4c{word-spacing:-0.758736px;}
.ws39{word-spacing:-0.743352px;}
.ws32{word-spacing:-0.743136px;}
.ws4a{word-spacing:-0.569052px;}
.ws20{word-spacing:-0.379458px;}
.ws49{word-spacing:-0.379368px;}
.ws37{word-spacing:-0.371568px;}
.ws1d{word-spacing:-0.341512px;}
.ws4b{word-spacing:-0.341431px;}
.ws38{word-spacing:-0.334411px;}
.ws1c{word-spacing:-0.189729px;}
.ws48{word-spacing:-0.189684px;}
.ws33{word-spacing:-0.185784px;}
.ws8{word-spacing:0.000000px;}
.ws5c{word-spacing:0.035225px;}
.ws4e{word-spacing:0.037937px;}
.ws36{word-spacing:0.185784px;}
.ws51{word-spacing:0.189684px;}
.ws1f{word-spacing:0.189729px;}
.ws34{word-spacing:0.371568px;}
.ws4d{word-spacing:0.379368px;}
.ws1e{word-spacing:0.379458px;}
.ws54{word-spacing:0.569052px;}
.ws9{word-spacing:0.672000px;}
.wsa{word-spacing:0.840000px;}
.ws3f{word-spacing:78.825936px;}
.ws28{word-spacing:85.361136px;}
.wsf{word-spacing:101.706776px;}
.ws44{word-spacing:103.598431px;}
.ws12{word-spacing:104.971012px;}
.ws56{word-spacing:113.217926px;}
.ws45{word-spacing:143.354650px;}
.ws13{word-spacing:146.253810px;}
.ws15{word-spacing:147.430130px;}
.ws42{word-spacing:149.196917px;}
.ws2f{word-spacing:149.380339px;}
.ws2a{word-spacing:153.244646px;}
.ws29{word-spacing:159.450811px;}
.ws30{word-spacing:167.215805px;}
.ws5a{word-spacing:171.367800px;}
.ws3e{word-spacing:176.188831px;}
.ws27{word-spacing:189.546811px;}
.ws2e{word-spacing:191.666011px;}
.ws41{word-spacing:193.393831px;}
.ws14{word-spacing:206.657627px;}
.ws31{word-spacing:1427.419114px;}
.ws1a{word-spacing:1633.217284px;}
.ws19{word-spacing:1867.794367px;}
.wse{word-spacing:1915.813285px;}
.ws47{word-spacing:1948.076834px;}
.ws24{word-spacing:2014.787261px;}
.wsb{word-spacing:2064.186166px;}
.ws3a{word-spacing:2064.531178px;}
.ws21{word-spacing:2068.893418px;}
.ws11{word-spacing:2071.616901px;}
.wsc{word-spacing:2084.822212px;}
.ws2d{word-spacing:2088.319291px;}
.ws43{word-spacing:2091.722858px;}
.ws22{word-spacing:2096.085211px;}
.ws46{word-spacing:2118.108031px;}
.ws3c{word-spacing:2118.553882px;}
.ws26{word-spacing:2122.511722px;}
.ws18{word-spacing:2123.932690px;}
.ws17{word-spacing:2132.178440px;}
.ws25{word-spacing:2134.318819px;}
.ws3b{word-spacing:2141.836841px;}
._74{margin-left:-359.943264px;}
._71{margin-left:-280.433270px;}
._70{margin-left:-275.653670px;}
._2{margin-left:-6.840000px;}
._21{margin-left:-4.781366px;}
._1{margin-left:-3.600000px;}
._0{margin-left:-1.920000px;}
._3{width:1.302000px;}
._4{width:2.465280px;}
._5{width:3.975480px;}
._7{width:5.404800px;}
._64{width:6.691845px;}
._65{width:8.114682px;}
._6{width:9.292560px;}
._66{width:86.577312px;}
._50{width:98.202427px;}
._3d{width:106.854888px;}
._3e{width:114.711898px;}
._25{width:120.352216px;}
._46{width:124.504728px;}
._68{width:134.757799px;}
._47{width:141.539726px;}
._1b{width:146.598797px;}
._6d{width:148.491866px;}
._72{width:150.805498px;}
._73{width:152.723894px;}
._2e{width:155.092138px;}
._3c{width:157.026058px;}
._60{width:160.134718px;}
._4f{width:163.202377px;}
._41{width:169.117579px;}
._77{width:170.611800px;}
._79{width:171.853800px;}
._61{width:174.214097px;}
._45{width:176.232038px;}
._78{width:178.603800px;}
._5e{width:180.283656px;}
._76{width:181.411800px;}
._67{width:182.820533px;}
._20{width:184.155985px;}
._4a{width:186.571775px;}
._24{width:188.004883px;}
._1e{width:190.094500px;}
._27{width:191.793643px;}
._6c{width:194.958079px;}
._1c{width:198.218987px;}
._10{width:201.326367px;}
._5a{width:205.261332px;}
._f{width:206.639099px;}
._37{width:208.062432px;}
._59{width:210.572762px;}
._36{width:213.264422px;}
._16{width:216.182457px;}
._e{width:217.187432px;}
._4d{width:220.108915px;}
._58{width:221.118593px;}
._1f{width:222.314140px;}
._35{width:223.594013px;}
._29{width:228.461730px;}
._23{width:230.163499px;}
._44{width:232.585824px;}
._11{width:234.452159px;}
._4e{width:237.117586px;}
._5b{width:238.380122px;}
._19{width:239.822675px;}
._38{width:247.753195px;}
._69{width:248.941000px;}
._42{width:251.396444px;}
._17{width:252.704831px;}
._15{width:255.849509px;}
._1d{width:257.204939px;}
._2a{width:262.799044px;}
._39{width:264.938488px;}
._28{width:266.672181px;}
._2c{width:267.731535px;}
._12{width:269.135753px;}
._13{width:270.140287px;}
._22{width:271.510680px;}
._2d{width:272.634269px;}
._5c{width:273.815645px;}
._18{width:275.188167px;}
._4c{width:277.638974px;}
._4b{width:279.713856px;}
._43{width:288.895781px;}
._40{width:290.705526px;}
._63{width:300.630191px;}
._14{width:303.438161px;}
._6b{width:315.868934px;}
._3a{width:320.220418px;}
._6a{width:334.300579px;}
._75{width:436.549075px;}
._5d{width:622.959156px;}
._2b{width:675.804582px;}
._5f{width:1034.123032px;}
._1a{width:1045.144358px;}
._3b{width:1078.722038px;}
._55{width:1423.956912px;}
._32{width:1639.038228px;}
._54{width:1848.846826px;}
._31{width:1859.170535px;}
._49{width:1876.059888px;}
._48{width:1891.521264px;}
._53{width:1929.109958px;}
._34{width:2011.943846px;}
._b{width:2022.543593px;}
._6f{width:2029.504351px;}
._a{width:2030.811643px;}
._30{width:2040.436019px;}
._2f{width:2049.726643px;}
._6e{width:2054.488363px;}
._d{width:2071.703229px;}
._8{width:2073.742662px;}
._c{width:2078.390930px;}
._26{width:2080.098491px;}
._9{width:2085.975275px;}
._33{width:2089.491941px;}
._56{width:2094.833971px;}
._3f{width:2095.955227px;}
._62{width:2098.836132px;}
._52{width:2120.690040px;}
._57{width:2121.963307px;}
._51{width:2136.871387px;}
.fc10{color:rgb(19,20,20);}
.fcf{color:rgb(20,21,21);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(0,173,239);}
.fc5{color:rgb(191,48,141);}
.fc3{color:rgb(221,71,32);}
.fc1{color:rgb(35,31,32);}
.fcb{color:rgb(213,182,136);}
.fc4{color:rgb(1,95,140);}
.fcd{color:rgb(52,85,39);}
.fc6{color:rgb(69,194,217);}
.fc7{color:rgb(127,190,33);}
.fce{color:transparent;}
.fc8{color:rgb(133,14,74);}
.fc9{color:rgb(221,110,18);}
.fcc{color:rgb(47,79,104);}
.fca{color:rgb(18,123,202);}
.fs15{font-size:16.257600px;}
.fs1{font-size:18.000000px;}
.fs1b{font-size:18.967200px;}
.fs11{font-size:21.676800px;}
.fs10{font-size:27.096000px;}
.fs16{font-size:29.805600px;}
.fs1c{font-size:32.513658px;}
.fs17{font-size:32.515200px;}
.fs1a{font-size:35.224800px;}
.fsb{font-size:37.156800px;}
.fsc{font-size:37.167600px;}
.fs19{font-size:37.934400px;}
.fse{font-size:37.936800px;}
.fs9{font-size:37.945800px;}
.fs12{font-size:43.348200px;}
.fsf{font-size:43.349400px;}
.fs14{font-size:44.355600px;}
.fs13{font-size:44.356200px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:55.968000px;}
.fs6{font-size:56.608800px;}
.fsa{font-size:57.799800px;}
.fsd{font-size:59.013000px;}
.fs8{font-size:59.026800px;}
.fs18{font-size:65.030400px;}
.fs1e{font-size:66.000000px;}
.fs1d{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs2{font-size:180.000000px;}
.fs7{font-size:442.864200px;}
.y0{bottom:0.000000px;}
.y11{bottom:10.436096px;}
.y10{bottom:29.102848px;}
.yf{bottom:47.769600px;}
.y80{bottom:54.000600px;}
.y4e{bottom:59.961150px;}
.y11a{bottom:63.380550px;}
.y7f{bottom:65.151000px;}
.y12{bottom:69.335100px;}
.y7e{bottom:76.301400px;}
.y4d{bottom:79.065450px;}
.y119{bottom:79.580550px;}
.y7d{bottom:87.451650px;}
.yb6{bottom:87.667050px;}
.y4c{bottom:90.449250px;}
.yc{bottom:93.189150px;}
.y7c{bottom:98.601900px;}
.yb5{bottom:106.766850px;}
.y118{bottom:106.767450px;}
.y4b{bottom:109.553400px;}
.yb4{bottom:118.147950px;}
.y4a{bottom:120.937200px;}
.y48{bottom:126.629100px;}
.yb3{bottom:129.528900px;}
.y49{bottom:132.321000px;}
.y117{bottom:133.954200px;}
.y47{bottom:143.704800px;}
.yb2{bottom:148.628700px;}
.yb1{bottom:160.009800px;}
.y116{bottom:161.141100px;}
.y46{bottom:162.808950px;}
.yaf{bottom:165.700200px;}
.yb0{bottom:171.390750px;}
.y45{bottom:181.913250px;}
.y7b{bottom:182.713200px;}
.yae{bottom:182.771850px;}
.y115{bottom:188.328000px;}
.y44{bottom:201.017550px;}
.y7a{bottom:201.420300px;}
.yad{bottom:201.871500px;}
.y114{bottom:204.528000px;}
.y43{bottom:212.401350px;}
.y79{bottom:212.567250px;}
.yd9{bottom:217.051500px;}
.yac{bottom:220.971300px;}
.y42{bottom:223.785000px;}
.yd{bottom:223.947900px;}
.y78{bottom:231.274350px;}
.y113{bottom:231.714750px;}
.y41{bottom:235.168800px;}
.yab{bottom:240.070950px;}
.y40{bottom:246.552600px;}
.y77{bottom:249.981300px;}
.yaa{bottom:251.452050px;}
.y3f{bottom:257.936400px;}
.y112{bottom:258.901650px;}
.ya9{bottom:262.833000px;}
.y76{bottom:268.688250px;}
.y3e{bottom:269.320200px;}
.ya8{bottom:274.214100px;}
.y111{bottom:275.101650px;}
.y75{bottom:279.835350px;}
.y3d{bottom:280.703850px;}
.ya7{bottom:285.595200px;}
.y74{bottom:290.982450px;}
.y11d{bottom:292.614000px;}
.ya6{bottom:296.976300px;}
.y3c{bottom:300.837900px;}
.y73{bottom:302.129550px;}
.y110{bottom:302.288400px;}
.y3b{bottom:306.529800px;}
.ya5{bottom:308.357400px;}
.y72{bottom:313.276500px;}
.ya4{bottom:319.738350px;}
.y71{bottom:324.423600px;}
.y10f{bottom:329.475300px;}
.y3a{bottom:333.150450px;}
.ya3{bottom:339.867750px;}
.y6f{bottom:344.139000px;}
.ya2{bottom:345.558150px;}
.y6e{bottom:349.712550px;}
.y39{bottom:352.254750px;}
.y70{bottom:355.286100px;}
.y10e{bottom:356.662200px;}
.y38{bottom:363.638550px;}
.y11c{bottom:366.608250px;}
.ya1{bottom:372.172650px;}
.y10d{bottom:372.862200px;}
.y37{bottom:375.022200px;}
.y6d{bottom:381.583350px;}
.y36{bottom:386.406000px;}
.ya0{bottom:391.272300px;}
.y35{bottom:397.789800px;}
.y10c{bottom:400.048950px;}
.y9f{bottom:402.653400px;}
.y6c{bottom:407.650500px;}
.y34{bottom:409.173600px;}
.y9e{bottom:414.034350px;}
.y33{bottom:420.557400px;}
.y9d{bottom:425.415600px;}
.y6b{bottom:426.357450px;}
.y10b{bottom:431.166300px;}
.y9c{bottom:436.796550px;}
.y6a{bottom:437.504550px;}
.y32{bottom:440.691300px;}
.y31{bottom:446.383350px;}
.y9b{bottom:448.177650px;}
.y69{bottom:448.651650px;}
.y10a{bottom:452.766150px;}
.y9a{bottom:459.558750px;}
.y68{bottom:459.798750px;}
.y11b{bottom:463.946400px;}
.y99{bottom:470.939700px;}
.y67{bottom:470.945700px;}
.y30{bottom:472.209300px;}
.y66{bottom:482.092800px;}
.y97{bottom:491.069100px;}
.y2f{bottom:491.313450px;}
.y96{bottom:496.759650px;}
.y65{bottom:501.808200px;}
.y98{bottom:502.450200px;}
.y2e{bottom:502.697250px;}
.y64{bottom:507.381750px;}
.yd8{bottom:509.182500px;}
.y109{bottom:512.550900px;}
.y2d{bottom:514.081050px;}
.y95{bottom:522.579450px;}
.y2c{bottom:525.464850px;}
.y63{bottom:532.670700px;}
.y2b{bottom:536.848500px;}
.y94{bottom:541.679100px;}
.y108{bottom:543.890100px;}
.y2a{bottom:548.232300px;}
.y62{bottom:551.377650px;}
.y93{bottom:553.060200px;}
.y29{bottom:559.616100px;}
.y61{bottom:562.524750px;}
.y92{bottom:564.441300px;}
.y107{bottom:565.489950px;}
.y15{bottom:566.727150px;}
.y60{bottom:573.671850px;}
.y91{bottom:575.822250px;}
.y26{bottom:578.720400px;}
.y28{bottom:584.412300px;}
.y5f{bottom:584.818950px;}
.y90{bottom:587.203350px;}
.y27{bottom:590.104050px;}
.y24{bottom:590.104200px;}
.y14{bottom:590.727150px;}
.y5e{bottom:595.965900px;}
.yb9{bottom:597.854136px;}
.yd5{bottom:598.546200px;}
.y8f{bottom:598.584450px;}
.y25{bottom:601.487850px;}
.y5d{bottom:607.113000px;}
.yb7{bottom:607.692900px;}
.y8e{bottom:609.965550px;}
.yb8{bottom:610.291200px;}
.yd4{bottom:614.646426px;}
.y13{bottom:615.927150px;}
.yd3{bottom:620.580450px;}
.y8d{bottom:621.346500px;}
.y23{bottom:623.635800px;}
.y5b{bottom:625.819950px;}
.y5a{bottom:631.393500px;}
.y5c{bottom:636.967050px;}
.y8c{bottom:640.446300px;}
.y22{bottom:645.783900px;}
.y8b{bottom:646.136850px;}
.y59{bottom:658.654500px;}
.y21{bottom:664.888050px;}
.ye9{bottom:668.829450px;}
.yb{bottom:671.028450px;}
.ydc{bottom:671.139450px;}
.y8a{bottom:673.970100px;}
.y20{bottom:676.271850px;}
.y58{bottom:680.341800px;}
.ydb{bottom:681.652800px;}
.y1e{bottom:681.963750px;}
.yed{bottom:686.304450px;}
.ye7{bottom:686.944950px;}
.y1f{bottom:687.655650px;}
.ye4{bottom:688.815600px;}
.yda{bottom:690.811200px;}
.ya{bottom:698.028450px;}
.y89{bottom:698.798250px;}
.y1d{bottom:699.039450px;}
.y57{bottom:701.679150px;}
.y9{bottom:710.028450px;}
.yea{bottom:713.006400px;}
.y88{bottom:717.898050px;}
.y56{bottom:720.386100px;}
.y1c{bottom:720.829800px;}
.yde{bottom:725.201550px;}
.yd7{bottom:726.234000px;}
.y87{bottom:729.279000px;}
.y55{bottom:731.533200px;}
.y85{bottom:734.969550px;}
.y8{bottom:737.028450px;}
.y53{bottom:737.106750px;}
.ydd{bottom:738.055950px;}
.yd6{bottom:738.093900px;}
.y1b{bottom:739.934100px;}
.y86{bottom:740.660100px;}
.y54{bottom:742.680300px;}
.y1a{bottom:751.317900px;}
.y84{bottom:752.041200px;}
.y52{bottom:753.827400px;}
.y19{bottom:762.701550px;}
.y7{bottom:764.028450px;}
.ye3{bottom:768.598500px;}
.yeb{bottom:770.375700px;}
.y83{bottom:771.140850px;}
.ye5{bottom:771.234150px;}
.y51{bottom:772.534350px;}
.y18{bottom:781.805850px;}
.y82{bottom:790.240650px;}
.y6{bottom:791.028450px;}
.y50{bottom:791.241300px;}
.yba{bottom:794.175900px;}
.yf8{bottom:795.525486px;}
.yec{bottom:796.609800px;}
.ye1{bottom:799.440804px;}
.y17{bottom:800.910150px;}
.yf7{bottom:806.214858px;}
.ye0{bottom:807.244452px;}
.ydf{bottom:815.048100px;}
.y81{bottom:815.314650px;}
.y4f{bottom:815.799750px;}
.yf6{bottom:816.091350px;}
.ye6{bottom:817.019850px;}
.ye8{bottom:817.079700px;}
.yf5{bottom:824.491200px;}
.y16{bottom:825.990000px;}
.yd2{bottom:826.623450px;}
.ye2{bottom:826.745400px;}
.yc4{bottom:827.017950px;}
.y5{bottom:835.036350px;}
.yc5{bottom:854.566350px;}
.yd1{bottom:857.170488px;}
.ycb{bottom:857.350706px;}
.yce{bottom:857.653950px;}
.yc2{bottom:861.199950px;}
.yc1{bottom:861.282824px;}
.yef{bottom:864.070350px;}
.yc6{bottom:872.494418px;}
.ycc{bottom:874.884528px;}
.yca{bottom:875.079619px;}
.yd0{bottom:875.200166px;}
.y4{bottom:888.540300px;}
.yee{bottom:891.027120px;}
.yf0{bottom:891.215700px;}
.yc7{bottom:891.339009px;}
.ybc{bottom:892.284150px;}
.ycd{bottom:893.621412px;}
.ycf{bottom:893.668800px;}
.yc9{bottom:893.702700px;}
.y106{bottom:900.333600px;}
.yf1{bottom:909.132600px;}
.yc8{bottom:909.639647px;}
.ybb{bottom:914.489400px;}
.y3{bottom:915.540300px;}
.y105{bottom:916.533450px;}
.yc3{bottom:926.510400px;}
.y104{bottom:932.733450px;}
.yc0{bottom:937.852714px;}
.y2{bottom:942.540300px;}
.y103{bottom:948.933450px;}
.y1{bottom:961.296150px;}
.y102{bottom:965.133450px;}
.y101{bottom:981.333450px;}
.yf4{bottom:983.624923px;}
.yf2{bottom:983.844401px;}
.y100{bottom:997.533450px;}
.ybf{bottom:1009.920450px;}
.yff{bottom:1013.733450px;}
.ybe{bottom:1023.953130px;}
.yfe{bottom:1029.933450px;}
.ye{bottom:1039.957500px;}
.yf3{bottom:1045.355030px;}
.yfd{bottom:1046.133450px;}
.yfc{bottom:1062.333450px;}
.ybd{bottom:1073.435100px;}
.yfb{bottom:1078.533450px;}
.yfa{bottom:1094.733450px;}
.yf9{bottom:1132.533450px;}
.y11e{bottom:1207.771800px;}
.h2e{height:11.843916px;}
.h3{height:13.158000px;}
.h38{height:13.817902px;}
.h31{height:15.108730px;}
.h2a{height:15.780710px;}
.h29{height:15.781303px;}
.h32{height:18.885912px;}
.h28{height:19.725888px;}
.h3e{height:19.739859px;}
.h2f{height:21.699292px;}
.h30{height:23.671955px;}
.h39{height:23.686708px;}
.h3a{height:23.687831px;}
.h37{height:25.644618px;}
.h1b{height:27.533189px;}
.h36{height:27.617280px;}
.h26{height:28.035295px;}
.h12{height:28.041946px;}
.h22{height:28.111169px;}
.h13{height:28.117838px;}
.h1a{height:28.796520px;}
.h1f{height:28.804890px;}
.h21{height:29.401020px;}
.h11{height:29.407995px;}
.h34{height:31.557490px;}
.h27{height:31.558363px;}
.h2b{height:31.579841px;}
.h2d{height:32.290877px;}
.h2c{height:32.314185px;}
.h3c{height:36.141153px;}
.h3b{height:36.889002px;}
.h8{height:40.014000px;}
.h3d{height:41.018433px;}
.h40{height:41.850000px;}
.hb{height:43.037061px;}
.h19{height:44.794845px;}
.h20{height:45.735075px;}
.h10{height:45.745770px;}
.h33{height:47.343909px;}
.h1c{height:51.090720px;}
.h42{height:51.150000px;}
.h25{height:52.162620px;}
.h23{height:52.163220px;}
.h15{height:52.174995px;}
.h14{height:52.175595px;}
.h17{height:52.176195px;}
.h3f{height:53.352000px;}
.h41{height:55.800000px;}
.hd{height:62.244000px;}
.h9{height:65.100000px;}
.h4{height:70.176000px;}
.h2{height:71.136000px;}
.h1e{height:73.384320px;}
.h1d{height:73.384920px;}
.h7{height:74.400000px;}
.h24{height:74.925420px;}
.h18{height:74.943195px;}
.h16{height:74.943795px;}
.h6{height:75.343200px;}
.h5{height:133.380000px;}
.ha{height:143.599500px;}
.hc{height:310.004940px;}
.h35{height:588.562500px;}
.he{height:892.914000px;}
.hf{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:246.613500px;}
.w5{width:728.844000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1262.835000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x5{left:14.648550px;}
.x6{left:23.498508px;}
.x84{left:54.000000px;}
.xd{left:60.228750px;}
.xd3{left:70.837800px;}
.x7{left:76.078454px;}
.xd5{left:78.337800px;}
.x18{left:107.061750px;}
.x37{left:109.604100px;}
.x6d{left:111.251550px;}
.x9e{left:118.661400px;}
.x43{left:120.048300px;}
.x33{left:121.129800px;}
.x38{left:123.202500px;}
.x11{left:125.375100px;}
.x1b{left:126.741000px;}
.xad{left:128.306030px;}
.x96{left:130.530750px;}
.x17{left:131.825850px;}
.x16{left:133.096950px;}
.x5e{left:136.801500px;}
.xa9{left:144.511162px;}
.xcb{left:155.301000px;}
.xcc{left:171.082200px;}
.xaf{left:177.326250px;}
.xca{left:178.466100px;}
.x2{left:183.726600px;}
.xc9{left:187.906650px;}
.xc7{left:191.699850px;}
.x8{left:196.273500px;}
.xb5{left:201.908700px;}
.xb6{left:209.348215px;}
.xc8{left:211.425000px;}
.x98{left:214.917450px;}
.x7c{left:216.466350px;}
.x8b{left:219.778200px;}
.x4{left:222.153000px;}
.xc6{left:224.094300px;}
.xb7{left:226.684500px;}
.x60{left:229.155600px;}
.x7d{left:230.437350px;}
.x1c{left:232.056300px;}
.xd4{left:234.207900px;}
.x44{left:236.111400px;}
.x5f{left:238.393650px;}
.x19{left:240.982950px;}
.xb4{left:243.100650px;}
.x1{left:247.741800px;}
.xc5{left:251.320650px;}
.xc4{left:261.715650px;}
.xb3{left:276.472200px;}
.xb2{left:279.406772px;}
.xae{left:286.249800px;}
.xb1{left:293.550064px;}
.xb0{left:297.375600px;}
.x1f{left:316.396950px;}
.x6f{left:318.959850px;}
.x6e{left:322.299150px;}
.x20{left:324.967650px;}
.x8d{left:327.311100px;}
.x1d{left:330.763950px;}
.x1e{left:332.846250px;}
.x39{left:334.795500px;}
.x22{left:336.114150px;}
.x62{left:338.169750px;}
.x61{left:339.275100px;}
.x99{left:341.063100px;}
.x21{left:342.251850px;}
.x8a{left:346.023300px;}
.x8c{left:349.702950px;}
.xc1{left:409.771500px;}
.x24{left:427.057350px;}
.x27{left:428.784000px;}
.x28{left:430.150050px;}
.x58{left:434.434050px;}
.x26{left:436.519950px;}
.x63{left:437.657700px;}
.x23{left:439.413600px;}
.x45{left:440.608800px;}
.x3a{left:441.927450px;}
.x29{left:443.245950px;}
.xcf{left:446.432400px;}
.x25{left:452.063550px;}
.x9f{left:462.001650px;}
.xc2{left:463.313250px;}
.xc3{left:466.139400px;}
.xba{left:467.943750px;}
.xbc{left:472.764150px;}
.xbd{left:477.099000px;}
.xbe{left:481.919550px;}
.xbf{left:484.806450px;}
.xc0{left:487.216800px;}
.x5b{left:506.318700px;}
.x15{left:510.799200px;}
.xb8{left:516.646500px;}
.x88{left:520.932150px;}
.xb9{left:521.943750px;}
.xce{left:524.341783px;}
.xcd{left:525.447300px;}
.xbb{left:526.764150px;}
.x7e{left:529.751850px;}
.x86{left:531.509250px;}
.x64{left:536.268150px;}
.x66{left:537.508200px;}
.x67{left:538.845750px;}
.xc{left:540.660450px;}
.x90{left:541.945200px;}
.x2a{left:543.566100px;}
.x65{left:545.083350px;}
.x8e{left:546.905550px;}
.x47{left:548.243400px;}
.x34{left:550.154700px;}
.x46{left:551.677200px;}
.x3b{left:554.674950px;}
.xf{left:555.949650px;}
.x57{left:559.868400px;}
.x8f{left:563.588250px;}
.xa6{left:566.104650px;}
.x13{left:570.392700px;}
.xa8{left:573.066300px;}
.x5a{left:575.126250px;}
.x14{left:578.944500px;}
.xe{left:584.384850px;}
.xaa{left:587.031300px;}
.x12{left:590.926050px;}
.x59{left:594.767850px;}
.x87{left:596.596500px;}
.x5c{left:603.125250px;}
.xa7{left:604.425450px;}
.xa5{left:608.237850px;}
.xab{left:614.004150px;}
.x89{left:615.815700px;}
.xac{left:617.454750px;}
.xa0{left:642.853500px;}
.x91{left:644.171850px;}
.x68{left:645.853800px;}
.x72{left:648.524250px;}
.x48{left:649.540650px;}
.xa{left:652.274850px;}
.x49{left:653.965950px;}
.x70{left:655.147350px;}
.x2b{left:656.797950px;}
.xb{left:658.879500px;}
.x71{left:661.802850px;}
.x73{left:667.376550px;}
.x85{left:668.585100px;}
.xd2{left:673.159500px;}
.xd0{left:675.940200px;}
.x9{left:688.594050px;}
.xd1{left:699.790200px;}
.x3{left:721.810800px;}
.x4a{left:742.874700px;}
.x3c{left:744.558600px;}
.x69{left:747.696600px;}
.x9a{left:749.239050px;}
.x74{left:754.784250px;}
.x2d{left:758.095500px;}
.x4c{left:759.139050px;}
.x92{left:762.289050px;}
.x2c{left:764.863800px;}
.x4b{left:766.912950px;}
.x35{left:769.213500px;}
.x7f{left:774.137850px;}
.x93{left:778.445400px;}
.x2e{left:852.292350px;}
.x81{left:853.715100px;}
.x4d{left:855.949500px;}
.x80{left:857.421300px;}
.x31{left:860.123400px;}
.x94{left:862.182750px;}
.x2f{left:864.487200px;}
.x3d{left:868.931550px;}
.x3e{left:870.188550px;}
.x82{left:871.457100px;}
.x1a{left:875.979900px;}
.x30{left:877.853250px;}
.x97{left:880.681350px;}
.x4e{left:952.821600px;}
.x50{left:958.902150px;}
.x6a{left:960.486000px;}
.x51{left:963.816450px;}
.x9b{left:965.542650px;}
.xa1{left:967.131000px;}
.x40{left:968.682750px;}
.x3f{left:970.333350px;}
.x36{left:971.704500px;}
.x6b{left:973.165500px;}
.x75{left:974.758350px;}
.x52{left:976.746300px;}
.x6c{left:978.148800px;}
.x41{left:980.203800px;}
.x7b{left:984.303150px;}
.x4f{left:985.948050px;}
.xa2{left:990.708600px;}
.x53{left:1062.357750px;}
.x78{left:1063.559400px;}
.x77{left:1067.600100px;}
.xa3{left:1070.438850px;}
.x83{left:1073.340900px;}
.x42{left:1076.502000px;}
.x9c{left:1077.713100px;}
.x54{left:1078.925850px;}
.x76{left:1081.450350px;}
.xa4{left:1083.621750px;}
.x56{left:1085.049150px;}
.x55{left:1086.424800px;}
.x79{left:1089.819600px;}
.x9d{left:1103.709150px;}
.x10{left:1171.480050px;}
.x32{left:1172.732250px;}
.x5d{left:1173.868200px;}
.x7a{left:1175.628450px;}
.x95{left:1176.827850px;}
@media print{
.v5{vertical-align:-2.832435pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.734374pt;}
.v4{vertical-align:15.404979pt;}
.v2{vertical-align:20.237867pt;}
.v1{vertical-align:28.416000pt;}
.ls6{letter-spacing:-2.474667pt;}
.ls2{letter-spacing:-2.048000pt;}
.ls7{letter-spacing:-1.877333pt;}
.ls8{letter-spacing:-0.746667pt;}
.ls5{letter-spacing:-0.597333pt;}
.ls15{letter-spacing:-0.505824pt;}
.lsc{letter-spacing:-0.438485pt;}
.ls12{letter-spacing:-0.438381pt;}
.lse{letter-spacing:-0.429367pt;}
.lsa{letter-spacing:-0.337296pt;}
.ls14{letter-spacing:-0.337216pt;}
.lsf{letter-spacing:-0.330283pt;}
.ls19{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.168648pt;}
.ls13{letter-spacing:-0.168608pt;}
.ls10{letter-spacing:-0.165141pt;}
.ls18{letter-spacing:-0.031311pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.049749pt;}
.lsd{letter-spacing:0.330283pt;}
.ls11{letter-spacing:0.337216pt;}
.ls9{letter-spacing:0.337296pt;}
.ls3{letter-spacing:0.447744pt;}
.ls17{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.821333pt;}
.ls0{letter-spacing:7.680000pt;}
.ls16{letter-spacing:196.507418pt;}
.ws2{word-spacing:-19.200000pt;}
.ws5{word-spacing:-17.322667pt;}
.ws0{word-spacing:-17.152000pt;}
.ws6{word-spacing:-16.800000pt;}
.ws4{word-spacing:-16.725333pt;}
.ws58{word-spacing:-15.040000pt;}
.ws59{word-spacing:-14.400000pt;}
.ws1{word-spacing:-11.641344pt;}
.ws3{word-spacing:-11.243349pt;}
.ws5b{word-spacing:-10.800000pt;}
.ws7{word-spacing:-7.680000pt;}
.wsd{word-spacing:-7.589160pt;}
.ws3d{word-spacing:-7.587360pt;}
.ws23{word-spacing:-7.431360pt;}
.ws10{word-spacing:-7.420512pt;}
.ws40{word-spacing:-7.418752pt;}
.ws2b{word-spacing:-7.266219pt;}
.ws16{word-spacing:-7.251864pt;}
.ws2c{word-spacing:-7.101077pt;}
.ws52{word-spacing:-6.879206pt;}
.ws57{word-spacing:-6.695723pt;}
.ws53{word-spacing:-6.272218pt;}
.ws50{word-spacing:-5.901280pt;}
.ws55{word-spacing:-4.017434pt;}
.ws4f{word-spacing:-3.945427pt;}
.ws35{word-spacing:-3.765222pt;}
.ws5e{word-spacing:-1.600000pt;}
.ws5d{word-spacing:-0.960000pt;}
.ws5f{word-spacing:-0.821333pt;}
.ws1b{word-spacing:-0.674592pt;}
.ws4c{word-spacing:-0.674432pt;}
.ws39{word-spacing:-0.660757pt;}
.ws32{word-spacing:-0.660565pt;}
.ws4a{word-spacing:-0.505824pt;}
.ws20{word-spacing:-0.337296pt;}
.ws49{word-spacing:-0.337216pt;}
.ws37{word-spacing:-0.330283pt;}
.ws1d{word-spacing:-0.303566pt;}
.ws4b{word-spacing:-0.303494pt;}
.ws38{word-spacing:-0.297254pt;}
.ws1c{word-spacing:-0.168648pt;}
.ws48{word-spacing:-0.168608pt;}
.ws33{word-spacing:-0.165141pt;}
.ws8{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.031311pt;}
.ws4e{word-spacing:0.033722pt;}
.ws36{word-spacing:0.165141pt;}
.ws51{word-spacing:0.168608pt;}
.ws1f{word-spacing:0.168648pt;}
.ws34{word-spacing:0.330283pt;}
.ws4d{word-spacing:0.337216pt;}
.ws1e{word-spacing:0.337296pt;}
.ws54{word-spacing:0.505824pt;}
.ws9{word-spacing:0.597333pt;}
.wsa{word-spacing:0.746667pt;}
.ws3f{word-spacing:70.067499pt;}
.ws28{word-spacing:75.876565pt;}
.wsf{word-spacing:90.406023pt;}
.ws44{word-spacing:92.087494pt;}
.ws12{word-spacing:93.307566pt;}
.ws56{word-spacing:100.638157pt;}
.ws45{word-spacing:127.426355pt;}
.ws13{word-spacing:130.003387pt;}
.ws15{word-spacing:131.049004pt;}
.ws42{word-spacing:132.619482pt;}
.ws2f{word-spacing:132.782524pt;}
.ws2a{word-spacing:136.217463pt;}
.ws29{word-spacing:141.734054pt;}
.ws30{word-spacing:148.636271pt;}
.ws5a{word-spacing:152.326933pt;}
.ws3e{word-spacing:156.612294pt;}
.ws27{word-spacing:168.486054pt;}
.ws2e{word-spacing:170.369788pt;}
.ws41{word-spacing:171.905628pt;}
.ws14{word-spacing:183.695668pt;}
.ws31{word-spacing:1268.816990pt;}
.ws1a{word-spacing:1451.748697pt;}
.ws19{word-spacing:1660.261659pt;}
.wse{word-spacing:1702.945142pt;}
.ws47{word-spacing:1731.623853pt;}
.ws24{word-spacing:1790.922010pt;}
.wsb{word-spacing:1834.832147pt;}
.ws3a{word-spacing:1835.138825pt;}
.ws21{word-spacing:1839.016371pt;}
.ws11{word-spacing:1841.437245pt;}
.wsc{word-spacing:1853.175300pt;}
.ws2d{word-spacing:1856.283814pt;}
.ws43{word-spacing:1859.309207pt;}
.ws22{word-spacing:1863.186854pt;}
.ws46{word-spacing:1882.762694pt;}
.ws3c{word-spacing:1883.159006pt;}
.ws26{word-spacing:1886.677086pt;}
.ws18{word-spacing:1887.940169pt;}
.ws17{word-spacing:1895.269725pt;}
.ws25{word-spacing:1897.172284pt;}
.ws3b{word-spacing:1903.854970pt;}
._74{margin-left:-319.949568pt;}
._71{margin-left:-249.274018pt;}
._70{margin-left:-245.025485pt;}
._2{margin-left:-6.080000pt;}
._21{margin-left:-4.250103pt;}
._1{margin-left:-3.200000pt;}
._0{margin-left:-1.706667pt;}
._3{width:1.157333pt;}
._4{width:2.191360pt;}
._5{width:3.533760pt;}
._7{width:4.804267pt;}
._64{width:5.948307pt;}
._65{width:7.213050pt;}
._6{width:8.260053pt;}
._66{width:76.957611pt;}
._50{width:87.291046pt;}
._3d{width:94.982123pt;}
._3e{width:101.966131pt;}
._25{width:106.979748pt;}
._46{width:110.670869pt;}
._68{width:119.784710pt;}
._47{width:125.813090pt;}
._1b{width:130.310042pt;}
._6d{width:131.992770pt;}
._72{width:134.049331pt;}
._73{width:135.754573pt;}
._2e{width:137.859678pt;}
._3c{width:139.578718pt;}
._60{width:142.341971pt;}
._4f{width:145.068780pt;}
._41{width:150.326737pt;}
._77{width:151.654933pt;}
._79{width:152.758933pt;}
._61{width:154.856975pt;}
._45{width:156.650701pt;}
._78{width:158.758933pt;}
._5e{width:160.252139pt;}
._76{width:161.254933pt;}
._67{width:162.507140pt;}
._20{width:163.694209pt;}
._4a{width:165.841578pt;}
._24{width:167.115452pt;}
._1e{width:168.972889pt;}
._27{width:170.483238pt;}
._6c{width:173.296070pt;}
._1c{width:176.194655pt;}
._10{width:178.956771pt;}
._5a{width:182.454517pt;}
._f{width:183.679199pt;}
._37{width:184.944384pt;}
._59{width:187.175789pt;}
._36{width:189.568375pt;}
._16{width:192.162184pt;}
._e{width:193.055495pt;}
._4d{width:195.652369pt;}
._58{width:196.549860pt;}
._1f{width:197.612569pt;}
._35{width:198.750234pt;}
._29{width:203.077093pt;}
._23{width:204.589777pt;}
._44{width:206.742955pt;}
._11{width:208.401919pt;}
._4e{width:210.771187pt;}
._5b{width:211.893442pt;}
._19{width:213.175711pt;}
._38{width:220.225062pt;}
._69{width:221.280889pt;}
._42{width:223.463506pt;}
._17{width:224.626516pt;}
._15{width:227.421786pt;}
._1d{width:228.626613pt;}
._2a{width:233.599150pt;}
._39{width:235.500878pt;}
._28{width:237.041939pt;}
._2c{width:237.983587pt;}
._12{width:239.231780pt;}
._13{width:240.124700pt;}
._22{width:241.342827pt;}
._2d{width:242.341572pt;}
._5c{width:243.391684pt;}
._18{width:244.611704pt;}
._4c{width:246.790199pt;}
._4b{width:248.634539pt;}
._43{width:256.796250pt;}
._40{width:258.404912pt;}
._63{width:267.226836pt;}
._14{width:269.722810pt;}
._6b{width:280.772386pt;}
._3a{width:284.640371pt;}
._6a{width:297.156070pt;}
._75{width:388.043622pt;}
._5d{width:553.741472pt;}
._2b{width:600.715184pt;}
._5f{width:919.220473pt;}
._1a{width:929.017207pt;}
._3b{width:958.864034pt;}
._55{width:1265.739477pt;}
._32{width:1456.922869pt;}
._54{width:1643.419401pt;}
._31{width:1652.596031pt;}
._49{width:1667.608789pt;}
._48{width:1681.352235pt;}
._53{width:1714.764407pt;}
._34{width:1788.394530pt;}
._b{width:1797.816527pt;}
._6f{width:1804.003868pt;}
._a{width:1805.165905pt;}
._30{width:1813.720906pt;}
._2f{width:1821.979238pt;}
._6e{width:1826.211878pt;}
._d{width:1841.513981pt;}
._8{width:1843.326811pt;}
._c{width:1847.458605pt;}
._26{width:1848.976437pt;}
._9{width:1854.200244pt;}
._33{width:1857.326170pt;}
._56{width:1862.074641pt;}
._3f{width:1863.071313pt;}
._62{width:1865.632117pt;}
._52{width:1885.057813pt;}
._57{width:1886.189606pt;}
._51{width:1899.441233pt;}
.fs15{font-size:14.451200pt;}
.fs1{font-size:16.000000pt;}
.fs1b{font-size:16.859733pt;}
.fs11{font-size:19.268267pt;}
.fs10{font-size:24.085333pt;}
.fs16{font-size:26.493867pt;}
.fs1c{font-size:28.901029pt;}
.fs17{font-size:28.902400pt;}
.fs1a{font-size:31.310933pt;}
.fsb{font-size:33.028267pt;}
.fsc{font-size:33.037867pt;}
.fs19{font-size:33.719467pt;}
.fse{font-size:33.721600pt;}
.fs9{font-size:33.729600pt;}
.fs12{font-size:38.531733pt;}
.fsf{font-size:38.532800pt;}
.fs14{font-size:39.427200pt;}
.fs13{font-size:39.427733pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:49.749333pt;}
.fs6{font-size:50.318933pt;}
.fsa{font-size:51.377600pt;}
.fsd{font-size:52.456000pt;}
.fs8{font-size:52.468267pt;}
.fs18{font-size:57.804800pt;}
.fs1e{font-size:58.666667pt;}
.fs1d{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs2{font-size:160.000000pt;}
.fs7{font-size:393.657067pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:9.276530pt;}
.y10{bottom:25.869198pt;}
.yf{bottom:42.461867pt;}
.y80{bottom:48.000533pt;}
.y4e{bottom:53.298800pt;}
.y11a{bottom:56.338267pt;}
.y7f{bottom:57.912000pt;}
.y12{bottom:61.631200pt;}
.y7e{bottom:67.823467pt;}
.y4d{bottom:70.280400pt;}
.y119{bottom:70.738267pt;}
.y7d{bottom:77.734800pt;}
.yb6{bottom:77.926267pt;}
.y4c{bottom:80.399333pt;}
.yc{bottom:82.834800pt;}
.y7c{bottom:87.646133pt;}
.yb5{bottom:94.903867pt;}
.y118{bottom:94.904400pt;}
.y4b{bottom:97.380800pt;}
.yb4{bottom:105.020400pt;}
.y4a{bottom:107.499733pt;}
.y48{bottom:112.559200pt;}
.yb3{bottom:115.136800pt;}
.y49{bottom:117.618667pt;}
.y117{bottom:119.070400pt;}
.y47{bottom:127.737600pt;}
.yb2{bottom:132.114400pt;}
.yb1{bottom:142.230933pt;}
.y116{bottom:143.236533pt;}
.y46{bottom:144.719067pt;}
.yaf{bottom:147.289067pt;}
.yb0{bottom:152.347333pt;}
.y45{bottom:161.700667pt;}
.y7b{bottom:162.411733pt;}
.yae{bottom:162.463867pt;}
.y115{bottom:167.402667pt;}
.y44{bottom:178.682267pt;}
.y7a{bottom:179.040267pt;}
.yad{bottom:179.441333pt;}
.y114{bottom:181.802667pt;}
.y43{bottom:188.801200pt;}
.y79{bottom:188.948667pt;}
.yd9{bottom:192.934667pt;}
.yac{bottom:196.418933pt;}
.y42{bottom:198.920000pt;}
.yd{bottom:199.064800pt;}
.y78{bottom:205.577200pt;}
.y113{bottom:205.968667pt;}
.y41{bottom:209.038933pt;}
.yab{bottom:213.396400pt;}
.y40{bottom:219.157867pt;}
.y77{bottom:222.205600pt;}
.yaa{bottom:223.512933pt;}
.y3f{bottom:229.276800pt;}
.y112{bottom:230.134800pt;}
.ya9{bottom:233.629333pt;}
.y76{bottom:238.834000pt;}
.y3e{bottom:239.395733pt;}
.ya8{bottom:243.745867pt;}
.y111{bottom:244.534800pt;}
.y75{bottom:248.742533pt;}
.y3d{bottom:249.514533pt;}
.ya7{bottom:253.862400pt;}
.y74{bottom:258.651067pt;}
.y11d{bottom:260.101333pt;}
.ya6{bottom:263.978933pt;}
.y3c{bottom:267.411467pt;}
.y73{bottom:268.559600pt;}
.y110{bottom:268.700800pt;}
.y3b{bottom:272.470933pt;}
.ya5{bottom:274.095467pt;}
.y72{bottom:278.468000pt;}
.ya4{bottom:284.211867pt;}
.y71{bottom:288.376533pt;}
.y10f{bottom:292.866933pt;}
.y3a{bottom:296.133733pt;}
.ya3{bottom:302.104667pt;}
.y6f{bottom:305.901333pt;}
.ya2{bottom:307.162800pt;}
.y6e{bottom:310.855600pt;}
.y39{bottom:313.115333pt;}
.y70{bottom:315.809867pt;}
.y10e{bottom:317.033067pt;}
.y38{bottom:323.234267pt;}
.y11c{bottom:325.874000pt;}
.ya1{bottom:330.820133pt;}
.y10d{bottom:331.433067pt;}
.y37{bottom:333.353067pt;}
.y6d{bottom:339.185200pt;}
.y36{bottom:343.472000pt;}
.ya0{bottom:347.797600pt;}
.y35{bottom:353.590933pt;}
.y10c{bottom:355.599067pt;}
.y9f{bottom:357.914133pt;}
.y6c{bottom:362.356000pt;}
.y34{bottom:363.709867pt;}
.y9e{bottom:368.030533pt;}
.y33{bottom:373.828800pt;}
.y9d{bottom:378.147200pt;}
.y6b{bottom:378.984400pt;}
.y10b{bottom:383.258933pt;}
.y9c{bottom:388.263600pt;}
.y6a{bottom:388.892933pt;}
.y32{bottom:391.725600pt;}
.y31{bottom:396.785200pt;}
.y9b{bottom:398.380133pt;}
.y69{bottom:398.801467pt;}
.y10a{bottom:402.458800pt;}
.y9a{bottom:408.496667pt;}
.y68{bottom:408.710000pt;}
.y11b{bottom:412.396800pt;}
.y99{bottom:418.613067pt;}
.y67{bottom:418.618400pt;}
.y30{bottom:419.741600pt;}
.y66{bottom:428.526933pt;}
.y97{bottom:436.505867pt;}
.y2f{bottom:436.723067pt;}
.y96{bottom:441.564133pt;}
.y65{bottom:446.051733pt;}
.y98{bottom:446.622400pt;}
.y2e{bottom:446.842000pt;}
.y64{bottom:451.006000pt;}
.yd8{bottom:452.606667pt;}
.y109{bottom:455.600800pt;}
.y2d{bottom:456.960933pt;}
.y95{bottom:464.515067pt;}
.y2c{bottom:467.079867pt;}
.y63{bottom:473.485067pt;}
.y2b{bottom:477.198667pt;}
.y94{bottom:481.492533pt;}
.y108{bottom:483.457867pt;}
.y2a{bottom:487.317600pt;}
.y62{bottom:490.113467pt;}
.y93{bottom:491.609067pt;}
.y29{bottom:497.436533pt;}
.y61{bottom:500.022000pt;}
.y92{bottom:501.725600pt;}
.y107{bottom:502.657733pt;}
.y15{bottom:503.757467pt;}
.y60{bottom:509.930533pt;}
.y91{bottom:511.842000pt;}
.y26{bottom:514.418133pt;}
.y28{bottom:519.477600pt;}
.y5f{bottom:519.839067pt;}
.y90{bottom:521.958533pt;}
.y27{bottom:524.536933pt;}
.y24{bottom:524.537067pt;}
.y14{bottom:525.090800pt;}
.y5e{bottom:529.747467pt;}
.yb9{bottom:531.425899pt;}
.yd5{bottom:532.041067pt;}
.y8f{bottom:532.075067pt;}
.y25{bottom:534.655867pt;}
.y5d{bottom:539.656000pt;}
.yb7{bottom:540.171467pt;}
.y8e{bottom:542.191600pt;}
.yb8{bottom:542.481067pt;}
.yd4{bottom:546.352379pt;}
.y13{bottom:547.490800pt;}
.yd3{bottom:551.627067pt;}
.y8d{bottom:552.308000pt;}
.y23{bottom:554.342933pt;}
.y5b{bottom:556.284400pt;}
.y5a{bottom:561.238667pt;}
.y5c{bottom:566.192933pt;}
.y8c{bottom:569.285600pt;}
.y22{bottom:574.030133pt;}
.y8b{bottom:574.343867pt;}
.y59{bottom:585.470667pt;}
.y21{bottom:591.011600pt;}
.ye9{bottom:594.515067pt;}
.yb{bottom:596.469733pt;}
.ydc{bottom:596.568400pt;}
.y8a{bottom:599.084533pt;}
.y20{bottom:601.130533pt;}
.y58{bottom:604.748267pt;}
.ydb{bottom:605.913600pt;}
.y1e{bottom:606.190000pt;}
.yed{bottom:610.048400pt;}
.ye7{bottom:610.617733pt;}
.y1f{bottom:611.249467pt;}
.ye4{bottom:612.280533pt;}
.yda{bottom:614.054400pt;}
.ya{bottom:620.469733pt;}
.y89{bottom:621.154000pt;}
.y1d{bottom:621.368400pt;}
.y57{bottom:623.714800pt;}
.y9{bottom:631.136400pt;}
.yea{bottom:633.783467pt;}
.y88{bottom:638.131600pt;}
.y56{bottom:640.343200pt;}
.y1c{bottom:640.737600pt;}
.yde{bottom:644.623600pt;}
.yd7{bottom:645.541333pt;}
.y87{bottom:648.248000pt;}
.y55{bottom:650.251733pt;}
.y85{bottom:653.306267pt;}
.y8{bottom:655.136400pt;}
.y53{bottom:655.206000pt;}
.ydd{bottom:656.049733pt;}
.yd6{bottom:656.083467pt;}
.y1b{bottom:657.719200pt;}
.y86{bottom:658.364533pt;}
.y54{bottom:660.160267pt;}
.y1a{bottom:667.838133pt;}
.y84{bottom:668.481067pt;}
.y52{bottom:670.068800pt;}
.y19{bottom:677.956933pt;}
.y7{bottom:679.136400pt;}
.ye3{bottom:683.198667pt;}
.yeb{bottom:684.778400pt;}
.y83{bottom:685.458533pt;}
.ye5{bottom:685.541467pt;}
.y51{bottom:686.697200pt;}
.y18{bottom:694.938533pt;}
.y82{bottom:702.436133pt;}
.y6{bottom:703.136400pt;}
.y50{bottom:703.325600pt;}
.yba{bottom:705.934133pt;}
.yf8{bottom:707.133765pt;}
.yec{bottom:708.097600pt;}
.ye1{bottom:710.614048pt;}
.y17{bottom:711.920133pt;}
.yf7{bottom:716.635429pt;}
.ye0{bottom:717.550624pt;}
.ydf{bottom:724.487200pt;}
.y81{bottom:724.724133pt;}
.y4f{bottom:725.155333pt;}
.yf6{bottom:725.414533pt;}
.ye6{bottom:726.239867pt;}
.ye8{bottom:726.293067pt;}
.yf5{bottom:732.881067pt;}
.y16{bottom:734.213333pt;}
.yd2{bottom:734.776400pt;}
.ye2{bottom:734.884800pt;}
.yc4{bottom:735.127067pt;}
.y5{bottom:742.254533pt;}
.yc5{bottom:759.614533pt;}
.yd1{bottom:761.929323pt;}
.ycb{bottom:762.089517pt;}
.yce{bottom:762.359067pt;}
.yc2{bottom:765.511067pt;}
.yc1{bottom:765.584732pt;}
.yef{bottom:768.062533pt;}
.yc6{bottom:775.550594pt;}
.ycc{bottom:777.675136pt;}
.yca{bottom:777.848550pt;}
.yd0{bottom:777.955703pt;}
.y4{bottom:789.813600pt;}
.yee{bottom:792.024107pt;}
.yf0{bottom:792.191733pt;}
.yc7{bottom:792.301341pt;}
.ybc{bottom:793.141467pt;}
.ycd{bottom:794.330144pt;}
.ycf{bottom:794.372267pt;}
.yc9{bottom:794.402400pt;}
.y106{bottom:800.296533pt;}
.yf1{bottom:808.117867pt;}
.yc8{bottom:808.568575pt;}
.ybb{bottom:812.879467pt;}
.y3{bottom:813.813600pt;}
.y105{bottom:814.696400pt;}
.yc3{bottom:823.564800pt;}
.y104{bottom:829.096400pt;}
.yc0{bottom:833.646857pt;}
.y2{bottom:837.813600pt;}
.y103{bottom:843.496400pt;}
.y1{bottom:854.485467pt;}
.y102{bottom:857.896400pt;}
.y101{bottom:872.296400pt;}
.yf4{bottom:874.333265pt;}
.yf2{bottom:874.528356pt;}
.y100{bottom:886.696400pt;}
.ybf{bottom:897.707067pt;}
.yff{bottom:901.096400pt;}
.ybe{bottom:910.180560pt;}
.yfe{bottom:915.496400pt;}
.ye{bottom:924.406667pt;}
.yf3{bottom:929.204471pt;}
.yfd{bottom:929.896400pt;}
.yfc{bottom:944.296400pt;}
.ybd{bottom:954.164533pt;}
.yfb{bottom:958.696400pt;}
.yfa{bottom:973.096400pt;}
.yf9{bottom:1006.696400pt;}
.y11e{bottom:1073.574933pt;}
.h2e{height:10.527925pt;}
.h3{height:11.696000pt;}
.h38{height:12.282579pt;}
.h31{height:13.429982pt;}
.h2a{height:14.027298pt;}
.h29{height:14.027825pt;}
.h32{height:16.787477pt;}
.h28{height:17.534123pt;}
.h3e{height:17.546542pt;}
.h2f{height:19.288259pt;}
.h30{height:21.041738pt;}
.h39{height:21.054852pt;}
.h3a{height:21.055850pt;}
.h37{height:22.795216pt;}
.h1b{height:24.473946pt;}
.h36{height:24.548694pt;}
.h26{height:24.920262pt;}
.h12{height:24.926174pt;}
.h22{height:24.987706pt;}
.h13{height:24.993634pt;}
.h1a{height:25.596907pt;}
.h1f{height:25.604347pt;}
.h21{height:26.134240pt;}
.h11{height:26.140440pt;}
.h34{height:28.051102pt;}
.h27{height:28.051878pt;}
.h2b{height:28.070970pt;}
.h2d{height:28.703002pt;}
.h2c{height:28.723720pt;}
.h3c{height:32.125469pt;}
.h3b{height:32.790224pt;}
.h8{height:35.568000pt;}
.h3d{height:36.460829pt;}
.h40{height:37.200000pt;}
.hb{height:38.255166pt;}
.h19{height:39.817640pt;}
.h20{height:40.653400pt;}
.h10{height:40.662907pt;}
.h33{height:42.083475pt;}
.h1c{height:45.413973pt;}
.h42{height:45.466667pt;}
.h25{height:46.366773pt;}
.h23{height:46.367307pt;}
.h15{height:46.377773pt;}
.h14{height:46.378307pt;}
.h17{height:46.378840pt;}
.h3f{height:47.424000pt;}
.h41{height:49.600000pt;}
.hd{height:55.328000pt;}
.h9{height:57.866667pt;}
.h4{height:62.378667pt;}
.h2{height:63.232000pt;}
.h1e{height:65.230507pt;}
.h1d{height:65.231040pt;}
.h7{height:66.133333pt;}
.h24{height:66.600373pt;}
.h18{height:66.616173pt;}
.h16{height:66.616707pt;}
.h6{height:66.971733pt;}
.h5{height:118.560000pt;}
.ha{height:127.644000pt;}
.hc{height:275.559947pt;}
.h35{height:523.166667pt;}
.he{height:793.701333pt;}
.hf{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:219.212000pt;}
.w5{width:647.861333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1122.520000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x5{left:13.020933pt;}
.x6{left:20.887563pt;}
.x84{left:48.000000pt;}
.xd{left:53.536667pt;}
.xd3{left:62.966933pt;}
.x7{left:67.625293pt;}
.xd5{left:69.633600pt;}
.x18{left:95.166000pt;}
.x37{left:97.425867pt;}
.x6d{left:98.890267pt;}
.x9e{left:105.476800pt;}
.x43{left:106.709600pt;}
.x33{left:107.670933pt;}
.x38{left:109.513333pt;}
.x11{left:111.444533pt;}
.x1b{left:112.658667pt;}
.xad{left:114.049805pt;}
.x96{left:116.027333pt;}
.x17{left:117.178533pt;}
.x16{left:118.308400pt;}
.x5e{left:121.601333pt;}
.xa9{left:128.454366pt;}
.xcb{left:138.045333pt;}
.xcc{left:152.073067pt;}
.xaf{left:157.623333pt;}
.xca{left:158.636533pt;}
.x2{left:163.312533pt;}
.xc9{left:167.028133pt;}
.xc7{left:170.399867pt;}
.x8{left:174.465333pt;}
.xb5{left:179.474400pt;}
.xb6{left:186.087302pt;}
.xc8{left:187.933333pt;}
.x98{left:191.037733pt;}
.x7c{left:192.414533pt;}
.x8b{left:195.358400pt;}
.x4{left:197.469333pt;}
.xc6{left:199.194933pt;}
.xb7{left:201.497333pt;}
.x60{left:203.693867pt;}
.x7d{left:204.833200pt;}
.x1c{left:206.272267pt;}
.xd4{left:208.184800pt;}
.x44{left:209.876800pt;}
.x5f{left:211.905467pt;}
.x19{left:214.207067pt;}
.xb4{left:216.089467pt;}
.x1{left:220.214933pt;}
.xc5{left:223.396133pt;}
.xc4{left:232.636133pt;}
.xb3{left:245.753067pt;}
.xb2{left:248.361575pt;}
.xae{left:254.444267pt;}
.xb1{left:260.933390pt;}
.xb0{left:264.333867pt;}
.x1f{left:281.241733pt;}
.x6f{left:283.519867pt;}
.x6e{left:286.488133pt;}
.x20{left:288.860133pt;}
.x8d{left:290.943200pt;}
.x1d{left:294.012400pt;}
.x1e{left:295.863333pt;}
.x39{left:297.596000pt;}
.x22{left:298.768133pt;}
.x62{left:300.595333pt;}
.x61{left:301.577867pt;}
.x99{left:303.167200pt;}
.x21{left:304.223867pt;}
.x8a{left:307.576267pt;}
.x8c{left:310.847067pt;}
.xc1{left:364.241333pt;}
.x24{left:379.606533pt;}
.x27{left:381.141333pt;}
.x28{left:382.355600pt;}
.x58{left:386.163600pt;}
.x26{left:388.017733pt;}
.x63{left:389.029067pt;}
.x23{left:390.589867pt;}
.x45{left:391.652267pt;}
.x3a{left:392.824400pt;}
.x29{left:393.996400pt;}
.xcf{left:396.828800pt;}
.x25{left:401.834267pt;}
.x9f{left:410.668133pt;}
.xc2{left:411.834000pt;}
.xc3{left:414.346133pt;}
.xba{left:415.950000pt;}
.xbc{left:420.234800pt;}
.xbd{left:424.088000pt;}
.xbe{left:428.372933pt;}
.xbf{left:430.939067pt;}
.xc0{left:433.081600pt;}
.x5b{left:450.061067pt;}
.x15{left:454.043733pt;}
.xb8{left:459.241333pt;}
.x88{left:463.050800pt;}
.xb9{left:463.950000pt;}
.xce{left:466.081585pt;}
.xcd{left:467.064267pt;}
.xbb{left:468.234800pt;}
.x7e{left:470.890533pt;}
.x86{left:472.452667pt;}
.x64{left:476.682800pt;}
.x66{left:477.785067pt;}
.x67{left:478.974000pt;}
.xc{left:480.587067pt;}
.x90{left:481.729067pt;}
.x2a{left:483.169867pt;}
.x65{left:484.518533pt;}
.x8e{left:486.138267pt;}
.x47{left:487.327467pt;}
.x34{left:489.026400pt;}
.x46{left:490.379733pt;}
.x3b{left:493.044400pt;}
.xf{left:494.177467pt;}
.x57{left:497.660800pt;}
.x8f{left:500.967333pt;}
.xa6{left:503.204133pt;}
.x13{left:507.015733pt;}
.xa8{left:509.392267pt;}
.x5a{left:511.223333pt;}
.x14{left:514.617333pt;}
.xe{left:519.453200pt;}
.xaa{left:521.805600pt;}
.x12{left:525.267600pt;}
.x59{left:528.682533pt;}
.x87{left:530.308000pt;}
.x5c{left:536.111333pt;}
.xa7{left:537.267067pt;}
.xa5{left:540.655867pt;}
.xab{left:545.781467pt;}
.x89{left:547.391733pt;}
.xac{left:548.848667pt;}
.xa0{left:571.425333pt;}
.x91{left:572.597200pt;}
.x68{left:574.092267pt;}
.x72{left:576.466000pt;}
.x48{left:577.369467pt;}
.xa{left:579.799867pt;}
.x49{left:581.303067pt;}
.x70{left:582.353200pt;}
.x2b{left:583.820400pt;}
.xb{left:585.670667pt;}
.x71{left:588.269200pt;}
.x73{left:593.223600pt;}
.x85{left:594.297867pt;}
.xd2{left:598.364000pt;}
.xd0{left:600.835733pt;}
.x9{left:612.083600pt;}
.xd1{left:622.035733pt;}
.x3{left:641.609600pt;}
.x4a{left:660.333067pt;}
.x3c{left:661.829867pt;}
.x69{left:664.619200pt;}
.x9a{left:665.990267pt;}
.x74{left:670.919333pt;}
.x2d{left:673.862667pt;}
.x4c{left:674.790267pt;}
.x92{left:677.590267pt;}
.x2c{left:679.878933pt;}
.x4b{left:681.700400pt;}
.x35{left:683.745333pt;}
.x7f{left:688.122533pt;}
.x93{left:691.951467pt;}
.x2e{left:757.593200pt;}
.x81{left:758.857867pt;}
.x4d{left:760.844000pt;}
.x80{left:762.152267pt;}
.x31{left:764.554133pt;}
.x94{left:766.384667pt;}
.x2f{left:768.433067pt;}
.x3d{left:772.383600pt;}
.x3e{left:773.500933pt;}
.x82{left:774.628533pt;}
.x1a{left:778.648800pt;}
.x30{left:780.314000pt;}
.x97{left:782.827867pt;}
.x4e{left:846.952533pt;}
.x50{left:852.357467pt;}
.x6a{left:853.765333pt;}
.x51{left:856.725733pt;}
.x9b{left:858.260133pt;}
.xa1{left:859.672000pt;}
.x40{left:861.051333pt;}
.x3f{left:862.518533pt;}
.x36{left:863.737333pt;}
.x6b{left:865.036000pt;}
.x75{left:866.451867pt;}
.x52{left:868.218933pt;}
.x6c{left:869.465600pt;}
.x41{left:871.292267pt;}
.x7b{left:874.936133pt;}
.x4f{left:876.398267pt;}
.xa2{left:880.629867pt;}
.x53{left:944.318000pt;}
.x78{left:945.386133pt;}
.x77{left:948.977867pt;}
.xa3{left:951.501200pt;}
.x83{left:954.080800pt;}
.x42{left:956.890667pt;}
.x9c{left:957.967200pt;}
.x54{left:959.045200pt;}
.x76{left:961.289200pt;}
.xa4{left:963.219333pt;}
.x56{left:964.488133pt;}
.x55{left:965.710933pt;}
.x79{left:968.728533pt;}
.x9d{left:981.074800pt;}
.x10{left:1041.315600pt;}
.x32{left:1042.428667pt;}
.x5d{left:1043.438400pt;}
.x7a{left:1045.003067pt;}
.x95{left:1046.069200pt;}
}




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