
    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_6bcd735483e1a30dd88928e0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3bac8933714cd16f1dec8b43.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4f1656ba69801c4f97dd4246.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6610d66d1a8ca27b5bec2f7f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ab7df0bae695ad23ba8c23e5.woff')format("woff");}.ff6{font-family:ff6;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1c{letter-spacing:-2.676000px;}
.ls16{letter-spacing:-1.182000px;}
.ls1b{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.666000px;}
.ls14{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.413400px;}
.lsf{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.153600px;}
.ls1a{letter-spacing:0.156000px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.262200px;}
.ls13{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.513600px;}
.ls1{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.900000px;}
.ls4{letter-spacing:1.080000px;}
.ls12{letter-spacing:16.506720px;}
.ls10{letter-spacing:46.026720px;}
.ls11{letter-spacing:46.146720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.wse{word-spacing:-15.093600px;}
.ws5{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.274000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1917.060480px;}
._3{margin-left:-1588.921920px;}
._4{margin-left:-1170.942000px;}
._5{margin-left:-1111.639680px;}
._66{margin-left:-14.513280px;}
._7{margin-left:-8.910000px;}
._68{margin-left:-7.835760px;}
._23{margin-left:-6.687360px;}
._4a{margin-left:-5.372640px;}
._6{margin-left:-4.173120px;}
._8{margin-left:-2.270880px;}
._2{margin-left:-1.126080px;}
._0{width:1.321920px;}
._10{width:2.381040px;}
._f{width:3.525840px;}
._a{width:5.316480px;}
._9{width:6.390720px;}
._b{width:7.473600px;}
._11{width:8.490000px;}
._12{width:10.039680px;}
._e{width:11.406960px;}
._c{width:12.549600px;}
._d{width:13.728240px;}
._17{width:15.955920px;}
._16{width:17.031600px;}
._27{width:19.003680px;}
._1e{width:20.660400px;}
._1d{width:21.812400px;}
._1c{width:23.127120px;}
._13{width:24.434640px;}
._29{width:26.115120px;}
._40{width:27.131040px;}
._2a{width:28.139760px;}
._25{width:29.162880px;}
._18{width:30.298320px;}
._1f{width:31.374000px;}
._20{width:32.389920px;}
._15{width:34.225920px;}
._28{width:35.817120px;}
._30{width:36.931680px;}
._2f{width:38.067120px;}
._21{width:39.680640px;}
._22{width:41.406480px;}
._26{width:42.556320px;}
._2b{width:44.208000px;}
._3c{width:45.776160px;}
._3d{width:46.805520px;}
._14{width:48.943440px;}
._1b{width:50.522880px;}
._2d{width:51.991200px;}
._2e{width:53.230320px;}
._31{width:55.158480px;}
._19{width:56.234160px;}
._1a{width:57.414960px;}
._2c{width:58.698720px;}
._41{width:60.695760px;}
._6a{width:61.971120px;}
._47{width:62.979840px;}
._35{width:64.062720px;}
._5a{width:65.319840px;}
._49{width:66.572640px;}
._3a{width:68.245920px;}
._36{width:69.859440px;}
._6f{width:70.925760px;}
._34{width:72.010800px;}
._3f{width:73.490400px;}
._48{width:75.297600px;}
._5e{width:77.581200px;}
._33{width:79.182000px;}
._3e{width:82.170000px;}
._46{width:83.828880px;}
._57{width:85.815360px;}
._56{width:86.831280px;}
._4e{width:88.079040px;}
._4d{width:89.460720px;}
._4f{width:92.329200px;}
._38{width:97.408800px;}
._43{width:99.619920px;}
._37{width:106.671600px;}
._65{width:108.643680px;}
._32{width:111.273120px;}
._39{width:119.998080px;}
._45{width:121.492080px;}
._44{width:123.882480px;}
._42{width:127.408320px;}
._59{width:133.078320px;}
._58{width:135.057600px;}
._50{width:140.959440px;}
._52{width:146.030880px;}
._61{width:160.993440px;}
._53{width:163.018080px;}
._55{width:167.796000px;}
._54{width:169.300080px;}
._62{width:170.846640px;}
._63{width:173.632320px;}
._64{width:175.267200px;}
._4b{width:177.068880px;}
._3b{width:179.160480px;}
._6e{width:182.021760px;}
._6d{width:183.522960px;}
._69{width:190.036800px;}
._70{width:210.713760px;}
._5d{width:236.709360px;}
._5c{width:238.083840px;}
._67{width:241.124400px;}
._6b{width:313.500960px;}
._6c{width:314.578800px;}
._5f{width:317.481840px;}
._60{width:318.688320px;}
._51{width:332.601120px;}
._5b{width:338.241600px;}
._24{width:799.464000px;}
._4c{width:972.653760px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:5.760000px;}
.yb0{bottom:6.120000px;}
.y11f{bottom:6.300000px;}
.y8{bottom:6.480000px;}
.y7{bottom:6.840000px;}
.ya{bottom:11.700000px;}
.y9{bottom:12.420000px;}
.y9a{bottom:15.660000px;}
.yae{bottom:16.020000px;}
.y9c{bottom:25.560000px;}
.ya7{bottom:25.920000px;}
.yc0{bottom:26.100000px;}
.y99{bottom:35.460000px;}
.yad{bottom:35.820000px;}
.y11b{bottom:36.000000px;}
.yba{bottom:36.045000px;}
.yb{bottom:36.396000px;}
.y9b{bottom:45.360000px;}
.y114{bottom:45.540000px;}
.yc6{bottom:45.720000px;}
.ya6{bottom:45.900000px;}
.ybf{bottom:45.945000px;}
.y6{bottom:52.956000px;}
.yc3{bottom:55.260000px;}
.ya1{bottom:55.440000px;}
.yb4{bottom:55.485000px;}
.yc4{bottom:55.620000px;}
.yac{bottom:55.800000px;}
.yb9{bottom:55.845000px;}
.yc5{bottom:65.520000px;}
.y11c{bottom:65.694000px;}
.ya5{bottom:65.700000px;}
.ycd{bottom:65.730000px;}
.ybe{bottom:65.745000px;}
.ya0{bottom:75.240000px;}
.yc9{bottom:75.270000px;}
.yb3{bottom:75.285000px;}
.yab{bottom:75.600000px;}
.yb8{bottom:75.645000px;}
.ya4{bottom:85.500000px;}
.ycc{bottom:85.530000px;}
.ye3{bottom:85.536000px;}
.ybd{bottom:85.545000px;}
.y13e{bottom:90.756000px;}
.y3a{bottom:91.116000px;}
.y11a{bottom:93.996000px;}
.y100{bottom:94.896000px;}
.y9f{bottom:95.040000px;}
.yc8{bottom:95.070000px;}
.yb2{bottom:95.085000px;}
.yaa{bottom:95.400000px;}
.yb7{bottom:95.445000px;}
.y74{bottom:96.696000px;}
.ya3{bottom:105.300000px;}
.ycb{bottom:105.330000px;}
.ye2{bottom:105.336000px;}
.ybc{bottom:105.345000px;}
.y11e{bottom:105.480000px;}
.yf5{bottom:105.696000px;}
.y13d{bottom:110.556000px;}
.y39{bottom:110.916000px;}
.y97{bottom:114.336000px;}
.yff{bottom:114.696000px;}
.ya9{bottom:115.200000px;}
.yb6{bottom:115.245000px;}
.y73{bottom:116.676000px;}
.ya2{bottom:125.100000px;}
.yca{bottom:125.130000px;}
.ye1{bottom:125.136000px;}
.y117{bottom:125.145000px;}
.ybb{bottom:125.325000px;}
.yf4{bottom:125.676000px;}
.y13c{bottom:130.536000px;}
.y38{bottom:130.716000px;}
.y96{bottom:134.316000px;}
.yfe{bottom:134.676000px;}
.ya8{bottom:135.000000px;}
.y119{bottom:135.045000px;}
.yb5{bottom:135.225000px;}
.y15b{bottom:136.116000px;}
.y72{bottom:136.476000px;}
.yce{bottom:144.930000px;}
.yaf{bottom:145.080000px;}
.ye0{bottom:145.116000px;}
.yc1{bottom:145.125000px;}
.yf3{bottom:145.476000px;}
.y13b{bottom:150.330000px;}
.y37{bottom:150.690000px;}
.y95{bottom:154.470000px;}
.y118{bottom:155.025000px;}
.y71{bottom:156.270000px;}
.ydf{bottom:164.910000px;}
.y116{bottom:164.925000px;}
.yf2{bottom:165.270000px;}
.y13a{bottom:170.130000px;}
.y36{bottom:170.490000px;}
.y94{bottom:174.270000px;}
.y70{bottom:176.070000px;}
.y115{bottom:178.590000px;}
.yde{bottom:184.710000px;}
.yf1{bottom:185.070000px;}
.y139{bottom:189.930000px;}
.y35{bottom:190.290000px;}
.y93{bottom:194.070000px;}
.y6f{bottom:195.870000px;}
.ydd{bottom:204.510000px;}
.yf0{bottom:204.870000px;}
.y138{bottom:209.730000px;}
.y34{bottom:210.090000px;}
.y92{bottom:213.870000px;}
.y141{bottom:215.490000px;}
.y6e{bottom:215.850000px;}
.ydc{bottom:224.310000px;}
.yef{bottom:224.850000px;}
.y137{bottom:229.710000px;}
.y33{bottom:229.890000px;}
.y91{bottom:233.850000px;}
.y140{bottom:235.290000px;}
.y6d{bottom:235.650000px;}
.ydb{bottom:244.290000px;}
.yee{bottom:244.650000px;}
.y136{bottom:249.510000px;}
.y32{bottom:249.870000px;}
.y90{bottom:253.650000px;}
.y6c{bottom:255.450000px;}
.yda{bottom:264.090000px;}
.yed{bottom:264.450000px;}
.y135{bottom:269.310000px;}
.y31{bottom:269.670000px;}
.y8f{bottom:273.495000px;}
.y6b{bottom:275.295000px;}
.yd9{bottom:283.935000px;}
.yec{bottom:284.295000px;}
.y134{bottom:289.155000px;}
.y30{bottom:289.515000px;}
.y8e{bottom:293.295000px;}
.y110{bottom:294.735000px;}
.y6a{bottom:295.095000px;}
.yd8{bottom:303.735000px;}
.yeb{bottom:304.095000px;}
.y133{bottom:308.955000px;}
.y2f{bottom:309.315000px;}
.y8d{bottom:313.095000px;}
.y69{bottom:314.715000px;}
.y15a{bottom:315.075000px;}
.yd7{bottom:323.535000px;}
.yea{bottom:324.075000px;}
.y132{bottom:328.935000px;}
.y2e{bottom:329.115000px;}
.y8c{bottom:333.075000px;}
.y159{bottom:334.875000px;}
.yd6{bottom:343.515000px;}
.y68{bottom:343.875000px;}
.y131{bottom:348.735000px;}
.y2d{bottom:349.095000px;}
.y8b{bottom:352.875000px;}
.y158{bottom:354.675000px;}
.y113{bottom:362.415000px;}
.yd5{bottom:363.315000px;}
.y67{bottom:363.675000px;}
.y130{bottom:368.535000px;}
.y2c{bottom:368.895000px;}
.y8a{bottom:372.675000px;}
.y157{bottom:374.475000px;}
.yd4{bottom:383.115000px;}
.y66{bottom:383.475000px;}
.y12f{bottom:388.335000px;}
.y2b{bottom:388.695000px;}
.y89{bottom:392.475000px;}
.y156{bottom:394.275000px;}
.yd3{bottom:402.915000px;}
.y65{bottom:403.275000px;}
.y12e{bottom:408.135000px;}
.y2a{bottom:408.495000px;}
.y88{bottom:412.275000px;}
.y155{bottom:414.255000px;}
.yd2{bottom:422.715000px;}
.y64{bottom:423.255000px;}
.y12d{bottom:428.115000px;}
.y29{bottom:428.295000px;}
.y112{bottom:431.895000px;}
.y87{bottom:432.255000px;}
.y154{bottom:434.055000px;}
.yd1{bottom:442.695000px;}
.y63{bottom:443.055000px;}
.y12c{bottom:447.915000px;}
.y28{bottom:448.275000px;}
.y111{bottom:451.695000px;}
.y86{bottom:452.055000px;}
.y153{bottom:453.855000px;}
.yd0{bottom:462.135000px;}
.y62{bottom:462.855000px;}
.y12b{bottom:467.715000px;}
.y27{bottom:468.075000px;}
.y85{bottom:471.855000px;}
.y152{bottom:473.655000px;}
.ycf{bottom:482.295000px;}
.y61{bottom:482.655000px;}
.y12a{bottom:487.515000px;}
.y26{bottom:487.875000px;}
.y84{bottom:491.655000px;}
.y151{bottom:493.455000px;}
.yc7{bottom:500.115000px;}
.y60{bottom:502.455000px;}
.y25{bottom:507.315000px;}
.y3c{bottom:507.675000px;}
.y83{bottom:511.455000px;}
.y150{bottom:513.435000px;}
.y5f{bottom:522.435000px;}
.y24{bottom:527.115000px;}
.y3b{bottom:527.475000px;}
.y82{bottom:531.435000px;}
.y14f{bottom:533.235000px;}
.y5e{bottom:542.235000px;}
.y129{bottom:547.095000px;}
.y23{bottom:547.455000px;}
.y143{bottom:550.875000px;}
.y81{bottom:551.235000px;}
.y14e{bottom:553.035000px;}
.y5d{bottom:562.065000px;}
.y128{bottom:566.925000px;}
.y22{bottom:567.285000px;}
.y142{bottom:570.705000px;}
.y80{bottom:571.065000px;}
.y14d{bottom:572.865000px;}
.y5c{bottom:581.865000px;}
.y127{bottom:586.725000px;}
.y21{bottom:587.085000px;}
.y7f{bottom:590.865000px;}
.y14c{bottom:592.665000px;}
.y5b{bottom:601.665000px;}
.y126{bottom:606.525000px;}
.y20{bottom:609.225000px;}
.y7e{bottom:610.665000px;}
.y14b{bottom:612.645000px;}
.y5a{bottom:621.645000px;}
.y125{bottom:626.325000px;}
.y1f{bottom:629.025000px;}
.y7d{bottom:630.645000px;}
.y14a{bottom:632.445000px;}
.y59{bottom:641.445000px;}
.y124{bottom:645.945000px;}
.y1e{bottom:648.825000px;}
.y7c{bottom:650.445000px;}
.y149{bottom:651.885000px;}
.y58{bottom:661.245000px;}
.yc2{bottom:664.125000px;}
.y123{bottom:665.745000px;}
.y1d{bottom:668.625000px;}
.y7b{bottom:670.245000px;}
.y57{bottom:681.045000px;}
.y122{bottom:685.905000px;}
.y1c{bottom:688.425000px;}
.y7a{bottom:690.045000px;}
.y56{bottom:700.485000px;}
.ye9{bottom:700.845000px;}
.y121{bottom:703.725000px;}
.y1b{bottom:708.405000px;}
.y79{bottom:709.845000px;}
.yf9{bottom:720.465000px;}
.ye8{bottom:720.825000px;}
.y1a{bottom:728.205000px;}
.yfd{bottom:729.465000px;}
.y55{bottom:729.825000px;}
.ye7{bottom:740.625000px;}
.y19{bottom:748.005000px;}
.yfc{bottom:749.265000px;}
.y54{bottom:749.625000px;}
.ye6{bottom:760.425000px;}
.y18{bottom:767.805000px;}
.yfb{bottom:769.065000px;}
.y53{bottom:769.425000px;}
.ye5{bottom:779.865000px;}
.y10f{bottom:780.225000px;}
.y17{bottom:787.605000px;}
.yfa{bottom:788.865000px;}
.y52{bottom:789.225000px;}
.ye4{bottom:799.665000px;}
.y10e{bottom:800.025000px;}
.y16{bottom:807.585000px;}
.yb1{bottom:808.125000px;}
.y51{bottom:809.025000px;}
.y10d{bottom:820.005000px;}
.y15{bottom:827.385000px;}
.y50{bottom:829.005000px;}
.y10c{bottom:839.850000px;}
.y14{bottom:847.410000px;}
.y4f{bottom:848.850000px;}
.y10b{bottom:859.650000px;}
.y120{bottom:867.750000px;}
.y4e{bottom:868.650000px;}
.y13{bottom:869.370000px;}
.y10a{bottom:879.450000px;}
.y4d{bottom:888.450000px;}
.y12{bottom:894.390000px;}
.y109{bottom:899.250000px;}
.y4c{bottom:908.250000px;}
.y11{bottom:914.190000px;}
.y108{bottom:919.230000px;}
.y4b{bottom:928.230000px;}
.y10{bottom:933.990000px;}
.y107{bottom:939.030000px;}
.yf8{bottom:947.670000px;}
.y4a{bottom:948.030000px;}
.yf{bottom:949.110000px;}
.y106{bottom:958.830000px;}
.yf7{bottom:967.470000px;}
.y49{bottom:967.830000px;}
.ye{bottom:970.170000px;}
.y9e{bottom:972.150000px;}
.y105{bottom:978.630000px;}
.yf6{bottom:987.270000px;}
.y48{bottom:987.630000px;}
.yd{bottom:993.570000px;}
.y104{bottom:998.430000px;}
.y47{bottom:1007.430000px;}
.y11d{bottom:1011.750000px;}
.y13f{bottom:1018.050000px;}
.y103{bottom:1018.410000px;}
.yc{bottom:1025.250000px;}
.y46{bottom:1027.410000px;}
.y102{bottom:1038.210000px;}
.y78{bottom:1046.850000px;}
.y45{bottom:1047.210000px;}
.y5{bottom:1054.230000px;}
.y101{bottom:1057.650000px;}
.y148{bottom:1058.010000px;}
.y77{bottom:1066.650000px;}
.y44{bottom:1067.010000px;}
.y147{bottom:1077.810000px;}
.y76{bottom:1086.450000px;}
.y43{bottom:1086.810000px;}
.y4{bottom:1088.070000px;}
.y146{bottom:1097.610000px;}
.y42{bottom:1106.610000px;}
.y145{bottom:1117.590000px;}
.y3{bottom:1119.030000px;}
.y41{bottom:1126.620000px;}
.y98{bottom:1136.160000px;}
.y144{bottom:1137.060000px;}
.y40{bottom:1146.420000px;}
.y2{bottom:1149.840000px;}
.y3f{bottom:1166.220000px;}
.y1{bottom:1181.700000px;}
.y3e{bottom:1185.660000px;}
.y75{bottom:1186.020000px;}
.y3d{bottom:1215.180000px;}
.h4{height:21.780000px;}
.h5{height:29.464453px;}
.hd{height:37.771172px;}
.h7{height:39.183750px;}
.h19{height:41.726953px;}
.hf{height:42.164648px;}
.h6{height:46.736719px;}
.he{height:58.651172px;}
.h10{height:59.400000px;}
.h14{height:59.580000px;}
.hb{height:60.226875px;}
.h18{height:61.423863px;}
.hc{height:65.846250px;}
.h3{height:66.757500px;}
.h9{height:67.565039px;}
.h8{height:74.004654px;}
.h2{height:78.367500px;}
.h16{height:79.380000px;}
.ha{height:96.508125px;}
.h17{height:119.196000px;}
.h12{height:138.780000px;}
.h13{height:158.610000px;}
.h11{height:158.790000px;}
.h15{height:178.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w9{width:75.996000px;}
.wc{width:76.176000px;}
.wa{width:81.000000px;}
.w8{width:83.700000px;}
.w7{width:84.816000px;}
.w5{width:89.496000px;}
.wd{width:89.676000px;}
.w6{width:91.800000px;}
.wb{width:103.140000px;}
.w4{width:719.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:1.080000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.xf{left:57.420000px;}
.x1a{left:60.839987px;}
.x2{left:62.100000px;}
.xe{left:64.799987px;}
.x1b{left:87.839987px;}
.x4{left:118.296000px;}
.x14{left:136.476000px;}
.x11{left:149.796000px;}
.xa{left:172.469987px;}
.x8{left:221.079000px;}
.x7{left:226.119000px;}
.x12{left:244.650000px;}
.x9{left:294.329987px;}
.x15{left:313.095000px;}
.x13{left:332.535000px;}
.xb{left:359.534987px;}
.xc{left:387.794987px;}
.x6{left:429.009000px;}
.x5{left:442.509000px;}
.xd{left:473.474987px;}
.x16{left:476.895000px;}
.x1d{left:480.314987px;}
.x1c{left:507.344987px;}
.x17{left:555.945000px;}
.x18{left:640.005000px;}
.x19{left:732.570000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1c{letter-spacing:-2.378667pt;}
.ls16{letter-spacing:-1.050667pt;}
.ls1b{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.592000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.367467pt;}
.lsf{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.136533pt;}
.ls1a{letter-spacing:0.138667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.233067pt;}
.ls13{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.456533pt;}
.ls1{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls10{letter-spacing:40.912640pt;}
.ls11{letter-spacing:41.019307pt;}
.ws0{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.416533pt;}
.ws5{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.wsf{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.688000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1704.053760pt;}
._3{margin-left:-1412.375040pt;}
._4{margin-left:-1040.837333pt;}
._5{margin-left:-988.124160pt;}
._66{margin-left:-12.900693pt;}
._7{margin-left:-7.920000pt;}
._68{margin-left:-6.965120pt;}
._23{margin-left:-5.944320pt;}
._4a{margin-left:-4.775680pt;}
._6{margin-left:-3.709440pt;}
._8{margin-left:-2.018560pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.175040pt;}
._10{width:2.116480pt;}
._f{width:3.134080pt;}
._a{width:4.725760pt;}
._9{width:5.680640pt;}
._b{width:6.643200pt;}
._11{width:7.546667pt;}
._12{width:8.924160pt;}
._e{width:10.139520pt;}
._c{width:11.155200pt;}
._d{width:12.202880pt;}
._17{width:14.183040pt;}
._16{width:15.139200pt;}
._27{width:16.892160pt;}
._1e{width:18.364800pt;}
._1d{width:19.388800pt;}
._1c{width:20.557440pt;}
._13{width:21.719680pt;}
._29{width:23.213440pt;}
._40{width:24.116480pt;}
._2a{width:25.013120pt;}
._25{width:25.922560pt;}
._18{width:26.931840pt;}
._1f{width:27.888000pt;}
._20{width:28.791040pt;}
._15{width:30.423040pt;}
._28{width:31.837440pt;}
._30{width:32.828160pt;}
._2f{width:33.837440pt;}
._21{width:35.271680pt;}
._22{width:36.805760pt;}
._26{width:37.827840pt;}
._2b{width:39.296000pt;}
._3c{width:40.689920pt;}
._3d{width:41.604907pt;}
._14{width:43.505280pt;}
._1b{width:44.909227pt;}
._2d{width:46.214400pt;}
._2e{width:47.315840pt;}
._31{width:49.029760pt;}
._19{width:49.985920pt;}
._1a{width:51.035520pt;}
._2c{width:52.176640pt;}
._41{width:53.951787pt;}
._6a{width:55.085440pt;}
._47{width:55.982080pt;}
._35{width:56.944640pt;}
._5a{width:58.062080pt;}
._49{width:59.175680pt;}
._3a{width:60.663040pt;}
._36{width:62.097280pt;}
._6f{width:63.045120pt;}
._34{width:64.009600pt;}
._3f{width:65.324800pt;}
._48{width:66.931200pt;}
._5e{width:68.961067pt;}
._33{width:70.384000pt;}
._3e{width:73.040000pt;}
._46{width:74.514560pt;}
._57{width:76.280320pt;}
._56{width:77.183360pt;}
._4e{width:78.292480pt;}
._4d{width:79.520640pt;}
._4f{width:82.070400pt;}
._38{width:86.585600pt;}
._43{width:88.551040pt;}
._37{width:94.819200pt;}
._65{width:96.572160pt;}
._32{width:98.909440pt;}
._39{width:106.664960pt;}
._45{width:107.992960pt;}
._44{width:110.117760pt;}
._42{width:113.251840pt;}
._59{width:118.291840pt;}
._58{width:120.051200pt;}
._50{width:125.297280pt;}
._52{width:129.805227pt;}
._61{width:143.105280pt;}
._53{width:144.904960pt;}
._55{width:149.152000pt;}
._54{width:150.488960pt;}
._62{width:151.863680pt;}
._63{width:154.339840pt;}
._64{width:155.793067pt;}
._4b{width:157.394560pt;}
._3b{width:159.253760pt;}
._6e{width:161.797120pt;}
._6d{width:163.131520pt;}
._69{width:168.921600pt;}
._70{width:187.301120pt;}
._5d{width:210.408320pt;}
._5c{width:211.630080pt;}
._67{width:214.332800pt;}
._6b{width:278.667520pt;}
._6c{width:279.625600pt;}
._5f{width:282.206080pt;}
._60{width:283.278507pt;}
._51{width:295.645440pt;}
._5b{width:300.659200pt;}
._24{width:710.634667pt;}
._4c{width:864.581120pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:5.120000pt;}
.yb0{bottom:5.440000pt;}
.y11f{bottom:5.600000pt;}
.y8{bottom:5.760000pt;}
.y7{bottom:6.080000pt;}
.ya{bottom:10.400000pt;}
.y9{bottom:11.040000pt;}
.y9a{bottom:13.920000pt;}
.yae{bottom:14.240000pt;}
.y9c{bottom:22.720000pt;}
.ya7{bottom:23.040000pt;}
.yc0{bottom:23.200000pt;}
.y99{bottom:31.520000pt;}
.yad{bottom:31.840000pt;}
.y11b{bottom:32.000000pt;}
.yba{bottom:32.040000pt;}
.yb{bottom:32.352000pt;}
.y9b{bottom:40.320000pt;}
.y114{bottom:40.480000pt;}
.yc6{bottom:40.640000pt;}
.ya6{bottom:40.800000pt;}
.ybf{bottom:40.840000pt;}
.y6{bottom:47.072000pt;}
.yc3{bottom:49.120000pt;}
.ya1{bottom:49.280000pt;}
.yb4{bottom:49.320000pt;}
.yc4{bottom:49.440000pt;}
.yac{bottom:49.600000pt;}
.yb9{bottom:49.640000pt;}
.yc5{bottom:58.240000pt;}
.y11c{bottom:58.394667pt;}
.ya5{bottom:58.400000pt;}
.ycd{bottom:58.426667pt;}
.ybe{bottom:58.440000pt;}
.ya0{bottom:66.880000pt;}
.yc9{bottom:66.906667pt;}
.yb3{bottom:66.920000pt;}
.yab{bottom:67.200000pt;}
.yb8{bottom:67.240000pt;}
.ya4{bottom:76.000000pt;}
.ycc{bottom:76.026667pt;}
.ye3{bottom:76.032000pt;}
.ybd{bottom:76.040000pt;}
.y13e{bottom:80.672000pt;}
.y3a{bottom:80.992000pt;}
.y11a{bottom:83.552000pt;}
.y100{bottom:84.352000pt;}
.y9f{bottom:84.480000pt;}
.yc8{bottom:84.506667pt;}
.yb2{bottom:84.520000pt;}
.yaa{bottom:84.800000pt;}
.yb7{bottom:84.840000pt;}
.y74{bottom:85.952000pt;}
.ya3{bottom:93.600000pt;}
.ycb{bottom:93.626667pt;}
.ye2{bottom:93.632000pt;}
.ybc{bottom:93.640000pt;}
.y11e{bottom:93.760000pt;}
.yf5{bottom:93.952000pt;}
.y13d{bottom:98.272000pt;}
.y39{bottom:98.592000pt;}
.y97{bottom:101.632000pt;}
.yff{bottom:101.952000pt;}
.ya9{bottom:102.400000pt;}
.yb6{bottom:102.440000pt;}
.y73{bottom:103.712000pt;}
.ya2{bottom:111.200000pt;}
.yca{bottom:111.226667pt;}
.ye1{bottom:111.232000pt;}
.y117{bottom:111.240000pt;}
.ybb{bottom:111.400000pt;}
.yf4{bottom:111.712000pt;}
.y13c{bottom:116.032000pt;}
.y38{bottom:116.192000pt;}
.y96{bottom:119.392000pt;}
.yfe{bottom:119.712000pt;}
.ya8{bottom:120.000000pt;}
.y119{bottom:120.040000pt;}
.yb5{bottom:120.200000pt;}
.y15b{bottom:120.992000pt;}
.y72{bottom:121.312000pt;}
.yce{bottom:128.826667pt;}
.yaf{bottom:128.960000pt;}
.ye0{bottom:128.992000pt;}
.yc1{bottom:129.000000pt;}
.yf3{bottom:129.312000pt;}
.y13b{bottom:133.626667pt;}
.y37{bottom:133.946667pt;}
.y95{bottom:137.306667pt;}
.y118{bottom:137.800000pt;}
.y71{bottom:138.906667pt;}
.ydf{bottom:146.586667pt;}
.y116{bottom:146.600000pt;}
.yf2{bottom:146.906667pt;}
.y13a{bottom:151.226667pt;}
.y36{bottom:151.546667pt;}
.y94{bottom:154.906667pt;}
.y70{bottom:156.506667pt;}
.y115{bottom:158.746667pt;}
.yde{bottom:164.186667pt;}
.yf1{bottom:164.506667pt;}
.y139{bottom:168.826667pt;}
.y35{bottom:169.146667pt;}
.y93{bottom:172.506667pt;}
.y6f{bottom:174.106667pt;}
.ydd{bottom:181.786667pt;}
.yf0{bottom:182.106667pt;}
.y138{bottom:186.426667pt;}
.y34{bottom:186.746667pt;}
.y92{bottom:190.106667pt;}
.y141{bottom:191.546667pt;}
.y6e{bottom:191.866667pt;}
.ydc{bottom:199.386667pt;}
.yef{bottom:199.866667pt;}
.y137{bottom:204.186667pt;}
.y33{bottom:204.346667pt;}
.y91{bottom:207.866667pt;}
.y140{bottom:209.146667pt;}
.y6d{bottom:209.466667pt;}
.ydb{bottom:217.146667pt;}
.yee{bottom:217.466667pt;}
.y136{bottom:221.786667pt;}
.y32{bottom:222.106667pt;}
.y90{bottom:225.466667pt;}
.y6c{bottom:227.066667pt;}
.yda{bottom:234.746667pt;}
.yed{bottom:235.066667pt;}
.y135{bottom:239.386667pt;}
.y31{bottom:239.706667pt;}
.y8f{bottom:243.106667pt;}
.y6b{bottom:244.706667pt;}
.yd9{bottom:252.386667pt;}
.yec{bottom:252.706667pt;}
.y134{bottom:257.026667pt;}
.y30{bottom:257.346667pt;}
.y8e{bottom:260.706667pt;}
.y110{bottom:261.986667pt;}
.y6a{bottom:262.306667pt;}
.yd8{bottom:269.986667pt;}
.yeb{bottom:270.306667pt;}
.y133{bottom:274.626667pt;}
.y2f{bottom:274.946667pt;}
.y8d{bottom:278.306667pt;}
.y69{bottom:279.746667pt;}
.y15a{bottom:280.066667pt;}
.yd7{bottom:287.586667pt;}
.yea{bottom:288.066667pt;}
.y132{bottom:292.386667pt;}
.y2e{bottom:292.546667pt;}
.y8c{bottom:296.066667pt;}
.y159{bottom:297.666667pt;}
.yd6{bottom:305.346667pt;}
.y68{bottom:305.666667pt;}
.y131{bottom:309.986667pt;}
.y2d{bottom:310.306667pt;}
.y8b{bottom:313.666667pt;}
.y158{bottom:315.266667pt;}
.y113{bottom:322.146667pt;}
.yd5{bottom:322.946667pt;}
.y67{bottom:323.266667pt;}
.y130{bottom:327.586667pt;}
.y2c{bottom:327.906667pt;}
.y8a{bottom:331.266667pt;}
.y157{bottom:332.866667pt;}
.yd4{bottom:340.546667pt;}
.y66{bottom:340.866667pt;}
.y12f{bottom:345.186667pt;}
.y2b{bottom:345.506667pt;}
.y89{bottom:348.866667pt;}
.y156{bottom:350.466667pt;}
.yd3{bottom:358.146667pt;}
.y65{bottom:358.466667pt;}
.y12e{bottom:362.786667pt;}
.y2a{bottom:363.106667pt;}
.y88{bottom:366.466667pt;}
.y155{bottom:368.226667pt;}
.yd2{bottom:375.746667pt;}
.y64{bottom:376.226667pt;}
.y12d{bottom:380.546667pt;}
.y29{bottom:380.706667pt;}
.y112{bottom:383.906667pt;}
.y87{bottom:384.226667pt;}
.y154{bottom:385.826667pt;}
.yd1{bottom:393.506667pt;}
.y63{bottom:393.826667pt;}
.y12c{bottom:398.146667pt;}
.y28{bottom:398.466667pt;}
.y111{bottom:401.506667pt;}
.y86{bottom:401.826667pt;}
.y153{bottom:403.426667pt;}
.yd0{bottom:410.786667pt;}
.y62{bottom:411.426667pt;}
.y12b{bottom:415.746667pt;}
.y27{bottom:416.066667pt;}
.y85{bottom:419.426667pt;}
.y152{bottom:421.026667pt;}
.ycf{bottom:428.706667pt;}
.y61{bottom:429.026667pt;}
.y12a{bottom:433.346667pt;}
.y26{bottom:433.666667pt;}
.y84{bottom:437.026667pt;}
.y151{bottom:438.626667pt;}
.yc7{bottom:444.546667pt;}
.y60{bottom:446.626667pt;}
.y25{bottom:450.946667pt;}
.y3c{bottom:451.266667pt;}
.y83{bottom:454.626667pt;}
.y150{bottom:456.386667pt;}
.y5f{bottom:464.386667pt;}
.y24{bottom:468.546667pt;}
.y3b{bottom:468.866667pt;}
.y82{bottom:472.386667pt;}
.y14f{bottom:473.986667pt;}
.y5e{bottom:481.986667pt;}
.y129{bottom:486.306667pt;}
.y23{bottom:486.626667pt;}
.y143{bottom:489.666667pt;}
.y81{bottom:489.986667pt;}
.y14e{bottom:491.586667pt;}
.y5d{bottom:499.613333pt;}
.y128{bottom:503.933333pt;}
.y22{bottom:504.253333pt;}
.y142{bottom:507.293333pt;}
.y80{bottom:507.613333pt;}
.y14d{bottom:509.213333pt;}
.y5c{bottom:517.213333pt;}
.y127{bottom:521.533333pt;}
.y21{bottom:521.853333pt;}
.y7f{bottom:525.213333pt;}
.y14c{bottom:526.813333pt;}
.y5b{bottom:534.813333pt;}
.y126{bottom:539.133333pt;}
.y20{bottom:541.533333pt;}
.y7e{bottom:542.813333pt;}
.y14b{bottom:544.573333pt;}
.y5a{bottom:552.573333pt;}
.y125{bottom:556.733333pt;}
.y1f{bottom:559.133333pt;}
.y7d{bottom:560.573333pt;}
.y14a{bottom:562.173333pt;}
.y59{bottom:570.173333pt;}
.y124{bottom:574.173333pt;}
.y1e{bottom:576.733333pt;}
.y7c{bottom:578.173333pt;}
.y149{bottom:579.453333pt;}
.y58{bottom:587.773333pt;}
.yc2{bottom:590.333333pt;}
.y123{bottom:591.773333pt;}
.y1d{bottom:594.333333pt;}
.y7b{bottom:595.773333pt;}
.y57{bottom:605.373333pt;}
.y122{bottom:609.693333pt;}
.y1c{bottom:611.933333pt;}
.y7a{bottom:613.373333pt;}
.y56{bottom:622.653333pt;}
.ye9{bottom:622.973333pt;}
.y121{bottom:625.533333pt;}
.y1b{bottom:629.693333pt;}
.y79{bottom:630.973333pt;}
.yf9{bottom:640.413333pt;}
.ye8{bottom:640.733333pt;}
.y1a{bottom:647.293333pt;}
.yfd{bottom:648.413333pt;}
.y55{bottom:648.733333pt;}
.ye7{bottom:658.333333pt;}
.y19{bottom:664.893333pt;}
.yfc{bottom:666.013333pt;}
.y54{bottom:666.333333pt;}
.ye6{bottom:675.933333pt;}
.y18{bottom:682.493333pt;}
.yfb{bottom:683.613333pt;}
.y53{bottom:683.933333pt;}
.ye5{bottom:693.213333pt;}
.y10f{bottom:693.533333pt;}
.y17{bottom:700.093333pt;}
.yfa{bottom:701.213333pt;}
.y52{bottom:701.533333pt;}
.ye4{bottom:710.813333pt;}
.y10e{bottom:711.133333pt;}
.y16{bottom:717.853333pt;}
.yb1{bottom:718.333333pt;}
.y51{bottom:719.133333pt;}
.y10d{bottom:728.893333pt;}
.y15{bottom:735.453333pt;}
.y50{bottom:736.893333pt;}
.y10c{bottom:746.533333pt;}
.y14{bottom:753.253333pt;}
.y4f{bottom:754.533333pt;}
.y10b{bottom:764.133333pt;}
.y120{bottom:771.333333pt;}
.y4e{bottom:772.133333pt;}
.y13{bottom:772.773333pt;}
.y10a{bottom:781.733333pt;}
.y4d{bottom:789.733333pt;}
.y12{bottom:795.013333pt;}
.y109{bottom:799.333333pt;}
.y4c{bottom:807.333333pt;}
.y11{bottom:812.613333pt;}
.y108{bottom:817.093333pt;}
.y4b{bottom:825.093333pt;}
.y10{bottom:830.213333pt;}
.y107{bottom:834.693333pt;}
.yf8{bottom:842.373333pt;}
.y4a{bottom:842.693333pt;}
.yf{bottom:843.653333pt;}
.y106{bottom:852.293333pt;}
.yf7{bottom:859.973333pt;}
.y49{bottom:860.293333pt;}
.ye{bottom:862.373333pt;}
.y9e{bottom:864.133333pt;}
.y105{bottom:869.893333pt;}
.yf6{bottom:877.573333pt;}
.y48{bottom:877.893333pt;}
.yd{bottom:883.173333pt;}
.y104{bottom:887.493333pt;}
.y47{bottom:895.493333pt;}
.y11d{bottom:899.333333pt;}
.y13f{bottom:904.933333pt;}
.y103{bottom:905.253333pt;}
.yc{bottom:911.333333pt;}
.y46{bottom:913.253333pt;}
.y102{bottom:922.853333pt;}
.y78{bottom:930.533333pt;}
.y45{bottom:930.853333pt;}
.y5{bottom:937.093333pt;}
.y101{bottom:940.133333pt;}
.y148{bottom:940.453333pt;}
.y77{bottom:948.133333pt;}
.y44{bottom:948.453333pt;}
.y147{bottom:958.053333pt;}
.y76{bottom:965.733333pt;}
.y43{bottom:966.053333pt;}
.y4{bottom:967.173333pt;}
.y146{bottom:975.653333pt;}
.y42{bottom:983.653333pt;}
.y145{bottom:993.413333pt;}
.y3{bottom:994.693333pt;}
.y41{bottom:1001.440000pt;}
.y98{bottom:1009.920000pt;}
.y144{bottom:1010.720000pt;}
.y40{bottom:1019.040000pt;}
.y2{bottom:1022.080000pt;}
.y3f{bottom:1036.640000pt;}
.y1{bottom:1050.400000pt;}
.y3e{bottom:1053.920000pt;}
.y75{bottom:1054.240000pt;}
.y3d{bottom:1080.160000pt;}
.h4{height:19.360000pt;}
.h5{height:26.190625pt;}
.hd{height:33.574375pt;}
.h7{height:34.830000pt;}
.h19{height:37.090625pt;}
.hf{height:37.479688pt;}
.h6{height:41.543750pt;}
.he{height:52.134375pt;}
.h10{height:52.800000pt;}
.h14{height:52.960000pt;}
.hb{height:53.535000pt;}
.h18{height:54.598989pt;}
.hc{height:58.530000pt;}
.h3{height:59.340000pt;}
.h9{height:60.057813pt;}
.h8{height:65.781915pt;}
.h2{height:69.660000pt;}
.h16{height:70.560000pt;}
.ha{height:85.785000pt;}
.h17{height:105.952000pt;}
.h12{height:123.360000pt;}
.h13{height:140.986667pt;}
.h11{height:141.146667pt;}
.h15{height:158.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w9{width:67.552000pt;}
.wc{width:67.712000pt;}
.wa{width:72.000000pt;}
.w8{width:74.400000pt;}
.w7{width:75.392000pt;}
.w5{width:79.552000pt;}
.wd{width:79.712000pt;}
.w6{width:81.600000pt;}
.wb{width:91.680000pt;}
.w4{width:639.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:0.960000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.xf{left:51.040000pt;}
.x1a{left:54.079988pt;}
.x2{left:55.200000pt;}
.xe{left:57.599988pt;}
.x1b{left:78.079988pt;}
.x4{left:105.152000pt;}
.x14{left:121.312000pt;}
.x11{left:133.152000pt;}
.xa{left:153.306655pt;}
.x8{left:196.514667pt;}
.x7{left:200.994667pt;}
.x12{left:217.466667pt;}
.x9{left:261.626655pt;}
.x15{left:278.306667pt;}
.x13{left:295.586667pt;}
.xb{left:319.586655pt;}
.xc{left:344.706655pt;}
.x6{left:381.341333pt;}
.x5{left:393.341333pt;}
.xd{left:420.866655pt;}
.x16{left:423.906667pt;}
.x1d{left:426.946655pt;}
.x1c{left:450.973322pt;}
.x17{left:494.173333pt;}
.x18{left:568.893333pt;}
.x19{left:651.173333pt;}
}




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