
    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_b45f2ac76888442f750b087f.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_0bba0cb401485d4c0a1a5d2b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_8d66cf1c14efb2c94afbee1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_dec16021df227d616af9466a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_7ea53d60157852080a67da8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_fcaf656e64e994d63bc6e9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_0f8b48970148805b41421e2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_05b1de62fee95fa5831bd5ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_513206a80c085b24d3f65a77.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.056641;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-12.240000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.ls2a{letter-spacing:-0.444600px;}
.ls22{letter-spacing:-0.243600px;}
.ls14{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.186000px;}
.ls29{letter-spacing:-0.160800px;}
.ls23{letter-spacing:-0.158400px;}
.lse{letter-spacing:-0.121200px;}
.ls26{letter-spacing:-0.094800px;}
.lsc{letter-spacing:-0.090000px;}
.ls2b{letter-spacing:-0.084600px;}
.ls1e{letter-spacing:-0.063600px;}
.ls20{letter-spacing:-0.040320px;}
.lsb{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.011280px;}
.ls3{letter-spacing:0.015360px;}
.ls12{letter-spacing:0.045360px;}
.ls1c{letter-spacing:0.048960px;}
.ls1f{letter-spacing:0.060480px;}
.ls10{letter-spacing:0.064800px;}
.lsf{letter-spacing:0.074160px;}
.ls9{letter-spacing:0.077280px;}
.ls7{letter-spacing:0.086280px;}
.ls1{letter-spacing:0.093600px;}
.lsa{letter-spacing:0.093960px;}
.ls24{letter-spacing:0.103800px;}
.ls1d{letter-spacing:0.105600px;}
.ls6{letter-spacing:0.145440px;}
.ls13{letter-spacing:0.173400px;}
.ls21{letter-spacing:0.173520px;}
.ls25{letter-spacing:0.178800px;}
.ls8{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.223680px;}
.ls4{letter-spacing:0.229920px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:2.252520px;}
.ls16{letter-spacing:2.612520px;}
.ls18{letter-spacing:3.787200px;}
.ls15{letter-spacing:15.572520px;}
.ls1b{letter-spacing:15.932520px;}
.ls1a{letter-spacing:18.812520px;}
.ls19{letter-spacing:20.347200px;}
.ls28{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls27{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1{word-spacing:-18.453600px;}
.ws5{word-spacing:-14.493600px;}
.ws3b{word-spacing:-14.372400px;}
.ws39{word-spacing:-13.399800px;}
.ws3d{word-spacing:-13.332000px;}
.ws40{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws46{word-spacing:-13.162800px;}
.ws45{word-spacing:-13.065600px;}
.ws3a{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.266400px;}
.ws43{word-spacing:-8.732400px;}
.ws42{word-spacing:-8.657400px;}
.ws44{word-spacing:-8.458800px;}
.ws41{word-spacing:-8.395200px;}
.ws2a{word-spacing:-0.606000px;}
.ws2e{word-spacing:-0.480000px;}
.ws1e{word-spacing:-0.450000px;}
.ws2d{word-spacing:-0.438000px;}
.ws35{word-spacing:-0.408000px;}
.ws2c{word-spacing:-0.366000px;}
.ws26{word-spacing:-0.360000px;}
.ws31{word-spacing:-0.318000px;}
.ws24{word-spacing:-0.300000px;}
.ws34{word-spacing:-0.258000px;}
.ws33{word-spacing:-0.252000px;}
.ws2f{word-spacing:-0.240000px;}
.ws21{word-spacing:-0.180000px;}
.ws3f{word-spacing:-0.176040px;}
.ws29{word-spacing:-0.174000px;}
.ws20{word-spacing:-0.168000px;}
.ws27{word-spacing:-0.144000px;}
.ws36{word-spacing:-0.120000px;}
.ws38{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws19{word-spacing:0.024000px;}
.ws1d{word-spacing:0.102000px;}
.ws32{word-spacing:0.120000px;}
.ws18{word-spacing:0.126000px;}
.ws1f{word-spacing:0.156000px;}
.ws22{word-spacing:0.180000px;}
.ws3c{word-spacing:0.183960px;}
.ws28{word-spacing:0.186000px;}
.ws37{word-spacing:0.216000px;}
.ws25{word-spacing:0.240000px;}
.ws2b{word-spacing:0.276000px;}
.ws30{word-spacing:0.282000px;}
.ws1c{word-spacing:0.318000px;}
.ws1b{word-spacing:0.396000px;}
.ws1a{word-spacing:0.564000px;}
.ws23{word-spacing:0.612000px;}
.ws14{word-spacing:0.792000px;}
.ws8{word-spacing:2.346000px;}
.ws7{word-spacing:2.430000px;}
.wsd{word-spacing:2.484000px;}
.wsc{word-spacing:2.526000px;}
.wsb{word-spacing:2.598000px;}
.ws9{word-spacing:2.766000px;}
.wsa{word-spacing:2.826000px;}
.ws3e{word-spacing:3.423960px;}
.ws4{word-spacing:4.304880px;}
.wse{word-spacing:17.448000px;}
.wsf{word-spacing:17.496000px;}
.ws12{word-spacing:17.502000px;}
.ws16{word-spacing:17.586000px;}
.ws11{word-spacing:17.658000px;}
.ws15{word-spacing:17.706000px;}
.ws13{word-spacing:17.826000px;}
.ws10{word-spacing:18.084000px;}
.ws17{word-spacing:18.210000px;}
._f{margin-left:-5.833080px;}
._10{margin-left:-4.299360px;}
._c{margin-left:-3.241202px;}
._8{margin-left:-2.106000px;}
._0{margin-left:-1.020000px;}
._1{width:1.158120px;}
._2{width:2.765400px;}
._3{width:4.449000px;}
._7{width:6.252600px;}
._e{width:7.274520px;}
._b{width:8.356199px;}
._a{width:9.499200px;}
._d{width:11.062080px;}
._9{width:12.126839px;}
._6{width:14.246400px;}
._5{width:15.991800px;}
._4{width:17.134200px;}
._13{width:20.019960px;}
._11{width:21.102120px;}
._12{width:22.184280px;}
._16{width:24.288480px;}
._17{width:25.853400px;}
._14{width:37.899360px;}
._15{width:39.595320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y90{bottom:7.830000px;}
.y95{bottom:7.860000px;}
.y92{bottom:7.920000px;}
.ya9{bottom:7.950000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y8e{bottom:112.530000px;}
.ye0{bottom:121.440000px;}
.y10b{bottom:125.580000px;}
.y5d{bottom:127.200000px;}
.y13a{bottom:129.180000px;}
.y8d{bottom:130.170000px;}
.y29{bottom:133.320000px;}
.yb5{bottom:134.760000px;}
.ydf{bottom:138.990000px;}
.y10a{bottom:143.130000px;}
.y139{bottom:146.820000px;}
.y8c{bottom:147.720000px;}
.y28{bottom:150.960000px;}
.yde{bottom:156.630000px;}
.y109{bottom:160.680000px;}
.yb4{bottom:162.120000px;}
.y5c{bottom:162.840000px;}
.y8b{bottom:165.270000px;}
.y27{bottom:168.510000px;}
.y138{bottom:173.370000px;}
.y5b{bottom:180.390000px;}
.y8a{bottom:182.910000px;}
.y26{bottom:186.060000px;}
.yb3{bottom:189.480000px;}
.y137{bottom:191.010000px;}
.ydd{bottom:191.460000px;}
.y108{bottom:197.130000px;}
.y5a{bottom:198.030000px;}
.y89{bottom:200.460000px;}
.ydc{bottom:203.610000px;}
.y25{bottom:203.700000px;}
.y136{bottom:208.560000px;}
.y59{bottom:215.580000px;}
.yb2{bottom:216.840000px;}
.y88{bottom:218.100000px;}
.y24{bottom:221.250000px;}
.ydb{bottom:230.970000px;}
.y107{bottom:232.770000px;}
.y58{bottom:233.130000px;}
.y135{bottom:235.110000px;}
.y87{bottom:235.650000px;}
.y23{bottom:238.890000px;}
.yb1{bottom:244.110000px;}
.y106{bottom:250.320000px;}
.y57{bottom:250.770000px;}
.y134{bottom:252.750000px;}
.y22{bottom:256.440000px;}
.yda{bottom:258.330000px;}
.y105{bottom:267.960000px;}
.y56{bottom:268.320000px;}
.y86{bottom:271.200000px;}
.yb0{bottom:271.470000px;}
.y133{bottom:279.300000px;}
.y21{bottom:283.350000px;}
.y104{bottom:285.510000px;}
.yd9{bottom:285.690000px;}
.y55{bottom:285.960000px;}
.y85{bottom:288.840000px;}
.y132{bottom:296.940000px;}
.yaf{bottom:298.830000px;}
.y103{bottom:303.060000px;}
.y84{bottom:306.390000px;}
.y54{bottom:312.780000px;}
.yd8{bottom:312.960000px;}
.y131{bottom:314.490000px;}
.y102{bottom:320.700000px;}
.y83{bottom:323.940000px;}
.yae{bottom:326.190000px;}
.y20{bottom:331.590000px;}
.y101{bottom:338.250000px;}
.yd7{bottom:340.320000px;}
.y130{bottom:341.040000px;}
.y82{bottom:341.580000px;}
.y1f{bottom:349.500000px;}
.yad{bottom:353.460000px;}
.y100{bottom:355.800000px;}
.y12f{bottom:358.680000px;}
.y81{bottom:359.130000px;}
.y53{bottom:361.110000px;}
.yd6{bottom:367.680000px;}
.yff{bottom:373.440000px;}
.y52{bottom:378.660000px;}
.yac{bottom:380.820000px;}
.y12e{bottom:385.230000px;}
.y1e{bottom:386.580000px;}
.y80{bottom:394.770000px;}
.yd5{bottom:394.950000px;}
.y51{bottom:397.020000px;}
.yfe{bottom:400.350000px;}
.y12d{bottom:402.870000px;}
.y1d{bottom:404.130000px;}
.yab{bottom:408.180000px;}
.y7f{bottom:412.320000px;}
.y50{bottom:415.470000px;}
.y1c{bottom:421.680000px;}
.yd4{bottom:422.310000px;}
.y12c{bottom:429.420000px;}
.y7e{bottom:429.870000px;}
.y4f{bottom:433.920000px;}
.yaa{bottom:435.450000px;}
.y1b{bottom:439.320000px;}
.y12b{bottom:446.970000px;}
.y7d{bottom:447.510000px;}
.yfd{bottom:447.870000px;}
.yd3{bottom:449.670000px;}
.y1a{bottom:456.870000px;}
.yfc{bottom:460.020000px;}
.ya8{bottom:462.810000px;}
.y7c{bottom:465.060000px;}
.y4e{bottom:470.400000px;}
.y12a{bottom:473.640000px;}
.y19{bottom:474.540000px;}
.yd2{bottom:477.060000px;}
.y7b{bottom:482.730000px;}
.yfb{bottom:487.410000px;}
.y4d{bottom:487.950000px;}
.ya7{bottom:490.200000px;}
.y129{bottom:491.190000px;}
.y18{bottom:492.090000px;}
.yd1{bottom:504.330000px;}
.y4c{bottom:505.500000px;}
.y128{bottom:508.830000px;}
.y17{bottom:509.640000px;}
.yfa{bottom:514.770000px;}
.ya6{bottom:517.560000px;}
.y7a{bottom:518.280000px;}
.y4b{bottom:523.140000px;}
.y16{bottom:527.280000px;}
.yd0{bottom:531.690000px;}
.y127{bottom:535.380000px;}
.y79{bottom:535.830000px;}
.y4a{bottom:540.690000px;}
.yf9{bottom:542.130000px;}
.y15{bottom:544.830000px;}
.y126{bottom:552.930000px;}
.y78{bottom:553.470000px;}
.y49{bottom:558.330000px;}
.y14{bottom:562.470000px;}
.yf8{bottom:569.400000px;}
.y125{bottom:570.570000px;}
.y77{bottom:571.020000px;}
.ya5{bottom:572.190000px;}
.y48{bottom:575.880000px;}
.y13{bottom:580.020000px;}
.ycf{bottom:580.380000px;}
.y76{bottom:588.660000px;}
.y47{bottom:593.430000px;}
.yf7{bottom:596.760000px;}
.y124{bottom:597.120000px;}
.y12{bottom:597.570000px;}
.yce{bottom:598.020000px;}
.ya4{bottom:599.550000px;}
.y75{bottom:606.210000px;}
.y123{bottom:614.760000px;}
.y11{bottom:615.210000px;}
.y74{bottom:623.760000px;}
.yf6{bottom:624.120000px;}
.ya3{bottom:626.910000px;}
.y46{bottom:629.070000px;}
.y122{bottom:632.310000px;}
.ycd{bottom:633.570000px;}
.y73{bottom:641.400000px;}
.y10{bottom:642.120000px;}
.y45{bottom:646.620000px;}
.ycc{bottom:651.120000px;}
.ya2{bottom:654.180000px;}
.y121{bottom:658.860000px;}
.y72{bottom:658.950000px;}
.y44{bottom:664.260000px;}
.ycb{bottom:668.760000px;}
.yf5{bottom:672.810000px;}
.y120{bottom:676.500000px;}
.y71{bottom:676.590000px;}
.ya1{bottom:681.540000px;}
.y43{bottom:681.810000px;}
.yca{bottom:686.310000px;}
.yf{bottom:690.360000px;}
.y70{bottom:694.140000px;}
.y42{bottom:699.360000px;}
.y11f{bottom:703.050000px;}
.yc9{bottom:703.950000px;}
.yf4{bottom:708.360000px;}
.ya0{bottom:708.900000px;}
.y6f{bottom:711.690000px;}
.y11e{bottom:720.690000px;}
.yc8{bottom:721.500000px;}
.yf3{bottom:726.000000px;}
.ye{bottom:726.180000px;}
.y41{bottom:735.000000px;}
.y9f{bottom:736.170000px;}
.y11d{bottom:738.240000px;}
.yc7{bottom:739.050000px;}
.yf2{bottom:743.550000px;}
.y6e{bottom:747.330000px;}
.y40{bottom:752.550000px;}
.y11c{bottom:755.790000px;}
.yc6{bottom:756.690000px;}
.yd{bottom:762.180000px;}
.y9e{bottom:763.530000px;}
.y6d{bottom:764.880000px;}
.y3f{bottom:770.190000px;}
.yc5{bottom:774.240000px;}
.yf1{bottom:779.190000px;}
.y6c{bottom:782.520000px;}
.y11b{bottom:782.700000px;}
.y3e{bottom:787.740000px;}
.y9d{bottom:790.890000px;}
.yc4{bottom:791.880000px;}
.yf0{bottom:796.740000px;}
.y6b{bottom:800.070000px;}
.yc{bottom:801.960000px;}
.y3d{bottom:805.290000px;}
.yc3{bottom:809.430000px;}
.yef{bottom:814.290000px;}
.y6a{bottom:817.620000px;}
.y9c{bottom:818.250000px;}
.yb{bottom:819.960000px;}
.y3c{bottom:822.930000px;}
.yc2{bottom:826.980000px;}
.y11a{bottom:831.030000px;}
.yee{bottom:831.930000px;}
.y69{bottom:835.260000px;}
.ya{bottom:837.960000px;}
.y3b{bottom:840.480000px;}
.yc1{bottom:844.620000px;}
.y9b{bottom:845.520000px;}
.yed{bottom:849.480000px;}
.y68{bottom:852.810000px;}
.y9{bottom:855.960000px;}
.y119{bottom:857.940000px;}
.y3a{bottom:858.030000px;}
.yc0{bottom:862.170000px;}
.yec{bottom:867.030000px;}
.y67{bottom:870.450000px;}
.y9a{bottom:872.880000px;}
.y8{bottom:873.960000px;}
.y39{bottom:875.670000px;}
.yeb{bottom:884.670000px;}
.y66{bottom:888.000000px;}
.ybf{bottom:888.810000px;}
.y7{bottom:891.960000px;}
.y142{bottom:893.220000px;}
.y118{bottom:895.200000px;}
.y99{bottom:900.240000px;}
.yea{bottom:902.220000px;}
.y65{bottom:905.550000px;}
.y141{bottom:910.860000px;}
.y38{bottom:911.220000px;}
.ye9{bottom:919.860000px;}
.y64{bottom:923.190000px;}
.ybe{bottom:923.640000px;}
.y6{bottom:924.270000px;}
.y98{bottom:927.600000px;}
.y140{bottom:928.410000px;}
.y37{bottom:928.860000px;}
.ybd{bottom:935.790000px;}
.ye8{bottom:937.410000px;}
.y63{bottom:940.740000px;}
.y117{bottom:943.530000px;}
.y5{bottom:943.620000px;}
.y36{bottom:946.410000px;}
.y97{bottom:954.870000px;}
.ye7{bottom:954.960000px;}
.y116{bottom:961.080000px;}
.ybc{bottom:963.150000px;}
.y35{bottom:963.960000px;}
.y62{bottom:967.290000px;}
.ye6{bottom:972.600000px;}
.y115{bottom:978.630000px;}
.y34{bottom:981.600000px;}
.y96{bottom:982.230000px;}
.y4{bottom:985.380000px;}
.ye5{bottom:990.150000px;}
.ybb{bottom:990.510000px;}
.y114{bottom:997.080000px;}
.y33{bottom:999.150000px;}
.y61{bottom:1003.200000px;}
.ye4{bottom:1007.790000px;}
.y94{bottom:1009.590000px;}
.y3{bottom:1010.070000px;}
.y113{bottom:1014.750000px;}
.y13f{bottom:1016.820000px;}
.yba{bottom:1017.810000px;}
.ye3{bottom:1025.370000px;}
.y112{bottom:1032.300000px;}
.y13e{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.y93{bottom:1036.890000px;}
.ye2{bottom:1042.920000px;}
.yb9{bottom:1045.170000px;}
.y111{bottom:1050.750000px;}
.y60{bottom:1051.560000px;}
.y13d{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y91{bottom:1064.250000px;}
.y110{bottom:1068.300000px;}
.y5f{bottom:1069.110000px;}
.ye1{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.yb8{bottom:1072.530000px;}
.y13c{bottom:1078.560000px;}
.y10f{bottom:1085.850000px;}
.y2f{bottom:1087.560000px;}
.y8f{bottom:1091.610000px;}
.y13b{bottom:1096.110000px;}
.yb7{bottom:1099.890000px;}
.y10e{bottom:1104.300000px;}
.y5e{bottom:1104.750000px;}
.y2e{bottom:1105.110000px;}
.y10d{bottom:1121.850000px;}
.y2d{bottom:1122.750000px;}
.yb6{bottom:1127.160000px;}
.y10c{bottom:1139.400000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hd{height:26.580000px;}
.hc{height:26.640000px;}
.he{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hf{height:40.539023px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.we{width:51.390000px;}
.w6{width:53.280000px;}
.wa{width:62.730000px;}
.wb{width:63.900000px;}
.wd{width:88.500000px;}
.w9{width:89.310000px;}
.w5{width:92.970000px;}
.w8{width:96.210000px;}
.w4{width:148.620000px;}
.wc{width:192.420000px;}
.w7{width:226.260000px;}
.w3{width:288.930000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x18{left:111.239987px;}
.x17{left:122.039987px;}
.x7{left:153.630000px;}
.xd{left:175.980000px;}
.x2{left:209.819987px;}
.x12{left:232.860000px;}
.x5{left:249.869987px;}
.x6{left:301.979987px;}
.x16{left:321.059987px;}
.xc{left:375.149987px;}
.xe{left:402.960000px;}
.x13{left:426.090000px;}
.x9{left:443.280000px;}
.xf{left:499.980000px;}
.x14{left:515.310000px;}
.x10{left:590.010000px;}
.xa{left:592.620000px;}
.x15{left:609.000000px;}
.x11{left:653.460000px;}
.xb{left:686.310000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-10.880000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.ls2a{letter-spacing:-0.395200pt;}
.ls22{letter-spacing:-0.216533pt;}
.ls14{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.165333pt;}
.ls29{letter-spacing:-0.142933pt;}
.ls23{letter-spacing:-0.140800pt;}
.lse{letter-spacing:-0.107733pt;}
.ls26{letter-spacing:-0.084267pt;}
.lsc{letter-spacing:-0.080000pt;}
.ls2b{letter-spacing:-0.075200pt;}
.ls1e{letter-spacing:-0.056533pt;}
.ls20{letter-spacing:-0.035840pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010027pt;}
.ls3{letter-spacing:0.013653pt;}
.ls12{letter-spacing:0.040320pt;}
.ls1c{letter-spacing:0.043520pt;}
.ls1f{letter-spacing:0.053760pt;}
.ls10{letter-spacing:0.057600pt;}
.lsf{letter-spacing:0.065920pt;}
.ls9{letter-spacing:0.068693pt;}
.ls7{letter-spacing:0.076693pt;}
.ls1{letter-spacing:0.083200pt;}
.lsa{letter-spacing:0.083520pt;}
.ls24{letter-spacing:0.092267pt;}
.ls1d{letter-spacing:0.093867pt;}
.ls6{letter-spacing:0.129280pt;}
.ls13{letter-spacing:0.154133pt;}
.ls21{letter-spacing:0.154240pt;}
.ls25{letter-spacing:0.158933pt;}
.ls8{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.198827pt;}
.ls4{letter-spacing:0.204373pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:2.002240pt;}
.ls16{letter-spacing:2.322240pt;}
.ls18{letter-spacing:3.366400pt;}
.ls15{letter-spacing:13.842240pt;}
.ls1b{letter-spacing:14.162240pt;}
.ls1a{letter-spacing:16.722240pt;}
.ls19{letter-spacing:18.086400pt;}
.ls28{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls27{letter-spacing:71.863680pt;}
.ws1{word-spacing:-16.403200pt;}
.ws5{word-spacing:-12.883200pt;}
.ws3b{word-spacing:-12.775467pt;}
.ws39{word-spacing:-11.910933pt;}
.ws3d{word-spacing:-11.850667pt;}
.ws40{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws46{word-spacing:-11.700267pt;}
.ws45{word-spacing:-11.613867pt;}
.ws3a{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.236800pt;}
.ws43{word-spacing:-7.762133pt;}
.ws42{word-spacing:-7.695467pt;}
.ws44{word-spacing:-7.518933pt;}
.ws41{word-spacing:-7.462400pt;}
.ws2a{word-spacing:-0.538667pt;}
.ws2e{word-spacing:-0.426667pt;}
.ws1e{word-spacing:-0.400000pt;}
.ws2d{word-spacing:-0.389333pt;}
.ws35{word-spacing:-0.362667pt;}
.ws2c{word-spacing:-0.325333pt;}
.ws26{word-spacing:-0.320000pt;}
.ws31{word-spacing:-0.282667pt;}
.ws24{word-spacing:-0.266667pt;}
.ws34{word-spacing:-0.229333pt;}
.ws33{word-spacing:-0.224000pt;}
.ws2f{word-spacing:-0.213333pt;}
.ws21{word-spacing:-0.160000pt;}
.ws3f{word-spacing:-0.156480pt;}
.ws29{word-spacing:-0.154667pt;}
.ws20{word-spacing:-0.149333pt;}
.ws27{word-spacing:-0.128000pt;}
.ws36{word-spacing:-0.106667pt;}
.ws38{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws19{word-spacing:0.021333pt;}
.ws1d{word-spacing:0.090667pt;}
.ws32{word-spacing:0.106667pt;}
.ws18{word-spacing:0.112000pt;}
.ws1f{word-spacing:0.138667pt;}
.ws22{word-spacing:0.160000pt;}
.ws3c{word-spacing:0.163520pt;}
.ws28{word-spacing:0.165333pt;}
.ws37{word-spacing:0.192000pt;}
.ws25{word-spacing:0.213333pt;}
.ws2b{word-spacing:0.245333pt;}
.ws30{word-spacing:0.250667pt;}
.ws1c{word-spacing:0.282667pt;}
.ws1b{word-spacing:0.352000pt;}
.ws1a{word-spacing:0.501333pt;}
.ws23{word-spacing:0.544000pt;}
.ws14{word-spacing:0.704000pt;}
.ws8{word-spacing:2.085333pt;}
.ws7{word-spacing:2.160000pt;}
.wsd{word-spacing:2.208000pt;}
.wsc{word-spacing:2.245333pt;}
.wsb{word-spacing:2.309333pt;}
.ws9{word-spacing:2.458667pt;}
.wsa{word-spacing:2.512000pt;}
.ws3e{word-spacing:3.043520pt;}
.ws4{word-spacing:3.826560pt;}
.wse{word-spacing:15.509333pt;}
.wsf{word-spacing:15.552000pt;}
.ws12{word-spacing:15.557333pt;}
.ws16{word-spacing:15.632000pt;}
.ws11{word-spacing:15.696000pt;}
.ws15{word-spacing:15.738667pt;}
.ws13{word-spacing:15.845333pt;}
.ws10{word-spacing:16.074667pt;}
.ws17{word-spacing:16.186667pt;}
._f{margin-left:-5.184960pt;}
._10{margin-left:-3.821653pt;}
._c{margin-left:-2.881068pt;}
._8{margin-left:-1.872000pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.029440pt;}
._2{width:2.458133pt;}
._3{width:3.954667pt;}
._7{width:5.557867pt;}
._e{width:6.466240pt;}
._b{width:7.427732pt;}
._a{width:8.443734pt;}
._d{width:9.832960pt;}
._9{width:10.779412pt;}
._6{width:12.663467pt;}
._5{width:14.214933pt;}
._4{width:15.230400pt;}
._13{width:17.795520pt;}
._11{width:18.757440pt;}
._12{width:19.719360pt;}
._16{width:21.589760pt;}
._17{width:22.980800pt;}
._14{width:33.688320pt;}
._15{width:35.195840pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:6.960000pt;}
.y95{bottom:6.986667pt;}
.y92{bottom:7.040000pt;}
.ya9{bottom:7.066667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y8e{bottom:100.026667pt;}
.ye0{bottom:107.946667pt;}
.y10b{bottom:111.626667pt;}
.y5d{bottom:113.066667pt;}
.y13a{bottom:114.826667pt;}
.y8d{bottom:115.706667pt;}
.y29{bottom:118.506667pt;}
.yb5{bottom:119.786667pt;}
.ydf{bottom:123.546667pt;}
.y10a{bottom:127.226667pt;}
.y139{bottom:130.506667pt;}
.y8c{bottom:131.306667pt;}
.y28{bottom:134.186667pt;}
.yde{bottom:139.226667pt;}
.y109{bottom:142.826667pt;}
.yb4{bottom:144.106667pt;}
.y5c{bottom:144.746667pt;}
.y8b{bottom:146.906667pt;}
.y27{bottom:149.786667pt;}
.y138{bottom:154.106667pt;}
.y5b{bottom:160.346667pt;}
.y8a{bottom:162.586667pt;}
.y26{bottom:165.386667pt;}
.yb3{bottom:168.426667pt;}
.y137{bottom:169.786667pt;}
.ydd{bottom:170.186667pt;}
.y108{bottom:175.226667pt;}
.y5a{bottom:176.026667pt;}
.y89{bottom:178.186667pt;}
.ydc{bottom:180.986667pt;}
.y25{bottom:181.066667pt;}
.y136{bottom:185.386667pt;}
.y59{bottom:191.626667pt;}
.yb2{bottom:192.746667pt;}
.y88{bottom:193.866667pt;}
.y24{bottom:196.666667pt;}
.ydb{bottom:205.306667pt;}
.y107{bottom:206.906667pt;}
.y58{bottom:207.226667pt;}
.y135{bottom:208.986667pt;}
.y87{bottom:209.466667pt;}
.y23{bottom:212.346667pt;}
.yb1{bottom:216.986667pt;}
.y106{bottom:222.506667pt;}
.y57{bottom:222.906667pt;}
.y134{bottom:224.666667pt;}
.y22{bottom:227.946667pt;}
.yda{bottom:229.626667pt;}
.y105{bottom:238.186667pt;}
.y56{bottom:238.506667pt;}
.y86{bottom:241.066667pt;}
.yb0{bottom:241.306667pt;}
.y133{bottom:248.266667pt;}
.y21{bottom:251.866667pt;}
.y104{bottom:253.786667pt;}
.yd9{bottom:253.946667pt;}
.y55{bottom:254.186667pt;}
.y85{bottom:256.746667pt;}
.y132{bottom:263.946667pt;}
.yaf{bottom:265.626667pt;}
.y103{bottom:269.386667pt;}
.y84{bottom:272.346667pt;}
.y54{bottom:278.026667pt;}
.yd8{bottom:278.186667pt;}
.y131{bottom:279.546667pt;}
.y102{bottom:285.066667pt;}
.y83{bottom:287.946667pt;}
.yae{bottom:289.946667pt;}
.y20{bottom:294.746667pt;}
.y101{bottom:300.666667pt;}
.yd7{bottom:302.506667pt;}
.y130{bottom:303.146667pt;}
.y82{bottom:303.626667pt;}
.y1f{bottom:310.666667pt;}
.yad{bottom:314.186667pt;}
.y100{bottom:316.266667pt;}
.y12f{bottom:318.826667pt;}
.y81{bottom:319.226667pt;}
.y53{bottom:320.986667pt;}
.yd6{bottom:326.826667pt;}
.yff{bottom:331.946667pt;}
.y52{bottom:336.586667pt;}
.yac{bottom:338.506667pt;}
.y12e{bottom:342.426667pt;}
.y1e{bottom:343.626667pt;}
.y80{bottom:350.906667pt;}
.yd5{bottom:351.066667pt;}
.y51{bottom:352.906667pt;}
.yfe{bottom:355.866667pt;}
.y12d{bottom:358.106667pt;}
.y1d{bottom:359.226667pt;}
.yab{bottom:362.826667pt;}
.y7f{bottom:366.506667pt;}
.y50{bottom:369.306667pt;}
.y1c{bottom:374.826667pt;}
.yd4{bottom:375.386667pt;}
.y12c{bottom:381.706667pt;}
.y7e{bottom:382.106667pt;}
.y4f{bottom:385.706667pt;}
.yaa{bottom:387.066667pt;}
.y1b{bottom:390.506667pt;}
.y12b{bottom:397.306667pt;}
.y7d{bottom:397.786667pt;}
.yfd{bottom:398.106667pt;}
.yd3{bottom:399.706667pt;}
.y1a{bottom:406.106667pt;}
.yfc{bottom:408.906667pt;}
.ya8{bottom:411.386667pt;}
.y7c{bottom:413.386667pt;}
.y4e{bottom:418.133333pt;}
.y12a{bottom:421.013333pt;}
.y19{bottom:421.813333pt;}
.yd2{bottom:424.053333pt;}
.y7b{bottom:429.093333pt;}
.yfb{bottom:433.253333pt;}
.y4d{bottom:433.733333pt;}
.ya7{bottom:435.733333pt;}
.y129{bottom:436.613333pt;}
.y18{bottom:437.413333pt;}
.yd1{bottom:448.293333pt;}
.y4c{bottom:449.333333pt;}
.y128{bottom:452.293333pt;}
.y17{bottom:453.013333pt;}
.yfa{bottom:457.573333pt;}
.ya6{bottom:460.053333pt;}
.y7a{bottom:460.693333pt;}
.y4b{bottom:465.013333pt;}
.y16{bottom:468.693333pt;}
.yd0{bottom:472.613333pt;}
.y127{bottom:475.893333pt;}
.y79{bottom:476.293333pt;}
.y4a{bottom:480.613333pt;}
.yf9{bottom:481.893333pt;}
.y15{bottom:484.293333pt;}
.y126{bottom:491.493333pt;}
.y78{bottom:491.973333pt;}
.y49{bottom:496.293333pt;}
.y14{bottom:499.973333pt;}
.yf8{bottom:506.133333pt;}
.y125{bottom:507.173333pt;}
.y77{bottom:507.573333pt;}
.ya5{bottom:508.613333pt;}
.y48{bottom:511.893333pt;}
.y13{bottom:515.573333pt;}
.ycf{bottom:515.893333pt;}
.y76{bottom:523.253333pt;}
.y47{bottom:527.493333pt;}
.yf7{bottom:530.453333pt;}
.y124{bottom:530.773333pt;}
.y12{bottom:531.173333pt;}
.yce{bottom:531.573333pt;}
.ya4{bottom:532.933333pt;}
.y75{bottom:538.853333pt;}
.y123{bottom:546.453333pt;}
.y11{bottom:546.853333pt;}
.y74{bottom:554.453333pt;}
.yf6{bottom:554.773333pt;}
.ya3{bottom:557.253333pt;}
.y46{bottom:559.173333pt;}
.y122{bottom:562.053333pt;}
.ycd{bottom:563.173333pt;}
.y73{bottom:570.133333pt;}
.y10{bottom:570.773333pt;}
.y45{bottom:574.773333pt;}
.ycc{bottom:578.773333pt;}
.ya2{bottom:581.493333pt;}
.y121{bottom:585.653333pt;}
.y72{bottom:585.733333pt;}
.y44{bottom:590.453333pt;}
.ycb{bottom:594.453333pt;}
.yf5{bottom:598.053333pt;}
.y120{bottom:601.333333pt;}
.y71{bottom:601.413333pt;}
.ya1{bottom:605.813333pt;}
.y43{bottom:606.053333pt;}
.yca{bottom:610.053333pt;}
.yf{bottom:613.653333pt;}
.y70{bottom:617.013333pt;}
.y42{bottom:621.653333pt;}
.y11f{bottom:624.933333pt;}
.yc9{bottom:625.733333pt;}
.yf4{bottom:629.653333pt;}
.ya0{bottom:630.133333pt;}
.y6f{bottom:632.613333pt;}
.y11e{bottom:640.613333pt;}
.yc8{bottom:641.333333pt;}
.yf3{bottom:645.333333pt;}
.ye{bottom:645.493333pt;}
.y41{bottom:653.333333pt;}
.y9f{bottom:654.373333pt;}
.y11d{bottom:656.213333pt;}
.yc7{bottom:656.933333pt;}
.yf2{bottom:660.933333pt;}
.y6e{bottom:664.293333pt;}
.y40{bottom:668.933333pt;}
.y11c{bottom:671.813333pt;}
.yc6{bottom:672.613333pt;}
.yd{bottom:677.493333pt;}
.y9e{bottom:678.693333pt;}
.y6d{bottom:679.893333pt;}
.y3f{bottom:684.613333pt;}
.yc5{bottom:688.213333pt;}
.yf1{bottom:692.613333pt;}
.y6c{bottom:695.573333pt;}
.y11b{bottom:695.733333pt;}
.y3e{bottom:700.213333pt;}
.y9d{bottom:703.013333pt;}
.yc4{bottom:703.893333pt;}
.yf0{bottom:708.213333pt;}
.y6b{bottom:711.173333pt;}
.yc{bottom:712.853333pt;}
.y3d{bottom:715.813333pt;}
.yc3{bottom:719.493333pt;}
.yef{bottom:723.813333pt;}
.y6a{bottom:726.773333pt;}
.y9c{bottom:727.333333pt;}
.yb{bottom:728.853333pt;}
.y3c{bottom:731.493333pt;}
.yc2{bottom:735.093333pt;}
.y11a{bottom:738.693333pt;}
.yee{bottom:739.493333pt;}
.y69{bottom:742.453333pt;}
.ya{bottom:744.853333pt;}
.y3b{bottom:747.093333pt;}
.yc1{bottom:750.773333pt;}
.y9b{bottom:751.573333pt;}
.yed{bottom:755.093333pt;}
.y68{bottom:758.053333pt;}
.y9{bottom:760.853333pt;}
.y119{bottom:762.613333pt;}
.y3a{bottom:762.693333pt;}
.yc0{bottom:766.373333pt;}
.yec{bottom:770.693333pt;}
.y67{bottom:773.733333pt;}
.y9a{bottom:775.893333pt;}
.y8{bottom:776.853333pt;}
.y39{bottom:778.373333pt;}
.yeb{bottom:786.373333pt;}
.y66{bottom:789.333333pt;}
.ybf{bottom:790.053333pt;}
.y7{bottom:792.853333pt;}
.y142{bottom:793.973333pt;}
.y118{bottom:795.733333pt;}
.y99{bottom:800.213333pt;}
.yea{bottom:801.973333pt;}
.y65{bottom:804.933333pt;}
.y141{bottom:809.653333pt;}
.y38{bottom:809.973333pt;}
.ye9{bottom:817.653333pt;}
.y64{bottom:820.613333pt;}
.ybe{bottom:821.013333pt;}
.y6{bottom:821.573333pt;}
.y98{bottom:824.533333pt;}
.y140{bottom:825.253333pt;}
.y37{bottom:825.653333pt;}
.ybd{bottom:831.813333pt;}
.ye8{bottom:833.253333pt;}
.y63{bottom:836.213333pt;}
.y117{bottom:838.693333pt;}
.y5{bottom:838.773333pt;}
.y36{bottom:841.253333pt;}
.y97{bottom:848.773333pt;}
.ye7{bottom:848.853333pt;}
.y116{bottom:854.293333pt;}
.ybc{bottom:856.133333pt;}
.y35{bottom:856.853333pt;}
.y62{bottom:859.813333pt;}
.ye6{bottom:864.533333pt;}
.y115{bottom:869.893333pt;}
.y34{bottom:872.533333pt;}
.y96{bottom:873.093333pt;}
.y4{bottom:875.893333pt;}
.ye5{bottom:880.133333pt;}
.ybb{bottom:880.453333pt;}
.y114{bottom:886.293333pt;}
.y33{bottom:888.133333pt;}
.y61{bottom:891.733333pt;}
.ye4{bottom:895.813333pt;}
.y94{bottom:897.413333pt;}
.y3{bottom:897.840000pt;}
.y113{bottom:902.000000pt;}
.y13f{bottom:903.840000pt;}
.yba{bottom:904.720000pt;}
.ye3{bottom:911.440000pt;}
.y112{bottom:917.600000pt;}
.y13e{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.y93{bottom:921.680000pt;}
.ye2{bottom:927.040000pt;}
.yb9{bottom:929.040000pt;}
.y111{bottom:934.000000pt;}
.y60{bottom:934.720000pt;}
.y13d{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y91{bottom:946.000000pt;}
.y110{bottom:949.600000pt;}
.y5f{bottom:950.320000pt;}
.ye1{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.yb8{bottom:953.360000pt;}
.y13c{bottom:958.720000pt;}
.y10f{bottom:965.200000pt;}
.y2f{bottom:966.720000pt;}
.y8f{bottom:970.320000pt;}
.y13b{bottom:974.320000pt;}
.yb7{bottom:977.680000pt;}
.y10e{bottom:981.600000pt;}
.y5e{bottom:982.000000pt;}
.y2e{bottom:982.320000pt;}
.y10d{bottom:997.200000pt;}
.y2d{bottom:998.000000pt;}
.yb6{bottom:1001.920000pt;}
.y10c{bottom:1012.800000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hd{height:23.626667pt;}
.hc{height:23.680000pt;}
.he{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hf{height:36.034687pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.we{width:45.680000pt;}
.w6{width:47.360000pt;}
.wa{width:55.760000pt;}
.wb{width:56.800000pt;}
.wd{width:78.666667pt;}
.w9{width:79.386667pt;}
.w5{width:82.640000pt;}
.w8{width:85.520000pt;}
.w4{width:132.106667pt;}
.wc{width:171.040000pt;}
.w7{width:201.120000pt;}
.w3{width:256.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x18{left:98.879988pt;}
.x17{left:108.479988pt;}
.x7{left:136.560000pt;}
.xd{left:156.426667pt;}
.x2{left:186.506655pt;}
.x12{left:206.986667pt;}
.x5{left:222.106655pt;}
.x6{left:268.426655pt;}
.x16{left:285.386655pt;}
.xc{left:333.466655pt;}
.xe{left:358.186667pt;}
.x13{left:378.746667pt;}
.x9{left:394.026667pt;}
.xf{left:444.426667pt;}
.x14{left:458.053333pt;}
.x10{left:524.453333pt;}
.xa{left:526.773333pt;}
.x15{left:541.333333pt;}
.x11{left:580.853333pt;}
.xb{left:610.053333pt;}
.x3{left:711.413322pt;}
}




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