
    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_887e96846a2ff604f9de16f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_645f9483c229755a1d7c1734.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_77bb826b8bc87e1f39931640.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_1b48e907171024ed96b92734.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912598;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_3d374551f54aa91ec74a98d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_0f4a1ea574d41bf111ca31c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_887e96846a2ff604f9de16f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_de1c18928de45300624cdbf0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.565000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7d{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.250000px;}
.ws7e{word-spacing:-16.500000px;}
.ws79{word-spacing:-9.360000px;}
.ws3{word-spacing:-7.866000px;}
.ws3e{word-spacing:-6.912000px;}
.ws6f{word-spacing:-5.688000px;}
.ws4{word-spacing:-5.520000px;}
.ws45{word-spacing:-5.400000px;}
.ws63{word-spacing:-4.536000px;}
.ws3a{word-spacing:-4.176000px;}
.wsf{word-spacing:-4.032000px;}
.ws9b{word-spacing:-3.894000px;}
.ws71{word-spacing:-3.888000px;}
.ws67{word-spacing:-3.816000px;}
.ws35{word-spacing:-3.744000px;}
.ws33{word-spacing:-3.600000px;}
.ws50{word-spacing:-3.528000px;}
.ws6d{word-spacing:-3.240000px;}
.ws3c{word-spacing:-3.096000px;}
.ws8e{word-spacing:-2.970000px;}
.ws1c{word-spacing:-2.952000px;}
.ws97{word-spacing:-2.772000px;}
.ws80{word-spacing:-2.664000px;}
.ws6a{word-spacing:-2.592000px;}
.ws9{word-spacing:-2.553000px;}
.ws1a{word-spacing:-2.520000px;}
.ws3d{word-spacing:-2.448000px;}
.ws73{word-spacing:-2.304000px;}
.ws39{word-spacing:-2.232000px;}
.ws2d{word-spacing:-2.088000px;}
.ws12{word-spacing:-1.872000px;}
.ws44{word-spacing:-1.800000px;}
.ws54{word-spacing:-1.728000px;}
.wsd{word-spacing:-1.725000px;}
.ws64{word-spacing:-1.656000px;}
.ws48{word-spacing:-1.512000px;}
.ws4c{word-spacing:-1.440000px;}
.ws89{word-spacing:-1.368000px;}
.ws59{word-spacing:-1.296000px;}
.ws8d{word-spacing:-1.188000px;}
.wsb{word-spacing:-1.104000px;}
.wse{word-spacing:-1.035000px;}
.ws9a{word-spacing:-0.858000px;}
.ws74{word-spacing:-0.576000px;}
.ws92{word-spacing:-0.396000px;}
.ws2{word-spacing:-0.336000px;}
.ws78{word-spacing:-0.288000px;}
.ws72{word-spacing:-0.216000px;}
.ws1{word-spacing:0.000000px;}
.ws61{word-spacing:0.144000px;}
.ws7{word-spacing:0.276000px;}
.ws2b{word-spacing:0.288000px;}
.ws1f{word-spacing:0.360000px;}
.ws98{word-spacing:0.528000px;}
.ws90{word-spacing:0.594000px;}
.ws58{word-spacing:0.648000px;}
.ws26{word-spacing:0.720000px;}
.ws56{word-spacing:0.792000px;}
.ws2c{word-spacing:0.864000px;}
.ws2a{word-spacing:1.080000px;}
.ws3b{word-spacing:1.152000px;}
.ws1b{word-spacing:1.224000px;}
.ws52{word-spacing:1.296000px;}
.ws14{word-spacing:1.368000px;}
.ws17{word-spacing:1.440000px;}
.ws75{word-spacing:1.512000px;}
.ws10{word-spacing:1.656000px;}
.ws24{word-spacing:1.872000px;}
.ws27{word-spacing:1.944000px;}
.ws68{word-spacing:2.160000px;}
.ws76{word-spacing:2.232000px;}
.ws96{word-spacing:2.244000px;}
.ws41{word-spacing:2.304000px;}
.ws38{word-spacing:2.448000px;}
.ws4f{word-spacing:2.520000px;}
.ws51{word-spacing:2.664000px;}
.ws3f{word-spacing:2.736000px;}
.ws7a{word-spacing:2.952000px;}
.ws22{word-spacing:3.240000px;}
.ws4d{word-spacing:3.312000px;}
.ws46{word-spacing:3.384000px;}
.ws4e{word-spacing:3.456000px;}
.ws6{word-spacing:3.519000px;}
.ws77{word-spacing:3.528000px;}
.ws19{word-spacing:3.672000px;}
.ws36{word-spacing:3.888000px;}
.wsa{word-spacing:4.140000px;}
.ws55{word-spacing:4.248000px;}
.ws1e{word-spacing:4.392000px;}
.ws65{word-spacing:4.464000px;}
.ws29{word-spacing:4.608000px;}
.ws93{word-spacing:4.620000px;}
.ws85{word-spacing:4.752000px;}
.ws47{word-spacing:4.824000px;}
.ws23{word-spacing:4.896000px;}
.ws95{word-spacing:4.950000px;}
.ws7c{word-spacing:4.968000px;}
.wsc{word-spacing:5.313000px;}
.ws62{word-spacing:5.472000px;}
.ws66{word-spacing:5.760000px;}
.ws53{word-spacing:5.976000px;}
.ws5a{word-spacing:6.048000px;}
.ws8f{word-spacing:6.138000px;}
.ws31{word-spacing:6.336000px;}
.ws16{word-spacing:6.480000px;}
.ws28{word-spacing:6.768000px;}
.ws88{word-spacing:6.840000px;}
.ws20{word-spacing:7.056000px;}
.ws87{word-spacing:7.272000px;}
.ws32{word-spacing:7.416000px;}
.ws7f{word-spacing:7.632000px;}
.ws5{word-spacing:7.866000px;}
.ws2f{word-spacing:7.992000px;}
.ws83{word-spacing:8.208000px;}
.ws6e{word-spacing:8.856000px;}
.ws15{word-spacing:9.144000px;}
.ws86{word-spacing:9.216000px;}
.ws21{word-spacing:9.360000px;}
.ws37{word-spacing:9.504000px;}
.ws11{word-spacing:9.864000px;}
.ws69{word-spacing:9.936000px;}
.ws99{word-spacing:9.966000px;}
.ws7b{word-spacing:10.008000px;}
.ws4a{word-spacing:10.296000px;}
.ws82{word-spacing:10.368000px;}
.ws40{word-spacing:10.512000px;}
.ws34{word-spacing:10.584000px;}
.ws81{word-spacing:10.872000px;}
.ws57{word-spacing:12.096000px;}
.ws30{word-spacing:12.168000px;}
.ws8{word-spacing:12.903000px;}
.ws70{word-spacing:13.032000px;}
.ws2e{word-spacing:13.104000px;}
.ws25{word-spacing:13.248000px;}
.ws18{word-spacing:13.320000px;}
.ws49{word-spacing:13.536000px;}
.ws91{word-spacing:13.596000px;}
.ws4b{word-spacing:14.184000px;}
.ws1d{word-spacing:15.552000px;}
.ws84{word-spacing:16.056000px;}
.ws13{word-spacing:16.488000px;}
.ws8a{word-spacing:18.942000px;}
.ws60{word-spacing:21.960000px;}
.ws8b{word-spacing:22.572000px;}
.ws94{word-spacing:24.288000px;}
.ws43{word-spacing:26.784000px;}
.ws42{word-spacing:28.656000px;}
.ws8c{word-spacing:32.340000px;}
.ws5c{word-spacing:42.625800px;}
.ws5d{word-spacing:69.625800px;}
.ws5e{word-spacing:164.125800px;}
.ws5b{word-spacing:250.459800px;}
.ws6c{word-spacing:253.062600px;}
.ws6b{word-spacing:263.557200px;}
.ws5f{word-spacing:291.558600px;}
._11{margin-left:-7.662000px;}
._0{margin-left:-5.352000px;}
._1{margin-left:-3.316800px;}
._2{margin-left:-1.520400px;}
._6{width:1.440000px;}
._3{width:2.671200px;}
._b{width:3.744000px;}
._8{width:5.008800px;}
._7{width:6.297600px;}
._17{width:7.819200px;}
._16{width:8.978400px;}
._5{width:9.979200px;}
._4{width:11.455200px;}
._a{width:13.197600px;}
._9{width:14.515200px;}
._10{width:144.570600px;}
._d{width:164.125800px;}
._e{width:171.570600px;}
._12{width:175.404600px;}
._f{width:185.070600px;}
._14{width:239.422800px;}
._c{width:474.510600px;}
._13{width:503.609400px;}
._15{width:523.278000px;}
.fc1{color:rgb(16,15,13);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.138100px;}
.y91{bottom:86.604450px;}
.yf1{bottom:91.440600px;}
.y22{bottom:96.153000px;}
.y69{bottom:96.354450px;}
.y49{bottom:103.404450px;}
.y90{bottom:107.604450px;}
.yb6{bottom:108.593850px;}
.yf0{bottom:109.440600px;}
.y21{bottom:117.153000px;}
.y68{bottom:117.954600px;}
.ycc{bottom:120.768000px;}
.y48{bottom:124.404450px;}
.y8f{bottom:128.604450px;}
.yb5{bottom:130.343850px;}
.yef{bottom:131.692500px;}
.y20{bottom:138.153000px;}
.y67{bottom:139.554600px;}
.ycb{bottom:141.768000px;}
.y47{bottom:145.404450px;}
.y8e{bottom:149.604450px;}
.yee{bottom:149.692500px;}
.yb4{bottom:152.093850px;}
.y1f{bottom:159.153000px;}
.y66{bottom:161.154450px;}
.yca{bottom:162.768000px;}
.y46{bottom:166.404450px;}
.yed{bottom:167.692500px;}
.y8d{bottom:170.604450px;}
.y1e{bottom:180.153000px;}
.y65{bottom:182.754600px;}
.yc9{bottom:183.767850px;}
.y45{bottom:187.404450px;}
.y8c{bottom:191.604600px;}
.yb3{bottom:195.593850px;}
.y1d{bottom:201.903000px;}
.y64{bottom:204.354600px;}
.yc8{bottom:204.767850px;}
.y44{bottom:208.404450px;}
.yec{bottom:209.444550px;}
.y8b{bottom:212.604600px;}
.yb2{bottom:214.647450px;}
.y1c{bottom:223.653000px;}
.yc7{bottom:225.767850px;}
.y63{bottom:225.954600px;}
.y43{bottom:229.404450px;}
.yb1{bottom:230.843850px;}
.y8a{bottom:233.604600px;}
.y1b{bottom:245.403000px;}
.yb0{bottom:245.843850px;}
.yc6{bottom:246.767850px;}
.y62{bottom:247.704600px;}
.y42{bottom:250.404450px;}
.yeb{bottom:252.644550px;}
.y89{bottom:254.604600px;}
.yaf{bottom:262.040250px;}
.y1a{bottom:267.153000px;}
.y61{bottom:269.454600px;}
.y41{bottom:271.404450px;}
.yea{bottom:273.644550px;}
.y88{bottom:275.604600px;}
.yae{bottom:284.540250px;}
.y19{bottom:288.903000px;}
.yc5{bottom:289.368000px;}
.y60{bottom:291.204600px;}
.y40{bottom:292.404450px;}
.ye9{bottom:294.644550px;}
.y87{bottom:296.604600px;}
.yc4{bottom:306.132600px;}
.yad{bottom:307.040250px;}
.y5f{bottom:312.954600px;}
.y3f{bottom:313.404450px;}
.ye8{bottom:315.644550px;}
.y86{bottom:317.604600px;}
.yc3{bottom:327.392400px;}
.yac{bottom:329.540250px;}
.y18{bottom:332.403000px;}
.y3e{bottom:334.404450px;}
.y5e{bottom:334.704600px;}
.ye7{bottom:336.644550px;}
.y85{bottom:338.604600px;}
.yc2{bottom:348.652200px;}
.yab{bottom:352.040250px;}
.y3d{bottom:355.404450px;}
.y5d{bottom:356.454600px;}
.ye6{bottom:357.644550px;}
.y84{bottom:359.604600px;}
.yc1{bottom:369.912150px;}
.yaa{bottom:374.540250px;}
.y17{bottom:375.603000px;}
.y3c{bottom:376.404450px;}
.y5c{bottom:378.204600px;}
.ye5{bottom:378.644550px;}
.y83{bottom:380.604600px;}
.yc0{bottom:391.171950px;}
.ya9{bottom:397.040250px;}
.y3b{bottom:397.404450px;}
.y16{bottom:399.354900px;}
.ye4{bottom:399.644550px;}
.y5b{bottom:399.954600px;}
.y82{bottom:401.604600px;}
.y10c{bottom:411.972900px;}
.ybf{bottom:412.431750px;}
.y3a{bottom:418.404450px;}
.ya8{bottom:419.540250px;}
.ye3{bottom:420.644550px;}
.y5a{bottom:421.704600px;}
.y81{bottom:422.604600px;}
.y15{bottom:427.358850px;}
.y10b{bottom:429.972900px;}
.ybe{bottom:433.691700px;}
.y39{bottom:439.404450px;}
.ye2{bottom:441.644550px;}
.ya7{bottom:442.040250px;}
.y59{bottom:442.704600px;}
.y80{bottom:443.604600px;}
.y14{bottom:446.858850px;}
.y10a{bottom:452.224800px;}
.ybd{bottom:455.096550px;}
.y38{bottom:460.404450px;}
.ye1{bottom:462.644550px;}
.y58{bottom:463.704600px;}
.ya6{bottom:464.540250px;}
.y7f{bottom:464.604600px;}
.y13{bottom:466.358850px;}
.y109{bottom:470.224800px;}
.y37{bottom:481.404450px;}
.ye0{bottom:483.644550px;}
.y57{bottom:484.704600px;}
.y7e{bottom:485.604600px;}
.y12{bottom:485.858850px;}
.ybc{bottom:486.700650px;}
.y108{bottom:492.476850px;}
.ya5{bottom:495.240600px;}
.y36{bottom:502.404450px;}
.ydf{bottom:504.644550px;}
.ybb{bottom:504.700650px;}
.y11{bottom:505.358850px;}
.y56{bottom:505.704600px;}
.y7d{bottom:506.604600px;}
.y107{bottom:511.976850px;}
.ya4{bottom:521.744550px;}
.y35{bottom:523.404450px;}
.y10{bottom:524.858850px;}
.yde{bottom:525.644550px;}
.y55{bottom:526.704600px;}
.y7c{bottom:527.604600px;}
.y106{bottom:534.228900px;}
.ya3{bottom:542.744550px;}
.yf{bottom:544.358850px;}
.y34{bottom:544.404450px;}
.ydd{bottom:546.644550px;}
.y54{bottom:547.704600px;}
.y7b{bottom:548.604600px;}
.yba{bottom:549.204600px;}
.y105{bottom:552.228900px;}
.ya2{bottom:563.744550px;}
.ye{bottom:563.858850px;}
.y33{bottom:565.404450px;}
.ydc{bottom:567.644550px;}
.y53{bottom:568.704600px;}
.y7a{bottom:569.604600px;}
.yb9{bottom:570.204600px;}
.y104{bottom:570.228750px;}
.yd{bottom:583.358850px;}
.ya1{bottom:584.744550px;}
.y32{bottom:586.404450px;}
.ydb{bottom:588.644550px;}
.y52{bottom:589.704600px;}
.y79{bottom:590.604600px;}
.yb8{bottom:591.204600px;}
.y103{bottom:592.480800px;}
.yc{bottom:602.858850px;}
.ya0{bottom:605.744550px;}
.y31{bottom:607.404450px;}
.yda{bottom:609.644550px;}
.y102{bottom:610.480800px;}
.y51{bottom:611.454600px;}
.y78{bottom:611.604600px;}
.yb7{bottom:612.204600px;}
.yb{bottom:622.358850px;}
.y9f{bottom:626.744550px;}
.y30{bottom:628.404450px;}
.y101{bottom:628.480800px;}
.yd9{bottom:630.644550px;}
.y77{bottom:632.604600px;}
.y50{bottom:633.204600px;}
.ya{bottom:641.858850px;}
.y9e{bottom:647.744550px;}
.y2f{bottom:650.154450px;}
.y100{bottom:650.732700px;}
.yd8{bottom:651.644550px;}
.y76{bottom:653.604600px;}
.y4f{bottom:654.204600px;}
.y9{bottom:661.358850px;}
.yff{bottom:668.732700px;}
.y9d{bottom:668.744550px;}
.y2e{bottom:671.904450px;}
.yd7{bottom:672.644550px;}
.y75{bottom:674.604600px;}
.y4e{bottom:675.204600px;}
.y9c{bottom:689.744550px;}
.yfe{bottom:690.984750px;}
.yd6{bottom:693.644550px;}
.y2d{bottom:693.654450px;}
.y74{bottom:695.604600px;}
.y4d{bottom:696.204600px;}
.y8{bottom:705.862800px;}
.yfd{bottom:708.984750px;}
.y9b{bottom:710.744550px;}
.yd5{bottom:714.644550px;}
.y73{bottom:716.604600px;}
.y4c{bottom:717.204600px;}
.y7{bottom:727.462800px;}
.yfc{bottom:731.236650px;}
.y9a{bottom:731.744550px;}
.yd4{bottom:735.644550px;}
.y2c{bottom:737.004600px;}
.y72{bottom:737.604600px;}
.y4b{bottom:738.204600px;}
.y6{bottom:749.062800px;}
.yfb{bottom:749.236650px;}
.y99{bottom:753.494550px;}
.yd3{bottom:756.644550px;}
.y71{bottom:758.604600px;}
.y4a{bottom:759.204600px;}
.y5{bottom:770.662800px;}
.yfa{bottom:771.488700px;}
.y98{bottom:775.244550px;}
.yd2{bottom:777.644550px;}
.y70{bottom:779.604450px;}
.y2b{bottom:780.204600px;}
.yf9{bottom:789.488700px;}
.y97{bottom:796.994550px;}
.yd1{bottom:798.644550px;}
.y6f{bottom:800.604450px;}
.y2a{bottom:801.204600px;}
.yf8{bottom:811.740600px;}
.y4{bottom:817.462800px;}
.y96{bottom:818.744550px;}
.yd0{bottom:819.644550px;}
.y6e{bottom:821.604450px;}
.y29{bottom:822.204600px;}
.yf7{bottom:829.740600px;}
.y95{bottom:840.494550px;}
.ycf{bottom:840.644550px;}
.y6d{bottom:842.604450px;}
.y28{bottom:843.204600px;}
.y3{bottom:844.462800px;}
.yf6{bottom:847.740600px;}
.y94{bottom:862.244550px;}
.yce{bottom:862.394550px;}
.y6c{bottom:863.604450px;}
.y27{bottom:864.204600px;}
.yf5{bottom:869.992650px;}
.y93{bottom:883.994550px;}
.ycd{bottom:884.144550px;}
.y6b{bottom:884.604450px;}
.y26{bottom:885.204600px;}
.yf4{bottom:887.992650px;}
.y6a{bottom:905.604450px;}
.y25{bottom:906.204600px;}
.yf3{bottom:910.244550px;}
.y24{bottom:927.204600px;}
.y92{bottom:927.494550px;}
.yf2{bottom:928.244550px;}
.y23{bottom:930.654750px;}
.y1{bottom:965.377200px;}
.h2{height:33.328125px;}
.hb{height:36.597656px;}
.hc{height:37.625977px;}
.ha{height:41.689453px;}
.he{height:45.826172px;}
.hf{height:45.858398px;}
.h8{height:47.909180px;}
.h7{height:48.077637px;}
.h6{height:50.027344px;}
.h9{height:50.167969px;}
.h3{height:50.400000px;}
.h4{height:56.929688px;}
.h5{height:58.529297px;}
.hd{height:67.085508px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.787450px;}
.x1{left:84.330750px;}
.xf{left:85.414350px;}
.x3{left:111.729600px;}
.xc{left:123.307050px;}
.x5{left:133.724250px;}
.xa{left:134.787450px;}
.xd{left:136.063050px;}
.xe{left:139.761600px;}
.x7{left:158.469150px;}
.x10{left:170.990550px;}
.x15{left:174.851850px;}
.x14{left:183.095850px;}
.x13{left:185.728200px;}
.x6{left:202.792350px;}
.x4{left:231.408000px;}
.x12{left:260.379900px;}
.xb{left:264.760050px;}
.x11{left:273.280650px;}
.x8{left:285.897300px;}
.x2{left:352.068750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.280000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7d{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.333333pt;}
.ws7e{word-spacing:-14.666667pt;}
.ws79{word-spacing:-8.320000pt;}
.ws3{word-spacing:-6.992000pt;}
.ws3e{word-spacing:-6.144000pt;}
.ws6f{word-spacing:-5.056000pt;}
.ws4{word-spacing:-4.906667pt;}
.ws45{word-spacing:-4.800000pt;}
.ws63{word-spacing:-4.032000pt;}
.ws3a{word-spacing:-3.712000pt;}
.wsf{word-spacing:-3.584000pt;}
.ws9b{word-spacing:-3.461333pt;}
.ws71{word-spacing:-3.456000pt;}
.ws67{word-spacing:-3.392000pt;}
.ws35{word-spacing:-3.328000pt;}
.ws33{word-spacing:-3.200000pt;}
.ws50{word-spacing:-3.136000pt;}
.ws6d{word-spacing:-2.880000pt;}
.ws3c{word-spacing:-2.752000pt;}
.ws8e{word-spacing:-2.640000pt;}
.ws1c{word-spacing:-2.624000pt;}
.ws97{word-spacing:-2.464000pt;}
.ws80{word-spacing:-2.368000pt;}
.ws6a{word-spacing:-2.304000pt;}
.ws9{word-spacing:-2.269333pt;}
.ws1a{word-spacing:-2.240000pt;}
.ws3d{word-spacing:-2.176000pt;}
.ws73{word-spacing:-2.048000pt;}
.ws39{word-spacing:-1.984000pt;}
.ws2d{word-spacing:-1.856000pt;}
.ws12{word-spacing:-1.664000pt;}
.ws44{word-spacing:-1.600000pt;}
.ws54{word-spacing:-1.536000pt;}
.wsd{word-spacing:-1.533333pt;}
.ws64{word-spacing:-1.472000pt;}
.ws48{word-spacing:-1.344000pt;}
.ws4c{word-spacing:-1.280000pt;}
.ws89{word-spacing:-1.216000pt;}
.ws59{word-spacing:-1.152000pt;}
.ws8d{word-spacing:-1.056000pt;}
.wsb{word-spacing:-0.981333pt;}
.wse{word-spacing:-0.920000pt;}
.ws9a{word-spacing:-0.762667pt;}
.ws74{word-spacing:-0.512000pt;}
.ws92{word-spacing:-0.352000pt;}
.ws2{word-spacing:-0.298667pt;}
.ws78{word-spacing:-0.256000pt;}
.ws72{word-spacing:-0.192000pt;}
.ws1{word-spacing:0.000000pt;}
.ws61{word-spacing:0.128000pt;}
.ws7{word-spacing:0.245333pt;}
.ws2b{word-spacing:0.256000pt;}
.ws1f{word-spacing:0.320000pt;}
.ws98{word-spacing:0.469333pt;}
.ws90{word-spacing:0.528000pt;}
.ws58{word-spacing:0.576000pt;}
.ws26{word-spacing:0.640000pt;}
.ws56{word-spacing:0.704000pt;}
.ws2c{word-spacing:0.768000pt;}
.ws2a{word-spacing:0.960000pt;}
.ws3b{word-spacing:1.024000pt;}
.ws1b{word-spacing:1.088000pt;}
.ws52{word-spacing:1.152000pt;}
.ws14{word-spacing:1.216000pt;}
.ws17{word-spacing:1.280000pt;}
.ws75{word-spacing:1.344000pt;}
.ws10{word-spacing:1.472000pt;}
.ws24{word-spacing:1.664000pt;}
.ws27{word-spacing:1.728000pt;}
.ws68{word-spacing:1.920000pt;}
.ws76{word-spacing:1.984000pt;}
.ws96{word-spacing:1.994667pt;}
.ws41{word-spacing:2.048000pt;}
.ws38{word-spacing:2.176000pt;}
.ws4f{word-spacing:2.240000pt;}
.ws51{word-spacing:2.368000pt;}
.ws3f{word-spacing:2.432000pt;}
.ws7a{word-spacing:2.624000pt;}
.ws22{word-spacing:2.880000pt;}
.ws4d{word-spacing:2.944000pt;}
.ws46{word-spacing:3.008000pt;}
.ws4e{word-spacing:3.072000pt;}
.ws6{word-spacing:3.128000pt;}
.ws77{word-spacing:3.136000pt;}
.ws19{word-spacing:3.264000pt;}
.ws36{word-spacing:3.456000pt;}
.wsa{word-spacing:3.680000pt;}
.ws55{word-spacing:3.776000pt;}
.ws1e{word-spacing:3.904000pt;}
.ws65{word-spacing:3.968000pt;}
.ws29{word-spacing:4.096000pt;}
.ws93{word-spacing:4.106667pt;}
.ws85{word-spacing:4.224000pt;}
.ws47{word-spacing:4.288000pt;}
.ws23{word-spacing:4.352000pt;}
.ws95{word-spacing:4.400000pt;}
.ws7c{word-spacing:4.416000pt;}
.wsc{word-spacing:4.722667pt;}
.ws62{word-spacing:4.864000pt;}
.ws66{word-spacing:5.120000pt;}
.ws53{word-spacing:5.312000pt;}
.ws5a{word-spacing:5.376000pt;}
.ws8f{word-spacing:5.456000pt;}
.ws31{word-spacing:5.632000pt;}
.ws16{word-spacing:5.760000pt;}
.ws28{word-spacing:6.016000pt;}
.ws88{word-spacing:6.080000pt;}
.ws20{word-spacing:6.272000pt;}
.ws87{word-spacing:6.464000pt;}
.ws32{word-spacing:6.592000pt;}
.ws7f{word-spacing:6.784000pt;}
.ws5{word-spacing:6.992000pt;}
.ws2f{word-spacing:7.104000pt;}
.ws83{word-spacing:7.296000pt;}
.ws6e{word-spacing:7.872000pt;}
.ws15{word-spacing:8.128000pt;}
.ws86{word-spacing:8.192000pt;}
.ws21{word-spacing:8.320000pt;}
.ws37{word-spacing:8.448000pt;}
.ws11{word-spacing:8.768000pt;}
.ws69{word-spacing:8.832000pt;}
.ws99{word-spacing:8.858667pt;}
.ws7b{word-spacing:8.896000pt;}
.ws4a{word-spacing:9.152000pt;}
.ws82{word-spacing:9.216000pt;}
.ws40{word-spacing:9.344000pt;}
.ws34{word-spacing:9.408000pt;}
.ws81{word-spacing:9.664000pt;}
.ws57{word-spacing:10.752000pt;}
.ws30{word-spacing:10.816000pt;}
.ws8{word-spacing:11.469333pt;}
.ws70{word-spacing:11.584000pt;}
.ws2e{word-spacing:11.648000pt;}
.ws25{word-spacing:11.776000pt;}
.ws18{word-spacing:11.840000pt;}
.ws49{word-spacing:12.032000pt;}
.ws91{word-spacing:12.085333pt;}
.ws4b{word-spacing:12.608000pt;}
.ws1d{word-spacing:13.824000pt;}
.ws84{word-spacing:14.272000pt;}
.ws13{word-spacing:14.656000pt;}
.ws8a{word-spacing:16.837333pt;}
.ws60{word-spacing:19.520000pt;}
.ws8b{word-spacing:20.064000pt;}
.ws94{word-spacing:21.589333pt;}
.ws43{word-spacing:23.808000pt;}
.ws42{word-spacing:25.472000pt;}
.ws8c{word-spacing:28.746667pt;}
.ws5c{word-spacing:37.889600pt;}
.ws5d{word-spacing:61.889600pt;}
.ws5e{word-spacing:145.889600pt;}
.ws5b{word-spacing:222.630933pt;}
.ws6c{word-spacing:224.944533pt;}
.ws6b{word-spacing:234.273067pt;}
.ws5f{word-spacing:259.163200pt;}
._11{margin-left:-6.810667pt;}
._0{margin-left:-4.757333pt;}
._1{margin-left:-2.948267pt;}
._2{margin-left:-1.351467pt;}
._6{width:1.280000pt;}
._3{width:2.374400pt;}
._b{width:3.328000pt;}
._8{width:4.452267pt;}
._7{width:5.597867pt;}
._17{width:6.950400pt;}
._16{width:7.980800pt;}
._5{width:8.870400pt;}
._4{width:10.182400pt;}
._a{width:11.731200pt;}
._9{width:12.902400pt;}
._10{width:128.507200pt;}
._d{width:145.889600pt;}
._e{width:152.507200pt;}
._12{width:155.915200pt;}
._f{width:164.507200pt;}
._14{width:212.820267pt;}
._c{width:421.787200pt;}
._13{width:447.652800pt;}
._15{width:465.136000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.900533pt;}
.y91{bottom:76.981733pt;}
.yf1{bottom:81.280533pt;}
.y22{bottom:85.469333pt;}
.y69{bottom:85.648400pt;}
.y49{bottom:91.915067pt;}
.y90{bottom:95.648400pt;}
.yb6{bottom:96.527867pt;}
.yf0{bottom:97.280533pt;}
.y21{bottom:104.136000pt;}
.y68{bottom:104.848533pt;}
.ycc{bottom:107.349333pt;}
.y48{bottom:110.581733pt;}
.y8f{bottom:114.315067pt;}
.yb5{bottom:115.861200pt;}
.yef{bottom:117.060000pt;}
.y20{bottom:122.802667pt;}
.y67{bottom:124.048533pt;}
.ycb{bottom:126.016000pt;}
.y47{bottom:129.248400pt;}
.y8e{bottom:132.981733pt;}
.yee{bottom:133.060000pt;}
.yb4{bottom:135.194533pt;}
.y1f{bottom:141.469333pt;}
.y66{bottom:143.248400pt;}
.yca{bottom:144.682667pt;}
.y46{bottom:147.915067pt;}
.yed{bottom:149.060000pt;}
.y8d{bottom:151.648400pt;}
.y1e{bottom:160.136000pt;}
.y65{bottom:162.448533pt;}
.yc9{bottom:163.349200pt;}
.y45{bottom:166.581733pt;}
.y8c{bottom:170.315200pt;}
.yb3{bottom:173.861200pt;}
.y1d{bottom:179.469333pt;}
.y64{bottom:181.648533pt;}
.yc8{bottom:182.015867pt;}
.y44{bottom:185.248400pt;}
.yec{bottom:186.172933pt;}
.y8b{bottom:188.981867pt;}
.yb2{bottom:190.797733pt;}
.y1c{bottom:198.802667pt;}
.yc7{bottom:200.682533pt;}
.y63{bottom:200.848533pt;}
.y43{bottom:203.915067pt;}
.yb1{bottom:205.194533pt;}
.y8a{bottom:207.648533pt;}
.y1b{bottom:218.136000pt;}
.yb0{bottom:218.527867pt;}
.yc6{bottom:219.349200pt;}
.y62{bottom:220.181867pt;}
.y42{bottom:222.581733pt;}
.yeb{bottom:224.572933pt;}
.y89{bottom:226.315200pt;}
.yaf{bottom:232.924667pt;}
.y1a{bottom:237.469333pt;}
.y61{bottom:239.515200pt;}
.y41{bottom:241.248400pt;}
.yea{bottom:243.239600pt;}
.y88{bottom:244.981867pt;}
.yae{bottom:252.924667pt;}
.y19{bottom:256.802667pt;}
.yc5{bottom:257.216000pt;}
.y60{bottom:258.848533pt;}
.y40{bottom:259.915067pt;}
.ye9{bottom:261.906267pt;}
.y87{bottom:263.648533pt;}
.yc4{bottom:272.117867pt;}
.yad{bottom:272.924667pt;}
.y5f{bottom:278.181867pt;}
.y3f{bottom:278.581733pt;}
.ye8{bottom:280.572933pt;}
.y86{bottom:282.315200pt;}
.yc3{bottom:291.015467pt;}
.yac{bottom:292.924667pt;}
.y18{bottom:295.469333pt;}
.y3e{bottom:297.248400pt;}
.y5e{bottom:297.515200pt;}
.ye7{bottom:299.239600pt;}
.y85{bottom:300.981867pt;}
.yc2{bottom:309.913067pt;}
.yab{bottom:312.924667pt;}
.y3d{bottom:315.915067pt;}
.y5d{bottom:316.848533pt;}
.ye6{bottom:317.906267pt;}
.y84{bottom:319.648533pt;}
.yc1{bottom:328.810800pt;}
.yaa{bottom:332.924667pt;}
.y17{bottom:333.869333pt;}
.y3c{bottom:334.581733pt;}
.y5c{bottom:336.181867pt;}
.ye5{bottom:336.572933pt;}
.y83{bottom:338.315200pt;}
.yc0{bottom:347.708400pt;}
.ya9{bottom:352.924667pt;}
.y3b{bottom:353.248400pt;}
.y16{bottom:354.982133pt;}
.ye4{bottom:355.239600pt;}
.y5b{bottom:355.515200pt;}
.y82{bottom:356.981867pt;}
.y10c{bottom:366.198133pt;}
.ybf{bottom:366.606000pt;}
.y3a{bottom:371.915067pt;}
.ya8{bottom:372.924667pt;}
.ye3{bottom:373.906267pt;}
.y5a{bottom:374.848533pt;}
.y81{bottom:375.648533pt;}
.y15{bottom:379.874533pt;}
.y10b{bottom:382.198133pt;}
.ybe{bottom:385.503733pt;}
.y39{bottom:390.581733pt;}
.ye2{bottom:392.572933pt;}
.ya7{bottom:392.924667pt;}
.y59{bottom:393.515200pt;}
.y80{bottom:394.315200pt;}
.y14{bottom:397.207867pt;}
.y10a{bottom:401.977600pt;}
.ybd{bottom:404.530267pt;}
.y38{bottom:409.248400pt;}
.ye1{bottom:411.239600pt;}
.y58{bottom:412.181867pt;}
.ya6{bottom:412.924667pt;}
.y7f{bottom:412.981867pt;}
.y13{bottom:414.541200pt;}
.y109{bottom:417.977600pt;}
.y37{bottom:427.915067pt;}
.ye0{bottom:429.906267pt;}
.y57{bottom:430.848533pt;}
.y7e{bottom:431.648533pt;}
.y12{bottom:431.874533pt;}
.ybc{bottom:432.622800pt;}
.y108{bottom:437.757200pt;}
.ya5{bottom:440.213867pt;}
.y36{bottom:446.581733pt;}
.ydf{bottom:448.572933pt;}
.ybb{bottom:448.622800pt;}
.y11{bottom:449.207867pt;}
.y56{bottom:449.515200pt;}
.y7d{bottom:450.315200pt;}
.y107{bottom:455.090533pt;}
.ya4{bottom:463.772933pt;}
.y35{bottom:465.248400pt;}
.y10{bottom:466.541200pt;}
.yde{bottom:467.239600pt;}
.y55{bottom:468.181867pt;}
.y7c{bottom:468.981867pt;}
.y106{bottom:474.870133pt;}
.ya3{bottom:482.439600pt;}
.yf{bottom:483.874533pt;}
.y34{bottom:483.915067pt;}
.ydd{bottom:485.906267pt;}
.y54{bottom:486.848533pt;}
.y7b{bottom:487.648533pt;}
.yba{bottom:488.181867pt;}
.y105{bottom:490.870133pt;}
.ya2{bottom:501.106267pt;}
.ye{bottom:501.207867pt;}
.y33{bottom:502.581733pt;}
.ydc{bottom:504.572933pt;}
.y53{bottom:505.515200pt;}
.y7a{bottom:506.315200pt;}
.yb9{bottom:506.848533pt;}
.y104{bottom:506.870000pt;}
.yd{bottom:518.541200pt;}
.ya1{bottom:519.772933pt;}
.y32{bottom:521.248400pt;}
.ydb{bottom:523.239600pt;}
.y52{bottom:524.181867pt;}
.y79{bottom:524.981867pt;}
.yb8{bottom:525.515200pt;}
.y103{bottom:526.649600pt;}
.yc{bottom:535.874533pt;}
.ya0{bottom:538.439600pt;}
.y31{bottom:539.915067pt;}
.yda{bottom:541.906267pt;}
.y102{bottom:542.649600pt;}
.y51{bottom:543.515200pt;}
.y78{bottom:543.648533pt;}
.yb7{bottom:544.181867pt;}
.yb{bottom:553.207867pt;}
.y9f{bottom:557.106267pt;}
.y30{bottom:558.581733pt;}
.y101{bottom:558.649600pt;}
.yd9{bottom:560.572933pt;}
.y77{bottom:562.315200pt;}
.y50{bottom:562.848533pt;}
.ya{bottom:570.541200pt;}
.y9e{bottom:575.772933pt;}
.y2f{bottom:577.915067pt;}
.y100{bottom:578.429067pt;}
.yd8{bottom:579.239600pt;}
.y76{bottom:580.981867pt;}
.y4f{bottom:581.515200pt;}
.y9{bottom:587.874533pt;}
.yff{bottom:594.429067pt;}
.y9d{bottom:594.439600pt;}
.y2e{bottom:597.248400pt;}
.yd7{bottom:597.906267pt;}
.y75{bottom:599.648533pt;}
.y4e{bottom:600.181867pt;}
.y9c{bottom:613.106267pt;}
.yfe{bottom:614.208667pt;}
.yd6{bottom:616.572933pt;}
.y2d{bottom:616.581733pt;}
.y74{bottom:618.315200pt;}
.y4d{bottom:618.848533pt;}
.y8{bottom:627.433600pt;}
.yfd{bottom:630.208667pt;}
.y9b{bottom:631.772933pt;}
.yd5{bottom:635.239600pt;}
.y73{bottom:636.981867pt;}
.y4c{bottom:637.515200pt;}
.y7{bottom:646.633600pt;}
.yfc{bottom:649.988133pt;}
.y9a{bottom:650.439600pt;}
.yd4{bottom:653.906267pt;}
.y2c{bottom:655.115200pt;}
.y72{bottom:655.648533pt;}
.y4b{bottom:656.181867pt;}
.y6{bottom:665.833600pt;}
.yfb{bottom:665.988133pt;}
.y99{bottom:669.772933pt;}
.yd3{bottom:672.572933pt;}
.y71{bottom:674.315200pt;}
.y4a{bottom:674.848533pt;}
.y5{bottom:685.033600pt;}
.yfa{bottom:685.767733pt;}
.y98{bottom:689.106267pt;}
.yd2{bottom:691.239600pt;}
.y70{bottom:692.981733pt;}
.y2b{bottom:693.515200pt;}
.yf9{bottom:701.767733pt;}
.y97{bottom:708.439600pt;}
.yd1{bottom:709.906267pt;}
.y6f{bottom:711.648400pt;}
.y2a{bottom:712.181867pt;}
.yf8{bottom:721.547200pt;}
.y4{bottom:726.633600pt;}
.y96{bottom:727.772933pt;}
.yd0{bottom:728.572933pt;}
.y6e{bottom:730.315067pt;}
.y29{bottom:730.848533pt;}
.yf7{bottom:737.547200pt;}
.y95{bottom:747.106267pt;}
.ycf{bottom:747.239600pt;}
.y6d{bottom:748.981733pt;}
.y28{bottom:749.515200pt;}
.y3{bottom:750.633600pt;}
.yf6{bottom:753.547200pt;}
.y94{bottom:766.439600pt;}
.yce{bottom:766.572933pt;}
.y6c{bottom:767.648400pt;}
.y27{bottom:768.181867pt;}
.yf5{bottom:773.326800pt;}
.y93{bottom:785.772933pt;}
.ycd{bottom:785.906267pt;}
.y6b{bottom:786.315067pt;}
.y26{bottom:786.848533pt;}
.yf4{bottom:789.326800pt;}
.y6a{bottom:804.981733pt;}
.y25{bottom:805.515200pt;}
.yf3{bottom:809.106267pt;}
.y24{bottom:824.181867pt;}
.y92{bottom:824.439600pt;}
.yf2{bottom:825.106267pt;}
.y23{bottom:827.248667pt;}
.y1{bottom:858.113067pt;}
.h2{height:29.625000pt;}
.hb{height:32.531250pt;}
.hc{height:33.445312pt;}
.ha{height:37.057292pt;}
.he{height:40.734375pt;}
.hf{height:40.763021pt;}
.h8{height:42.585938pt;}
.h7{height:42.735677pt;}
.h6{height:44.468750pt;}
.h9{height:44.593750pt;}
.h3{height:44.800000pt;}
.h4{height:50.604167pt;}
.h5{height:52.026042pt;}
.hd{height:59.631563pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.811067pt;}
.x1{left:74.960667pt;}
.xf{left:75.923867pt;}
.x3{left:99.315200pt;}
.xc{left:109.606267pt;}
.x5{left:118.866000pt;}
.xa{left:119.811067pt;}
.xd{left:120.944933pt;}
.xe{left:124.232533pt;}
.x7{left:140.861467pt;}
.x10{left:151.991600pt;}
.x15{left:155.423867pt;}
.x14{left:162.751867pt;}
.x13{left:165.091733pt;}
.x6{left:180.259867pt;}
.x4{left:205.696000pt;}
.x12{left:231.448800pt;}
.xb{left:235.342267pt;}
.x11{left:242.916133pt;}
.x8{left:254.130933pt;}
.x2{left:312.950000pt;}
}




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