
    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_d3c460b361ef9848224ec2a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_21399385dd6d3bc229c35159.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991211;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_a2909c0016e0dab8954a471b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_8b486d2443650bb42ac8cdb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_18bfcedd7836d4ef6430b8b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_dc46bef55684c79103331591.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_5a84f730c0ea46ce41bece5c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_11078cdb70060e10f9037fd3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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);}
.m1{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);}
.v6{vertical-align:-56.160000px;}
.v7{vertical-align:-31.950000px;}
.v4{vertical-align:-23.351400px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.550000px;}
.v1{vertical-align:33.696000px;}
.v5{vertical-align:46.440000px;}
.v2{vertical-align:47.675520px;}
.v3{vertical-align:150.119400px;}
.ls29{letter-spacing:-5.040000px;}
.ls1f{letter-spacing:-3.600000px;}
.ls1e{letter-spacing:-2.736000px;}
.ls2a{letter-spacing:-2.304000px;}
.lsa{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.504000px;}
.ls2{letter-spacing:-0.168120px;}
.ls7{letter-spacing:-0.155880px;}
.lsb{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.132120px;}
.ls11{letter-spacing:-0.119880px;}
.ls19{letter-spacing:-0.096120px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.096120px;}
.ls15{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.114120px;}
.ls10{letter-spacing:0.119880px;}
.ls6{letter-spacing:0.132120px;}
.ls3{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.192240px;}
.ls12{letter-spacing:0.239760px;}
.ls1d{letter-spacing:0.240120px;}
.ls17{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.959040px;}
.ls4{letter-spacing:53.442000px;}
.lsd{letter-spacing:57.600000px;}
.ls5{letter-spacing:61.758000px;}
.lse{letter-spacing:66.042000px;}
.ls14{letter-spacing:70.200000px;}
.ls20{letter-spacing:187.776000px;}
.ls1b{letter-spacing:342.595800px;}
.ls1c{letter-spacing:378.595800px;}
.ls24{letter-spacing:504.646200px;}
.ls22{letter-spacing:865.366200px;}
.ls26{letter-spacing:904.951200px;}
.ls27{letter-spacing:969.031200px;}
.ls25{letter-spacing:976.231200px;}
.ls16{letter-spacing:1005.912000px;}
.ls28{letter-spacing:1089.559200px;}
.ls21{letter-spacing:1252.711200px;}
.ls23{letter-spacing:1383.334200px;}
.ls18{letter-spacing:1769.665320px;}
.ls2b{letter-spacing:2229.966600px;}
.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;}
}
.ws38{word-spacing:-37.995120px;}
.ws47{word-spacing:-37.827000px;}
.ws34{word-spacing:-36.144000px;}
.ws45{word-spacing:-33.696000px;}
.ws15{word-spacing:-32.688000px;}
.ws3f{word-spacing:-32.544000px;}
.ws41{word-spacing:-32.400000px;}
.ws44{word-spacing:-30.960000px;}
.ws27{word-spacing:-30.132000px;}
.ws2d{word-spacing:-30.024000px;}
.ws6{word-spacing:-29.991240px;}
.ws3e{word-spacing:-29.808000px;}
.ws7{word-spacing:-29.727000px;}
.ws40{word-spacing:-28.944000px;}
.ws17{word-spacing:-27.332640px;}
.ws16{word-spacing:-27.212760px;}
.ws1e{word-spacing:-25.905240px;}
.ws28{word-spacing:-24.516000px;}
.ws36{word-spacing:-24.222240px;}
.ws35{word-spacing:-23.933880px;}
.ws2f{word-spacing:-21.627000px;}
.wsd{word-spacing:-16.416000px;}
.wsc{word-spacing:-16.344000px;}
.wsf{word-spacing:-16.128000px;}
.ws10{word-spacing:-15.768000px;}
.wse{word-spacing:-15.264000px;}
.ws32{word-spacing:-1.153440px;}
.ws42{word-spacing:-1.008000px;}
.ws3d{word-spacing:-0.864000px;}
.ws3{word-spacing:-0.840600px;}
.ws3c{word-spacing:-0.720000px;}
.ws21{word-spacing:-0.684720px;}
.ws4{word-spacing:-0.576000px;}
.ws20{word-spacing:-0.570600px;}
.ws2a{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.527760px;}
.ws9{word-spacing:-0.467640px;}
.ws48{word-spacing:-0.336240px;}
.ws3b{word-spacing:-0.288000px;}
.ws18{word-spacing:-0.263880px;}
.ws23{word-spacing:-0.245880px;}
.ws39{word-spacing:-0.240120px;}
.ws2b{word-spacing:-0.216000px;}
.ws1{word-spacing:-0.168120px;}
.ws8{word-spacing:-0.155880px;}
.ws12{word-spacing:-0.144000px;}
.ws19{word-spacing:-0.119880px;}
.ws1f{word-spacing:-0.114120px;}
.ws30{word-spacing:-0.108000px;}
.ws5{word-spacing:-0.096120px;}
.ws14{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:0.144000px;}
.ws13{word-spacing:0.216000px;}
.ws31{word-spacing:0.288360px;}
.ws2e{word-spacing:0.324000px;}
.ws2{word-spacing:0.336240px;}
.ws24{word-spacing:0.491760px;}
.ws11{word-spacing:0.527760px;}
.ws37{word-spacing:0.575640px;}
.ws43{word-spacing:0.576000px;}
.ws1c{word-spacing:0.599400px;}
.ws2c{word-spacing:0.648000px;}
.ws29{word-spacing:0.702000px;}
.ws26{word-spacing:0.720000px;}
.ws3a{word-spacing:1.008720px;}
.wsb{word-spacing:1.080000px;}
.wsa{word-spacing:1.247040px;}
.ws46{word-spacing:1.440000px;}
.ws1a{word-spacing:1.558440px;}
.ws1b{word-spacing:1.798200px;}
.ws33{word-spacing:1.800000px;}
.ws25{word-spacing:2.160000px;}
._a{margin-left:-28.080000px;}
._16{margin-left:-26.865360px;}
._b{margin-left:-20.582640px;}
._c{margin-left:-18.932760px;}
._d{margin-left:-17.334000px;}
._6{margin-left:-16.308000px;}
._f{margin-left:-12.960000px;}
._5{margin-left:-11.520000px;}
._9{margin-left:-10.074240px;}
._10{margin-left:-9.072000px;}
._3{margin-left:-7.061040px;}
._e{margin-left:-5.760000px;}
._4{margin-left:-4.371120px;}
._7{margin-left:-3.024000px;}
._2{margin-left:-1.849320px;}
._0{width:1.344960px;}
._1{width:2.858040px;}
._11{width:4.097880px;}
._8{width:5.904360px;}
._17{width:18.984000px;}
._13{width:557.173800px;}
._14{width:558.181800px;}
._15{width:565.068360px;}
._12{width:913.780080px;}
._18{width:1061.785200px;}
.fc5{color:rgb(51,102,204);}
.fc4{color:rgb(0,64,191);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,32,96);}
.fsf{font-size:47.880000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:96.120000px;}
.fs3{font-size:108.000000px;}
.fsb{font-size:114.120000px;}
.fsa{font-size:119.880000px;}
.fs7{font-size:132.120000px;}
.fs2{font-size:144.000000px;}
.fs6{font-size:155.880000px;}
.fs1{font-size:168.120000px;}
.fs0{font-size:191.880000px;}
.fsd{font-size:234.000000px;}
.fse{font-size:240.120000px;}
.fsc{font-size:245.880000px;}
.fs5{font-size:263.880000px;}
.fs8{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:20.708700px;}
.y9{bottom:50.318700px;}
.y4e{bottom:63.457050px;}
.y8{bottom:82.718700px;}
.y4d{bottom:87.433050px;}
.yb5{bottom:110.752350px;}
.ya3{bottom:127.261950px;}
.y14{bottom:127.999080px;}
.y63{bottom:131.940000px;}
.y20{bottom:132.566700px;}
.y61{bottom:136.672500px;}
.y5c{bottom:138.046950px;}
.y3d{bottom:163.075350px;}
.y8a{bottom:174.165000px;}
.y53{bottom:174.308100px;}
.ya2{bottom:177.031950px;}
.yb7{bottom:178.814700px;}
.y13{bottom:180.452700px;}
.y81{bottom:193.140000px;}
.y46{bottom:198.508350px;}
.ya1{bottom:199.981950px;}
.y77{bottom:200.586450px;}
.y52{bottom:206.897100px;}
.y17{bottom:213.421200px;}
.y1f{bottom:214.662900px;}
.y89{bottom:217.365000px;}
.y76{bottom:220.656450px;}
.y5f{bottom:221.417850px;}
.y66{bottom:223.380000px;}
.ya7{bottom:228.903000px;}
.y12{bottom:231.392700px;}
.y80{bottom:236.340000px;}
.y38{bottom:236.926710px;}
.y2f{bottom:239.058600px;}
.y51{bottom:239.297100px;}
.y98{bottom:239.939850px;}
.y3c{bottom:248.967300px;}
.y62{bottom:252.360000px;}
.y78{bottom:258.186090px;}
.y75{bottom:258.186450px;}
.y88{bottom:260.565000px;}
.ya0{bottom:261.181950px;}
.yae{bottom:263.114850px;}
.y37{bottom:268.252650px;}
.y11{bottom:270.632700px;}
.y7f{bottom:279.540000px;}
.y1e{bottom:286.847550px;}
.y73{bottom:292.273950px;}
.y2e{bottom:292.986600px;}
.y21{bottom:296.758800px;}
.y87{bottom:303.765000px;}
.y97{bottom:304.739850px;}
.yad{bottom:306.314850px;}
.y45{bottom:306.508350px;}
.y1d{bottom:306.647550px;}
.y10{bottom:309.782700px;}
.y72{bottom:312.344100px;}
.yb3{bottom:314.115000px;}
.yb0{bottom:314.302350px;}
.y16{bottom:321.421200px;}
.y9f{bottom:322.381950px;}
.y7e{bottom:322.740000px;}
.y3b{bottom:325.540560px;}
.y36{bottom:328.867410px;}
.y5e{bottom:329.417850px;}
.y2d{bottom:331.866600px;}
.ya6{bottom:336.903000px;}
.y3e{bottom:344.537100px;}
.y86{bottom:346.965000px;}
.yb4{bottom:348.891000px;}
.yf{bottom:348.932700px;}
.y71{bottom:349.870890px;}
.y74{bottom:349.873590px;}
.yb2{bottom:356.677500px;}
.y5a{bottom:356.755350px;}
.y3a{bottom:356.866500px;}
.yaf{bottom:357.502350px;}
.y67{bottom:358.380000px;}
.y35{bottom:360.193350px;}
.y7d{bottom:365.940000px;}
.y68{bottom:367.391250px;}
.yb9{bottom:368.647800px;}
.y25{bottom:368.943600px;}
.y96{bottom:369.539850px;}
.y7{bottom:372.180750px;}
.y59{bottom:373.624410px;}
.y70{bottom:374.983950px;}
.y91{bottom:377.265000px;}
.y1c{bottom:378.855000px;}
.y9e{bottom:383.581950px;}
.y2c{bottom:384.168930px;}
.y24{bottom:388.743600px;}
.ye{bottom:389.612700px;}
.y85{bottom:390.165000px;}
.y6f{bottom:397.754100px;}
.yb1{bottom:399.877500px;}
.y64{bottom:401.940000px;}
.y58{bottom:402.412350px;}
.y6{bottom:404.580750px;}
.yb8{bottom:411.847800px;}
.y44{bottom:414.508350px;}
.y90{bottom:420.465000px;}
.y2b{bottom:424.029030px;}
.y15{bottom:429.421200px;}
.y34{bottom:430.767810px;}
.y84{bottom:433.365000px;}
.y5b{bottom:433.372950px;}
.y95{bottom:434.339850px;}
.y5d{bottom:437.417850px;}
.y5{bottom:439.320750px;}
.yd{bottom:441.992700px;}
.y6e{bottom:444.104100px;}
.y9d{bottom:444.781950px;}
.ya5{bottom:444.903000px;}
.y39{bottom:446.437500px;}
.y23{bottom:451.039800px;}
.y2a{bottom:456.426600px;}
.y1b{bottom:460.951050px;}
.y33{bottom:462.093750px;}
.y8f{bottom:463.665000px;}
.y7c{bottom:466.740000px;}
.y50{bottom:468.473100px;}
.y22{bottom:470.839800px;}
.y83{bottom:476.565000px;}
.yc{bottom:494.462700px;}
.y29{bottom:496.389030px;}
.y94{bottom:499.139850px;}
.y4f{bottom:500.873100px;}
.y9c{bottom:505.981950px;}
.y8e{bottom:506.865000px;}
.yab{bottom:507.501000px;}
.y4c{bottom:509.017050px;}
.y7b{bottom:509.940000px;}
.y57{bottom:514.487700px;}
.y43{bottom:522.508350px;}
.y4{bottom:524.097960px;}
.y6d{bottom:525.870000px;}
.y28{bottom:528.786600px;}
.y4b{bottom:531.697050px;}
.y1a{bottom:543.047100px;}
.yb6{bottom:544.627050px;}
.y56{bottom:546.077700px;}
.y32{bottom:548.250060px;}
.y8d{bottom:550.065000px;}
.ya4{bottom:552.903000px;}
.yaa{bottom:560.046060px;}
.y93{bottom:563.939850px;}
.y9b{bottom:567.169800px;}
.y27{bottom:570.276600px;}
.y3{bottom:574.491930px;}
.y6c{bottom:576.270000px;}
.y4a{bottom:578.406900px;}
.y55{bottom:578.477700px;}
.y31{bottom:579.576000px;}
.y65{bottom:581.940000px;}
.y69{bottom:592.380000px;}
.y8b{bottom:599.937000px;}
.y7a{bottom:599.940000px;}
.y49{bottom:601.086900px;}
.y2{bottom:624.885900px;}
.y19{bottom:625.143150px;}
.y9a{bottom:627.181800px;}
.ya9{bottom:635.658030px;}
.y48{bottom:662.362350px;}
.y6b{bottom:666.567630px;}
.yac{bottom:670.413300px;}
.yb{bottom:670.413450px;}
.y92{bottom:680.121900px;}
.y42{bottom:683.009400px;}
.y82{bottom:688.320000px;}
.y26{bottom:690.608550px;}
.y54{bottom:693.952500px;}
.y30{bottom:695.876850px;}
.y8c{bottom:700.438800px;}
.y18{bottom:703.964700px;}
.y1{bottom:704.929350px;}
.y3f{bottom:709.080600px;}
.y60{bottom:709.715700px;}
.y99{bottom:709.993500px;}
.y40{bottom:710.250600px;}
.y79{bottom:711.443700px;}
.ya8{bottom:725.310000px;}
.y47{bottom:725.542350px;}
.y6a{bottom:731.340000px;}
.y41{bottom:742.020600px;}
.h1e{height:46.991602px;}
.h1d{height:49.937344px;}
.hb{height:59.378906px;}
.h24{height:70.664062px;}
.h16{height:79.270840px;}
.h15{height:89.068359px;}
.h10{height:94.115566px;}
.h1a{height:94.336523px;}
.he{height:98.865879px;}
.h5{height:102.560040px;}
.h13{height:112.640625px;}
.h4{height:115.236000px;}
.hf{height:118.757812px;}
.h25{height:121.307812px;}
.h14{height:122.764359px;}
.hd{height:125.031094px;}
.h17{height:126.946360px;}
.h9{height:128.555332px;}
.h8{height:137.797031px;}
.h1c{height:138.649746px;}
.h19{height:141.328125px;}
.h23{height:141.600586px;}
.h22{height:141.649186px;}
.h21{height:145.125000px;}
.hc{height:150.187500px;}
.h3{height:153.648000px;}
.h18{height:158.244785px;}
.h7{height:162.577969px;}
.h2{height:179.384040px;}
.h12{height:192.981445px;}
.h1f{height:197.111002px;}
.h20{height:197.111602px;}
.h1b{height:198.028652px;}
.h11{height:202.778965px;}
.h1{height:204.735960px;}
.h6{height:217.623691px;}
.ha{height:296.894531px;}
.h0{height:810.000000px;}
.w0{width:1170.000000px;}
.x0{left:0.000000px;}
.x84{left:40.050000px;}
.x14{left:47.448900px;}
.x81{left:59.550000px;}
.x16{left:63.846150px;}
.x17{left:69.422250px;}
.x7f{left:72.298650px;}
.x80{left:77.158650px;}
.x15{left:80.406150px;}
.x89{left:84.331500px;}
.x67{left:88.845600px;}
.x18{left:90.482400px;}
.xe{left:92.286600px;}
.x85{left:96.806700px;}
.x86{left:98.346900px;}
.x39{left:109.850550px;}
.x83{left:110.964600px;}
.xb{left:124.993350px;}
.x3c{left:136.850550px;}
.x4f{left:138.881250px;}
.x4{left:142.701960px;}
.x7d{left:143.815800px;}
.x2{left:146.400600px;}
.x63{left:150.245400px;}
.xd{left:151.993350px;}
.x3a{left:163.850550px;}
.x11{left:175.363050px;}
.xc{left:178.993350px;}
.x13{left:186.725400px;}
.x3{left:188.682780px;}
.x3b{left:190.820580px;}
.x6c{left:200.778900px;}
.x19{left:212.306250px;}
.x6e{left:218.090850px;}
.x1a{left:219.862500px;}
.x1b{left:223.282500px;}
.x1c{left:230.392500px;}
.x4e{left:236.352600px;}
.x6{left:239.818050px;}
.x38{left:242.015550px;}
.x78{left:244.830150px;}
.x40{left:248.086620px;}
.x41{left:250.300650px;}
.x43{left:252.725700px;}
.x6a{left:254.553690px;}
.x61{left:258.795300px;}
.x42{left:260.571450px;}
.x8{left:262.586250px;}
.x58{left:264.380250px;}
.x53{left:265.903800px;}
.xf{left:269.856600px;}
.x5a{left:279.244050px;}
.x79{left:282.581400px;}
.x75{left:285.006960px;}
.x54{left:286.385850px;}
.x5b{left:294.545850px;}
.x82{left:300.141630px;}
.x7{left:304.348050px;}
.x55{left:312.438600px;}
.x5c{left:317.854950px;}
.x10{left:318.996600px;}
.x5{left:325.498050px;}
.x70{left:330.982950px;}
.x7a{left:336.581400px;}
.x57{left:337.914750px;}
.x51{left:342.133800px;}
.x52{left:347.533800px;}
.x87{left:356.315700px;}
.x3d{left:359.926950px;}
.x7c{left:364.898550px;}
.x60{left:366.795300px;}
.x6d{left:377.026980px;}
.x50{left:385.488090px;}
.x1{left:390.300150px;}
.x9{left:414.956250px;}
.x6f{left:433.942950px;}
.x77{left:435.077550px;}
.x8c{left:438.771750px;}
.x66{left:439.845600px;}
.x1e{left:441.255900px;}
.x46{left:452.917260px;}
.x45{left:474.685650px;}
.xa{left:476.236950px;}
.x44{left:477.282450px;}
.x6b{left:478.800150px;}
.x7b{left:480.889200px;}
.x8a{left:485.300250px;}
.x62{left:487.395300px;}
.x1f{left:494.552850px;}
.x21{left:503.466750px;}
.x20{left:510.666750px;}
.x22{left:512.462850px;}
.x3f{left:522.528930px;}
.x3e{left:539.618400px;}
.x5e{left:577.518900px;}
.x23{left:582.789900px;}
.x12{left:596.916150px;}
.x1d{left:599.616000px;}
.x48{left:608.296260px;}
.x72{left:611.571300px;}
.x65{left:625.065600px;}
.x25{left:629.693100px;}
.x26{left:630.776850px;}
.x76{left:634.967700px;}
.x24{left:641.666850px;}
.x47{left:646.469400px;}
.x49{left:648.690600px;}
.x5f{left:650.634900px;}
.x27{left:652.373100px;}
.x68{left:654.300150px;}
.x71{left:673.581300px;}
.x88{left:688.019100px;}
.x59{left:696.351600px;}
.x28{left:730.976250px;}
.x69{left:742.050300px;}
.x2b{left:762.497100px;}
.x56{left:768.252600px;}
.x2a{left:773.387100px;}
.x74{left:774.890550px;}
.x29{left:777.617100px;}
.x2c{left:790.033350px;}
.x4a{left:811.416900px;}
.x4b{left:813.449100px;}
.x73{left:815.840550px;}
.x4d{left:820.468800px;}
.x4c{left:831.452850px;}
.x5d{left:838.873410px;}
.x7e{left:862.471200px;}
.x2d{left:877.906350px;}
.x2f{left:911.673450px;}
.x2e{left:919.777200px;}
.x64{left:932.073600px;}
.x30{left:933.907350px;}
.x8b{left:936.643800px;}
.x31{left:1010.350500px;}
.x33{left:1046.007600px;}
.x32{left:1048.257600px;}
.x36{left:1051.583850px;}
.x35{left:1052.937600px;}
.x34{left:1060.857600px;}
.x37{left:1067.603850px;}
@media print{
.v6{vertical-align:-49.920000pt;}
.v7{vertical-align:-28.400000pt;}
.v4{vertical-align:-20.756800pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.266667pt;}
.v1{vertical-align:29.952000pt;}
.v5{vertical-align:41.280000pt;}
.v2{vertical-align:42.378240pt;}
.v3{vertical-align:133.439467pt;}
.ls29{letter-spacing:-4.480000pt;}
.ls1f{letter-spacing:-3.200000pt;}
.ls1e{letter-spacing:-2.432000pt;}
.ls2a{letter-spacing:-2.048000pt;}
.lsa{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.448000pt;}
.ls2{letter-spacing:-0.149440pt;}
.ls7{letter-spacing:-0.138560pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.117440pt;}
.ls11{letter-spacing:-0.106560pt;}
.ls19{letter-spacing:-0.085440pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.085440pt;}
.ls15{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.101440pt;}
.ls10{letter-spacing:0.106560pt;}
.ls6{letter-spacing:0.117440pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.170880pt;}
.ls12{letter-spacing:0.213120pt;}
.ls1d{letter-spacing:0.213440pt;}
.ls17{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.852480pt;}
.ls4{letter-spacing:47.504000pt;}
.lsd{letter-spacing:51.200000pt;}
.ls5{letter-spacing:54.896000pt;}
.lse{letter-spacing:58.704000pt;}
.ls14{letter-spacing:62.400000pt;}
.ls20{letter-spacing:166.912000pt;}
.ls1b{letter-spacing:304.529600pt;}
.ls1c{letter-spacing:336.529600pt;}
.ls24{letter-spacing:448.574400pt;}
.ls22{letter-spacing:769.214400pt;}
.ls26{letter-spacing:804.401067pt;}
.ls27{letter-spacing:861.361067pt;}
.ls25{letter-spacing:867.761067pt;}
.ls16{letter-spacing:894.144000pt;}
.ls28{letter-spacing:968.497067pt;}
.ls21{letter-spacing:1113.521067pt;}
.ls23{letter-spacing:1229.630400pt;}
.ls18{letter-spacing:1573.035840pt;}
.ls2b{letter-spacing:1982.192533pt;}
.ws38{word-spacing:-33.773440pt;}
.ws47{word-spacing:-33.624000pt;}
.ws34{word-spacing:-32.128000pt;}
.ws45{word-spacing:-29.952000pt;}
.ws15{word-spacing:-29.056000pt;}
.ws3f{word-spacing:-28.928000pt;}
.ws41{word-spacing:-28.800000pt;}
.ws44{word-spacing:-27.520000pt;}
.ws27{word-spacing:-26.784000pt;}
.ws2d{word-spacing:-26.688000pt;}
.ws6{word-spacing:-26.658880pt;}
.ws3e{word-spacing:-26.496000pt;}
.ws7{word-spacing:-26.424000pt;}
.ws40{word-spacing:-25.728000pt;}
.ws17{word-spacing:-24.295680pt;}
.ws16{word-spacing:-24.189120pt;}
.ws1e{word-spacing:-23.026880pt;}
.ws28{word-spacing:-21.792000pt;}
.ws36{word-spacing:-21.530880pt;}
.ws35{word-spacing:-21.274560pt;}
.ws2f{word-spacing:-19.224000pt;}
.wsd{word-spacing:-14.592000pt;}
.wsc{word-spacing:-14.528000pt;}
.wsf{word-spacing:-14.336000pt;}
.ws10{word-spacing:-14.016000pt;}
.wse{word-spacing:-13.568000pt;}
.ws32{word-spacing:-1.025280pt;}
.ws42{word-spacing:-0.896000pt;}
.ws3d{word-spacing:-0.768000pt;}
.ws3{word-spacing:-0.747200pt;}
.ws3c{word-spacing:-0.640000pt;}
.ws21{word-spacing:-0.608640pt;}
.ws4{word-spacing:-0.512000pt;}
.ws20{word-spacing:-0.507200pt;}
.ws2a{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.469120pt;}
.ws9{word-spacing:-0.415680pt;}
.ws48{word-spacing:-0.298880pt;}
.ws3b{word-spacing:-0.256000pt;}
.ws18{word-spacing:-0.234560pt;}
.ws23{word-spacing:-0.218560pt;}
.ws39{word-spacing:-0.213440pt;}
.ws2b{word-spacing:-0.192000pt;}
.ws1{word-spacing:-0.149440pt;}
.ws8{word-spacing:-0.138560pt;}
.ws12{word-spacing:-0.128000pt;}
.ws19{word-spacing:-0.106560pt;}
.ws1f{word-spacing:-0.101440pt;}
.ws30{word-spacing:-0.096000pt;}
.ws5{word-spacing:-0.085440pt;}
.ws14{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.128000pt;}
.ws13{word-spacing:0.192000pt;}
.ws31{word-spacing:0.256320pt;}
.ws2e{word-spacing:0.288000pt;}
.ws2{word-spacing:0.298880pt;}
.ws24{word-spacing:0.437120pt;}
.ws11{word-spacing:0.469120pt;}
.ws37{word-spacing:0.511680pt;}
.ws43{word-spacing:0.512000pt;}
.ws1c{word-spacing:0.532800pt;}
.ws2c{word-spacing:0.576000pt;}
.ws29{word-spacing:0.624000pt;}
.ws26{word-spacing:0.640000pt;}
.ws3a{word-spacing:0.896640pt;}
.wsb{word-spacing:0.960000pt;}
.wsa{word-spacing:1.108480pt;}
.ws46{word-spacing:1.280000pt;}
.ws1a{word-spacing:1.385280pt;}
.ws1b{word-spacing:1.598400pt;}
.ws33{word-spacing:1.600000pt;}
.ws25{word-spacing:1.920000pt;}
._a{margin-left:-24.960000pt;}
._16{margin-left:-23.880320pt;}
._b{margin-left:-18.295680pt;}
._c{margin-left:-16.829120pt;}
._d{margin-left:-15.408000pt;}
._6{margin-left:-14.496000pt;}
._f{margin-left:-11.520000pt;}
._5{margin-left:-10.240000pt;}
._9{margin-left:-8.954880pt;}
._10{margin-left:-8.064000pt;}
._3{margin-left:-6.276480pt;}
._e{margin-left:-5.120000pt;}
._4{margin-left:-3.885440pt;}
._7{margin-left:-2.688000pt;}
._2{margin-left:-1.643840pt;}
._0{width:1.195520pt;}
._1{width:2.540480pt;}
._11{width:3.642560pt;}
._8{width:5.248320pt;}
._17{width:16.874667pt;}
._13{width:495.265600pt;}
._14{width:496.161600pt;}
._15{width:502.282987pt;}
._12{width:812.248960pt;}
._18{width:943.809067pt;}
.fsf{font-size:42.560000pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:85.440000pt;}
.fs3{font-size:96.000000pt;}
.fsb{font-size:101.440000pt;}
.fsa{font-size:106.560000pt;}
.fs7{font-size:117.440000pt;}
.fs2{font-size:128.000000pt;}
.fs6{font-size:138.560000pt;}
.fs1{font-size:149.440000pt;}
.fs0{font-size:170.560000pt;}
.fsd{font-size:208.000000pt;}
.fse{font-size:213.440000pt;}
.fsc{font-size:218.560000pt;}
.fs5{font-size:234.560000pt;}
.fs8{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:18.407733pt;}
.y9{bottom:44.727733pt;}
.y4e{bottom:56.406267pt;}
.y8{bottom:73.527733pt;}
.y4d{bottom:77.718267pt;}
.yb5{bottom:98.446533pt;}
.ya3{bottom:113.121733pt;}
.y14{bottom:113.776960pt;}
.y63{bottom:117.280000pt;}
.y20{bottom:117.837067pt;}
.y61{bottom:121.486667pt;}
.y5c{bottom:122.708400pt;}
.y3d{bottom:144.955867pt;}
.y8a{bottom:154.813333pt;}
.y53{bottom:154.940533pt;}
.ya2{bottom:157.361733pt;}
.yb7{bottom:158.946400pt;}
.y13{bottom:160.402400pt;}
.y81{bottom:171.680000pt;}
.y46{bottom:176.451867pt;}
.ya1{bottom:177.761733pt;}
.y77{bottom:178.299067pt;}
.y52{bottom:183.908533pt;}
.y17{bottom:189.707733pt;}
.y1f{bottom:190.811467pt;}
.y89{bottom:193.213333pt;}
.y76{bottom:196.139067pt;}
.y5f{bottom:196.815867pt;}
.y66{bottom:198.560000pt;}
.ya7{bottom:203.469333pt;}
.y12{bottom:205.682400pt;}
.y80{bottom:210.080000pt;}
.y38{bottom:210.601520pt;}
.y2f{bottom:212.496533pt;}
.y51{bottom:212.708533pt;}
.y98{bottom:213.279867pt;}
.y3c{bottom:221.304267pt;}
.y62{bottom:224.320000pt;}
.y78{bottom:229.498747pt;}
.y75{bottom:229.499067pt;}
.y88{bottom:231.613333pt;}
.ya0{bottom:232.161733pt;}
.yae{bottom:233.879867pt;}
.y37{bottom:238.446800pt;}
.y11{bottom:240.562400pt;}
.y7f{bottom:248.480000pt;}
.y1e{bottom:254.975600pt;}
.y73{bottom:259.799067pt;}
.y2e{bottom:260.432533pt;}
.y21{bottom:263.785600pt;}
.y87{bottom:270.013333pt;}
.y97{bottom:270.879867pt;}
.yad{bottom:272.279867pt;}
.y45{bottom:272.451867pt;}
.y1d{bottom:272.575600pt;}
.y10{bottom:275.362400pt;}
.y72{bottom:277.639200pt;}
.yb3{bottom:279.213333pt;}
.yb0{bottom:279.379867pt;}
.y16{bottom:285.707733pt;}
.y9f{bottom:286.561733pt;}
.y7e{bottom:286.880000pt;}
.y3b{bottom:289.369387pt;}
.y36{bottom:292.326587pt;}
.y5e{bottom:292.815867pt;}
.y2d{bottom:294.992533pt;}
.ya6{bottom:299.469333pt;}
.y3e{bottom:306.255200pt;}
.y86{bottom:308.413333pt;}
.yb4{bottom:310.125333pt;}
.yf{bottom:310.162400pt;}
.y71{bottom:310.996347pt;}
.y74{bottom:310.998747pt;}
.yb2{bottom:317.046667pt;}
.y5a{bottom:317.115867pt;}
.y3a{bottom:317.214667pt;}
.yaf{bottom:317.779867pt;}
.y67{bottom:318.560000pt;}
.y35{bottom:320.171867pt;}
.y7d{bottom:325.280000pt;}
.y68{bottom:326.570000pt;}
.yb9{bottom:327.686933pt;}
.y25{bottom:327.949867pt;}
.y96{bottom:328.479867pt;}
.y7{bottom:330.827333pt;}
.y59{bottom:332.110587pt;}
.y70{bottom:333.319067pt;}
.y91{bottom:335.346667pt;}
.y1c{bottom:336.760000pt;}
.y9e{bottom:340.961733pt;}
.y2c{bottom:341.483493pt;}
.y24{bottom:345.549867pt;}
.ye{bottom:346.322400pt;}
.y85{bottom:346.813333pt;}
.y6f{bottom:353.559200pt;}
.yb1{bottom:355.446667pt;}
.y64{bottom:357.280000pt;}
.y58{bottom:357.699867pt;}
.y6{bottom:359.627333pt;}
.yb8{bottom:366.086933pt;}
.y44{bottom:368.451867pt;}
.y90{bottom:373.746667pt;}
.y2b{bottom:376.914693pt;}
.y15{bottom:381.707733pt;}
.y34{bottom:382.904720pt;}
.y84{bottom:385.213333pt;}
.y5b{bottom:385.220400pt;}
.y95{bottom:386.079867pt;}
.y5d{bottom:388.815867pt;}
.y5{bottom:390.507333pt;}
.yd{bottom:392.882400pt;}
.y6e{bottom:394.759200pt;}
.y9d{bottom:395.361733pt;}
.ya5{bottom:395.469333pt;}
.y39{bottom:396.833333pt;}
.y23{bottom:400.924267pt;}
.y2a{bottom:405.712533pt;}
.y1b{bottom:409.734267pt;}
.y33{bottom:410.750000pt;}
.y8f{bottom:412.146667pt;}
.y7c{bottom:414.880000pt;}
.y50{bottom:416.420533pt;}
.y22{bottom:418.524267pt;}
.y83{bottom:423.613333pt;}
.yc{bottom:439.522400pt;}
.y29{bottom:441.234693pt;}
.y94{bottom:443.679867pt;}
.y4f{bottom:445.220533pt;}
.y9c{bottom:449.761733pt;}
.y8e{bottom:450.546667pt;}
.yab{bottom:451.112000pt;}
.y4c{bottom:452.459600pt;}
.y7b{bottom:453.280000pt;}
.y57{bottom:457.322400pt;}
.y43{bottom:464.451867pt;}
.y4{bottom:465.864853pt;}
.y6d{bottom:467.440000pt;}
.y28{bottom:470.032533pt;}
.y4b{bottom:472.619600pt;}
.y1a{bottom:482.708533pt;}
.yb6{bottom:484.112933pt;}
.y56{bottom:485.402400pt;}
.y32{bottom:487.333387pt;}
.y8d{bottom:488.946667pt;}
.ya4{bottom:491.469333pt;}
.yaa{bottom:497.818720pt;}
.y93{bottom:501.279867pt;}
.y9b{bottom:504.150933pt;}
.y27{bottom:506.912533pt;}
.y3{bottom:510.659493pt;}
.y6c{bottom:512.240000pt;}
.y4a{bottom:514.139467pt;}
.y55{bottom:514.202400pt;}
.y31{bottom:515.178667pt;}
.y65{bottom:517.280000pt;}
.y69{bottom:526.560000pt;}
.y8b{bottom:533.277333pt;}
.y7a{bottom:533.280000pt;}
.y49{bottom:534.299467pt;}
.y2{bottom:555.454133pt;}
.y19{bottom:555.682800pt;}
.y9a{bottom:557.494933pt;}
.ya9{bottom:565.029360pt;}
.y48{bottom:588.766533pt;}
.y6b{bottom:592.504560pt;}
.yac{bottom:595.922933pt;}
.yb{bottom:595.923067pt;}
.y92{bottom:604.552800pt;}
.y42{bottom:607.119467pt;}
.y82{bottom:611.840000pt;}
.y26{bottom:613.874267pt;}
.y54{bottom:616.846667pt;}
.y30{bottom:618.557200pt;}
.y8c{bottom:622.612267pt;}
.y18{bottom:625.746400pt;}
.y1{bottom:626.603867pt;}
.y3f{bottom:630.293867pt;}
.y60{bottom:630.858400pt;}
.y99{bottom:631.105333pt;}
.y40{bottom:631.333867pt;}
.y79{bottom:632.394400pt;}
.ya8{bottom:644.720000pt;}
.y47{bottom:644.926533pt;}
.y6a{bottom:650.080000pt;}
.y41{bottom:659.573867pt;}
.h1e{height:41.770312pt;}
.h1d{height:44.388750pt;}
.hb{height:52.781250pt;}
.h24{height:62.812500pt;}
.h16{height:70.462969pt;}
.h15{height:79.171875pt;}
.h10{height:83.658281pt;}
.h1a{height:83.854687pt;}
.he{height:87.880781pt;}
.h5{height:91.164480pt;}
.h13{height:100.125000pt;}
.h4{height:102.432000pt;}
.hf{height:105.562500pt;}
.h25{height:107.829167pt;}
.h14{height:109.123875pt;}
.hd{height:111.138750pt;}
.h17{height:112.841209pt;}
.h9{height:114.271406pt;}
.h8{height:122.486250pt;}
.h1c{height:123.244219pt;}
.h19{height:125.625000pt;}
.h23{height:125.867187pt;}
.h22{height:125.910387pt;}
.h21{height:129.000000pt;}
.hc{height:133.500000pt;}
.h3{height:136.576000pt;}
.h18{height:140.662031pt;}
.h7{height:144.513750pt;}
.h2{height:159.452480pt;}
.h12{height:171.539062pt;}
.h1f{height:175.209779pt;}
.h20{height:175.210313pt;}
.h1b{height:176.025469pt;}
.h11{height:180.247969pt;}
.h1{height:181.987520pt;}
.h6{height:193.443281pt;}
.ha{height:263.906250pt;}
.h0{height:720.000000pt;}
.w0{width:1040.000000pt;}
.x0{left:0.000000pt;}
.x84{left:35.600000pt;}
.x14{left:42.176800pt;}
.x81{left:52.933333pt;}
.x16{left:56.752133pt;}
.x17{left:61.708667pt;}
.x7f{left:64.265467pt;}
.x80{left:68.585467pt;}
.x15{left:71.472133pt;}
.x89{left:74.961333pt;}
.x67{left:78.973867pt;}
.x18{left:80.428800pt;}
.xe{left:82.032533pt;}
.x85{left:86.050400pt;}
.x86{left:87.419467pt;}
.x39{left:97.644933pt;}
.x83{left:98.635200pt;}
.xb{left:111.105200pt;}
.x3c{left:121.644933pt;}
.x4f{left:123.450000pt;}
.x4{left:126.846187pt;}
.x7d{left:127.836267pt;}
.x2{left:130.133867pt;}
.x63{left:133.551467pt;}
.xd{left:135.105200pt;}
.x3a{left:145.644933pt;}
.x11{left:155.878267pt;}
.xc{left:159.105200pt;}
.x13{left:165.978133pt;}
.x3{left:167.718027pt;}
.x3b{left:169.618293pt;}
.x6c{left:178.470133pt;}
.x19{left:188.716667pt;}
.x6e{left:193.858533pt;}
.x1a{left:195.433333pt;}
.x1b{left:198.473333pt;}
.x1c{left:204.793333pt;}
.x4e{left:210.091200pt;}
.x6{left:213.171600pt;}
.x38{left:215.124933pt;}
.x78{left:217.626800pt;}
.x40{left:220.521440pt;}
.x41{left:222.489467pt;}
.x43{left:224.645067pt;}
.x6a{left:226.269947pt;}
.x61{left:230.040267pt;}
.x42{left:231.619067pt;}
.x8{left:233.410000pt;}
.x58{left:235.004667pt;}
.x53{left:236.358933pt;}
.xf{left:239.872533pt;}
.x5a{left:248.216933pt;}
.x79{left:251.183467pt;}
.x75{left:253.339520pt;}
.x54{left:254.565200pt;}
.x5b{left:261.818533pt;}
.x82{left:266.792560pt;}
.x7{left:270.531600pt;}
.x55{left:277.723200pt;}
.x5c{left:282.537733pt;}
.x10{left:283.552533pt;}
.x5{left:289.331600pt;}
.x70{left:294.207067pt;}
.x7a{left:299.183467pt;}
.x57{left:300.368667pt;}
.x51{left:304.118933pt;}
.x52{left:308.918933pt;}
.x87{left:316.725067pt;}
.x3d{left:319.935067pt;}
.x7c{left:324.354267pt;}
.x60{left:326.040267pt;}
.x6d{left:335.135093pt;}
.x50{left:342.656080pt;}
.x1{left:346.933467pt;}
.x9{left:368.850000pt;}
.x6f{left:385.727067pt;}
.x77{left:386.735600pt;}
.x8c{left:390.019333pt;}
.x66{left:390.973867pt;}
.x1e{left:392.227467pt;}
.x46{left:402.593120pt;}
.x45{left:421.942800pt;}
.xa{left:423.321733pt;}
.x44{left:424.251067pt;}
.x6b{left:425.600133pt;}
.x7b{left:427.457067pt;}
.x8a{left:431.378000pt;}
.x62{left:433.240267pt;}
.x1f{left:439.602533pt;}
.x21{left:447.526000pt;}
.x20{left:453.926000pt;}
.x22{left:455.522533pt;}
.x3f{left:464.470160pt;}
.x3e{left:479.660800pt;}
.x5e{left:513.350133pt;}
.x23{left:518.035467pt;}
.x12{left:530.592133pt;}
.x1d{left:532.992000pt;}
.x48{left:540.707787pt;}
.x72{left:543.618933pt;}
.x65{left:555.613867pt;}
.x25{left:559.727200pt;}
.x26{left:560.690533pt;}
.x76{left:564.415733pt;}
.x24{left:570.370533pt;}
.x47{left:574.639467pt;}
.x49{left:576.613867pt;}
.x5f{left:578.342133pt;}
.x27{left:579.887200pt;}
.x68{left:581.600133pt;}
.x71{left:598.738933pt;}
.x88{left:611.572533pt;}
.x59{left:618.979200pt;}
.x28{left:649.756667pt;}
.x69{left:659.600267pt;}
.x2b{left:677.775200pt;}
.x56{left:682.891200pt;}
.x2a{left:687.455200pt;}
.x74{left:688.791600pt;}
.x29{left:691.215200pt;}
.x2c{left:702.251867pt;}
.x4a{left:721.259467pt;}
.x4b{left:723.065867pt;}
.x73{left:725.191600pt;}
.x4d{left:729.305600pt;}
.x4c{left:739.069200pt;}
.x5d{left:745.665253pt;}
.x7e{left:766.641067pt;}
.x2d{left:780.361200pt;}
.x2f{left:810.376400pt;}
.x2e{left:817.579733pt;}
.x64{left:828.509867pt;}
.x30{left:830.139867pt;}
.x8b{left:832.572267pt;}
.x31{left:898.089333pt;}
.x33{left:929.784533pt;}
.x32{left:931.784533pt;}
.x36{left:934.741200pt;}
.x35{left:935.944533pt;}
.x34{left:942.984533pt;}
.x37{left:948.981200pt;}
}




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