
    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_c614bdfd881f8a7bd78b2ff3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.097168;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_bffb9a30f35b35cf0f9c6e0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904785;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_59ae192726e97c52775aa87e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916016;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_9fbf79fecd6b8d24a51cc42b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904785;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_2547b3fd10a166eed612f2a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_4346b316e9f4ef2778feed92.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.082520;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_9eea6b3975be72195f4874d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.082520;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_06008de00b13b225a6b8dced.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002000;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_7d3ebc37e32525095002fb99.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002000;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_7126c75d557e52b3c3bb718c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774902;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_cb1a221b8342cf0a7ce99edc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.774902;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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;}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m1{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls66{letter-spacing:-9.420000px;}
.ls26{letter-spacing:-7.320000px;}
.ls35{letter-spacing:-6.600000px;}
.ls10{letter-spacing:-0.900000px;}
.ls14{letter-spacing:-0.774000px;}
.ls63{letter-spacing:-0.762000px;}
.ls40{letter-spacing:-0.758939px;}
.ls22{letter-spacing:-0.690000px;}
.ls5e{letter-spacing:-0.684000px;}
.ls30{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.504000px;}
.ls25{letter-spacing:-0.378600px;}
.lsa{letter-spacing:-0.360000px;}
.ls3f{letter-spacing:-0.350400px;}
.ls56{letter-spacing:-0.321600px;}
.ls24{letter-spacing:-0.283800px;}
.ls34{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.180000px;}
.ls4e{letter-spacing:-0.107400px;}
.ls31{letter-spacing:-0.106800px;}
.ls4a{letter-spacing:-0.093000px;}
.ls23{letter-spacing:-0.070800px;}
.ls12{letter-spacing:-0.053280px;}
.ls68{letter-spacing:-0.037440px;}
.ls69{letter-spacing:-0.028080px;}
.ls4{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.004080px;}
.ls4d{letter-spacing:0.015120px;}
.ls2{letter-spacing:0.028080px;}
.ls17{letter-spacing:0.037440px;}
.ls2e{letter-spacing:0.153360px;}
.ls0{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.208080px;}
.ls33{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.ls55{letter-spacing:0.298800px;}
.ls3c{letter-spacing:0.300000px;}
.lse{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.341400px;}
.ls50{letter-spacing:0.350400px;}
.ls5{letter-spacing:0.360000px;}
.ls3e{letter-spacing:0.369600px;}
.ls11{letter-spacing:0.428400px;}
.ls6{letter-spacing:0.540000px;}
.ls32{letter-spacing:0.900000px;}
.ls38{letter-spacing:1.260000px;}
.ls2f{letter-spacing:1.620000px;}
.ls1a{letter-spacing:2.700000px;}
.ls2a{letter-spacing:3.420000px;}
.ls5d{letter-spacing:3.780000px;}
.ls8{letter-spacing:4.140000px;}
.ls5b{letter-spacing:4.500000px;}
.ls7{letter-spacing:4.860000px;}
.ls3d{letter-spacing:5.400000px;}
.ls5a{letter-spacing:5.580000px;}
.ls5c{letter-spacing:5.940000px;}
.ls1f{letter-spacing:6.300000px;}
.ls16{letter-spacing:7.020000px;}
.ls39{letter-spacing:7.740000px;}
.ls51{letter-spacing:8.460000px;}
.ls61{letter-spacing:9.180000px;}
.ls37{letter-spacing:9.900000px;}
.ls60{letter-spacing:10.080000px;}
.ls19{letter-spacing:10.620000px;}
.lsd{letter-spacing:10.980000px;}
.ls57{letter-spacing:11.340000px;}
.ls28{letter-spacing:12.060000px;}
.ls3a{letter-spacing:12.780000px;}
.ls3b{letter-spacing:13.500000px;}
.ls67{letter-spacing:14.220000px;}
.ls27{letter-spacing:14.940000px;}
.ls29{letter-spacing:15.660000px;}
.ls21{letter-spacing:16.380000px;}
.ls5f{letter-spacing:17.100000px;}
.ls59{letter-spacing:17.460000px;}
.ls1e{letter-spacing:17.820000px;}
.ls44{letter-spacing:19.260000px;}
.ls4f{letter-spacing:19.980000px;}
.ls18{letter-spacing:20.700000px;}
.ls2c{letter-spacing:22.320000px;}
.ls2d{letter-spacing:22.500000px;}
.ls2b{letter-spacing:22.860000px;}
.ls53{letter-spacing:23.580000px;}
.ls43{letter-spacing:24.300000px;}
.ls4c{letter-spacing:25.020000px;}
.ls46{letter-spacing:25.740000px;}
.ls1b{letter-spacing:26.460000px;}
.ls1d{letter-spacing:27.180000px;}
.ls47{letter-spacing:28.620000px;}
.ls36{letter-spacing:30.060000px;}
.ls20{letter-spacing:31.476000px;}
.ls58{letter-spacing:31.500000px;}
.ls65{letter-spacing:32.220000px;}
.ls1c{letter-spacing:33.660000px;}
.lsc{letter-spacing:34.380000px;}
.ls48{letter-spacing:35.796000px;}
.ls49{letter-spacing:35.820000px;}
.ls54{letter-spacing:36.000000px;}
.ls41{letter-spacing:37.440000px;}
.ls64{letter-spacing:41.381280px;}
.ls42{letter-spacing:42.300000px;}
.ls3{letter-spacing:45.180000px;}
.ls62{letter-spacing:53.100000px;}
.ls45{letter-spacing:61.860000px;}
.lsb{letter-spacing:111.420000px;}
.ls1{letter-spacing:117.900000px;}
.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;}
}
.ws15{word-spacing:-62.991941px;}
.ws17{word-spacing:-59.760000px;}
.ws10{word-spacing:-21.429600px;}
.ws0{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.401400px;}
.ws12{word-spacing:-21.097440px;}
.ws16{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws1b{word-spacing:-21.031920px;}
.ws1a{word-spacing:-21.022560px;}
.ws14{word-spacing:-20.967000px;}
.ws18{word-spacing:-20.738400px;}
.ws11{word-spacing:-20.709600px;}
.ws4{word-spacing:-20.700000px;}
.wsa{word-spacing:-20.681400px;}
.ws13{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.368400px;}
.ws9{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.833200px;}
.wse{word-spacing:-14.680200px;}
.ws7{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws19{word-spacing:-11.640000px;}
.wsf{word-spacing:-8.340000px;}
.wsb{word-spacing:-7.620000px;}
.ws2{word-spacing:0.000000px;}
._3f{margin-left:-14.529120px;}
._38{margin-left:-11.144880px;}
._49{margin-left:-9.948720px;}
._4a{margin-left:-8.934240px;}
._37{margin-left:-7.872960px;}
._26{margin-left:-6.402240px;}
._25{margin-left:-5.307120px;}
._22{margin-left:-3.875040px;}
._1d{margin-left:-2.611440px;}
._1{margin-left:-1.010880px;}
._0{width:1.053360px;}
._6{width:2.442960px;}
._24{width:3.622320px;}
._11{width:4.801680px;}
._10{width:6.066720px;}
._23{width:7.918560px;}
._3a{width:9.139680px;}
._36{width:10.650240px;}
._2c{width:11.793600px;}
._2d{width:13.057200px;}
._c{width:14.573520px;}
._d{width:15.837120px;}
._f{width:17.437680px;}
._9{width:18.532800px;}
._7{width:19.796400px;}
._21{width:22.407840px;}
._42{width:23.560320px;}
._16{width:25.356240px;}
._34{width:27.125280px;}
._a{width:28.810080px;}
._1e{width:30.111600px;}
._43{width:31.218960px;}
._2b{width:32.263920px;}
._31{width:33.443280px;}
._2e{width:35.380800px;}
._39{width:36.728640px;}
._3e{width:37.739520px;}
._27{width:39.424320px;}
._b{width:40.856400px;}
._33{width:41.867280px;}
._45{width:42.894240px;}
._18{width:43.957200px;}
._19{width:45.926880px;}
._3c{width:47.427120px;}
._46{width:48.653040px;}
._3d{width:50.113920px;}
._17{width:52.060320px;}
._3b{width:53.602080px;}
._4{width:55.008720px;}
._30{width:56.019600px;}
._2f{width:57.187200px;}
._35{width:59.304960px;}
._e{width:60.484320px;}
._44{width:61.579440px;}
._47{width:63.264240px;}
._1c{width:64.275120px;}
._48{width:68.487120px;}
._15{width:77.837760px;}
._8{width:81.316560px;}
._4b{width:87.739920px;}
._40{width:90.229440px;}
._1a{width:101.846160px;}
._5{width:108.248400px;}
._32{width:110.859840px;}
._4c{width:114.436560px;}
._2{width:118.023840px;}
._3{width:119.196000px;}
._12{width:134.194320px;}
._1b{width:135.457920px;}
._13{width:161.235360px;}
._2a{width:183.390480px;}
._14{width:189.455760px;}
._28{width:204.871680px;}
._1f{width:219.445200px;}
._20{width:243.369360px;}
._41{width:251.769360px;}
._29{width:274.285440px;}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(192,0,0);}
.fc3{color:rgb(36,32,33);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:62.991941px;}
.fs5{font-size:66.240000px;}
.fs6{font-size:69.822393px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.yc{bottom:8.100000px;}
.y1d{bottom:8.280000px;}
.y2d{bottom:35.820000px;}
.y1c{bottom:36.000000px;}
.y2{bottom:52.560000px;}
.y1{bottom:57.600000px;}
.y2a{bottom:63.714000px;}
.y1b{bottom:63.720000px;}
.y29{bottom:91.434000px;}
.y1a{bottom:91.440000px;}
.y4e{bottom:95.436000px;}
.y4d{bottom:100.656000px;}
.y1f{bottom:100.836000px;}
.y81{bottom:112.716000px;}
.y4c{bottom:113.976000px;}
.y80{bottom:117.936000px;}
.y28{bottom:119.154000px;}
.y2c{bottom:119.190000px;}
.y39{bottom:119.340000px;}
.y19{bottom:119.370000px;}
.yd0{bottom:119.916000px;}
.y7f{bottom:129.996000px;}
.yce{bottom:131.256000px;}
.y7e{bottom:135.216000px;}
.y4b{bottom:145.476000px;}
.y27{bottom:147.054000px;}
.y38{bottom:147.060000px;}
.y18{bottom:147.090000px;}
.y7d{bottom:147.276000px;}
.ycf{bottom:147.636000px;}
.y7c{bottom:152.490000px;}
.y7b{bottom:164.370000px;}
.yb8{bottom:164.550000px;}
.y7a{bottom:169.590000px;}
.yb7{bottom:169.770000px;}
.y49{bottom:173.190000px;}
.y26{bottom:174.774000px;}
.y37{bottom:174.780000px;}
.y17{bottom:174.810000px;}
.ycd{bottom:175.530000px;}
.y4a{bottom:180.750000px;}
.y90{bottom:181.290000px;}
.y79{bottom:181.650000px;}
.yba{bottom:182.910000px;}
.yb6{bottom:183.990000px;}
.ya0{bottom:186.870000px;}
.y8f{bottom:196.950000px;}
.y78{bottom:198.930000px;}
.y9f{bottom:200.190000px;}
.y48{bottom:200.910000px;}
.y25{bottom:202.494000px;}
.y36{bottom:202.500000px;}
.y16{bottom:202.530000px;}
.ycc{bottom:203.250000px;}
.ya6{bottom:204.150000px;}
.y8e{bottom:212.790000px;}
.y77{bottom:216.210000px;}
.yb3{bottom:217.470000px;}
.y8d{bottom:218.010000px;}
.ya5{bottom:221.430000px;}
.y47{bottom:228.810000px;}
.y8c{bottom:230.070000px;}
.y24{bottom:230.394000px;}
.y35{bottom:230.400000px;}
.y15{bottom:230.430000px;}
.y9e{bottom:230.970000px;}
.y76{bottom:233.490000px;}
.y75{bottom:238.710000px;}
.y8b{bottom:247.170000px;}
.y74{bottom:250.590000px;}
.yb1{bottom:251.130000px;}
.y8a{bottom:252.390000px;}
.y73{bottom:255.810000px;}
.y46{bottom:256.530000px;}
.y34{bottom:258.120000px;}
.y14{bottom:258.150000px;}
.y23{bottom:258.159000px;}
.y9c{bottom:258.690000px;}
.y89{bottom:264.450000px;}
.y9d{bottom:266.250000px;}
.y72{bottom:267.870000px;}
.yb0{bottom:270.030000px;}
.y88{bottom:281.730000px;}
.y45{bottom:284.250000px;}
.y71{bottom:285.150000px;}
.y13{bottom:285.870000px;}
.y22{bottom:285.879000px;}
.y33{bottom:285.885000px;}
.y9b{bottom:286.590000px;}
.y87{bottom:286.950000px;}
.yaf{bottom:288.570000px;}
.y70{bottom:290.370000px;}
.yae{bottom:293.790000px;}
.y86{bottom:300.270000px;}
.y6f{bottom:302.430000px;}
.ya4{bottom:303.690000px;}
.yad{bottom:305.850000px;}
.y44{bottom:311.970000px;}
.y21{bottom:313.599000px;}
.y12{bottom:313.770000px;}
.y32{bottom:313.785000px;}
.y9a{bottom:314.310000px;}
.y6e{bottom:319.710000px;}
.yb5{bottom:321.870000px;}
.yac{bottom:323.130000px;}
.y6d{bottom:324.930000px;}
.yab{bottom:328.350000px;}
.yca{bottom:337.035000px;}
.y6c{bottom:338.295000px;}
.y85{bottom:339.375000px;}
.y43{bottom:339.915000px;}
.y11{bottom:341.490000px;}
.y20{bottom:341.499000px;}
.y31{bottom:341.505000px;}
.yaa{bottom:341.715000px;}
.y99{bottom:342.075000px;}
.ya3{bottom:349.635000px;}
.yc9{bottom:355.575000px;}
.y84{bottom:362.595000px;}
.yc8{bottom:363.135000px;}
.y42{bottom:367.635000px;}
.y10{bottom:369.210000px;}
.y30{bottom:369.225000px;}
.y98{bottom:369.975000px;}
.yc7{bottom:378.435000px;}
.yc6{bottom:383.655000px;}
.y41{bottom:395.355000px;}
.yc5{bottom:395.535000px;}
.yf{bottom:396.975000px;}
.y97{bottom:397.695000px;}
.ya9{bottom:405.255000px;}
.yc4{bottom:412.815000px;}
.yc3{bottom:418.035000px;}
.y40{bottom:423.255000px;}
.ye{bottom:424.875000px;}
.y96{bottom:425.415000px;}
.yc2{bottom:430.095000px;}
.yb2{bottom:432.975000px;}
.yc1{bottom:435.315000px;}
.yc0{bottom:447.375000px;}
.y3f{bottom:450.975000px;}
.y94{bottom:453.135000px;}
.y95{bottom:460.695000px;}
.y1e{bottom:462.675000px;}
.ybf{bottom:464.655000px;}
.ybe{bottom:469.875000px;}
.y3e{bottom:478.695000px;}
.y93{bottom:481.035000px;}
.ybd{bottom:483.195000px;}
.yd{bottom:491.115000px;}
.y3d{bottom:506.415000px;}
.y6a{bottom:508.755000px;}
.y6b{bottom:516.315000px;}
.y3c{bottom:534.315000px;}
.y69{bottom:536.475000px;}
.ybc{bottom:544.035000px;}
.y3b{bottom:562.035000px;}
.y67{bottom:564.195000px;}
.y68{bottom:571.755000px;}
.y3a{bottom:589.755000px;}
.y66{bottom:592.095000px;}
.yb9{bottom:599.655000px;}
.y2f{bottom:609.405000px;}
.y65{bottom:619.845000px;}
.y63{bottom:647.565000px;}
.y64{bottom:655.125000px;}
.y62{bottom:675.465000px;}
.y60{bottom:703.185000px;}
.y61{bottom:710.745000px;}
.y5e{bottom:730.905000px;}
.y5f{bottom:738.465000px;}
.y5d{bottom:758.625000px;}
.ya2{bottom:766.185000px;}
.y5c{bottom:786.525000px;}
.yb4{bottom:794.085000px;}
.y5b{bottom:814.245000px;}
.y5a{bottom:841.965000px;}
.y92{bottom:849.525000px;}
.y59{bottom:869.865000px;}
.ya8{bottom:877.470000px;}
.y58{bottom:897.630000px;}
.ya7{bottom:905.190000px;}
.y57{bottom:925.350000px;}
.ycb{bottom:932.910000px;}
.yb{bottom:936.330000px;}
.y56{bottom:953.070000px;}
.ya1{bottom:960.630000px;}
.ya{bottom:973.050000px;}
.y55{bottom:980.970000px;}
.ybb{bottom:988.530000px;}
.y2e{bottom:998.970000px;}
.y9{bottom:1000.770000px;}
.y54{bottom:1008.690000px;}
.y2b{bottom:1027.590000px;}
.y8{bottom:1028.490000px;}
.y52{bottom:1036.410000px;}
.y53{bottom:1043.970000px;}
.y7{bottom:1057.470000px;}
.y51{bottom:1064.130000px;}
.y91{bottom:1071.690000px;}
.y6{bottom:1089.330000px;}
.y4f{bottom:1092.030000px;}
.y50{bottom:1099.590000px;}
.y5{bottom:1119.750000px;}
.y83{bottom:1127.310000px;}
.y4{bottom:1147.500000px;}
.y82{bottom:1155.060000px;}
.h3{height:22.536000px;}
.h8{height:27.720000px;}
.hc{height:27.900000px;}
.hf{height:34.266797px;}
.h11{height:46.801758px;}
.he{height:47.592773px;}
.h16{height:51.793945px;}
.h17{height:52.157327px;}
.h10{height:52.669336px;}
.h14{height:57.410156px;}
.h15{height:57.812941px;}
.h4{height:58.038398px;}
.h5{height:58.984453px;}
.h6{height:65.975273px;}
.h7{height:67.444102px;}
.h12{height:73.010742px;}
.h2{height:74.244727px;}
.h13{height:77.832773px;}
.hb{height:138.816000px;}
.ha{height:361.110000px;}
.hd{height:388.830000px;}
.h9{height:444.495000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:58.896000px;}
.w5{width:244.650000px;}
.w4{width:478.515000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x3{left:18.900000px;}
.xb{left:61.194000px;}
.xa{left:63.894000px;}
.x1{left:95.795987px;}
.x10{left:100.655987px;}
.x66{left:103.355987px;}
.x2a{left:105.515987px;}
.x58{left:109.475987px;}
.x7e{left:127.835987px;}
.x5a{left:133.955987px;}
.x27{left:138.275987px;}
.x5{left:140.615987px;}
.xc{left:148.895987px;}
.x25{left:157.529973px;}
.x7d{left:159.689987px;}
.x44{left:165.809973px;}
.x5b{left:168.149987px;}
.x26{left:171.209987px;}
.x5c{left:172.289987px;}
.x57{left:178.589973px;}
.x32{left:179.669973px;}
.xd{left:185.249973px;}
.x5d{left:187.409987px;}
.xe{left:192.089987px;}
.x33{left:193.349987px;}
.x50{left:194.609987px;}
.x1b{left:199.289987px;}
.x7b{left:203.969973px;}
.x73{left:208.649987px;}
.x1e{left:214.409973px;}
.x7c{left:217.649987px;}
.x1f{left:228.089987px;}
.x55{left:244.649973px;}
.x29{left:253.469987px;}
.x74{left:255.629973px;}
.x56{left:258.329987px;}
.x17{left:265.529973px;}
.x38{left:268.949973px;}
.x7{left:270.569987px;}
.x18{left:272.369987px;}
.x3f{left:278.894973px;}
.x39{left:282.674987px;}
.x40{left:292.574987px;}
.x6e{left:306.434987px;}
.x43{left:309.314973px;}
.xf{left:311.834987px;}
.x6{left:323.714987px;}
.x5e{left:328.034987px;}
.x20{left:335.774973px;}
.x2d{left:337.754987px;}
.x5f{left:342.974987px;}
.x49{left:344.054987px;}
.x60{left:347.114987px;}
.x13{left:349.274973px;}
.x14{left:356.114987px;}
.x3c{left:362.054987px;}
.x4a{left:366.914987px;}
.x3d{left:372.854973px;}
.x34{left:376.994973px;}
.x3e{left:386.534987px;}
.x3a{left:389.414973px;}
.x35{left:390.674987px;}
.x77{left:394.454973px;}
.x3b{left:403.094987px;}
.x78{left:408.134987px;}
.x51{left:411.374987px;}
.x4b{left:416.234987px;}
.x2{left:421.815000px;}
.x52{left:426.854987px;}
.x53{left:436.574987px;}
.x4{left:446.474987px;}
.x67{left:448.094987px;}
.x68{left:452.414987px;}
.x15{left:460.514973px;}
.x61{left:464.294987px;}
.x16{left:467.384987px;}
.x21{left:474.584987px;}
.x6f{left:493.484973px;}
.x4c{left:496.724987px;}
.x54{left:501.584987px;}
.x70{left:507.164987px;}
.x19{left:519.944973px;}
.x1a{left:526.784987px;}
.x79{left:547.124973px;}
.x2e{left:549.104973px;}
.x4d{left:557.924987px;}
.x7a{left:560.804987px;}
.x2f{left:562.784987px;}
.x22{left:567.824973px;}
.x9{left:574.305000px;}
.x47{left:576.104973px;}
.x62{left:579.344987px;}
.x23{left:581.504987px;}
.x63{left:583.664987px;}
.x48{left:589.784987px;}
.x36{left:615.344973px;}
.x37{left:629.024987px;}
.x69{left:632.444987px;}
.x6a{left:640.004987px;}
.x71{left:641.444973px;}
.x4e{left:649.364987px;}
.x72{left:655.124987px;}
.x59{left:658.409973px;}
.x1c{left:665.789973px;}
.x1d{left:672.629987px;}
.x28{left:678.389987px;}
.x30{left:681.089973px;}
.x75{left:689.369973px;}
.x2b{left:691.529973px;}
.x31{left:694.769987px;}
.x76{left:703.049987px;}
.x2c{left:705.209987px;}
.x6c{left:706.829973px;}
.x45{left:711.329973px;}
.x6d{left:720.509987px;}
.x46{left:725.009987px;}
.x64{left:732.029987px;}
.x4f{left:733.829987px;}
.x65{left:737.069987px;}
.x6b{left:744.989987px;}
.x24{left:778.649973px;}
.x41{left:783.689973px;}
.x11{left:785.309973px;}
.x12{left:792.149987px;}
.x42{left:797.369987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls66{letter-spacing:-8.373333pt;}
.ls26{letter-spacing:-6.506667pt;}
.ls35{letter-spacing:-5.866667pt;}
.ls10{letter-spacing:-0.800000pt;}
.ls14{letter-spacing:-0.688000pt;}
.ls63{letter-spacing:-0.677333pt;}
.ls40{letter-spacing:-0.674612pt;}
.ls22{letter-spacing:-0.613333pt;}
.ls5e{letter-spacing:-0.608000pt;}
.ls30{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls25{letter-spacing:-0.336533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls3f{letter-spacing:-0.311467pt;}
.ls56{letter-spacing:-0.285867pt;}
.ls24{letter-spacing:-0.252267pt;}
.ls34{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls4e{letter-spacing:-0.095467pt;}
.ls31{letter-spacing:-0.094933pt;}
.ls4a{letter-spacing:-0.082667pt;}
.ls23{letter-spacing:-0.062933pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls68{letter-spacing:-0.033280pt;}
.ls69{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.003627pt;}
.ls4d{letter-spacing:0.013440pt;}
.ls2{letter-spacing:0.024960pt;}
.ls17{letter-spacing:0.033280pt;}
.ls2e{letter-spacing:0.136320pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.184960pt;}
.ls33{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.ls55{letter-spacing:0.265600pt;}
.ls3c{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.303467pt;}
.ls50{letter-spacing:0.311467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls3e{letter-spacing:0.328533pt;}
.ls11{letter-spacing:0.380800pt;}
.ls6{letter-spacing:0.480000pt;}
.ls32{letter-spacing:0.800000pt;}
.ls38{letter-spacing:1.120000pt;}
.ls2f{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:2.400000pt;}
.ls2a{letter-spacing:3.040000pt;}
.ls5d{letter-spacing:3.360000pt;}
.ls8{letter-spacing:3.680000pt;}
.ls5b{letter-spacing:4.000000pt;}
.ls7{letter-spacing:4.320000pt;}
.ls3d{letter-spacing:4.800000pt;}
.ls5a{letter-spacing:4.960000pt;}
.ls5c{letter-spacing:5.280000pt;}
.ls1f{letter-spacing:5.600000pt;}
.ls16{letter-spacing:6.240000pt;}
.ls39{letter-spacing:6.880000pt;}
.ls51{letter-spacing:7.520000pt;}
.ls61{letter-spacing:8.160000pt;}
.ls37{letter-spacing:8.800000pt;}
.ls60{letter-spacing:8.960000pt;}
.ls19{letter-spacing:9.440000pt;}
.lsd{letter-spacing:9.760000pt;}
.ls57{letter-spacing:10.080000pt;}
.ls28{letter-spacing:10.720000pt;}
.ls3a{letter-spacing:11.360000pt;}
.ls3b{letter-spacing:12.000000pt;}
.ls67{letter-spacing:12.640000pt;}
.ls27{letter-spacing:13.280000pt;}
.ls29{letter-spacing:13.920000pt;}
.ls21{letter-spacing:14.560000pt;}
.ls5f{letter-spacing:15.200000pt;}
.ls59{letter-spacing:15.520000pt;}
.ls1e{letter-spacing:15.840000pt;}
.ls44{letter-spacing:17.120000pt;}
.ls4f{letter-spacing:17.760000pt;}
.ls18{letter-spacing:18.400000pt;}
.ls2c{letter-spacing:19.840000pt;}
.ls2d{letter-spacing:20.000000pt;}
.ls2b{letter-spacing:20.320000pt;}
.ls53{letter-spacing:20.960000pt;}
.ls43{letter-spacing:21.600000pt;}
.ls4c{letter-spacing:22.240000pt;}
.ls46{letter-spacing:22.880000pt;}
.ls1b{letter-spacing:23.520000pt;}
.ls1d{letter-spacing:24.160000pt;}
.ls47{letter-spacing:25.440000pt;}
.ls36{letter-spacing:26.720000pt;}
.ls20{letter-spacing:27.978667pt;}
.ls58{letter-spacing:28.000000pt;}
.ls65{letter-spacing:28.640000pt;}
.ls1c{letter-spacing:29.920000pt;}
.lsc{letter-spacing:30.560000pt;}
.ls48{letter-spacing:31.818667pt;}
.ls49{letter-spacing:31.840000pt;}
.ls54{letter-spacing:32.000000pt;}
.ls41{letter-spacing:33.280000pt;}
.ls64{letter-spacing:36.783360pt;}
.ls42{letter-spacing:37.600000pt;}
.ls3{letter-spacing:40.160000pt;}
.ls62{letter-spacing:47.200000pt;}
.ls45{letter-spacing:54.986667pt;}
.lsb{letter-spacing:99.040000pt;}
.ls1{letter-spacing:104.800000pt;}
.ws15{word-spacing:-55.992837pt;}
.ws17{word-spacing:-53.120000pt;}
.ws10{word-spacing:-19.048533pt;}
.ws0{word-spacing:-19.040000pt;}
.ws3{word-spacing:-19.023467pt;}
.ws12{word-spacing:-18.753280pt;}
.ws16{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws1b{word-spacing:-18.695040pt;}
.ws1a{word-spacing:-18.686720pt;}
.ws14{word-spacing:-18.637333pt;}
.ws18{word-spacing:-18.434133pt;}
.ws11{word-spacing:-18.408533pt;}
.ws4{word-spacing:-18.400000pt;}
.wsa{word-spacing:-18.383467pt;}
.ws13{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.660800pt;}
.ws9{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.185067pt;}
.wse{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws19{word-spacing:-10.346667pt;}
.wsf{word-spacing:-7.413333pt;}
.wsb{word-spacing:-6.773333pt;}
.ws2{word-spacing:0.000000pt;}
._3f{margin-left:-12.914773pt;}
._38{margin-left:-9.906560pt;}
._49{margin-left:-8.843307pt;}
._4a{margin-left:-7.941547pt;}
._37{margin-left:-6.998187pt;}
._26{margin-left:-5.690880pt;}
._25{margin-left:-4.717440pt;}
._22{margin-left:-3.444480pt;}
._1d{margin-left:-2.321280pt;}
._1{margin-left:-0.898560pt;}
._0{width:0.936320pt;}
._6{width:2.171520pt;}
._24{width:3.219840pt;}
._11{width:4.268160pt;}
._10{width:5.392640pt;}
._23{width:7.038720pt;}
._3a{width:8.124160pt;}
._36{width:9.466880pt;}
._2c{width:10.483200pt;}
._2d{width:11.606400pt;}
._c{width:12.954240pt;}
._d{width:14.077440pt;}
._f{width:15.500160pt;}
._9{width:16.473600pt;}
._7{width:17.596800pt;}
._21{width:19.918080pt;}
._42{width:20.942507pt;}
._16{width:22.538880pt;}
._34{width:24.111360pt;}
._a{width:25.608960pt;}
._1e{width:26.765867pt;}
._43{width:27.750187pt;}
._2b{width:28.679040pt;}
._31{width:29.727360pt;}
._2e{width:31.449600pt;}
._39{width:32.647680pt;}
._3e{width:33.546240pt;}
._27{width:35.043840pt;}
._b{width:36.316800pt;}
._33{width:37.215360pt;}
._45{width:38.128213pt;}
._18{width:39.073067pt;}
._19{width:40.823893pt;}
._3c{width:42.157440pt;}
._46{width:43.247147pt;}
._3d{width:44.545707pt;}
._17{width:46.275840pt;}
._3b{width:47.646293pt;}
._4{width:48.896640pt;}
._30{width:49.795200pt;}
._2f{width:50.833067pt;}
._35{width:52.715520pt;}
._e{width:53.763840pt;}
._44{width:54.737280pt;}
._47{width:56.234880pt;}
._1c{width:57.133440pt;}
._48{width:60.877440pt;}
._15{width:69.189120pt;}
._8{width:72.281387pt;}
._4b{width:77.991040pt;}
._40{width:80.203947pt;}
._1a{width:90.529920pt;}
._5{width:96.220800pt;}
._32{width:98.542080pt;}
._4c{width:101.721387pt;}
._2{width:104.910080pt;}
._3{width:105.952000pt;}
._12{width:119.283840pt;}
._1b{width:120.407040pt;}
._13{width:143.320320pt;}
._2a{width:163.013760pt;}
._14{width:168.405120pt;}
._28{width:182.108160pt;}
._1f{width:195.062400pt;}
._20{width:216.328320pt;}
._41{width:223.794987pt;}
._29{width:243.809280pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:55.992837pt;}
.fs5{font-size:58.880000pt;}
.fs6{font-size:62.064349pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.yc{bottom:7.200000pt;}
.y1d{bottom:7.360000pt;}
.y2d{bottom:31.840000pt;}
.y1c{bottom:32.000000pt;}
.y2{bottom:46.720000pt;}
.y1{bottom:51.200000pt;}
.y2a{bottom:56.634667pt;}
.y1b{bottom:56.640000pt;}
.y29{bottom:81.274667pt;}
.y1a{bottom:81.280000pt;}
.y4e{bottom:84.832000pt;}
.y4d{bottom:89.472000pt;}
.y1f{bottom:89.632000pt;}
.y81{bottom:100.192000pt;}
.y4c{bottom:101.312000pt;}
.y80{bottom:104.832000pt;}
.y28{bottom:105.914667pt;}
.y2c{bottom:105.946667pt;}
.y39{bottom:106.080000pt;}
.y19{bottom:106.106667pt;}
.yd0{bottom:106.592000pt;}
.y7f{bottom:115.552000pt;}
.yce{bottom:116.672000pt;}
.y7e{bottom:120.192000pt;}
.y4b{bottom:129.312000pt;}
.y27{bottom:130.714667pt;}
.y38{bottom:130.720000pt;}
.y18{bottom:130.746667pt;}
.y7d{bottom:130.912000pt;}
.ycf{bottom:131.232000pt;}
.y7c{bottom:135.546667pt;}
.y7b{bottom:146.106667pt;}
.yb8{bottom:146.266667pt;}
.y7a{bottom:150.746667pt;}
.yb7{bottom:150.906667pt;}
.y49{bottom:153.946667pt;}
.y26{bottom:155.354667pt;}
.y37{bottom:155.360000pt;}
.y17{bottom:155.386667pt;}
.ycd{bottom:156.026667pt;}
.y4a{bottom:160.666667pt;}
.y90{bottom:161.146667pt;}
.y79{bottom:161.466667pt;}
.yba{bottom:162.586667pt;}
.yb6{bottom:163.546667pt;}
.ya0{bottom:166.106667pt;}
.y8f{bottom:175.066667pt;}
.y78{bottom:176.826667pt;}
.y9f{bottom:177.946667pt;}
.y48{bottom:178.586667pt;}
.y25{bottom:179.994667pt;}
.y36{bottom:180.000000pt;}
.y16{bottom:180.026667pt;}
.ycc{bottom:180.666667pt;}
.ya6{bottom:181.466667pt;}
.y8e{bottom:189.146667pt;}
.y77{bottom:192.186667pt;}
.yb3{bottom:193.306667pt;}
.y8d{bottom:193.786667pt;}
.ya5{bottom:196.826667pt;}
.y47{bottom:203.386667pt;}
.y8c{bottom:204.506667pt;}
.y24{bottom:204.794667pt;}
.y35{bottom:204.800000pt;}
.y15{bottom:204.826667pt;}
.y9e{bottom:205.306667pt;}
.y76{bottom:207.546667pt;}
.y75{bottom:212.186667pt;}
.y8b{bottom:219.706667pt;}
.y74{bottom:222.746667pt;}
.yb1{bottom:223.226667pt;}
.y8a{bottom:224.346667pt;}
.y73{bottom:227.386667pt;}
.y46{bottom:228.026667pt;}
.y34{bottom:229.440000pt;}
.y14{bottom:229.466667pt;}
.y23{bottom:229.474667pt;}
.y9c{bottom:229.946667pt;}
.y89{bottom:235.066667pt;}
.y9d{bottom:236.666667pt;}
.y72{bottom:238.106667pt;}
.yb0{bottom:240.026667pt;}
.y88{bottom:250.426667pt;}
.y45{bottom:252.666667pt;}
.y71{bottom:253.466667pt;}
.y13{bottom:254.106667pt;}
.y22{bottom:254.114667pt;}
.y33{bottom:254.120000pt;}
.y9b{bottom:254.746667pt;}
.y87{bottom:255.066667pt;}
.yaf{bottom:256.506667pt;}
.y70{bottom:258.106667pt;}
.yae{bottom:261.146667pt;}
.y86{bottom:266.906667pt;}
.y6f{bottom:268.826667pt;}
.ya4{bottom:269.946667pt;}
.yad{bottom:271.866667pt;}
.y44{bottom:277.306667pt;}
.y21{bottom:278.754667pt;}
.y12{bottom:278.906667pt;}
.y32{bottom:278.920000pt;}
.y9a{bottom:279.386667pt;}
.y6e{bottom:284.186667pt;}
.yb5{bottom:286.106667pt;}
.yac{bottom:287.226667pt;}
.y6d{bottom:288.826667pt;}
.yab{bottom:291.866667pt;}
.yca{bottom:299.586667pt;}
.y6c{bottom:300.706667pt;}
.y85{bottom:301.666667pt;}
.y43{bottom:302.146667pt;}
.y11{bottom:303.546667pt;}
.y20{bottom:303.554667pt;}
.y31{bottom:303.560000pt;}
.yaa{bottom:303.746667pt;}
.y99{bottom:304.066667pt;}
.ya3{bottom:310.786667pt;}
.yc9{bottom:316.066667pt;}
.y84{bottom:322.306667pt;}
.yc8{bottom:322.786667pt;}
.y42{bottom:326.786667pt;}
.y10{bottom:328.186667pt;}
.y30{bottom:328.200000pt;}
.y98{bottom:328.866667pt;}
.yc7{bottom:336.386667pt;}
.yc6{bottom:341.026667pt;}
.y41{bottom:351.426667pt;}
.yc5{bottom:351.586667pt;}
.yf{bottom:352.866667pt;}
.y97{bottom:353.506667pt;}
.ya9{bottom:360.226667pt;}
.yc4{bottom:366.946667pt;}
.yc3{bottom:371.586667pt;}
.y40{bottom:376.226667pt;}
.ye{bottom:377.666667pt;}
.y96{bottom:378.146667pt;}
.yc2{bottom:382.306667pt;}
.yb2{bottom:384.866667pt;}
.yc1{bottom:386.946667pt;}
.yc0{bottom:397.666667pt;}
.y3f{bottom:400.866667pt;}
.y94{bottom:402.786667pt;}
.y95{bottom:409.506667pt;}
.y1e{bottom:411.266667pt;}
.ybf{bottom:413.026667pt;}
.ybe{bottom:417.666667pt;}
.y3e{bottom:425.506667pt;}
.y93{bottom:427.586667pt;}
.ybd{bottom:429.506667pt;}
.yd{bottom:436.546667pt;}
.y3d{bottom:450.146667pt;}
.y6a{bottom:452.226667pt;}
.y6b{bottom:458.946667pt;}
.y3c{bottom:474.946667pt;}
.y69{bottom:476.866667pt;}
.ybc{bottom:483.586667pt;}
.y3b{bottom:499.586667pt;}
.y67{bottom:501.506667pt;}
.y68{bottom:508.226667pt;}
.y3a{bottom:524.226667pt;}
.y66{bottom:526.306667pt;}
.yb9{bottom:533.026667pt;}
.y2f{bottom:541.693333pt;}
.y65{bottom:550.973333pt;}
.y63{bottom:575.613333pt;}
.y64{bottom:582.333333pt;}
.y62{bottom:600.413333pt;}
.y60{bottom:625.053333pt;}
.y61{bottom:631.773333pt;}
.y5e{bottom:649.693333pt;}
.y5f{bottom:656.413333pt;}
.y5d{bottom:674.333333pt;}
.ya2{bottom:681.053333pt;}
.y5c{bottom:699.133333pt;}
.yb4{bottom:705.853333pt;}
.y5b{bottom:723.773333pt;}
.y5a{bottom:748.413333pt;}
.y92{bottom:755.133333pt;}
.y59{bottom:773.213333pt;}
.ya8{bottom:779.973333pt;}
.y58{bottom:797.893333pt;}
.ya7{bottom:804.613333pt;}
.y57{bottom:822.533333pt;}
.ycb{bottom:829.253333pt;}
.yb{bottom:832.293333pt;}
.y56{bottom:847.173333pt;}
.ya1{bottom:853.893333pt;}
.ya{bottom:864.933333pt;}
.y55{bottom:871.973333pt;}
.ybb{bottom:878.693333pt;}
.y2e{bottom:887.973333pt;}
.y9{bottom:889.573333pt;}
.y54{bottom:896.613333pt;}
.y2b{bottom:913.413333pt;}
.y8{bottom:914.213333pt;}
.y52{bottom:921.253333pt;}
.y53{bottom:927.973333pt;}
.y7{bottom:939.973333pt;}
.y51{bottom:945.893333pt;}
.y91{bottom:952.613333pt;}
.y6{bottom:968.293333pt;}
.y4f{bottom:970.693333pt;}
.y50{bottom:977.413333pt;}
.y5{bottom:995.333333pt;}
.y83{bottom:1002.053333pt;}
.y4{bottom:1020.000000pt;}
.y82{bottom:1026.720000pt;}
.h3{height:20.032000pt;}
.h8{height:24.640000pt;}
.hc{height:24.800000pt;}
.hf{height:30.459375pt;}
.h11{height:41.601562pt;}
.he{height:42.304688pt;}
.h16{height:46.039063pt;}
.h17{height:46.362069pt;}
.h10{height:46.817187pt;}
.h14{height:51.031250pt;}
.h15{height:51.389281pt;}
.h4{height:51.589687pt;}
.h5{height:52.430625pt;}
.h6{height:58.644688pt;}
.h7{height:59.950313pt;}
.h12{height:64.898438pt;}
.h2{height:65.995312pt;}
.h13{height:69.184687pt;}
.hb{height:123.392000pt;}
.ha{height:320.986667pt;}
.hd{height:345.626667pt;}
.h9{height:395.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:52.352000pt;}
.w5{width:217.466667pt;}
.w4{width:425.346667pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x3{left:16.800000pt;}
.xb{left:54.394667pt;}
.xa{left:56.794667pt;}
.x1{left:85.151988pt;}
.x10{left:89.471988pt;}
.x66{left:91.871988pt;}
.x2a{left:93.791988pt;}
.x58{left:97.311988pt;}
.x7e{left:113.631988pt;}
.x5a{left:119.071988pt;}
.x27{left:122.911988pt;}
.x5{left:124.991988pt;}
.xc{left:132.351988pt;}
.x25{left:140.026643pt;}
.x7d{left:141.946655pt;}
.x44{left:147.386643pt;}
.x5b{left:149.466655pt;}
.x26{left:152.186655pt;}
.x5c{left:153.146655pt;}
.x57{left:158.746643pt;}
.x32{left:159.706643pt;}
.xd{left:164.666643pt;}
.x5d{left:166.586655pt;}
.xe{left:170.746655pt;}
.x33{left:171.866655pt;}
.x50{left:172.986655pt;}
.x1b{left:177.146655pt;}
.x7b{left:181.306643pt;}
.x73{left:185.466655pt;}
.x1e{left:190.586643pt;}
.x7c{left:193.466655pt;}
.x1f{left:202.746655pt;}
.x55{left:217.466643pt;}
.x29{left:225.306655pt;}
.x74{left:227.226643pt;}
.x56{left:229.626655pt;}
.x17{left:236.026643pt;}
.x38{left:239.066643pt;}
.x7{left:240.506655pt;}
.x18{left:242.106655pt;}
.x3f{left:247.906643pt;}
.x39{left:251.266655pt;}
.x40{left:260.066655pt;}
.x6e{left:272.386655pt;}
.x43{left:274.946643pt;}
.xf{left:277.186655pt;}
.x6{left:287.746655pt;}
.x5e{left:291.586655pt;}
.x20{left:298.466643pt;}
.x2d{left:300.226655pt;}
.x5f{left:304.866655pt;}
.x49{left:305.826655pt;}
.x60{left:308.546655pt;}
.x13{left:310.466643pt;}
.x14{left:316.546655pt;}
.x3c{left:321.826655pt;}
.x4a{left:326.146655pt;}
.x3d{left:331.426643pt;}
.x34{left:335.106643pt;}
.x3e{left:343.586655pt;}
.x3a{left:346.146643pt;}
.x35{left:347.266655pt;}
.x77{left:350.626643pt;}
.x3b{left:358.306655pt;}
.x78{left:362.786655pt;}
.x51{left:365.666655pt;}
.x4b{left:369.986655pt;}
.x2{left:374.946667pt;}
.x52{left:379.426655pt;}
.x53{left:388.066655pt;}
.x4{left:396.866655pt;}
.x67{left:398.306655pt;}
.x68{left:402.146655pt;}
.x15{left:409.346643pt;}
.x61{left:412.706655pt;}
.x16{left:415.453322pt;}
.x21{left:421.853322pt;}
.x6f{left:438.653310pt;}
.x4c{left:441.533322pt;}
.x54{left:445.853322pt;}
.x70{left:450.813322pt;}
.x19{left:462.173310pt;}
.x1a{left:468.253322pt;}
.x79{left:486.333310pt;}
.x2e{left:488.093310pt;}
.x4d{left:495.933322pt;}
.x7a{left:498.493322pt;}
.x2f{left:500.253322pt;}
.x22{left:504.733310pt;}
.x9{left:510.493333pt;}
.x47{left:512.093310pt;}
.x62{left:514.973322pt;}
.x23{left:516.893322pt;}
.x63{left:518.813322pt;}
.x48{left:524.253322pt;}
.x36{left:546.973310pt;}
.x37{left:559.133322pt;}
.x69{left:562.173322pt;}
.x6a{left:568.893322pt;}
.x71{left:570.173310pt;}
.x4e{left:577.213322pt;}
.x72{left:582.333322pt;}
.x59{left:585.253310pt;}
.x1c{left:591.813310pt;}
.x1d{left:597.893322pt;}
.x28{left:603.013322pt;}
.x30{left:605.413310pt;}
.x75{left:612.773310pt;}
.x2b{left:614.693310pt;}
.x31{left:617.573322pt;}
.x76{left:624.933322pt;}
.x2c{left:626.853322pt;}
.x6c{left:628.293310pt;}
.x45{left:632.293310pt;}
.x6d{left:640.453322pt;}
.x46{left:644.453322pt;}
.x64{left:650.693322pt;}
.x4f{left:652.293322pt;}
.x65{left:655.173322pt;}
.x6b{left:662.213322pt;}
.x24{left:692.133310pt;}
.x41{left:696.613310pt;}
.x11{left:698.053310pt;}
.x12{left:704.133322pt;}
.x42{left:708.773322pt;}
}




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