
    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_0f48482c5bf82c631f97247b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_142ccf9ecd825245fa2474e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.077000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f91239bd817bfea0ee7c6fe6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.101000;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);}
.v4{vertical-align:-17.820000px;}
.v2{vertical-align:-11.998800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.998800px;}
.v3{vertical-align:17.820600px;}
.v5{vertical-align:45.705600px;}
.v6{vertical-align:63.528000px;}
.lsb{letter-spacing:-1.056000px;}
.ls15{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.484500px;}
.lsc{letter-spacing:-0.250560px;}
.ls16{letter-spacing:-0.005400px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.002040px;}
.ls14{letter-spacing:0.003480px;}
.lsf{letter-spacing:0.004080px;}
.ls10{letter-spacing:0.010800px;}
.ls9{letter-spacing:2.041200px;}
.ls2{letter-spacing:2.160000px;}
.ls4{letter-spacing:2.424600px;}
.ls0{letter-spacing:2.435400px;}
.lsa{letter-spacing:2.646000px;}
.ls6{letter-spacing:4.185000px;}
.ls7{letter-spacing:4.222800px;}
.ls5{letter-spacing:4.298400px;}
.ls8{letter-spacing:4.568400px;}
.lse{letter-spacing:6.075000px;}
.ls1{letter-spacing:18.360000px;}
.ls11{letter-spacing:261.268200px;}
.ls12{letter-spacing:1032.760200px;}
.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;}
}
.ws8f{word-spacing:-1042.960200px;}
.ws4b{word-spacing:-272.068200px;}
.ws4f{word-spacing:-260.728200px;}
.ws4{word-spacing:-15.368400px;}
.ws1{word-spacing:-15.098400px;}
.ws3{word-spacing:-15.022800px;}
.ws2{word-spacing:-14.985000px;}
.ws0{word-spacing:-13.224600px;}
.ws5{word-spacing:-12.841200px;}
.ws90{word-spacing:-12.600000px;}
.ws6{word-spacing:-12.144000px;}
.ws8{word-spacing:-10.800000px;}
.ws91{word-spacing:-9.936000px;}
.ws47{word-spacing:-6.264000px;}
.ws7{word-spacing:-6.013440px;}
.ws98{word-spacing:-2.727000px;}
.wsb{word-spacing:-2.646000px;}
.ws5c{word-spacing:-2.289600px;}
.wsbd{word-spacing:-2.062800px;}
.ws3e{word-spacing:-2.030400px;}
.ws40{word-spacing:-1.954800px;}
.ws20{word-spacing:-1.927800px;}
.ws9c{word-spacing:-1.663200px;}
.ws9d{word-spacing:-1.544400px;}
.ws18{word-spacing:-1.517400px;}
.ws19{word-spacing:-1.512000px;}
.wsa2{word-spacing:-1.490400px;}
.ws3b{word-spacing:-1.344600px;}
.ws92{word-spacing:-1.069200px;}
.ws2b{word-spacing:-1.009800px;}
.ws45{word-spacing:-0.982800px;}
.ws17{word-spacing:-0.966600px;}
.ws56{word-spacing:-0.880200px;}
.ws60{word-spacing:-0.734400px;}
.ws51{word-spacing:-0.502200px;}
.ws39{word-spacing:-0.448200px;}
.ws1a{word-spacing:-0.437400px;}
.ws1e{word-spacing:-0.221400px;}
.wsbc{word-spacing:-0.145800px;}
.wsbb{word-spacing:-0.140400px;}
.ws30{word-spacing:-0.118800px;}
.wsa1{word-spacing:-0.027000px;}
.ws9{word-spacing:0.000000px;}
.wsbe{word-spacing:0.075600px;}
.ws65{word-spacing:0.129600px;}
.ws66{word-spacing:0.140400px;}
.ws7e{word-spacing:0.189000px;}
.ws1f{word-spacing:0.324000px;}
.ws28{word-spacing:0.394200px;}
.ws6e{word-spacing:0.480600px;}
.ws31{word-spacing:0.484500px;}
.wsd{word-spacing:0.561600px;}
.ws68{word-spacing:0.599400px;}
.ws8d{word-spacing:0.642600px;}
.wsc{word-spacing:0.658800px;}
.ws16{word-spacing:0.750600px;}
.wsa8{word-spacing:0.815400px;}
.ws12{word-spacing:0.874800px;}
.ws50{word-spacing:1.128600px;}
.wsb7{word-spacing:1.236600px;}
.ws94{word-spacing:1.263600px;}
.wsad{word-spacing:1.296000px;}
.ws10{word-spacing:1.382400px;}
.wsa5{word-spacing:1.447200px;}
.ws38{word-spacing:1.560600px;}
.ws3a{word-spacing:1.614600px;}
.wsa4{word-spacing:1.652400px;}
.ws85{word-spacing:1.674000px;}
.ws11{word-spacing:1.684800px;}
.ws44{word-spacing:1.771200px;}
.wsb2{word-spacing:2.014200px;}
.ws76{word-spacing:2.122200px;}
.ws77{word-spacing:2.354400px;}
.ws3c{word-spacing:2.430000px;}
.ws57{word-spacing:2.451600px;}
.ws7a{word-spacing:2.467800px;}
.ws5b{word-spacing:2.667600px;}
.ws8e{word-spacing:2.872800px;}
.ws3d{word-spacing:2.894400px;}
.wse{word-spacing:2.932200px;}
.ws81{word-spacing:2.943000px;}
.ws67{word-spacing:2.975400px;}
.wsaa{word-spacing:3.072600px;}
.ws41{word-spacing:3.207600px;}
.ws53{word-spacing:3.256200px;}
.wsaf{word-spacing:3.294000px;}
.ws78{word-spacing:3.353400px;}
.wsa7{word-spacing:3.461400px;}
.ws1d{word-spacing:3.504600px;}
.ws9e{word-spacing:3.526200px;}
.ws93{word-spacing:3.542400px;}
.ws7c{word-spacing:3.574800px;}
.ws5e{word-spacing:3.645000px;}
.ws61{word-spacing:3.709800px;}
.ws63{word-spacing:3.747600px;}
.ws6b{word-spacing:3.790800px;}
.ws14{word-spacing:3.834000px;}
.wsa3{word-spacing:3.850200px;}
.ws46{word-spacing:3.893400px;}
.ws9f{word-spacing:3.963600px;}
.wsa6{word-spacing:3.990600px;}
.ws6a{word-spacing:4.017600px;}
.ws1b{word-spacing:4.050000px;}
.ws2c{word-spacing:4.093200px;}
.ws88{word-spacing:4.158000px;}
.wsba{word-spacing:4.309200px;}
.ws72{word-spacing:4.363200px;}
.wsa0{word-spacing:4.449600px;}
.ws89{word-spacing:4.514400px;}
.wsbf{word-spacing:4.563000px;}
.ws64{word-spacing:4.687200px;}
.wsb8{word-spacing:4.698000px;}
.ws58{word-spacing:4.741200px;}
.ws62{word-spacing:4.843800px;}
.ws52{word-spacing:5.200200px;}
.ws29{word-spacing:5.383800px;}
.ws80{word-spacing:5.427000px;}
.ws6c{word-spacing:5.464800px;}
.ws2a{word-spacing:5.578200px;}
.ws15{word-spacing:5.810400px;}
.ws97{word-spacing:5.837400px;}
.ws42{word-spacing:5.853600px;}
.ws43{word-spacing:5.907600px;}
.ws13{word-spacing:6.075000px;}
.ws6d{word-spacing:6.156000px;}
.ws9b{word-spacing:6.231600px;}
.ws9a{word-spacing:6.274800px;}
.ws2f{word-spacing:6.404400px;}
.ws5a{word-spacing:6.409800px;}
.ws2e{word-spacing:6.474600px;}
.ws86{word-spacing:6.879600px;}
.ws99{word-spacing:6.895800px;}
.wsf{word-spacing:6.928200px;}
.ws84{word-spacing:7.198200px;}
.ws3f{word-spacing:7.263000px;}
.ws82{word-spacing:7.317000px;}
.wsb0{word-spacing:7.354800px;}
.ws25{word-spacing:7.398000px;}
.ws26{word-spacing:7.479000px;}
.ws7b{word-spacing:7.522200px;}
.ws7d{word-spacing:7.581600px;}
.ws96{word-spacing:7.624800px;}
.ws87{word-spacing:7.651800px;}
.ws21{word-spacing:7.684200px;}
.wsb4{word-spacing:7.992000px;}
.wsb6{word-spacing:7.997400px;}
.ws2d{word-spacing:8.121600px;}
.ws6f{word-spacing:8.407800px;}
.wsac{word-spacing:8.688600px;}
.wsb5{word-spacing:8.856000px;}
.ws74{word-spacing:9.142200px;}
.wsb1{word-spacing:9.174600px;}
.ws27{word-spacing:9.471600px;}
.ws24{word-spacing:9.498600px;}
.ws75{word-spacing:9.541800px;}
.ws73{word-spacing:9.568800px;}
.ws37{word-spacing:9.628200px;}
.ws7f{word-spacing:9.919800px;}
.wsb3{word-spacing:9.957600px;}
.ws59{word-spacing:10.125000px;}
.wsab{word-spacing:10.152000px;}
.ws8a{word-spacing:10.405800px;}
.ws95{word-spacing:10.476000px;}
.ws23{word-spacing:10.578600px;}
.wsae{word-spacing:10.670400px;}
.ws83{word-spacing:11.064600px;}
.ws1c{word-spacing:12.625200px;}
.ws35{word-spacing:12.814200px;}
.ws8b{word-spacing:12.949200px;}
.ws5f{word-spacing:13.284000px;}
.ws79{word-spacing:14.072400px;}
.ws54{word-spacing:14.844600px;}
.ws8c{word-spacing:15.492600px;}
.ws5d{word-spacing:15.854400px;}
.ws32{word-spacing:16.070400px;}
.wsa{word-spacing:16.200000px;}
.wsb9{word-spacing:16.642800px;}
.ws22{word-spacing:16.945200px;}
.ws36{word-spacing:17.204400px;}
.ws34{word-spacing:17.566200px;}
.wsa9{word-spacing:18.214200px;}
.ws33{word-spacing:19.089000px;}
.ws55{word-spacing:19.731600px;}
.ws70{word-spacing:20.725200px;}
.ws69{word-spacing:23.733000px;}
.ws71{word-spacing:24.381000px;}
.ws48{word-spacing:146.064000px;}
.ws4c{word-spacing:198.793080px;}
.ws4a{word-spacing:244.444560px;}
.ws4d{word-spacing:270.226800px;}
.ws49{word-spacing:274.654800px;}
.ws4e{word-spacing:290.476800px;}
._1d{margin-left:-1032.760200px;}
._f{margin-left:-35.397000px;}
._26{margin-left:-34.219800px;}
._13{margin-left:-23.727600px;}
._e{margin-left:-19.094400px;}
._d{margin-left:-17.366400px;}
._c{margin-left:-15.314400px;}
._15{margin-left:-13.435200px;}
._12{margin-left:-11.075400px;}
._a{margin-left:-9.936000px;}
._25{margin-left:-8.807400px;}
._b{margin-left:-7.248600px;}
._0{margin-left:-5.562000px;}
._2{margin-left:-3.888000px;}
._4{margin-left:-2.354400px;}
._1{margin-left:-1.188000px;}
._5{width:1.161000px;}
._3{width:2.257200px;}
._9{width:4.100400px;}
._8{width:5.352000px;}
._10{width:6.895800px;}
._11{width:8.515800px;}
._16{width:17.010000px;}
._19{width:182.719500px;}
._1a{width:196.982400px;}
._17{width:205.125300px;}
._18{width:209.842800px;}
._20{width:494.294400px;}
._1e{width:495.374400px;}
._23{width:498.096000px;}
._1c{width:499.693800px;}
._22{width:504.414000px;}
._1b{width:529.858800px;}
._1f{width:805.917600px;}
._21{width:809.643600px;}
._24{width:813.936600px;}
._7{width:879.314400px;}
._6{width:961.232400px;}
._14{width:1003.536000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:31.320000px;}
.fs7{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.313550px;}
.ye4{bottom:114.947100px;}
.yd1{bottom:115.025700px;}
.y43{bottom:124.996200px;}
.ye3{bottom:131.147100px;}
.yd0{bottom:131.225700px;}
.ydf{bottom:137.271000px;}
.y9b{bottom:139.510800px;}
.y42{bottom:141.196200px;}
.ye2{bottom:147.347100px;}
.ycf{bottom:147.425700px;}
.y2e{bottom:148.949700px;}
.yde{bottom:153.471000px;}
.y9a{bottom:155.710800px;}
.y41{bottom:157.396200px;}
.yce{bottom:163.625700px;}
.y2d{bottom:165.149700px;}
.ye1{bottom:167.798250px;}
.ydd{bottom:169.671000px;}
.y99{bottom:171.910800px;}
.y40{bottom:173.596200px;}
.ycd{bottom:179.825700px;}
.y2c{bottom:181.349700px;}
.ydc{bottom:185.871000px;}
.y98{bottom:188.110800px;}
.y3f{bottom:189.797550px;}
.ycc{bottom:196.025700px;}
.y2b{bottom:197.549700px;}
.ydb{bottom:202.069650px;}
.y97{bottom:204.310800px;}
.y3e{bottom:205.996200px;}
.ycb{bottom:212.225700px;}
.y2a{bottom:213.749700px;}
.yda{bottom:218.269650px;}
.y96{bottom:220.510800px;}
.y3d{bottom:222.196200px;}
.yca{bottom:228.425700px;}
.y29{bottom:229.949700px;}
.yd9{bottom:234.469650px;}
.y95{bottom:236.710800px;}
.y3c{bottom:238.396200px;}
.yc9{bottom:244.625700px;}
.y28{bottom:246.149700px;}
.yd8{bottom:250.671000px;}
.y94{bottom:252.910800px;}
.y3b{bottom:254.596200px;}
.yc8{bottom:260.825700px;}
.y27{bottom:262.349700px;}
.yd7{bottom:266.872350px;}
.y3a{bottom:270.797550px;}
.y93{bottom:276.554250px;}
.yc7{bottom:277.025700px;}
.y26{bottom:278.549700px;}
.yd6{bottom:283.071000px;}
.y39{bottom:286.996200px;}
.y92{bottom:287.980350px;}
.yc6{bottom:293.225700px;}
.y25{bottom:294.749700px;}
.yd5{bottom:299.271000px;}
.y38{bottom:303.196200px;}
.yc5{bottom:309.425700px;}
.y24{bottom:310.949700px;}
.yd4{bottom:315.471000px;}
.y37{bottom:319.396200px;}
.y91{bottom:322.259400px;}
.yc4{bottom:325.625700px;}
.y23{bottom:327.149700px;}
.yd3{bottom:331.671000px;}
.y90{bottom:333.687000px;}
.y36{bottom:335.596200px;}
.y22{bottom:343.349700px;}
.yc3{bottom:346.078200px;}
.yd2{bottom:347.872350px;}
.y35{bottom:351.797550px;}
.y21{bottom:359.549700px;}
.y8f{bottom:367.965900px;}
.y34{bottom:367.996200px;}
.y20{bottom:375.749700px;}
.y8e{bottom:379.391700px;}
.y33{bottom:384.196200px;}
.yc2{bottom:386.968050px;}
.y1f{bottom:391.949700px;}
.y32{bottom:400.396200px;}
.y1e{bottom:408.149700px;}
.y8d{bottom:413.671200px;}
.yc1{bottom:415.924200px;}
.y31{bottom:416.596200px;}
.y1d{bottom:424.349700px;}
.y8c{bottom:436.808850px;}
.y30{bottom:437.048700px;}
.y1c{bottom:440.549700px;}
.yc0{bottom:444.880350px;}
.y1b{bottom:456.749700px;}
.ybf{bottom:461.080350px;}
.y2f{bottom:471.157200px;}
.y1a{bottom:472.949700px;}
.ybe{bottom:477.280350px;}
.y66{bottom:489.892200px;}
.ybd{bottom:493.480350px;}
.y65{bottom:506.092200px;}
.ybc{bottom:509.680350px;}
.y8b{bottom:521.521350px;}
.y19{bottom:524.303700px;}
.ybb{bottom:525.880350px;}
.y64{bottom:526.544850px;}
.y8a{bottom:537.721350px;}
.yba{bottom:542.080350px;}
.y18{bottom:553.259850px;}
.y89{bottom:553.921350px;}
.yb9{bottom:558.280350px;}
.y63{bottom:566.704350px;}
.y17{bottom:569.459850px;}
.y88{bottom:570.121350px;}
.yb8{bottom:574.480350px;}
.y62{bottom:582.904350px;}
.y16{bottom:585.659850px;}
.y87{bottom:586.321350px;}
.yb7{bottom:590.680350px;}
.y61{bottom:599.104350px;}
.y15{bottom:601.859700px;}
.y86{bottom:602.521350px;}
.yb6{bottom:606.880350px;}
.y60{bottom:615.304350px;}
.y14{bottom:618.059700px;}
.y85{bottom:618.721350px;}
.yb5{bottom:623.080350px;}
.y5f{bottom:631.504350px;}
.y13{bottom:634.259700px;}
.y84{bottom:634.921350px;}
.yb4{bottom:639.280350px;}
.y5e{bottom:647.704350px;}
.y12{bottom:650.459700px;}
.y83{bottom:651.121350px;}
.yb3{bottom:659.731350px;}
.y5d{bottom:663.904350px;}
.y11{bottom:666.659700px;}
.y82{bottom:667.321350px;}
.y5c{bottom:680.104350px;}
.yb2{bottom:681.983850px;}
.y10{bottom:682.859700px;}
.y81{bottom:683.521350px;}
.y5b{bottom:696.304350px;}
.yf{bottom:699.059700px;}
.y80{bottom:699.721350px;}
.y5a{bottom:712.504350px;}
.ye{bottom:715.259700px;}
.y7f{bottom:715.921350px;}
.yac{bottom:719.940000px;}
.yb1{bottom:725.985300px;}
.y59{bottom:728.704500px;}
.yd{bottom:731.459700px;}
.y7e{bottom:732.121500px;}
.yab{bottom:736.140000px;}
.yb0{bottom:742.185300px;}
.y58{bottom:744.904500px;}
.yc{bottom:747.659700px;}
.y7d{bottom:748.321350px;}
.yaa{bottom:752.340000px;}
.yaf{bottom:758.385300px;}
.y57{bottom:761.104500px;}
.y7c{bottom:764.520000px;}
.ya9{bottom:768.540000px;}
.yae{bottom:774.585300px;}
.yb{bottom:776.615850px;}
.y7b{bottom:780.720000px;}
.y56{bottom:781.557000px;}
.ya8{bottom:788.992500px;}
.yad{bottom:790.785300px;}
.ya{bottom:792.815850px;}
.y7a{bottom:796.920000px;}
.y55{bottom:811.413000px;}
.y79{bottom:813.120000px;}
.y9{bottom:826.022700px;}
.y54{bottom:827.613000px;}
.y78{bottom:829.320000px;}
.ya7{bottom:843.261000px;}
.y53{bottom:843.813000px;}
.y77{bottom:845.520000px;}
.ya6{bottom:859.460250px;}
.y52{bottom:860.013000px;}
.y76{bottom:861.720000px;}
.y8{bottom:871.335000px;}
.ya5{bottom:875.660250px;}
.y51{bottom:876.213000px;}
.y75{bottom:877.920000px;}
.y50{bottom:892.413000px;}
.y74{bottom:894.120000px;}
.ya4{bottom:898.760100px;}
.y7{bottom:908.143500px;}
.y4f{bottom:908.613000px;}
.y73{bottom:910.320000px;}
.ya3{bottom:921.612900px;}
.y4e{bottom:924.813000px;}
.y72{bottom:926.520000px;}
.y4d{bottom:941.013150px;}
.y71{bottom:942.720000px;}
.ya2{bottom:944.465700px;}
.y4c{bottom:957.213150px;}
.y70{bottom:958.920000px;}
.ya1{bottom:967.317600px;}
.y4b{bottom:973.413150px;}
.y6f{bottom:975.120000px;}
.y6{bottom:989.271000px;}
.y4a{bottom:989.613000px;}
.ya0{bottom:990.171750px;}
.y6e{bottom:991.320000px;}
.y49{bottom:1005.813000px;}
.y6d{bottom:1007.520000px;}
.y9f{bottom:1013.024550px;}
.y5{bottom:1020.771000px;}
.y48{bottom:1022.013000px;}
.y6c{bottom:1023.720000px;}
.y9e{bottom:1035.877350px;}
.y6b{bottom:1039.920000px;}
.y47{bottom:1042.465650px;}
.y6a{bottom:1056.120000px;}
.y9d{bottom:1058.730150px;}
.y69{bottom:1072.320000px;}
.y46{bottom:1072.320150px;}
.y9c{bottom:1081.584300px;}
.y68{bottom:1088.520000px;}
.y45{bottom:1088.520150px;}
.y67{bottom:1104.720000px;}
.y44{bottom:1104.720150px;}
.y4{bottom:1112.524350px;}
.y3{bottom:1146.984450px;}
.ye0{bottom:1167.084450px;}
.y2{bottom:1167.084600px;}
.h9{height:40.953000px;}
.h8{height:45.771000px;}
.h1{height:49.086000px;}
.h6{height:49.086600px;}
.hb{height:49.087200px;}
.he{height:49.087800px;}
.h10{height:49.089000px;}
.hf{height:49.089600px;}
.h7{height:50.589000px;}
.h5{height:52.998000px;}
.h11{height:54.540000px;}
.h2{height:61.084800px;}
.h4{height:65.448000px;}
.hc{height:94.786800px;}
.hd{height:94.792800px;}
.ha{height:94.794000px;}
.h3{height:95.445000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.xf{left:106.062600px;}
.x16{left:108.188550px;}
.x11{left:118.818600px;}
.x2{left:127.322550px;}
.xa{left:140.079300px;}
.x18{left:144.330450px;}
.x9{left:148.582350px;}
.x13{left:154.833450px;}
.x1a{left:167.568600px;}
.x1b{left:169.547700px;}
.x3{left:174.829050px;}
.x5{left:185.145825px;}
.x10{left:193.879950px;}
.x15{left:195.523950px;}
.x17{left:197.897250px;}
.x12{left:200.542950px;}
.x4{left:205.728450px;}
.x1d{left:224.098950px;}
.x1f{left:232.894950px;}
.x6{left:351.740100px;}
.x7{left:356.835600px;}
.x20{left:410.379600px;}
.x1e{left:419.412600px;}
.x8{left:422.959350px;}
.x14{left:444.589800px;}
.x1{left:453.096600px;}
.x1c{left:457.135500px;}
.xe{left:465.849450px;}
.x19{left:468.422100px;}
.xd{left:478.605600px;}
.xb{left:510.801600px;}
.xc{left:514.046100px;}
@media print{
.v4{vertical-align:-15.840000pt;}
.v2{vertical-align:-10.665600pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.665600pt;}
.v3{vertical-align:15.840533pt;}
.v5{vertical-align:40.627200pt;}
.v6{vertical-align:56.469333pt;}
.lsb{letter-spacing:-0.938667pt;}
.ls15{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.430667pt;}
.lsc{letter-spacing:-0.222720pt;}
.ls16{letter-spacing:-0.004800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.001813pt;}
.ls14{letter-spacing:0.003093pt;}
.lsf{letter-spacing:0.003627pt;}
.ls10{letter-spacing:0.009600pt;}
.ls9{letter-spacing:1.814400pt;}
.ls2{letter-spacing:1.920000pt;}
.ls4{letter-spacing:2.155200pt;}
.ls0{letter-spacing:2.164800pt;}
.lsa{letter-spacing:2.352000pt;}
.ls6{letter-spacing:3.720000pt;}
.ls7{letter-spacing:3.753600pt;}
.ls5{letter-spacing:3.820800pt;}
.ls8{letter-spacing:4.060800pt;}
.lse{letter-spacing:5.400000pt;}
.ls1{letter-spacing:16.320000pt;}
.ls11{letter-spacing:232.238400pt;}
.ls12{letter-spacing:918.009067pt;}
.ws8f{word-spacing:-927.075733pt;}
.ws4b{word-spacing:-241.838400pt;}
.ws4f{word-spacing:-231.758400pt;}
.ws4{word-spacing:-13.660800pt;}
.ws1{word-spacing:-13.420800pt;}
.ws3{word-spacing:-13.353600pt;}
.ws2{word-spacing:-13.320000pt;}
.ws0{word-spacing:-11.755200pt;}
.ws5{word-spacing:-11.414400pt;}
.ws90{word-spacing:-11.200000pt;}
.ws6{word-spacing:-10.794667pt;}
.ws8{word-spacing:-9.600000pt;}
.ws91{word-spacing:-8.832000pt;}
.ws47{word-spacing:-5.568000pt;}
.ws7{word-spacing:-5.345280pt;}
.ws98{word-spacing:-2.424000pt;}
.wsb{word-spacing:-2.352000pt;}
.ws5c{word-spacing:-2.035200pt;}
.wsbd{word-spacing:-1.833600pt;}
.ws3e{word-spacing:-1.804800pt;}
.ws40{word-spacing:-1.737600pt;}
.ws20{word-spacing:-1.713600pt;}
.ws9c{word-spacing:-1.478400pt;}
.ws9d{word-spacing:-1.372800pt;}
.ws18{word-spacing:-1.348800pt;}
.ws19{word-spacing:-1.344000pt;}
.wsa2{word-spacing:-1.324800pt;}
.ws3b{word-spacing:-1.195200pt;}
.ws92{word-spacing:-0.950400pt;}
.ws2b{word-spacing:-0.897600pt;}
.ws45{word-spacing:-0.873600pt;}
.ws17{word-spacing:-0.859200pt;}
.ws56{word-spacing:-0.782400pt;}
.ws60{word-spacing:-0.652800pt;}
.ws51{word-spacing:-0.446400pt;}
.ws39{word-spacing:-0.398400pt;}
.ws1a{word-spacing:-0.388800pt;}
.ws1e{word-spacing:-0.196800pt;}
.wsbc{word-spacing:-0.129600pt;}
.wsbb{word-spacing:-0.124800pt;}
.ws30{word-spacing:-0.105600pt;}
.wsa1{word-spacing:-0.024000pt;}
.ws9{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.067200pt;}
.ws65{word-spacing:0.115200pt;}
.ws66{word-spacing:0.124800pt;}
.ws7e{word-spacing:0.168000pt;}
.ws1f{word-spacing:0.288000pt;}
.ws28{word-spacing:0.350400pt;}
.ws6e{word-spacing:0.427200pt;}
.ws31{word-spacing:0.430667pt;}
.wsd{word-spacing:0.499200pt;}
.ws68{word-spacing:0.532800pt;}
.ws8d{word-spacing:0.571200pt;}
.wsc{word-spacing:0.585600pt;}
.ws16{word-spacing:0.667200pt;}
.wsa8{word-spacing:0.724800pt;}
.ws12{word-spacing:0.777600pt;}
.ws50{word-spacing:1.003200pt;}
.wsb7{word-spacing:1.099200pt;}
.ws94{word-spacing:1.123200pt;}
.wsad{word-spacing:1.152000pt;}
.ws10{word-spacing:1.228800pt;}
.wsa5{word-spacing:1.286400pt;}
.ws38{word-spacing:1.387200pt;}
.ws3a{word-spacing:1.435200pt;}
.wsa4{word-spacing:1.468800pt;}
.ws85{word-spacing:1.488000pt;}
.ws11{word-spacing:1.497600pt;}
.ws44{word-spacing:1.574400pt;}
.wsb2{word-spacing:1.790400pt;}
.ws76{word-spacing:1.886400pt;}
.ws77{word-spacing:2.092800pt;}
.ws3c{word-spacing:2.160000pt;}
.ws57{word-spacing:2.179200pt;}
.ws7a{word-spacing:2.193600pt;}
.ws5b{word-spacing:2.371200pt;}
.ws8e{word-spacing:2.553600pt;}
.ws3d{word-spacing:2.572800pt;}
.wse{word-spacing:2.606400pt;}
.ws81{word-spacing:2.616000pt;}
.ws67{word-spacing:2.644800pt;}
.wsaa{word-spacing:2.731200pt;}
.ws41{word-spacing:2.851200pt;}
.ws53{word-spacing:2.894400pt;}
.wsaf{word-spacing:2.928000pt;}
.ws78{word-spacing:2.980800pt;}
.wsa7{word-spacing:3.076800pt;}
.ws1d{word-spacing:3.115200pt;}
.ws9e{word-spacing:3.134400pt;}
.ws93{word-spacing:3.148800pt;}
.ws7c{word-spacing:3.177600pt;}
.ws5e{word-spacing:3.240000pt;}
.ws61{word-spacing:3.297600pt;}
.ws63{word-spacing:3.331200pt;}
.ws6b{word-spacing:3.369600pt;}
.ws14{word-spacing:3.408000pt;}
.wsa3{word-spacing:3.422400pt;}
.ws46{word-spacing:3.460800pt;}
.ws9f{word-spacing:3.523200pt;}
.wsa6{word-spacing:3.547200pt;}
.ws6a{word-spacing:3.571200pt;}
.ws1b{word-spacing:3.600000pt;}
.ws2c{word-spacing:3.638400pt;}
.ws88{word-spacing:3.696000pt;}
.wsba{word-spacing:3.830400pt;}
.ws72{word-spacing:3.878400pt;}
.wsa0{word-spacing:3.955200pt;}
.ws89{word-spacing:4.012800pt;}
.wsbf{word-spacing:4.056000pt;}
.ws64{word-spacing:4.166400pt;}
.wsb8{word-spacing:4.176000pt;}
.ws58{word-spacing:4.214400pt;}
.ws62{word-spacing:4.305600pt;}
.ws52{word-spacing:4.622400pt;}
.ws29{word-spacing:4.785600pt;}
.ws80{word-spacing:4.824000pt;}
.ws6c{word-spacing:4.857600pt;}
.ws2a{word-spacing:4.958400pt;}
.ws15{word-spacing:5.164800pt;}
.ws97{word-spacing:5.188800pt;}
.ws42{word-spacing:5.203200pt;}
.ws43{word-spacing:5.251200pt;}
.ws13{word-spacing:5.400000pt;}
.ws6d{word-spacing:5.472000pt;}
.ws9b{word-spacing:5.539200pt;}
.ws9a{word-spacing:5.577600pt;}
.ws2f{word-spacing:5.692800pt;}
.ws5a{word-spacing:5.697600pt;}
.ws2e{word-spacing:5.755200pt;}
.ws86{word-spacing:6.115200pt;}
.ws99{word-spacing:6.129600pt;}
.wsf{word-spacing:6.158400pt;}
.ws84{word-spacing:6.398400pt;}
.ws3f{word-spacing:6.456000pt;}
.ws82{word-spacing:6.504000pt;}
.wsb0{word-spacing:6.537600pt;}
.ws25{word-spacing:6.576000pt;}
.ws26{word-spacing:6.648000pt;}
.ws7b{word-spacing:6.686400pt;}
.ws7d{word-spacing:6.739200pt;}
.ws96{word-spacing:6.777600pt;}
.ws87{word-spacing:6.801600pt;}
.ws21{word-spacing:6.830400pt;}
.wsb4{word-spacing:7.104000pt;}
.wsb6{word-spacing:7.108800pt;}
.ws2d{word-spacing:7.219200pt;}
.ws6f{word-spacing:7.473600pt;}
.wsac{word-spacing:7.723200pt;}
.wsb5{word-spacing:7.872000pt;}
.ws74{word-spacing:8.126400pt;}
.wsb1{word-spacing:8.155200pt;}
.ws27{word-spacing:8.419200pt;}
.ws24{word-spacing:8.443200pt;}
.ws75{word-spacing:8.481600pt;}
.ws73{word-spacing:8.505600pt;}
.ws37{word-spacing:8.558400pt;}
.ws7f{word-spacing:8.817600pt;}
.wsb3{word-spacing:8.851200pt;}
.ws59{word-spacing:9.000000pt;}
.wsab{word-spacing:9.024000pt;}
.ws8a{word-spacing:9.249600pt;}
.ws95{word-spacing:9.312000pt;}
.ws23{word-spacing:9.403200pt;}
.wsae{word-spacing:9.484800pt;}
.ws83{word-spacing:9.835200pt;}
.ws1c{word-spacing:11.222400pt;}
.ws35{word-spacing:11.390400pt;}
.ws8b{word-spacing:11.510400pt;}
.ws5f{word-spacing:11.808000pt;}
.ws79{word-spacing:12.508800pt;}
.ws54{word-spacing:13.195200pt;}
.ws8c{word-spacing:13.771200pt;}
.ws5d{word-spacing:14.092800pt;}
.ws32{word-spacing:14.284800pt;}
.wsa{word-spacing:14.400000pt;}
.wsb9{word-spacing:14.793600pt;}
.ws22{word-spacing:15.062400pt;}
.ws36{word-spacing:15.292800pt;}
.ws34{word-spacing:15.614400pt;}
.wsa9{word-spacing:16.190400pt;}
.ws33{word-spacing:16.968000pt;}
.ws55{word-spacing:17.539200pt;}
.ws70{word-spacing:18.422400pt;}
.ws69{word-spacing:21.096000pt;}
.ws71{word-spacing:21.672000pt;}
.ws48{word-spacing:129.834667pt;}
.ws4c{word-spacing:176.704960pt;}
.ws4a{word-spacing:217.284053pt;}
.ws4d{word-spacing:240.201600pt;}
.ws49{word-spacing:244.137600pt;}
.ws4e{word-spacing:258.201600pt;}
._1d{margin-left:-918.009067pt;}
._f{margin-left:-31.464000pt;}
._26{margin-left:-30.417600pt;}
._13{margin-left:-21.091200pt;}
._e{margin-left:-16.972800pt;}
._d{margin-left:-15.436800pt;}
._c{margin-left:-13.612800pt;}
._15{margin-left:-11.942400pt;}
._12{margin-left:-9.844800pt;}
._a{margin-left:-8.832000pt;}
._25{margin-left:-7.828800pt;}
._b{margin-left:-6.443200pt;}
._0{margin-left:-4.944000pt;}
._2{margin-left:-3.456000pt;}
._4{margin-left:-2.092800pt;}
._1{margin-left:-1.056000pt;}
._5{width:1.032000pt;}
._3{width:2.006400pt;}
._9{width:3.644800pt;}
._8{width:4.757333pt;}
._10{width:6.129600pt;}
._11{width:7.569600pt;}
._16{width:15.120000pt;}
._19{width:162.417333pt;}
._1a{width:175.095467pt;}
._17{width:182.333600pt;}
._18{width:186.526933pt;}
._20{width:439.372800pt;}
._1e{width:440.332800pt;}
._23{width:442.752000pt;}
._1c{width:444.172267pt;}
._22{width:448.368000pt;}
._1b{width:470.985600pt;}
._1f{width:716.371200pt;}
._21{width:719.683200pt;}
._24{width:723.499200pt;}
._7{width:781.612800pt;}
._6{width:854.428800pt;}
._14{width:892.032000pt;}
.fs4{font-size:27.840000pt;}
.fs7{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.834267pt;}
.ye4{bottom:102.175200pt;}
.yd1{bottom:102.245067pt;}
.y43{bottom:111.107733pt;}
.ye3{bottom:116.575200pt;}
.yd0{bottom:116.645067pt;}
.ydf{bottom:122.018667pt;}
.y9b{bottom:124.009600pt;}
.y42{bottom:125.507733pt;}
.ye2{bottom:130.975200pt;}
.ycf{bottom:131.045067pt;}
.y2e{bottom:132.399733pt;}
.yde{bottom:136.418667pt;}
.y9a{bottom:138.409600pt;}
.y41{bottom:139.907733pt;}
.yce{bottom:145.445067pt;}
.y2d{bottom:146.799733pt;}
.ye1{bottom:149.154000pt;}
.ydd{bottom:150.818667pt;}
.y99{bottom:152.809600pt;}
.y40{bottom:154.307733pt;}
.ycd{bottom:159.845067pt;}
.y2c{bottom:161.199733pt;}
.ydc{bottom:165.218667pt;}
.y98{bottom:167.209600pt;}
.y3f{bottom:168.708933pt;}
.ycc{bottom:174.245067pt;}
.y2b{bottom:175.599733pt;}
.ydb{bottom:179.617467pt;}
.y97{bottom:181.609600pt;}
.y3e{bottom:183.107733pt;}
.ycb{bottom:188.645067pt;}
.y2a{bottom:189.999733pt;}
.yda{bottom:194.017467pt;}
.y96{bottom:196.009600pt;}
.y3d{bottom:197.507733pt;}
.yca{bottom:203.045067pt;}
.y29{bottom:204.399733pt;}
.yd9{bottom:208.417467pt;}
.y95{bottom:210.409600pt;}
.y3c{bottom:211.907733pt;}
.yc9{bottom:217.445067pt;}
.y28{bottom:218.799733pt;}
.yd8{bottom:222.818667pt;}
.y94{bottom:224.809600pt;}
.y3b{bottom:226.307733pt;}
.yc8{bottom:231.845067pt;}
.y27{bottom:233.199733pt;}
.yd7{bottom:237.219867pt;}
.y3a{bottom:240.708933pt;}
.y93{bottom:245.826000pt;}
.yc7{bottom:246.245067pt;}
.y26{bottom:247.599733pt;}
.yd6{bottom:251.618667pt;}
.y39{bottom:255.107733pt;}
.y92{bottom:255.982533pt;}
.yc6{bottom:260.645067pt;}
.y25{bottom:261.999733pt;}
.yd5{bottom:266.018667pt;}
.y38{bottom:269.507733pt;}
.yc5{bottom:275.045067pt;}
.y24{bottom:276.399733pt;}
.yd4{bottom:280.418667pt;}
.y37{bottom:283.907733pt;}
.y91{bottom:286.452800pt;}
.yc4{bottom:289.445067pt;}
.y23{bottom:290.799733pt;}
.yd3{bottom:294.818667pt;}
.y90{bottom:296.610667pt;}
.y36{bottom:298.307733pt;}
.y22{bottom:305.199733pt;}
.yc3{bottom:307.625067pt;}
.yd2{bottom:309.219867pt;}
.y35{bottom:312.708933pt;}
.y21{bottom:319.599733pt;}
.y8f{bottom:327.080800pt;}
.y34{bottom:327.107733pt;}
.y20{bottom:333.999733pt;}
.y8e{bottom:337.237067pt;}
.y33{bottom:341.507733pt;}
.yc2{bottom:343.971600pt;}
.y1f{bottom:348.399733pt;}
.y32{bottom:355.907733pt;}
.y1e{bottom:362.799733pt;}
.y8d{bottom:367.707733pt;}
.yc1{bottom:369.710400pt;}
.y31{bottom:370.307733pt;}
.y1d{bottom:377.199733pt;}
.y8c{bottom:388.274533pt;}
.y30{bottom:388.487733pt;}
.y1c{bottom:391.599733pt;}
.yc0{bottom:395.449200pt;}
.y1b{bottom:405.999733pt;}
.ybf{bottom:409.849200pt;}
.y2f{bottom:418.806400pt;}
.y1a{bottom:420.399733pt;}
.ybe{bottom:424.249200pt;}
.y66{bottom:435.459733pt;}
.ybd{bottom:438.649200pt;}
.y65{bottom:449.859733pt;}
.ybc{bottom:453.049200pt;}
.y8b{bottom:463.574533pt;}
.y19{bottom:466.047733pt;}
.ybb{bottom:467.449200pt;}
.y64{bottom:468.039867pt;}
.y8a{bottom:477.974533pt;}
.yba{bottom:481.849200pt;}
.y18{bottom:491.786533pt;}
.y89{bottom:492.374533pt;}
.yb9{bottom:496.249200pt;}
.y63{bottom:503.737200pt;}
.y17{bottom:506.186533pt;}
.y88{bottom:506.774533pt;}
.yb8{bottom:510.649200pt;}
.y62{bottom:518.137200pt;}
.y16{bottom:520.586533pt;}
.y87{bottom:521.174533pt;}
.yb7{bottom:525.049200pt;}
.y61{bottom:532.537200pt;}
.y15{bottom:534.986400pt;}
.y86{bottom:535.574533pt;}
.yb6{bottom:539.449200pt;}
.y60{bottom:546.937200pt;}
.y14{bottom:549.386400pt;}
.y85{bottom:549.974533pt;}
.yb5{bottom:553.849200pt;}
.y5f{bottom:561.337200pt;}
.y13{bottom:563.786400pt;}
.y84{bottom:564.374533pt;}
.yb4{bottom:568.249200pt;}
.y5e{bottom:575.737200pt;}
.y12{bottom:578.186400pt;}
.y83{bottom:578.774533pt;}
.yb3{bottom:586.427867pt;}
.y5d{bottom:590.137200pt;}
.y11{bottom:592.586400pt;}
.y82{bottom:593.174533pt;}
.y5c{bottom:604.537200pt;}
.yb2{bottom:606.207867pt;}
.y10{bottom:606.986400pt;}
.y81{bottom:607.574533pt;}
.y5b{bottom:618.937200pt;}
.yf{bottom:621.386400pt;}
.y80{bottom:621.974533pt;}
.y5a{bottom:633.337200pt;}
.ye{bottom:635.786400pt;}
.y7f{bottom:636.374533pt;}
.yac{bottom:639.946667pt;}
.yb1{bottom:645.320267pt;}
.y59{bottom:647.737333pt;}
.yd{bottom:650.186400pt;}
.y7e{bottom:650.774667pt;}
.yab{bottom:654.346667pt;}
.yb0{bottom:659.720267pt;}
.y58{bottom:662.137333pt;}
.yc{bottom:664.586400pt;}
.y7d{bottom:665.174533pt;}
.yaa{bottom:668.746667pt;}
.yaf{bottom:674.120267pt;}
.y57{bottom:676.537333pt;}
.y7c{bottom:679.573333pt;}
.ya9{bottom:683.146667pt;}
.yae{bottom:688.520267pt;}
.yb{bottom:690.325200pt;}
.y7b{bottom:693.973333pt;}
.y56{bottom:694.717333pt;}
.ya8{bottom:701.326667pt;}
.yad{bottom:702.920267pt;}
.ya{bottom:704.725200pt;}
.y7a{bottom:708.373333pt;}
.y55{bottom:721.256000pt;}
.y79{bottom:722.773333pt;}
.y9{bottom:734.242400pt;}
.y54{bottom:735.656000pt;}
.y78{bottom:737.173333pt;}
.ya7{bottom:749.565333pt;}
.y53{bottom:750.056000pt;}
.y77{bottom:751.573333pt;}
.ya6{bottom:763.964667pt;}
.y52{bottom:764.456000pt;}
.y76{bottom:765.973333pt;}
.y8{bottom:774.520000pt;}
.ya5{bottom:778.364667pt;}
.y51{bottom:778.856000pt;}
.y75{bottom:780.373333pt;}
.y50{bottom:793.256000pt;}
.y74{bottom:794.773333pt;}
.ya4{bottom:798.897867pt;}
.y7{bottom:807.238667pt;}
.y4f{bottom:807.656000pt;}
.y73{bottom:809.173333pt;}
.ya3{bottom:819.211467pt;}
.y4e{bottom:822.056000pt;}
.y72{bottom:823.573333pt;}
.y4d{bottom:836.456133pt;}
.y71{bottom:837.973333pt;}
.ya2{bottom:839.525067pt;}
.y4c{bottom:850.856133pt;}
.y70{bottom:852.373333pt;}
.ya1{bottom:859.837867pt;}
.y4b{bottom:865.256133pt;}
.y6f{bottom:866.773333pt;}
.y6{bottom:879.352000pt;}
.y4a{bottom:879.656000pt;}
.ya0{bottom:880.152667pt;}
.y6e{bottom:881.173333pt;}
.y49{bottom:894.056000pt;}
.y6d{bottom:895.573333pt;}
.y9f{bottom:900.466267pt;}
.y5{bottom:907.352000pt;}
.y48{bottom:908.456000pt;}
.y6c{bottom:909.973333pt;}
.y9e{bottom:920.779867pt;}
.y6b{bottom:924.373333pt;}
.y47{bottom:926.636133pt;}
.y6a{bottom:938.773333pt;}
.y9d{bottom:941.093467pt;}
.y69{bottom:953.173333pt;}
.y46{bottom:953.173467pt;}
.y9c{bottom:961.408267pt;}
.y68{bottom:967.573333pt;}
.y45{bottom:967.573467pt;}
.y67{bottom:981.973333pt;}
.y44{bottom:981.973467pt;}
.y4{bottom:988.910533pt;}
.y3{bottom:1019.541733pt;}
.ye0{bottom:1037.408400pt;}
.y2{bottom:1037.408533pt;}
.h9{height:36.402667pt;}
.h8{height:40.685333pt;}
.h1{height:43.632000pt;}
.h6{height:43.632533pt;}
.hb{height:43.633067pt;}
.he{height:43.633600pt;}
.h10{height:43.634667pt;}
.hf{height:43.635200pt;}
.h7{height:44.968000pt;}
.h5{height:47.109333pt;}
.h11{height:48.480000pt;}
.h2{height:54.297600pt;}
.h4{height:58.176000pt;}
.hc{height:84.254933pt;}
.hd{height:84.260267pt;}
.ha{height:84.261333pt;}
.h3{height:84.840000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.xf{left:94.277867pt;}
.x16{left:96.167600pt;}
.x11{left:105.616533pt;}
.x2{left:113.175600pt;}
.xa{left:124.514933pt;}
.x18{left:128.293733pt;}
.x9{left:132.073200pt;}
.x13{left:137.629733pt;}
.x1a{left:148.949867pt;}
.x1b{left:150.709067pt;}
.x3{left:155.403600pt;}
.x5{left:164.574067pt;}
.x10{left:172.337733pt;}
.x15{left:173.799067pt;}
.x17{left:175.908667pt;}
.x12{left:178.260400pt;}
.x4{left:182.869733pt;}
.x1d{left:199.199067pt;}
.x1f{left:207.017733pt;}
.x6{left:312.657867pt;}
.x7{left:317.187200pt;}
.x20{left:364.781867pt;}
.x1e{left:372.811200pt;}
.x8{left:375.963867pt;}
.x14{left:395.190933pt;}
.x1{left:402.752533pt;}
.x1c{left:406.342667pt;}
.xe{left:414.088400pt;}
.x19{left:416.375200pt;}
.xd{left:425.427200pt;}
.xb{left:454.045867pt;}
.xc{left:456.929867pt;}
}




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