
    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_e336d73291551b46f7275b12.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_30f92cb4e83893f559a50fb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_0c9c677f18bd7f368b70a8c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_dbaff7e027a592d0fe10b4c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1a4491d429a72edb93a01f96.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ec0f8df04cb38fe3be0789d4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_980b5458a80beffd3aa1a674.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.752441;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.846000px;}
.ls16{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.269400px;}
.ls15{letter-spacing:-0.181200px;}
.ls14{letter-spacing:-0.178800px;}
.ls12{letter-spacing:-0.090600px;}
.lsd{letter-spacing:-0.053280px;}
.ls13{letter-spacing:-0.045360px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.033120px;}
.ls5{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.lse{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.230400px;}
.ls3{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.lsf{letter-spacing:4.500000px;}
.ls1a{letter-spacing:16.506720px;}
.ls11{letter-spacing:33.786720px;}
.ls8{letter-spacing:46.026720px;}
.ls4{letter-spacing:740.460000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.166000px;}
.ws9{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.140000px;}
.ws12{word-spacing:-12.093120px;}
.ws2{word-spacing:-12.060000px;}
.wse{word-spacing:-12.014640px;}
.wsd{word-spacing:-11.969400px;}
.wsf{word-spacing:-11.881200px;}
.ws10{word-spacing:-11.878800px;}
.ws13{word-spacing:-11.790600px;}
.ws5{word-spacing:-10.440000px;}
.wsa{word-spacing:0.000000px;}
._c{margin-left:-6.372000px;}
._3{margin-left:-1.291200px;}
._0{width:1.048320px;}
._b{width:2.693040px;}
._7{width:3.703200px;}
._6{width:5.079600px;}
._5{width:6.394320px;}
._8{width:8.127360px;}
._a{width:9.727680px;}
._9{width:10.784160px;}
._d{width:12.415200px;}
._13{width:13.891680px;}
._1f{width:16.521120px;}
._17{width:18.406080px;}
._f{width:19.818000px;}
._e{width:21.060000px;}
._12{width:22.060080px;}
._15{width:23.339520px;}
._18{width:24.708240px;}
._10{width:26.354160px;}
._16{width:27.622320px;}
._11{width:28.711920px;}
._1d{width:30.146400px;}
._23{width:31.401360px;}
._14{width:33.313680px;}
._1c{width:34.601040px;}
._28{width:35.739120px;}
._21{width:36.793680px;}
._20{width:37.974960px;}
._26{width:39.524880px;}
._27{width:40.568880px;}
._2d{width:42.456960px;}
._19{width:44.369280px;}
._2b{width:46.507920px;}
._25{width:48.202800px;}
._24{width:49.600800px;}
._1e{width:52.605360px;}
._29{width:53.723520px;}
._2a{width:61.074720px;}
._4{width:63.032880px;}
._31{width:64.388880px;}
._2f{width:65.644320px;}
._1a{width:66.719520px;}
._1b{width:67.860000px;}
._2e{width:76.699440px;}
._2c{width:103.471920px;}
._22{width:201.060000px;}
._1{width:303.471120px;}
._2{width:371.948880px;}
._30{width:790.206480px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fs3{font-size:30.240000px;}
.fsa{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:131.760000px;}
.fs7{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:0.360000px;}
.y7{bottom:2.520000px;}
.ya5{bottom:2.550000px;}
.y37{bottom:2.880000px;}
.y39{bottom:3.060000px;}
.y21{bottom:3.240000px;}
.y10{bottom:3.960000px;}
.y22{bottom:4.680000px;}
.y3c{bottom:6.480000px;}
.y5{bottom:8.460000px;}
.y50{bottom:8.496000px;}
.y89{bottom:11.160000px;}
.ycd{bottom:13.860000px;}
.y6{bottom:16.380000px;}
.y51{bottom:16.416000px;}
.y36{bottom:18.360000px;}
.y108{bottom:18.540000px;}
.y2e{bottom:20.520000px;}
.y3b{bottom:22.140000px;}
.yf{bottom:22.320000px;}
.ye{bottom:33.120000px;}
.y35{bottom:34.020000px;}
.y52{bottom:35.640000px;}
.y2d{bottom:37.620000px;}
.y8{bottom:49.140000px;}
.y107{bottom:49.500000px;}
.y34{bottom:49.530000px;}
.yd{bottom:51.480000px;}
.y3a{bottom:53.100000px;}
.y2c{bottom:54.900000px;}
.y4f{bottom:59.940000px;}
.y106{bottom:64.980000px;}
.y33{bottom:65.010000px;}
.yc{bottom:65.700000px;}
.y2b{bottom:72.180000px;}
.y4{bottom:73.476000px;}
.y32{bottom:80.490000px;}
.y2a{bottom:89.460000px;}
.y31{bottom:95.970000px;}
.yb{bottom:103.680000px;}
.y11{bottom:103.860000px;}
.y29{bottom:106.740000px;}
.y30{bottom:111.630000px;}
.y9d{bottom:119.736000px;}
.y87{bottom:123.876000px;}
.y28{bottom:124.050000px;}
.yca{bottom:125.676000px;}
.y103{bottom:125.856000px;}
.y4e{bottom:134.856000px;}
.ya{bottom:136.110000px;}
.y9c{bottom:137.016000px;}
.y27{bottom:141.150000px;}
.y86{bottom:141.156000px;}
.yc9{bottom:142.956000px;}
.y102{bottom:143.136000px;}
.ybf{bottom:144.036000px;}
.y4d{bottom:152.130000px;}
.y9b{bottom:154.290000px;}
.y26{bottom:158.430000px;}
.yc8{bottom:160.050000px;}
.y101{bottom:160.410000px;}
.ybe{bottom:161.310000px;}
.y4c{bottom:169.230000px;}
.y9a{bottom:171.570000px;}
.y25{bottom:175.710000px;}
.yc7{bottom:177.330000px;}
.y100{bottom:177.690000px;}
.ybd{bottom:178.590000px;}
.y4b{bottom:186.510000px;}
.y99{bottom:188.850000px;}
.y24{bottom:192.990000px;}
.yff{bottom:194.970000px;}
.ybc{bottom:195.690000px;}
.yc6{bottom:196.770000px;}
.y4a{bottom:203.790000px;}
.y98{bottom:205.950000px;}
.y85{bottom:210.090000px;}
.yfe{bottom:212.070000px;}
.ybb{bottom:212.970000px;}
.yc5{bottom:214.050000px;}
.y49{bottom:221.070000px;}
.y97{bottom:223.230000px;}
.y84{bottom:227.370000px;}
.yfd{bottom:229.350000px;}
.yba{bottom:230.250000px;}
.yc4{bottom:231.330000px;}
.y48{bottom:238.350000px;}
.y96{bottom:240.510000px;}
.y83{bottom:244.650000px;}
.yfc{bottom:246.630000px;}
.yb9{bottom:247.530000px;}
.yc3{bottom:248.610000px;}
.y47{bottom:255.630000px;}
.y95{bottom:257.790000px;}
.y82{bottom:261.930000px;}
.yfb{bottom:263.910000px;}
.yb8{bottom:264.810000px;}
.yc2{bottom:265.890000px;}
.y46{bottom:272.730000px;}
.y94{bottom:275.070000px;}
.y81{bottom:279.210000px;}
.yfa{bottom:281.190000px;}
.yb7{bottom:282.090000px;}
.yc1{bottom:285.150000px;}
.y45{bottom:290.010000px;}
.y93{bottom:292.350000px;}
.y80{bottom:296.490000px;}
.yf9{bottom:298.290000px;}
.yb6{bottom:299.190000px;}
.yc0{bottom:302.430000px;}
.y44{bottom:307.290000px;}
.y92{bottom:309.450000px;}
.y7f{bottom:313.590000px;}
.yf8{bottom:315.570000px;}
.yb5{bottom:316.470000px;}
.ycf{bottom:317.235000px;}
.y43{bottom:324.615000px;}
.y91{bottom:326.775000px;}
.y7e{bottom:330.915000px;}
.yce{bottom:331.815000px;}
.yf7{bottom:332.895000px;}
.yb4{bottom:333.795000px;}
.y42{bottom:341.895000px;}
.y90{bottom:344.055000px;}
.ycc{bottom:346.395000px;}
.y7d{bottom:348.195000px;}
.yf6{bottom:350.175000px;}
.yb3{bottom:351.075000px;}
.y41{bottom:358.995000px;}
.ycb{bottom:360.975000px;}
.y8f{bottom:361.335000px;}
.y9f{bottom:363.135000px;}
.y7c{bottom:365.475000px;}
.yf5{bottom:367.455000px;}
.yb2{bottom:368.355000px;}
.y40{bottom:376.275000px;}
.y8e{bottom:378.615000px;}
.y7b{bottom:382.755000px;}
.yf4{bottom:384.735000px;}
.yb1{bottom:385.455000px;}
.y3f{bottom:394.815000px;}
.y8d{bottom:395.895000px;}
.y7a{bottom:399.855000px;}
.yf3{bottom:401.835000px;}
.yb0{bottom:402.735000px;}
.y8c{bottom:412.995000px;}
.y3e{bottom:413.715000px;}
.y9e{bottom:414.255000px;}
.y79{bottom:417.135000px;}
.yf2{bottom:419.115000px;}
.yaf{bottom:420.015000px;}
.y8b{bottom:430.275000px;}
.y3d{bottom:430.995000px;}
.y78{bottom:434.415000px;}
.yae{bottom:436.575000px;}
.yf1{bottom:438.555000px;}
.y23{bottom:445.755000px;}
.y8a{bottom:447.555000px;}
.yad{bottom:448.635000px;}
.y77{bottom:451.695000px;}
.yf0{bottom:455.835000px;}
.yac{bottom:463.215000px;}
.y88{bottom:468.255000px;}
.y76{bottom:468.975000px;}
.yef{bottom:473.115000px;}
.yab{bottom:477.615000px;}
.y75{bottom:486.255000px;}
.yee{bottom:490.395000px;}
.yaa{bottom:492.195000px;}
.y74{bottom:503.355000px;}
.yed{bottom:507.675000px;}
.ya9{bottom:509.295000px;}
.y38{bottom:512.175000px;}
.y73{bottom:520.635000px;}
.ya8{bottom:523.155000px;}
.yec{bottom:526.935000px;}
.y2f{bottom:528.555000px;}
.ya7{bottom:537.555000px;}
.y72{bottom:537.915000px;}
.yeb{bottom:544.215000px;}
.ya6{bottom:552.315000px;}
.y71{bottom:555.195000px;}
.yea{bottom:561.495000px;}
.ya4{bottom:566.895000px;}
.y70{bottom:572.505000px;}
.ye9{bottom:578.805000px;}
.ya3{bottom:581.505000px;}
.y6f{bottom:589.785000px;}
.ya2{bottom:596.085000px;}
.y6e{bottom:606.885000px;}
.ya1{bottom:613.185000px;}
.ye8{bottom:613.365000px;}
.y6d{bottom:624.165000px;}
.ya0{bottom:626.865000px;}
.ye7{bottom:630.465000px;}
.y6c{bottom:641.445000px;}
.ye6{bottom:647.745000px;}
.y20{bottom:653.505000px;}
.y6b{bottom:658.725000px;}
.ye5{bottom:665.025000px;}
.y6a{bottom:676.005000px;}
.ye4{bottom:682.305000px;}
.y1f{bottom:684.285000px;}
.y1d{bottom:687.165000px;}
.y1c{bottom:692.925000px;}
.y69{bottom:693.285000px;}
.ye3{bottom:699.585000px;}
.y1b{bottom:710.205000px;}
.y68{bottom:710.385000px;}
.ye2{bottom:716.865000px;}
.y67{bottom:727.665000px;}
.ye1{bottom:733.965000px;}
.y1a{bottom:734.145000px;}
.y66{bottom:744.945000px;}
.y105{bottom:745.845000px;}
.ye0{bottom:753.405000px;}
.y65{bottom:762.225000px;}
.y19{bottom:762.945000px;}
.ydf{bottom:770.685000px;}
.y64{bottom:779.505000px;}
.y18{bottom:782.025000px;}
.yde{bottom:787.965000px;}
.y63{bottom:796.605000px;}
.ydd{bottom:805.245000px;}
.y17{bottom:805.605000px;}
.y62{bottom:813.885000px;}
.ydc{bottom:822.570000px;}
.y104{bottom:824.370000px;}
.y61{bottom:831.210000px;}
.y16{bottom:836.790000px;}
.ydb{bottom:842.010000px;}
.y60{bottom:848.490000px;}
.yda{bottom:859.110000px;}
.y5f{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.yd9{bottom:876.390000px;}
.y5e{bottom:883.050000px;}
.yd8{bottom:893.670000px;}
.y14{bottom:898.890000px;}
.y5d{bottom:900.150000px;}
.yd7{bottom:913.110000px;}
.y5c{bottom:917.430000px;}
.y13{bottom:927.330000px;}
.yd6{bottom:930.390000px;}
.y5b{bottom:934.710000px;}
.yd5{bottom:947.670000px;}
.y5a{bottom:951.990000px;}
.y12{bottom:953.610000px;}
.y9{bottom:955.950000px;}
.yd4{bottom:964.770000px;}
.y59{bottom:969.270000px;}
.yd3{bottom:982.050000px;}
.y58{bottom:986.550000px;}
.yd2{bottom:1001.490000px;}
.y57{bottom:1003.650000px;}
.yd1{bottom:1018.770000px;}
.y56{bottom:1020.930000px;}
.yd0{bottom:1036.050000px;}
.y55{bottom:1038.210000px;}
.y54{bottom:1055.490000px;}
.y53{bottom:1072.800000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.600000px;}
.y1{bottom:1137.600000px;}
.h13{height:1.800000px;}
.h14{height:4.021875px;}
.hf{height:4.064063px;}
.h15{height:8.636133px;}
.h26{height:13.680000px;}
.h24{height:13.860000px;}
.h25{height:13.896000px;}
.h28{height:15.480000px;}
.h1b{height:15.660000px;}
.h16{height:17.280000px;}
.hc{height:21.114844px;}
.ha{height:21.336328px;}
.h22{height:25.020000px;}
.h21{height:25.200000px;}
.h4{height:27.540000px;}
.h1f{height:27.576000px;}
.h6{height:33.683203px;}
.h23{height:34.036523px;}
.h1d{height:37.705078px;}
.h17{height:38.100586px;}
.h7{height:39.336328px;}
.h20{height:39.480328px;}
.h1a{height:41.343750px;}
.h5{height:41.726953px;}
.h3{height:42.164648px;}
.h1e{height:43.506914px;}
.h27{height:44.236406px;}
.h2{height:45.024258px;}
.h12{height:46.251562px;}
.h1{height:50.800781px;}
.h11{height:53.224453px;}
.h1c{height:65.700000px;}
.h8{height:65.884219px;}
.hd{height:72.147305px;}
.h10{height:76.201172px;}
.h29{height:77.616000px;}
.hb{height:92.965430px;}
.he{height:118.365820px;}
.h19{height:124.236000px;}
.h9{height:143.136000px;}
.h18{height:207.030000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w15{width:36.360000px;}
.w14{width:36.576000px;}
.w10{width:36.756000px;}
.wd{width:41.580000px;}
.wf{width:42.480000px;}
.w11{width:45.540000px;}
.w13{width:50.940000px;}
.w12{width:58.860000px;}
.w1d{width:63.036000px;}
.we{width:65.340000px;}
.wc{width:71.496000px;}
.w1c{width:73.800000px;}
.w1b{width:81.576000px;}
.w17{width:94.680000px;}
.w16{width:126.756000px;}
.w19{width:137.376000px;}
.w18{width:137.736000px;}
.w5{width:165.960000px;}
.w1a{width:172.080000px;}
.w8{width:228.495000px;}
.wb{width:228.630000px;}
.wa{width:230.250000px;}
.w1e{width:371.415000px;}
.w7{width:592.485000px;}
.w4{width:648.150000px;}
.w9{width:745.350000px;}
.w3{width:745.530000px;}
.w6{width:901.440000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x14{left:3.240000px;}
.x4{left:4.320000px;}
.x1d{left:6.839986px;}
.x15{left:8.100000px;}
.x28{left:10.080000px;}
.x45{left:11.565000px;}
.x2b{left:12.780000px;}
.x40{left:14.760000px;}
.x34{left:15.840000px;}
.x4c{left:17.280000px;}
.x21{left:19.080000px;}
.x3a{left:21.060000px;}
.x24{left:22.140000px;}
.x49{left:25.200000px;}
.x35{left:28.440000px;}
.x33{left:30.060000px;}
.x47{left:32.220000px;}
.x3e{left:33.660000px;}
.x38{left:35.460000px;}
.x3d{left:39.240000px;}
.x4b{left:40.905000px;}
.x19{left:43.605000px;}
.x6{left:45.540000px;}
.x16{left:46.800000px;}
.xe{left:49.859986px;}
.x4a{left:50.940000px;}
.x1e{left:52.200000px;}
.x1{left:53.999986px;}
.x41{left:55.290000px;}
.x4d{left:57.060000px;}
.x1a{left:59.759986px;}
.x1b{left:60.839986px;}
.x18{left:65.025000px;}
.x3f{left:68.790000px;}
.xa{left:70.416000px;}
.x23{left:72.360000px;}
.x1f{left:87.300000px;}
.x3{left:99.396000px;}
.x4e{left:104.040000px;}
.x9{left:105.510000px;}
.x2{left:108.035986px;}
.x5{left:134.496000px;}
.x12{left:165.629986px;}
.x8{left:200.190000px;}
.x37{left:220.710000px;}
.x27{left:222.870000px;}
.xb{left:231.690000px;}
.x36{left:272.549986px;}
.x29{left:295.275000px;}
.x25{left:306.074986px;}
.x7{left:324.075000px;}
.xf{left:329.294986px;}
.x2a{left:337.575000px;}
.x39{left:348.375000px;}
.x11{left:379.154986px;}
.x2c{left:403.635000px;}
.x3b{left:443.775000px;}
.x2d{left:446.835000px;}
.x10{left:464.294986px;}
.x13{left:466.274986px;}
.x26{left:469.334986px;}
.x2e{left:484.305000px;}
.x1c{left:486.104986px;}
.x43{left:492.765000px;}
.x42{left:513.104986px;}
.x2f{left:530.565000px;}
.x20{left:566.745000px;}
.x22{left:569.625000px;}
.x3c{left:582.225000px;}
.x30{left:590.145000px;}
.x17{left:640.005000px;}
.x31{left:641.805000px;}
.x44{left:665.565000px;}
.x32{left:679.110000px;}
.xc{left:693.690000px;}
.x46{left:747.870000px;}
.x48{left:822.390000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.752000pt;}
.ls16{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.239467pt;}
.ls15{letter-spacing:-0.161067pt;}
.ls14{letter-spacing:-0.158933pt;}
.ls12{letter-spacing:-0.080533pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:-0.040320pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.029440pt;}
.ls5{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.204800pt;}
.ls3{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsf{letter-spacing:4.000000pt;}
.ls1a{letter-spacing:14.672640pt;}
.ls11{letter-spacing:30.032640pt;}
.ls8{letter-spacing:40.912640pt;}
.ls4{letter-spacing:658.186667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws11{word-spacing:-12.592000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws12{word-spacing:-10.749440pt;}
.ws2{word-spacing:-10.720000pt;}
.wse{word-spacing:-10.679680pt;}
.wsd{word-spacing:-10.639467pt;}
.wsf{word-spacing:-10.561067pt;}
.ws10{word-spacing:-10.558933pt;}
.ws13{word-spacing:-10.480533pt;}
.ws5{word-spacing:-9.280000pt;}
.wsa{word-spacing:0.000000pt;}
._c{margin-left:-5.664000pt;}
._3{margin-left:-1.147733pt;}
._0{width:0.931840pt;}
._b{width:2.393813pt;}
._7{width:3.291733pt;}
._6{width:4.515200pt;}
._5{width:5.683840pt;}
._8{width:7.224320pt;}
._a{width:8.646827pt;}
._9{width:9.585920pt;}
._d{width:11.035733pt;}
._13{width:12.348160pt;}
._1f{width:14.685440pt;}
._17{width:16.360960pt;}
._f{width:17.616000pt;}
._e{width:18.720000pt;}
._12{width:19.608960pt;}
._15{width:20.746240pt;}
._18{width:21.962880pt;}
._10{width:23.425920pt;}
._16{width:24.553173pt;}
._11{width:25.521707pt;}
._1d{width:26.796800pt;}
._23{width:27.912320pt;}
._14{width:29.612160pt;}
._1c{width:30.756480pt;}
._28{width:31.768107pt;}
._21{width:32.705493pt;}
._20{width:33.755520pt;}
._26{width:35.133227pt;}
._27{width:36.061227pt;}
._2d{width:37.739520pt;}
._19{width:39.439360pt;}
._2b{width:41.340373pt;}
._25{width:42.846933pt;}
._24{width:44.089600pt;}
._1e{width:46.760320pt;}
._29{width:47.754240pt;}
._2a{width:54.288640pt;}
._4{width:56.029227pt;}
._31{width:57.234560pt;}
._2f{width:58.350507pt;}
._1a{width:59.306240pt;}
._1b{width:60.320000pt;}
._2e{width:68.177280pt;}
._2c{width:91.975040pt;}
._22{width:178.720000pt;}
._1{width:269.752107pt;}
._2{width:330.621227pt;}
._30{width:702.405760pt;}
.fs8{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.120000pt;}
.fs7{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:0.320000pt;}
.y7{bottom:2.240000pt;}
.ya5{bottom:2.266667pt;}
.y37{bottom:2.560000pt;}
.y39{bottom:2.720000pt;}
.y21{bottom:2.880000pt;}
.y10{bottom:3.520000pt;}
.y22{bottom:4.160000pt;}
.y3c{bottom:5.760000pt;}
.y5{bottom:7.520000pt;}
.y50{bottom:7.552000pt;}
.y89{bottom:9.920000pt;}
.ycd{bottom:12.320000pt;}
.y6{bottom:14.560000pt;}
.y51{bottom:14.592000pt;}
.y36{bottom:16.320000pt;}
.y108{bottom:16.480000pt;}
.y2e{bottom:18.240000pt;}
.y3b{bottom:19.680000pt;}
.yf{bottom:19.840000pt;}
.ye{bottom:29.440000pt;}
.y35{bottom:30.240000pt;}
.y52{bottom:31.680000pt;}
.y2d{bottom:33.440000pt;}
.y8{bottom:43.680000pt;}
.y107{bottom:44.000000pt;}
.y34{bottom:44.026667pt;}
.yd{bottom:45.760000pt;}
.y3a{bottom:47.200000pt;}
.y2c{bottom:48.800000pt;}
.y4f{bottom:53.280000pt;}
.y106{bottom:57.760000pt;}
.y33{bottom:57.786667pt;}
.yc{bottom:58.400000pt;}
.y2b{bottom:64.160000pt;}
.y4{bottom:65.312000pt;}
.y32{bottom:71.546667pt;}
.y2a{bottom:79.520000pt;}
.y31{bottom:85.306667pt;}
.yb{bottom:92.160000pt;}
.y11{bottom:92.320000pt;}
.y29{bottom:94.880000pt;}
.y30{bottom:99.226667pt;}
.y9d{bottom:106.432000pt;}
.y87{bottom:110.112000pt;}
.y28{bottom:110.266667pt;}
.yca{bottom:111.712000pt;}
.y103{bottom:111.872000pt;}
.y4e{bottom:119.872000pt;}
.ya{bottom:120.986667pt;}
.y9c{bottom:121.792000pt;}
.y27{bottom:125.466667pt;}
.y86{bottom:125.472000pt;}
.yc9{bottom:127.072000pt;}
.y102{bottom:127.232000pt;}
.ybf{bottom:128.032000pt;}
.y4d{bottom:135.226667pt;}
.y9b{bottom:137.146667pt;}
.y26{bottom:140.826667pt;}
.yc8{bottom:142.266667pt;}
.y101{bottom:142.586667pt;}
.ybe{bottom:143.386667pt;}
.y4c{bottom:150.426667pt;}
.y9a{bottom:152.506667pt;}
.y25{bottom:156.186667pt;}
.yc7{bottom:157.626667pt;}
.y100{bottom:157.946667pt;}
.ybd{bottom:158.746667pt;}
.y4b{bottom:165.786667pt;}
.y99{bottom:167.866667pt;}
.y24{bottom:171.546667pt;}
.yff{bottom:173.306667pt;}
.ybc{bottom:173.946667pt;}
.yc6{bottom:174.906667pt;}
.y4a{bottom:181.146667pt;}
.y98{bottom:183.066667pt;}
.y85{bottom:186.746667pt;}
.yfe{bottom:188.506667pt;}
.ybb{bottom:189.306667pt;}
.yc5{bottom:190.266667pt;}
.y49{bottom:196.506667pt;}
.y97{bottom:198.426667pt;}
.y84{bottom:202.106667pt;}
.yfd{bottom:203.866667pt;}
.yba{bottom:204.666667pt;}
.yc4{bottom:205.626667pt;}
.y48{bottom:211.866667pt;}
.y96{bottom:213.786667pt;}
.y83{bottom:217.466667pt;}
.yfc{bottom:219.226667pt;}
.yb9{bottom:220.026667pt;}
.yc3{bottom:220.986667pt;}
.y47{bottom:227.226667pt;}
.y95{bottom:229.146667pt;}
.y82{bottom:232.826667pt;}
.yfb{bottom:234.586667pt;}
.yb8{bottom:235.386667pt;}
.yc2{bottom:236.346667pt;}
.y46{bottom:242.426667pt;}
.y94{bottom:244.506667pt;}
.y81{bottom:248.186667pt;}
.yfa{bottom:249.946667pt;}
.yb7{bottom:250.746667pt;}
.yc1{bottom:253.466667pt;}
.y45{bottom:257.786667pt;}
.y93{bottom:259.866667pt;}
.y80{bottom:263.546667pt;}
.yf9{bottom:265.146667pt;}
.yb6{bottom:265.946667pt;}
.yc0{bottom:268.826667pt;}
.y44{bottom:273.146667pt;}
.y92{bottom:275.066667pt;}
.y7f{bottom:278.746667pt;}
.yf8{bottom:280.506667pt;}
.yb5{bottom:281.306667pt;}
.ycf{bottom:281.986667pt;}
.y43{bottom:288.546667pt;}
.y91{bottom:290.466667pt;}
.y7e{bottom:294.146667pt;}
.yce{bottom:294.946667pt;}
.yf7{bottom:295.906667pt;}
.yb4{bottom:296.706667pt;}
.y42{bottom:303.906667pt;}
.y90{bottom:305.826667pt;}
.ycc{bottom:307.906667pt;}
.y7d{bottom:309.506667pt;}
.yf6{bottom:311.266667pt;}
.yb3{bottom:312.066667pt;}
.y41{bottom:319.106667pt;}
.ycb{bottom:320.866667pt;}
.y8f{bottom:321.186667pt;}
.y9f{bottom:322.786667pt;}
.y7c{bottom:324.866667pt;}
.yf5{bottom:326.626667pt;}
.yb2{bottom:327.426667pt;}
.y40{bottom:334.466667pt;}
.y8e{bottom:336.546667pt;}
.y7b{bottom:340.226667pt;}
.yf4{bottom:341.986667pt;}
.yb1{bottom:342.626667pt;}
.y3f{bottom:350.946667pt;}
.y8d{bottom:351.906667pt;}
.y7a{bottom:355.426667pt;}
.yf3{bottom:357.186667pt;}
.yb0{bottom:357.986667pt;}
.y8c{bottom:367.106667pt;}
.y3e{bottom:367.746667pt;}
.y9e{bottom:368.226667pt;}
.y79{bottom:370.786667pt;}
.yf2{bottom:372.546667pt;}
.yaf{bottom:373.346667pt;}
.y8b{bottom:382.466667pt;}
.y3d{bottom:383.106667pt;}
.y78{bottom:386.146667pt;}
.yae{bottom:388.066667pt;}
.yf1{bottom:389.826667pt;}
.y23{bottom:396.226667pt;}
.y8a{bottom:397.826667pt;}
.yad{bottom:398.786667pt;}
.y77{bottom:401.506667pt;}
.yf0{bottom:405.186667pt;}
.yac{bottom:411.746667pt;}
.y88{bottom:416.226667pt;}
.y76{bottom:416.866667pt;}
.yef{bottom:420.546667pt;}
.yab{bottom:424.546667pt;}
.y75{bottom:432.226667pt;}
.yee{bottom:435.906667pt;}
.yaa{bottom:437.506667pt;}
.y74{bottom:447.426667pt;}
.yed{bottom:451.266667pt;}
.ya9{bottom:452.706667pt;}
.y38{bottom:455.266667pt;}
.y73{bottom:462.786667pt;}
.ya8{bottom:465.026667pt;}
.yec{bottom:468.386667pt;}
.y2f{bottom:469.826667pt;}
.ya7{bottom:477.826667pt;}
.y72{bottom:478.146667pt;}
.yeb{bottom:483.746667pt;}
.ya6{bottom:490.946667pt;}
.y71{bottom:493.506667pt;}
.yea{bottom:499.106667pt;}
.ya4{bottom:503.906667pt;}
.y70{bottom:508.893333pt;}
.ye9{bottom:514.493333pt;}
.ya3{bottom:516.893333pt;}
.y6f{bottom:524.253333pt;}
.ya2{bottom:529.853333pt;}
.y6e{bottom:539.453333pt;}
.ya1{bottom:545.053333pt;}
.ye8{bottom:545.213333pt;}
.y6d{bottom:554.813333pt;}
.ya0{bottom:557.213333pt;}
.ye7{bottom:560.413333pt;}
.y6c{bottom:570.173333pt;}
.ye6{bottom:575.773333pt;}
.y20{bottom:580.893333pt;}
.y6b{bottom:585.533333pt;}
.ye5{bottom:591.133333pt;}
.y6a{bottom:600.893333pt;}
.ye4{bottom:606.493333pt;}
.y1f{bottom:608.253333pt;}
.y1d{bottom:610.813333pt;}
.y1c{bottom:615.933333pt;}
.y69{bottom:616.253333pt;}
.ye3{bottom:621.853333pt;}
.y1b{bottom:631.293333pt;}
.y68{bottom:631.453333pt;}
.ye2{bottom:637.213333pt;}
.y67{bottom:646.813333pt;}
.ye1{bottom:652.413333pt;}
.y1a{bottom:652.573333pt;}
.y66{bottom:662.173333pt;}
.y105{bottom:662.973333pt;}
.ye0{bottom:669.693333pt;}
.y65{bottom:677.533333pt;}
.y19{bottom:678.173333pt;}
.ydf{bottom:685.053333pt;}
.y64{bottom:692.893333pt;}
.y18{bottom:695.133333pt;}
.yde{bottom:700.413333pt;}
.y63{bottom:708.093333pt;}
.ydd{bottom:715.773333pt;}
.y17{bottom:716.093333pt;}
.y62{bottom:723.453333pt;}
.ydc{bottom:731.173333pt;}
.y104{bottom:732.773333pt;}
.y61{bottom:738.853333pt;}
.y16{bottom:743.813333pt;}
.ydb{bottom:748.453333pt;}
.y60{bottom:754.213333pt;}
.yda{bottom:763.653333pt;}
.y5f{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.yd9{bottom:779.013333pt;}
.y5e{bottom:784.933333pt;}
.yd8{bottom:794.373333pt;}
.y14{bottom:799.013333pt;}
.y5d{bottom:800.133333pt;}
.yd7{bottom:811.653333pt;}
.y5c{bottom:815.493333pt;}
.y13{bottom:824.293333pt;}
.yd6{bottom:827.013333pt;}
.y5b{bottom:830.853333pt;}
.yd5{bottom:842.373333pt;}
.y5a{bottom:846.213333pt;}
.y12{bottom:847.653333pt;}
.y9{bottom:849.733333pt;}
.yd4{bottom:857.573333pt;}
.y59{bottom:861.573333pt;}
.yd3{bottom:872.933333pt;}
.y58{bottom:876.933333pt;}
.yd2{bottom:890.213333pt;}
.y57{bottom:892.133333pt;}
.yd1{bottom:905.573333pt;}
.y56{bottom:907.493333pt;}
.yd0{bottom:920.933333pt;}
.y55{bottom:922.853333pt;}
.y54{bottom:938.213333pt;}
.y53{bottom:953.600000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.200000pt;}
.y1{bottom:1011.200000pt;}
.h13{height:1.600000pt;}
.h14{height:3.575000pt;}
.hf{height:3.612500pt;}
.h15{height:7.676562pt;}
.h26{height:12.160000pt;}
.h24{height:12.320000pt;}
.h25{height:12.352000pt;}
.h28{height:13.760000pt;}
.h1b{height:13.920000pt;}
.h16{height:15.360000pt;}
.hc{height:18.768750pt;}
.ha{height:18.965625pt;}
.h22{height:22.240000pt;}
.h21{height:22.400000pt;}
.h4{height:24.480000pt;}
.h1f{height:24.512000pt;}
.h6{height:29.940625pt;}
.h23{height:30.254687pt;}
.h1d{height:33.515625pt;}
.h17{height:33.867188pt;}
.h7{height:34.965625pt;}
.h20{height:35.093625pt;}
.h1a{height:36.750000pt;}
.h5{height:37.090625pt;}
.h3{height:37.479688pt;}
.h1e{height:38.672812pt;}
.h27{height:39.321250pt;}
.h2{height:40.021563pt;}
.h12{height:41.112500pt;}
.h1{height:45.156250pt;}
.h11{height:47.310625pt;}
.h1c{height:58.400000pt;}
.h8{height:58.563750pt;}
.hd{height:64.130938pt;}
.h10{height:67.734375pt;}
.h29{height:68.992000pt;}
.hb{height:82.635937pt;}
.he{height:105.214062pt;}
.h19{height:110.432000pt;}
.h9{height:127.232000pt;}
.h18{height:184.026667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w15{width:32.320000pt;}
.w14{width:32.512000pt;}
.w10{width:32.672000pt;}
.wd{width:36.960000pt;}
.wf{width:37.760000pt;}
.w11{width:40.480000pt;}
.w13{width:45.280000pt;}
.w12{width:52.320000pt;}
.w1d{width:56.032000pt;}
.we{width:58.080000pt;}
.wc{width:63.552000pt;}
.w1c{width:65.600000pt;}
.w1b{width:72.512000pt;}
.w17{width:84.160000pt;}
.w16{width:112.672000pt;}
.w19{width:122.112000pt;}
.w18{width:122.432000pt;}
.w5{width:147.520000pt;}
.w1a{width:152.960000pt;}
.w8{width:203.106667pt;}
.wb{width:203.226667pt;}
.wa{width:204.666667pt;}
.w1e{width:330.146667pt;}
.w7{width:526.653333pt;}
.w4{width:576.133333pt;}
.w9{width:662.533333pt;}
.w3{width:662.693333pt;}
.w6{width:801.280000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x14{left:2.880000pt;}
.x4{left:3.840000pt;}
.x1d{left:6.079988pt;}
.x15{left:7.200000pt;}
.x28{left:8.960000pt;}
.x45{left:10.280000pt;}
.x2b{left:11.360000pt;}
.x40{left:13.120000pt;}
.x34{left:14.080000pt;}
.x4c{left:15.360000pt;}
.x21{left:16.960000pt;}
.x3a{left:18.720000pt;}
.x24{left:19.680000pt;}
.x49{left:22.400000pt;}
.x35{left:25.280000pt;}
.x33{left:26.720000pt;}
.x47{left:28.640000pt;}
.x3e{left:29.920000pt;}
.x38{left:31.520000pt;}
.x3d{left:34.880000pt;}
.x4b{left:36.360000pt;}
.x19{left:38.760000pt;}
.x6{left:40.480000pt;}
.x16{left:41.600000pt;}
.xe{left:44.319988pt;}
.x4a{left:45.280000pt;}
.x1e{left:46.400000pt;}
.x1{left:47.999988pt;}
.x41{left:49.146667pt;}
.x4d{left:50.720000pt;}
.x1a{left:53.119988pt;}
.x1b{left:54.079988pt;}
.x18{left:57.800000pt;}
.x3f{left:61.146667pt;}
.xa{left:62.592000pt;}
.x23{left:64.320000pt;}
.x1f{left:77.600000pt;}
.x3{left:88.352000pt;}
.x4e{left:92.480000pt;}
.x9{left:93.786667pt;}
.x2{left:96.031988pt;}
.x5{left:119.552000pt;}
.x12{left:147.226655pt;}
.x8{left:177.946667pt;}
.x37{left:196.186667pt;}
.x27{left:198.106667pt;}
.xb{left:205.946667pt;}
.x36{left:242.266655pt;}
.x29{left:262.466667pt;}
.x25{left:272.066655pt;}
.x7{left:288.066667pt;}
.xf{left:292.706655pt;}
.x2a{left:300.066667pt;}
.x39{left:309.666667pt;}
.x11{left:337.026655pt;}
.x2c{left:358.786667pt;}
.x3b{left:394.466667pt;}
.x2d{left:397.186667pt;}
.x10{left:412.706655pt;}
.x13{left:414.466655pt;}
.x26{left:417.186655pt;}
.x2e{left:430.493333pt;}
.x1c{left:432.093321pt;}
.x43{left:438.013333pt;}
.x42{left:456.093321pt;}
.x2f{left:471.613333pt;}
.x20{left:503.773333pt;}
.x22{left:506.333333pt;}
.x3c{left:517.533333pt;}
.x30{left:524.573333pt;}
.x17{left:568.893333pt;}
.x31{left:570.493333pt;}
.x44{left:591.613333pt;}
.x32{left:603.653333pt;}
.xc{left:616.613333pt;}
.x46{left:664.773333pt;}
.x48{left:731.013333pt;}
}




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