
    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_fe436268826f37d2a2c405f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.994141;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_dc9467ff53400bd27cb00b16.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.187012;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_2248711a917b0f0879f09149.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.757812;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_17f08e4478ef0f69a07c87cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_6d77a24873a60f68cea3c7c6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cafcdb27ef155c6f81f82063.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_596144bd436c14e662500be0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.773926;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_3f293260b87707010592d006.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_86009a2f3080bfb5ea019d78.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.187012;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_5eeedc041bf1a4ace67ecdd8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.010742;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_fea5d6f6c6d5b07e316c498f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.994141;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:ffc;src:url('chunks/assets/font_196849b3b1d691f98b1a3ab4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.lsb{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.110400px;}
.ls18{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.008640px;}
.ls7{letter-spacing:0.054720px;}
.ls6{letter-spacing:0.086400px;}
.ls4{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.144720px;}
.lse{letter-spacing:0.175200px;}
.ls0{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.lsf{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.900000px;}
.ls16{letter-spacing:8.820000px;}
.ls17{letter-spacing:11.700000px;}
.ls13{letter-spacing:20.340000px;}
.lsc{letter-spacing:33.240000px;}
.lsd{letter-spacing:33.960000px;}
.ls3{letter-spacing:195.984000px;}
.ls2{letter-spacing:199.386720px;}
.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;}
}
.ws10{word-spacing:-60.480000px;}
.wsf{word-spacing:-59.760000px;}
.ws0{word-spacing:-21.060000px;}
.ws9{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.115200px;}
.ws5{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.829600px;}
.wse{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.060000px;}
.ws6{word-spacing:-7.560000px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-6.500880px;}
._30{margin-left:-4.302720px;}
._1a{margin-left:-3.286800px;}
._19{margin-left:-2.270880px;}
._0{margin-left:-1.065120px;}
._6{width:1.314720px;}
._8{width:2.687520px;}
._16{width:3.884400px;}
._17{width:5.362800px;}
._12{width:6.589200px;}
._15{width:7.649280px;}
._10{width:9.561600px;}
._11{width:10.577520px;}
._d{width:11.593440px;}
._e{width:12.908160px;}
._f{width:16.673040px;}
._18{width:17.823600px;}
._14{width:19.069440px;}
._13{width:20.120160px;}
._1d{width:21.573360px;}
._1f{width:22.937280px;}
._1e{width:24.023520px;}
._2d{width:25.675920px;}
._23{width:28.206720px;}
._24{width:29.282400px;}
._5{width:30.948000px;}
._26{width:32.329200px;}
._25{width:33.346080px;}
._21{width:41.991600px;}
._33{width:48.286080px;}
._27{width:50.432640px;}
._3{width:51.510000px;}
._9{width:56.992800px;}
._2f{width:77.927040px;}
._2e{width:79.062480px;}
._2a{width:102.846960px;}
._2c{width:107.683200px;}
._28{width:116.830800px;}
._29{width:117.966240px;}
._1{width:149.217120px;}
._a{width:167.220000px;}
._c{width:179.315280px;}
._31{width:190.335600px;}
._32{width:191.865360px;}
._2b{width:192.936000px;}
._20{width:201.036000px;}
._2{width:202.620000px;}
._b{width:204.120000px;}
._1b{width:657.346800px;}
._34{width:1067.982720px;}
._22{width:1129.440000px;}
._1c{width:1138.800000px;}
._7{width:1675.896000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:37.260000px;}
.y8{bottom:52.200000px;}
.y28{bottom:66.960000px;}
.y7{bottom:67.140000px;}
.y4f{bottom:132.876000px;}
.y6e{bottom:134.676000px;}
.y132{bottom:144.756000px;}
.yb5{bottom:147.096000px;}
.y93{bottom:150.510000px;}
.y152{bottom:151.590000px;}
.y113{bottom:155.370000px;}
.y6d{bottom:156.090000px;}
.y4e{bottom:166.350000px;}
.yf1{bottom:167.430000px;}
.y92{bottom:171.930000px;}
.y151{bottom:173.010000px;}
.y105{bottom:174.630000px;}
.yd5{bottom:177.510000px;}
.y131{bottom:178.050000px;}
.yb4{bottom:179.850000px;}
.yf0{bottom:188.850000px;}
.y6c{bottom:189.390000px;}
.y150{bottom:194.430000px;}
.y104{bottom:196.050000px;}
.y4d{bottom:199.650000px;}
.y91{bottom:205.410000px;}
.yef{bottom:210.270000px;}
.yd4{bottom:210.990000px;}
.y130{bottom:211.530000px;}
.yb3{bottom:212.970000px;}
.y103{bottom:217.470000px;}
.y6b{bottom:222.150000px;}
.y14f{bottom:227.910000px;}
.y4c{bottom:232.590000px;}
.yb2{bottom:234.390000px;}
.y90{bottom:238.890000px;}
.y167{bottom:239.070000px;}
.yee{bottom:243.570000px;}
.yd3{bottom:244.470000px;}
.y14e{bottom:249.330000px;}
.y12f{bottom:250.410000px;}
.y6a{bottom:252.030000px;}
.y4b{bottom:254.010000px;}
.yb1{bottom:255.810000px;}
.y8f{bottom:260.310000px;}
.y102{bottom:260.490000px;}
.yd2{bottom:265.890000px;}
.y14d{bottom:270.750000px;}
.y4a{bottom:275.430000px;}
.yed{bottom:276.870000px;}
.y101{bottom:281.910000px;}
.y12e{bottom:283.350000px;}
.y69{bottom:285.510000px;}
.yb0{bottom:288.930000px;}
.y8e{bottom:293.790000px;}
.y49{bottom:296.850000px;}
.yec{bottom:298.290000px;}
.yd1{bottom:299.370000px;}
.y166{bottom:302.970000px;}
.y14c{bottom:304.230000px;}
.y100{bottom:315.210000px;}
.y68{bottom:318.990000px;}
.yeb{bottom:319.710000px;}
.yd0{bottom:320.790000px;}
.yaf{bottom:322.050000px;}
.y12d{bottom:322.230000px;}
.y14b{bottom:325.650000px;}
.y8d{bottom:326.910000px;}
.y165{bottom:334.110000px;}
.y48{bottom:335.730000px;}
.yff{bottom:336.675000px;}
.yae{bottom:343.515000px;}
.y14a{bottom:347.115000px;}
.y67{bottom:352.335000px;}
.yea{bottom:352.875000px;}
.ycf{bottom:354.135000px;}
.y12c{bottom:355.215000px;}
.yfe{bottom:358.275000px;}
.y8c{bottom:360.255000px;}
.yad{bottom:364.935000px;}
.y164{bottom:367.095000px;}
.y47{bottom:368.715000px;}
.y149{bottom:380.595000px;}
.y8b{bottom:381.675000px;}
.y66{bottom:385.815000px;}
.ye9{bottom:385.995000px;}
.yac{bottom:386.355000px;}
.yce{bottom:387.615000px;}
.y163{bottom:388.515000px;}
.y46{bottom:390.135000px;}
.yfd{bottom:391.575000px;}
.y12b{bottom:394.275000px;}
.y148{bottom:402.015000px;}
.y8a{bottom:403.095000px;}
.ye8{bottom:407.415000px;}
.y162{bottom:409.935000px;}
.y45{bottom:411.555000px;}
.yfc{bottom:412.995000px;}
.y65{bottom:419.295000px;}
.yab{bottom:419.835000px;}
.ycd{bottom:420.915000px;}
.y89{bottom:424.515000px;}
.y12a{bottom:427.215000px;}
.y44{bottom:432.975000px;}
.yfb{bottom:434.415000px;}
.y147{bottom:435.495000px;}
.y25{bottom:437.475000px;}
.ye7{bottom:440.895000px;}
.yaa{bottom:441.255000px;}
.y161{bottom:443.415000px;}
.y88{bottom:445.935000px;}
.y129{bottom:448.635000px;}
.y64{bottom:452.595000px;}
.ycc{bottom:454.035000px;}
.y43{bottom:454.575000px;}
.yfa{bottom:456.015000px;}
.y146{bottom:456.915000px;}
.ye6{bottom:462.315000px;}
.y160{bottom:464.835000px;}
.y87{bottom:467.355000px;}
.y24{bottom:469.515000px;}
.y128{bottom:470.055000px;}
.ya9{bottom:474.735000px;}
.ycb{bottom:475.635000px;}
.y42{bottom:475.995000px;}
.y145{bottom:478.335000px;}
.y63{bottom:485.535000px;}
.y86{bottom:488.955000px;}
.yf9{bottom:489.315000px;}
.y23{bottom:489.675000px;}
.y127{bottom:491.475000px;}
.ye5{bottom:495.615000px;}
.y41{bottom:497.415000px;}
.y15f{bottom:498.315000px;}
.ya8{bottom:508.215000px;}
.yca{bottom:508.935000px;}
.y22{bottom:509.655000px;}
.yf8{bottom:510.735000px;}
.y144{bottom:511.815000px;}
.y62{bottom:519.015000px;}
.y15e{bottom:519.735000px;}
.y85{bottom:522.255000px;}
.y126{bottom:524.955000px;}
.ye4{bottom:529.095000px;}
.ya7{bottom:529.635000px;}
.y21{bottom:529.815000px;}
.y40{bottom:530.715000px;}
.y143{bottom:533.235000px;}
.y15d{bottom:541.155000px;}
.yc9{bottom:542.235000px;}
.yf7{bottom:544.035000px;}
.y125{bottom:546.375000px;}
.y20{bottom:549.975000px;}
.ye3{bottom:550.515000px;}
.ya6{bottom:551.055000px;}
.y3f{bottom:552.315000px;}
.y142{bottom:554.655000px;}
.y84{bottom:555.195000px;}
.y15c{bottom:562.575000px;}
.yf6{bottom:564.555000px;}
.y124{bottom:567.795000px;}
.y1f{bottom:570.135000px;}
.ye2{bottom:571.935000px;}
.y3e{bottom:573.735000px;}
.yc8{bottom:575.535000px;}
.y83{bottom:576.615000px;}
.ya5{bottom:584.535000px;}
.y61{bottom:585.795000px;}
.y141{bottom:588.135000px;}
.y1e{bottom:590.115000px;}
.ye1{bottom:593.535000px;}
.yf5{bottom:594.255000px;}
.y15b{bottom:596.055000px;}
.yc7{bottom:596.955000px;}
.y82{bottom:598.035000px;}
.y123{bottom:601.275000px;}
.ya4{bottom:605.985000px;}
.y3d{bottom:607.065000px;}
.yf4{bottom:609.225000px;}
.y140{bottom:609.585000px;}
.y1d{bottom:610.305000px;}
.y15a{bottom:617.505000px;}
.yc6{bottom:618.405000px;}
.y60{bottom:619.305000px;}
.y81{bottom:619.485000px;}
.y122{bottom:622.725000px;}
.yf3{bottom:624.165000px;}
.ye0{bottom:626.685000px;}
.y3c{bottom:628.665000px;}
.y13f{bottom:631.005000px;}
.y1c{bottom:638.025000px;}
.ya3{bottom:639.465000px;}
.yc5{bottom:639.825000px;}
.y121{bottom:644.145000px;}
.y3b{bottom:650.085000px;}
.y159{bottom:650.985000px;}
.y5f{bottom:652.785000px;}
.y80{bottom:652.965000px;}
.yf2{bottom:656.925000px;}
.ydf{bottom:659.985000px;}
.yc4{bottom:661.245000px;}
.y13e{bottom:664.485000px;}
.y1b{bottom:665.565000px;}
.y3a{bottom:671.505000px;}
.y158{bottom:672.405000px;}
.ya2{bottom:672.765000px;}
.y7f{bottom:674.385000px;}
.yde{bottom:681.405000px;}
.yc3{bottom:682.665000px;}
.y1a{bottom:684.285000px;}
.y13d{bottom:685.905000px;}
.y5e{bottom:686.085000px;}
.y120{bottom:686.985000px;}
.ya1{bottom:694.185000px;}
.y7e{bottom:695.805000px;}
.y19{bottom:703.005000px;}
.yc2{bottom:704.085000px;}
.y157{bottom:705.885000px;}
.y11f{bottom:708.405000px;}
.y39{bottom:710.385000px;}
.ydd{bottom:714.525000px;}
.ya0{bottom:715.605000px;}
.y13c{bottom:719.385000px;}
.y5d{bottom:719.565000px;}
.y18{bottom:721.545000px;}
.yc1{bottom:725.505000px;}
.y156{bottom:727.305000px;}
.y7d{bottom:729.105000px;}
.y11e{bottom:729.825000px;}
.y9f{bottom:737.205000px;}
.y112{bottom:739.365000px;}
.y17{bottom:740.265000px;}
.y13b{bottom:740.805000px;}
.y38{bottom:743.325000px;}
.ydc{bottom:747.285000px;}
.y155{bottom:748.725000px;}
.y11d{bottom:751.245000px;}
.y5c{bottom:753.045000px;}
.y9e{bottom:758.625000px;}
.y16{bottom:758.985000px;}
.y111{bottom:760.785000px;}
.y7c{bottom:762.045000px;}
.y13a{bottom:762.225000px;}
.y37{bottom:764.745000px;}
.y11c{bottom:772.665000px;}
.y15{bottom:777.525000px;}
.y9d{bottom:780.045000px;}
.ydb{bottom:780.405000px;}
.y110{bottom:782.205000px;}
.y7b{bottom:783.465000px;}
.y36{bottom:786.165000px;}
.y5b{bottom:786.525000px;}
.yc0{bottom:792.465000px;}
.y139{bottom:795.525000px;}
.y14{bottom:796.245000px;}
.y9c{bottom:801.465000px;}
.yda{bottom:801.825000px;}
.y10f{bottom:803.625000px;}
.y7a{bottom:804.885000px;}
.y11b{bottom:806.145000px;}
.y35{bottom:807.585000px;}
.y138{bottom:817.125000px;}
.y5a{bottom:819.825000px;}
.y10e{bottom:825.045000px;}
.ybf{bottom:825.765000px;}
.y13{bottom:825.945000px;}
.y79{bottom:826.305000px;}
.y11a{bottom:827.565000px;}
.y9b{bottom:834.945000px;}
.yd9{bottom:835.125000px;}
.y154{bottom:837.105000px;}
.y34{bottom:841.065000px;}
.y10d{bottom:846.465000px;}
.y78{bottom:847.725000px;}
.y119{bottom:848.985000px;}
.y137{bottom:850.425000px;}
.y59{bottom:853.305000px;}
.y153{bottom:858.525000px;}
.y10{bottom:858.885000px;}
.ybe{bottom:859.245000px;}
.y33{bottom:862.485000px;}
.y9a{bottom:868.245000px;}
.y118{bottom:870.405000px;}
.y136{bottom:871.890000px;}
.y12{bottom:873.870000px;}
.yf{bottom:876.930000px;}
.y10c{bottom:879.990000px;}
.ybd{bottom:880.710000px;}
.y77{bottom:881.250000px;}
.y32{bottom:883.950000px;}
.y58{bottom:886.830000px;}
.ye{bottom:888.630000px;}
.y99{bottom:889.710000px;}
.y117{bottom:891.870000px;}
.ybc{bottom:902.130000px;}
.y11{bottom:903.570000px;}
.y31{bottom:905.370000px;}
.yd{bottom:906.630000px;}
.y10b{bottom:913.470000px;}
.y76{bottom:914.550000px;}
.y57{bottom:920.310000px;}
.y98{bottom:923.190000px;}
.ybb{bottom:923.550000px;}
.y116{bottom:925.350000px;}
.y135{bottom:926.790000px;}
.y10a{bottom:934.890000px;}
.y30{bottom:938.850000px;}
.yd8{bottom:944.610000px;}
.yc{bottom:946.410000px;}
.y115{bottom:946.770000px;}
.y75{bottom:947.490000px;}
.y134{bottom:948.210000px;}
.y56{bottom:953.610000px;}
.y97{bottom:956.670000px;}
.yba{bottom:957.030000px;}
.y2f{bottom:960.270000px;}
.y109{bottom:968.190000px;}
.y74{bottom:968.910000px;}
.y96{bottom:978.090000px;}
.yb9{bottom:978.450000px;}
.yb{bottom:979.710000px;}
.y2e{bottom:981.690000px;}
.y55{bottom:987.090000px;}
.y108{bottom:989.610000px;}
.y73{bottom:990.330000px;}
.y133{bottom:1003.110000px;}
.y107{bottom:1011.210000px;}
.y95{bottom:1011.570000px;}
.y72{bottom:1011.750000px;}
.y2d{bottom:1015.170000px;}
.ya{bottom:1016.610000px;}
.y54{bottom:1020.570000px;}
.y114{bottom:1023.090000px;}
.yd7{bottom:1032.990000px;}
.y2c{bottom:1036.590000px;}
.y106{bottom:1044.510000px;}
.y94{bottom:1044.690000px;}
.y71{bottom:1045.050000px;}
.y53{bottom:1054.050000px;}
.y2b{bottom:1058.010000px;}
.y6{bottom:1065.930000px;}
.yd6{bottom:1066.110000px;}
.yb8{bottom:1066.470000px;}
.y70{bottom:1077.990000px;}
.y2a{bottom:1079.430000px;}
.y52{bottom:1087.350000px;}
.yb7{bottom:1087.890000px;}
.y6f{bottom:1099.410000px;}
.y5{bottom:1105.170000px;}
.y29{bottom:1118.310000px;}
.y51{bottom:1120.830000px;}
.yb6{bottom:1121.010000px;}
.y4{bottom:1122.090000px;}
.y3{bottom:1138.860000px;}
.y2{bottom:1155.600000px;}
.y27{bottom:1161.180000px;}
.y50{bottom:1166.400000px;}
.y1{bottom:1176.660000px;}
.y26{bottom:1184.760000px;}
.ha{height:31.406836px;}
.hd{height:43.361016px;}
.hf{height:43.565273px;}
.he{height:43.623633px;}
.h6{height:43.646836px;}
.h10{height:44.820000px;}
.h3{height:48.858398px;}
.h5{height:51.539062px;}
.h7{height:52.488281px;}
.h4{height:54.000000px;}
.hb{height:54.069961px;}
.h8{height:56.687344px;}
.h9{height:58.651172px;}
.h2{height:61.411289px;}
.hc{height:74.953125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.xd{left:163.649987px;}
.xe{left:181.649987px;}
.x5{left:184.889987px;}
.x4{left:203.969987px;}
.xc{left:234.749987px;}
.x6{left:253.874987px;}
.xa{left:291.314987px;}
.x1{left:337.754987px;}
.x3{left:426.344987px;}
.x8{left:492.764987px;}
.x7{left:561.389987px;}
.xb{left:716.909987px;}
.x9{left:765.539987px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.098133pt;}
.ls18{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.007680pt;}
.ls7{letter-spacing:0.048640pt;}
.ls6{letter-spacing:0.076800pt;}
.ls4{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.128640pt;}
.lse{letter-spacing:0.155733pt;}
.ls0{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.lsf{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.800000pt;}
.ls16{letter-spacing:7.840000pt;}
.ls17{letter-spacing:10.400000pt;}
.ls13{letter-spacing:18.080000pt;}
.lsc{letter-spacing:29.546667pt;}
.lsd{letter-spacing:30.186667pt;}
.ls3{letter-spacing:174.208000pt;}
.ls2{letter-spacing:177.232640pt;}
.ws10{word-spacing:-53.760000pt;}
.wsf{word-spacing:-53.120000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.435733pt;}
.ws5{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.181867pt;}
.wse{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws6{word-spacing:-6.720000pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-5.778560pt;}
._30{margin-left:-3.824640pt;}
._1a{margin-left:-2.921600pt;}
._19{margin-left:-2.018560pt;}
._0{margin-left:-0.946773pt;}
._6{width:1.168640pt;}
._8{width:2.388907pt;}
._16{width:3.452800pt;}
._17{width:4.766933pt;}
._12{width:5.857067pt;}
._15{width:6.799360pt;}
._10{width:8.499200pt;}
._11{width:9.402240pt;}
._d{width:10.305280pt;}
._e{width:11.473920pt;}
._f{width:14.820480pt;}
._18{width:15.843200pt;}
._14{width:16.950613pt;}
._13{width:17.884587pt;}
._1d{width:19.176320pt;}
._1f{width:20.388693pt;}
._1e{width:21.354240pt;}
._2d{width:22.823040pt;}
._23{width:25.072640pt;}
._24{width:26.028800pt;}
._5{width:27.509333pt;}
._26{width:28.737067pt;}
._25{width:29.640960pt;}
._21{width:37.325867pt;}
._33{width:42.920960pt;}
._27{width:44.829013pt;}
._3{width:45.786667pt;}
._9{width:50.660267pt;}
._2f{width:69.268480pt;}
._2e{width:70.277760pt;}
._2a{width:91.419520pt;}
._2c{width:95.718400pt;}
._28{width:103.849600pt;}
._29{width:104.858880pt;}
._1{width:132.637440pt;}
._a{width:148.640000pt;}
._c{width:159.391360pt;}
._31{width:169.187200pt;}
._32{width:170.546987pt;}
._2b{width:171.498667pt;}
._20{width:178.698667pt;}
._2{width:180.106667pt;}
._b{width:181.440000pt;}
._1b{width:584.308267pt;}
._34{width:949.317973pt;}
._22{width:1003.946667pt;}
._1c{width:1012.266667pt;}
._7{width:1489.685333pt;}
.fs8{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:33.120000pt;}
.y8{bottom:46.400000pt;}
.y28{bottom:59.520000pt;}
.y7{bottom:59.680000pt;}
.y4f{bottom:118.112000pt;}
.y6e{bottom:119.712000pt;}
.y132{bottom:128.672000pt;}
.yb5{bottom:130.752000pt;}
.y93{bottom:133.786667pt;}
.y152{bottom:134.746667pt;}
.y113{bottom:138.106667pt;}
.y6d{bottom:138.746667pt;}
.y4e{bottom:147.866667pt;}
.yf1{bottom:148.826667pt;}
.y92{bottom:152.826667pt;}
.y151{bottom:153.786667pt;}
.y105{bottom:155.226667pt;}
.yd5{bottom:157.786667pt;}
.y131{bottom:158.266667pt;}
.yb4{bottom:159.866667pt;}
.yf0{bottom:167.866667pt;}
.y6c{bottom:168.346667pt;}
.y150{bottom:172.826667pt;}
.y104{bottom:174.266667pt;}
.y4d{bottom:177.466667pt;}
.y91{bottom:182.586667pt;}
.yef{bottom:186.906667pt;}
.yd4{bottom:187.546667pt;}
.y130{bottom:188.026667pt;}
.yb3{bottom:189.306667pt;}
.y103{bottom:193.306667pt;}
.y6b{bottom:197.466667pt;}
.y14f{bottom:202.586667pt;}
.y4c{bottom:206.746667pt;}
.yb2{bottom:208.346667pt;}
.y90{bottom:212.346667pt;}
.y167{bottom:212.506667pt;}
.yee{bottom:216.506667pt;}
.yd3{bottom:217.306667pt;}
.y14e{bottom:221.626667pt;}
.y12f{bottom:222.586667pt;}
.y6a{bottom:224.026667pt;}
.y4b{bottom:225.786667pt;}
.yb1{bottom:227.386667pt;}
.y8f{bottom:231.386667pt;}
.y102{bottom:231.546667pt;}
.yd2{bottom:236.346667pt;}
.y14d{bottom:240.666667pt;}
.y4a{bottom:244.826667pt;}
.yed{bottom:246.106667pt;}
.y101{bottom:250.586667pt;}
.y12e{bottom:251.866667pt;}
.y69{bottom:253.786667pt;}
.yb0{bottom:256.826667pt;}
.y8e{bottom:261.146667pt;}
.y49{bottom:263.866667pt;}
.yec{bottom:265.146667pt;}
.yd1{bottom:266.106667pt;}
.y166{bottom:269.306667pt;}
.y14c{bottom:270.426667pt;}
.y100{bottom:280.186667pt;}
.y68{bottom:283.546667pt;}
.yeb{bottom:284.186667pt;}
.yd0{bottom:285.146667pt;}
.yaf{bottom:286.266667pt;}
.y12d{bottom:286.426667pt;}
.y14b{bottom:289.466667pt;}
.y8d{bottom:290.586667pt;}
.y165{bottom:296.986667pt;}
.y48{bottom:298.426667pt;}
.yff{bottom:299.266667pt;}
.yae{bottom:305.346667pt;}
.y14a{bottom:308.546667pt;}
.y67{bottom:313.186667pt;}
.yea{bottom:313.666667pt;}
.ycf{bottom:314.786667pt;}
.y12c{bottom:315.746667pt;}
.yfe{bottom:318.466667pt;}
.y8c{bottom:320.226667pt;}
.yad{bottom:324.386667pt;}
.y164{bottom:326.306667pt;}
.y47{bottom:327.746667pt;}
.y149{bottom:338.306667pt;}
.y8b{bottom:339.266667pt;}
.y66{bottom:342.946667pt;}
.ye9{bottom:343.106667pt;}
.yac{bottom:343.426667pt;}
.yce{bottom:344.546667pt;}
.y163{bottom:345.346667pt;}
.y46{bottom:346.786667pt;}
.yfd{bottom:348.066667pt;}
.y12b{bottom:350.466667pt;}
.y148{bottom:357.346667pt;}
.y8a{bottom:358.306667pt;}
.ye8{bottom:362.146667pt;}
.y162{bottom:364.386667pt;}
.y45{bottom:365.826667pt;}
.yfc{bottom:367.106667pt;}
.y65{bottom:372.706667pt;}
.yab{bottom:373.186667pt;}
.ycd{bottom:374.146667pt;}
.y89{bottom:377.346667pt;}
.y12a{bottom:379.746667pt;}
.y44{bottom:384.866667pt;}
.yfb{bottom:386.146667pt;}
.y147{bottom:387.106667pt;}
.y25{bottom:388.866667pt;}
.ye7{bottom:391.906667pt;}
.yaa{bottom:392.226667pt;}
.y161{bottom:394.146667pt;}
.y88{bottom:396.386667pt;}
.y129{bottom:398.786667pt;}
.y64{bottom:402.306667pt;}
.ycc{bottom:403.586667pt;}
.y43{bottom:404.066667pt;}
.yfa{bottom:405.346667pt;}
.y146{bottom:406.146667pt;}
.ye6{bottom:410.946667pt;}
.y160{bottom:413.186667pt;}
.y87{bottom:415.426667pt;}
.y24{bottom:417.346667pt;}
.y128{bottom:417.826667pt;}
.ya9{bottom:421.986667pt;}
.ycb{bottom:422.786667pt;}
.y42{bottom:423.106667pt;}
.y145{bottom:425.186667pt;}
.y63{bottom:431.586667pt;}
.y86{bottom:434.626667pt;}
.yf9{bottom:434.946667pt;}
.y23{bottom:435.266667pt;}
.y127{bottom:436.866667pt;}
.ye5{bottom:440.546667pt;}
.y41{bottom:442.146667pt;}
.y15f{bottom:442.946667pt;}
.ya8{bottom:451.746667pt;}
.yca{bottom:452.386667pt;}
.y22{bottom:453.026667pt;}
.yf8{bottom:453.986667pt;}
.y144{bottom:454.946667pt;}
.y62{bottom:461.346667pt;}
.y15e{bottom:461.986667pt;}
.y85{bottom:464.226667pt;}
.y126{bottom:466.626667pt;}
.ye4{bottom:470.306667pt;}
.ya7{bottom:470.786667pt;}
.y21{bottom:470.946667pt;}
.y40{bottom:471.746667pt;}
.y143{bottom:473.986667pt;}
.y15d{bottom:481.026667pt;}
.yc9{bottom:481.986667pt;}
.yf7{bottom:483.586667pt;}
.y125{bottom:485.666667pt;}
.y20{bottom:488.866667pt;}
.ye3{bottom:489.346667pt;}
.ya6{bottom:489.826667pt;}
.y3f{bottom:490.946667pt;}
.y142{bottom:493.026667pt;}
.y84{bottom:493.506667pt;}
.y15c{bottom:500.066667pt;}
.yf6{bottom:501.826667pt;}
.y124{bottom:504.706667pt;}
.y1f{bottom:506.786667pt;}
.ye2{bottom:508.386667pt;}
.y3e{bottom:509.986667pt;}
.yc8{bottom:511.586667pt;}
.y83{bottom:512.546667pt;}
.ya5{bottom:519.586667pt;}
.y61{bottom:520.706667pt;}
.y141{bottom:522.786667pt;}
.y1e{bottom:524.546667pt;}
.ye1{bottom:527.586667pt;}
.yf5{bottom:528.226667pt;}
.y15b{bottom:529.826667pt;}
.yc7{bottom:530.626667pt;}
.y82{bottom:531.586667pt;}
.y123{bottom:534.466667pt;}
.ya4{bottom:538.653333pt;}
.y3d{bottom:539.613333pt;}
.yf4{bottom:541.533333pt;}
.y140{bottom:541.853333pt;}
.y1d{bottom:542.493333pt;}
.y15a{bottom:548.893333pt;}
.yc6{bottom:549.693333pt;}
.y60{bottom:550.493333pt;}
.y81{bottom:550.653333pt;}
.y122{bottom:553.533333pt;}
.yf3{bottom:554.813333pt;}
.ye0{bottom:557.053333pt;}
.y3c{bottom:558.813333pt;}
.y13f{bottom:560.893333pt;}
.y1c{bottom:567.133333pt;}
.ya3{bottom:568.413333pt;}
.yc5{bottom:568.733333pt;}
.y121{bottom:572.573333pt;}
.y3b{bottom:577.853333pt;}
.y159{bottom:578.653333pt;}
.y5f{bottom:580.253333pt;}
.y80{bottom:580.413333pt;}
.yf2{bottom:583.933333pt;}
.ydf{bottom:586.653333pt;}
.yc4{bottom:587.773333pt;}
.y13e{bottom:590.653333pt;}
.y1b{bottom:591.613333pt;}
.y3a{bottom:596.893333pt;}
.y158{bottom:597.693333pt;}
.ya2{bottom:598.013333pt;}
.y7f{bottom:599.453333pt;}
.yde{bottom:605.693333pt;}
.yc3{bottom:606.813333pt;}
.y1a{bottom:608.253333pt;}
.y13d{bottom:609.693333pt;}
.y5e{bottom:609.853333pt;}
.y120{bottom:610.653333pt;}
.ya1{bottom:617.053333pt;}
.y7e{bottom:618.493333pt;}
.y19{bottom:624.893333pt;}
.yc2{bottom:625.853333pt;}
.y157{bottom:627.453333pt;}
.y11f{bottom:629.693333pt;}
.y39{bottom:631.453333pt;}
.ydd{bottom:635.133333pt;}
.ya0{bottom:636.093333pt;}
.y13c{bottom:639.453333pt;}
.y5d{bottom:639.613333pt;}
.y18{bottom:641.373333pt;}
.yc1{bottom:644.893333pt;}
.y156{bottom:646.493333pt;}
.y7d{bottom:648.093333pt;}
.y11e{bottom:648.733333pt;}
.y9f{bottom:655.293333pt;}
.y112{bottom:657.213333pt;}
.y17{bottom:658.013333pt;}
.y13b{bottom:658.493333pt;}
.y38{bottom:660.733333pt;}
.ydc{bottom:664.253333pt;}
.y155{bottom:665.533333pt;}
.y11d{bottom:667.773333pt;}
.y5c{bottom:669.373333pt;}
.y9e{bottom:674.333333pt;}
.y16{bottom:674.653333pt;}
.y111{bottom:676.253333pt;}
.y7c{bottom:677.373333pt;}
.y13a{bottom:677.533333pt;}
.y37{bottom:679.773333pt;}
.y11c{bottom:686.813333pt;}
.y15{bottom:691.133333pt;}
.y9d{bottom:693.373333pt;}
.ydb{bottom:693.693333pt;}
.y110{bottom:695.293333pt;}
.y7b{bottom:696.413333pt;}
.y36{bottom:698.813333pt;}
.y5b{bottom:699.133333pt;}
.yc0{bottom:704.413333pt;}
.y139{bottom:707.133333pt;}
.y14{bottom:707.773333pt;}
.y9c{bottom:712.413333pt;}
.yda{bottom:712.733333pt;}
.y10f{bottom:714.333333pt;}
.y7a{bottom:715.453333pt;}
.y11b{bottom:716.573333pt;}
.y35{bottom:717.853333pt;}
.y138{bottom:726.333333pt;}
.y5a{bottom:728.733333pt;}
.y10e{bottom:733.373333pt;}
.ybf{bottom:734.013333pt;}
.y13{bottom:734.173333pt;}
.y79{bottom:734.493333pt;}
.y11a{bottom:735.613333pt;}
.y9b{bottom:742.173333pt;}
.yd9{bottom:742.333333pt;}
.y154{bottom:744.093333pt;}
.y34{bottom:747.613333pt;}
.y10d{bottom:752.413333pt;}
.y78{bottom:753.533333pt;}
.y119{bottom:754.653333pt;}
.y137{bottom:755.933333pt;}
.y59{bottom:758.493333pt;}
.y153{bottom:763.133333pt;}
.y10{bottom:763.453333pt;}
.ybe{bottom:763.773333pt;}
.y33{bottom:766.653333pt;}
.y9a{bottom:771.773333pt;}
.y118{bottom:773.693333pt;}
.y136{bottom:775.013333pt;}
.y12{bottom:776.773333pt;}
.yf{bottom:779.493333pt;}
.y10c{bottom:782.213333pt;}
.ybd{bottom:782.853333pt;}
.y77{bottom:783.333333pt;}
.y32{bottom:785.733333pt;}
.y58{bottom:788.293333pt;}
.ye{bottom:789.893333pt;}
.y99{bottom:790.853333pt;}
.y117{bottom:792.773333pt;}
.ybc{bottom:801.893333pt;}
.y11{bottom:803.173333pt;}
.y31{bottom:804.773333pt;}
.yd{bottom:805.893333pt;}
.y10b{bottom:811.973333pt;}
.y76{bottom:812.933333pt;}
.y57{bottom:818.053333pt;}
.y98{bottom:820.613333pt;}
.ybb{bottom:820.933333pt;}
.y116{bottom:822.533333pt;}
.y135{bottom:823.813333pt;}
.y10a{bottom:831.013333pt;}
.y30{bottom:834.533333pt;}
.yd8{bottom:839.653333pt;}
.yc{bottom:841.253333pt;}
.y115{bottom:841.573333pt;}
.y75{bottom:842.213333pt;}
.y134{bottom:842.853333pt;}
.y56{bottom:847.653333pt;}
.y97{bottom:850.373333pt;}
.yba{bottom:850.693333pt;}
.y2f{bottom:853.573333pt;}
.y109{bottom:860.613333pt;}
.y74{bottom:861.253333pt;}
.y96{bottom:869.413333pt;}
.yb9{bottom:869.733333pt;}
.yb{bottom:870.853333pt;}
.y2e{bottom:872.613333pt;}
.y55{bottom:877.413333pt;}
.y108{bottom:879.653333pt;}
.y73{bottom:880.293333pt;}
.y133{bottom:891.653333pt;}
.y107{bottom:898.853333pt;}
.y95{bottom:899.173333pt;}
.y72{bottom:899.333333pt;}
.y2d{bottom:902.373333pt;}
.ya{bottom:903.653333pt;}
.y54{bottom:907.173333pt;}
.y114{bottom:909.413333pt;}
.yd7{bottom:918.213333pt;}
.y2c{bottom:921.413333pt;}
.y106{bottom:928.453333pt;}
.y94{bottom:928.613333pt;}
.y71{bottom:928.933333pt;}
.y53{bottom:936.933333pt;}
.y2b{bottom:940.453333pt;}
.y6{bottom:947.493333pt;}
.yd6{bottom:947.653333pt;}
.yb8{bottom:947.973333pt;}
.y70{bottom:958.213333pt;}
.y2a{bottom:959.493333pt;}
.y52{bottom:966.533333pt;}
.yb7{bottom:967.013333pt;}
.y6f{bottom:977.253333pt;}
.y5{bottom:982.373333pt;}
.y29{bottom:994.053333pt;}
.y51{bottom:996.293333pt;}
.yb6{bottom:996.453333pt;}
.y4{bottom:997.413333pt;}
.y3{bottom:1012.320000pt;}
.y2{bottom:1027.200000pt;}
.y27{bottom:1032.160000pt;}
.y50{bottom:1036.800000pt;}
.y1{bottom:1045.920000pt;}
.y26{bottom:1053.120000pt;}
.ha{height:27.917188pt;}
.hd{height:38.543125pt;}
.hf{height:38.724688pt;}
.he{height:38.776563pt;}
.h6{height:38.797187pt;}
.h10{height:39.840000pt;}
.h3{height:43.429688pt;}
.h5{height:45.812500pt;}
.h7{height:46.656250pt;}
.h4{height:48.000000pt;}
.hb{height:48.062188pt;}
.h8{height:50.388750pt;}
.h9{height:52.134375pt;}
.h2{height:54.587812pt;}
.hc{height:66.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.xd{left:145.466655pt;}
.xe{left:161.466655pt;}
.x5{left:164.346655pt;}
.x4{left:181.306655pt;}
.xc{left:208.666655pt;}
.x6{left:225.666655pt;}
.xa{left:258.946655pt;}
.x1{left:300.226655pt;}
.x3{left:378.973322pt;}
.x8{left:438.013322pt;}
.x7{left:499.013322pt;}
.xb{left:637.253322pt;}
.x9{left:680.479988pt;}
}




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