
    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_9908a712c095a16a24f97f10.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0d62e154f89d3de460ee3d8a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_e264b01eabd5677784bb35a7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f3b798e7cea645b6dcae7c57.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_f60b73cf0050915b71675889.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b00592736e995d6aff1b4fb6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_23684236d3808d0dedfdb221.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-68.400000px;}
.v5{vertical-align:-65.520000px;}
.ve{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-61.200000px;}
.v9{vertical-align:-47.070000px;}
.v4{vertical-align:-23.760000px;}
.v7{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.vb{vertical-align:52.200000px;}
.vc{vertical-align:54.600000px;}
.va{vertical-align:61.800000px;}
.vd{vertical-align:85.560000px;}
.ls1e{letter-spacing:-1.044000px;}
.ls1a{letter-spacing:-0.972000px;}
.ls24{letter-spacing:-0.738000px;}
.ls13{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.594000px;}
.ls2a{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.220800px;}
.ls15{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.027360px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls25{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.234000px;}
.ls18{letter-spacing:0.252000px;}
.ls22{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.612000px;}
.lsf{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.738000px;}
.ls16{letter-spacing:0.792000px;}
.ls29{letter-spacing:2.988000px;}
.ls4{letter-spacing:3.780000px;}
.ls28{letter-spacing:30.348000px;}
.ls6{letter-spacing:52.560000px;}
.ls8{letter-spacing:55.620000px;}
.ls20{letter-spacing:62.820000px;}
.ls2{letter-spacing:66.420000px;}
.lse{letter-spacing:68.628000px;}
.ls0{letter-spacing:154.980000px;}
.ls21{letter-spacing:418.500000px;}
.ls1f{letter-spacing:509.340000px;}
.ls1d{letter-spacing:529.500000px;}
.ls1b{letter-spacing:538.860000px;}
.ls26{letter-spacing:1290.900000px;}
.ls7{letter-spacing:1367.340000px;}
.ls27{letter-spacing:1412.700000px;}
.ls23{letter-spacing:1497.300000px;}
.ls10{letter-spacing:1532.700000px;}
.ls1c{letter-spacing:1662.900000px;}
.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;}
}
.wsc{word-spacing:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.102200px;}
.ws6{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.238000px;}
.ws3{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.392000px;}
.ws15{word-spacing:-13.284000px;}
.ws9{word-spacing:-13.140000px;}
.wse{word-spacing:-12.780000px;}
.ws13{word-spacing:-12.528000px;}
.ws10{word-spacing:-9.792000px;}
.ws12{word-spacing:-9.252000px;}
.ws7{word-spacing:-9.000000px;}
.wsf{word-spacing:-8.280000px;}
.ws14{word-spacing:-7.956000px;}
.wsa{word-spacing:0.000000px;}
._1a{margin-left:-17.274000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._6{width:2.700000px;}
._4{width:4.374000px;}
._5{width:5.466000px;}
._a{width:6.588000px;}
._d{width:7.668000px;}
._f{width:8.807760px;}
._b{width:9.881280px;}
._c{width:11.820000px;}
._1b{width:15.264000px;}
._7{width:17.370000px;}
._8{width:18.660000px;}
._9{width:19.698000px;}
._e{width:20.723760px;}
._17{width:103.073760px;}
._18{width:105.000000px;}
._14{width:116.118000px;}
._19{width:129.918000px;}
._15{width:213.054000px;}
._16{width:231.054000px;}
._13{width:264.167760px;}
._12{width:381.948000px;}
._10{width:950.279760px;}
._11{width:2720.280000px;}
._3{width:3030.660000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yda{bottom:4.950000px;}
.ybd{bottom:6.450000px;}
.ydc{bottom:10.950000px;}
.yc9{bottom:13.500000px;}
.yc5{bottom:14.550000px;}
.yd9{bottom:20.550000px;}
.ya4{bottom:20.700000px;}
.yd1{bottom:22.500000px;}
.ycd{bottom:22.650000px;}
.yb8{bottom:24.075000px;}
.y106{bottom:30.795000px;}
.yd8{bottom:36.000000px;}
.y1{bottom:39.750000px;}
.yc1{bottom:41.400000px;}
.yd7{bottom:51.600000px;}
.ya7{bottom:54.000000px;}
.y3e{bottom:54.060000px;}
.y88{bottom:54.064500px;}
.ya6{bottom:56.250000px;}
.y3{bottom:57.960000px;}
.y84{bottom:66.060000px;}
.ya5{bottom:66.750000px;}
.y105{bottom:66.915000px;}
.yb7{bottom:71.250000px;}
.ya3{bottom:73.489500px;}
.y83{bottom:82.110000px;}
.y104{bottom:82.425000px;}
.yb6{bottom:86.730000px;}
.ya2{bottom:88.999500px;}
.y82{bottom:97.770000px;}
.y103{bottom:98.085000px;}
.y123{bottom:98.175000px;}
.y3b{bottom:100.110000px;}
.yb5{bottom:102.210000px;}
.ya1{bottom:104.479500px;}
.y124{bottom:107.179500px;}
.y81{bottom:113.250000px;}
.y102{bottom:113.565000px;}
.y3a{bottom:115.590000px;}
.yb4{bottom:117.870000px;}
.ya0{bottom:120.139500px;}
.y80{bottom:128.910000px;}
.y101{bottom:129.045000px;}
.y39{bottom:131.070000px;}
.y2{bottom:133.185000px;}
.yb3{bottom:133.350000px;}
.y9f{bottom:135.619500px;}
.y7f{bottom:144.390000px;}
.y100{bottom:144.705000px;}
.y38{bottom:146.550000px;}
.y7e{bottom:159.870000px;}
.yff{bottom:160.185000px;}
.y37{bottom:162.210000px;}
.yb2{bottom:164.130000px;}
.y9e{bottom:167.914500px;}
.y7d{bottom:175.530000px;}
.yfe{bottom:175.845000px;}
.y36{bottom:177.690000px;}
.yb1{bottom:179.970000px;}
.y9d{bottom:180.694500px;}
.y7c{bottom:190.830000px;}
.yfd{bottom:191.325000px;}
.y35{bottom:193.350000px;}
.yb0{bottom:195.630000px;}
.y7b{bottom:206.670000px;}
.yfc{bottom:206.805000px;}
.yaf{bottom:208.050000px;}
.y34{bottom:208.830000px;}
.y7a{bottom:222.330000px;}
.yfb{bottom:222.465000px;}
.y33{bottom:224.310000px;}
.y79{bottom:237.810000px;}
.yfa{bottom:237.945000px;}
.y32{bottom:239.790000px;}
.yf9{bottom:253.425000px;}
.y78{bottom:253.470000px;}
.y31{bottom:255.450000px;}
.yf8{bottom:268.905000px;}
.y77{bottom:268.950000px;}
.y30{bottom:270.930000px;}
.y76{bottom:284.430000px;}
.yf7{bottom:284.565000px;}
.y2f{bottom:286.410000px;}
.y75{bottom:299.910000px;}
.yf6{bottom:300.045000px;}
.y2e{bottom:302.070000px;}
.y74{bottom:315.570000px;}
.yf5{bottom:315.705000px;}
.y2d{bottom:317.550000px;}
.y73{bottom:331.050000px;}
.yf4{bottom:331.185000px;}
.y2c{bottom:333.030000px;}
.y72{bottom:346.575000px;}
.yf3{bottom:346.890000px;}
.y2b{bottom:348.555000px;}
.y71{bottom:362.235000px;}
.yf2{bottom:362.370000px;}
.y2a{bottom:364.215000px;}
.y70{bottom:377.715000px;}
.yf1{bottom:377.850000px;}
.y29{bottom:379.695000px;}
.y6f{bottom:393.195000px;}
.yf0{bottom:393.330000px;}
.y28{bottom:395.355000px;}
.y6e{bottom:408.855000px;}
.yef{bottom:408.990000px;}
.y27{bottom:410.835000px;}
.y9c{bottom:418.954500px;}
.y6d{bottom:424.335000px;}
.yee{bottom:424.470000px;}
.y9b{bottom:434.614500px;}
.y6c{bottom:439.815000px;}
.yed{bottom:439.950000px;}
.y26{bottom:441.615000px;}
.y9a{bottom:450.094500px;}
.y6b{bottom:455.475000px;}
.yec{bottom:455.610000px;}
.y99{bottom:465.754500px;}
.y6a{bottom:470.955000px;}
.yeb{bottom:471.090000px;}
.y25{bottom:472.755000px;}
.y98{bottom:478.174500px;}
.y69{bottom:486.255000px;}
.yea{bottom:486.750000px;}
.y24{bottom:490.935000px;}
.yae{bottom:492.300000px;}
.y68{bottom:501.915000px;}
.ye9{bottom:502.230000px;}
.yad{bottom:508.140000px;}
.ye8{bottom:517.710000px;}
.y67{bottom:517.755000px;}
.y23{bottom:519.915000px;}
.yac{bottom:520.380000px;}
.ye7{bottom:533.190000px;}
.y66{bottom:533.235000px;}
.y22{bottom:538.095000px;}
.ye6{bottom:548.850000px;}
.y65{bottom:548.895000px;}
.y21{bottom:553.575000px;}
.ye5{bottom:564.330000px;}
.y64{bottom:564.375000px;}
.y20{bottom:569.055000px;}
.ye4{bottom:579.810000px;}
.y63{bottom:580.035000px;}
.y1f{bottom:584.715000px;}
.ye3{bottom:595.470000px;}
.y62{bottom:595.515000px;}
.y1e{bottom:600.195000px;}
.ye2{bottom:610.980000px;}
.y61{bottom:611.025000px;}
.y1d{bottom:615.705000px;}
.ye1{bottom:626.460000px;}
.y60{bottom:626.685000px;}
.y1c{bottom:631.185000px;}
.ye0{bottom:641.940000px;}
.y5f{bottom:642.165000px;}
.y1b{bottom:646.845000px;}
.y5e{bottom:657.465000px;}
.ydf{bottom:657.600000px;}
.y1a{bottom:662.325000px;}
.yde{bottom:672.900000px;}
.y122{bottom:672.975000px;}
.y5d{bottom:673.485000px;}
.y19{bottom:677.805000px;}
.y121{bottom:688.455000px;}
.y5c{bottom:688.965000px;}
.y18{bottom:693.465000px;}
.y120{bottom:704.115000px;}
.ydd{bottom:704.400000px;}
.y5b{bottom:704.445000px;}
.y97{bottom:713.224500px;}
.ydb{bottom:714.000000px;}
.y17{bottom:715.605000px;}
.yd6{bottom:717.450000px;}
.y11f{bottom:719.775000px;}
.y5a{bottom:719.925000px;}
.y11e{bottom:735.255000px;}
.y59{bottom:735.585000px;}
.y16{bottom:742.425000px;}
.y96{bottom:744.004500px;}
.y11d{bottom:750.915000px;}
.y58{bottom:751.065000px;}
.y95{bottom:756.604500px;}
.y15{bottom:757.905000px;}
.y57{bottom:766.365000px;}
.y11c{bottom:766.575000px;}
.y14{bottom:773.385000px;}
.y11b{bottom:782.055000px;}
.y56{bottom:782.205000px;}
.yd5{bottom:783.600000px;}
.yd4{bottom:790.650000px;}
.yab{bottom:792.030000px;}
.y55{bottom:797.685000px;}
.y11a{bottom:797.715000px;}
.yd3{bottom:806.100000px;}
.y13{bottom:808.125000px;}
.y54{bottom:813.345000px;}
.y119{bottom:813.375000px;}
.yd2{bottom:821.700000px;}
.yaa{bottom:823.530000px;}
.y53{bottom:828.825000px;}
.y118{bottom:828.855000px;}
.y12{bottom:829.545000px;}
.ya9{bottom:835.950000px;}
.yd0{bottom:838.350000px;}
.y52{bottom:844.125000px;}
.y117{bottom:844.515000px;}
.ycf{bottom:853.200000px;}
.y11{bottom:858.345000px;}
.y116{bottom:859.815000px;}
.y51{bottom:859.965000px;}
.yce{bottom:868.800000px;}
.y50{bottom:875.490000px;}
.y115{bottom:891.360000px;}
.y4f{bottom:892.230000px;}
.ycc{bottom:893.100000px;}
.y10{bottom:893.310000px;}
.y114{bottom:906.840000px;}
.y4e{bottom:907.710000px;}
.ycb{bottom:907.950000px;}
.y4d{bottom:923.190000px;}
.yca{bottom:923.550000px;}
.yf{bottom:932.370000px;}
.y113{bottom:938.700000px;}
.y4c{bottom:939.750000px;}
.yc8{bottom:948.000000px;}
.yc7{bottom:953.850000px;}
.y4b{bottom:956.130000px;}
.ye{bottom:956.670000px;}
.y112{bottom:956.700000px;}
.yc6{bottom:969.300000px;}
.y4a{bottom:971.610000px;}
.yc4{bottom:984.750000px;}
.y111{bottom:987.480000px;}
.y49{bottom:987.630000px;}
.yc3{bottom:991.650000px;}
.y94{bottom:1000.804500px;}
.y48{bottom:1002.930000px;}
.y110{bottom:1002.960000px;}
.yc2{bottom:1007.100000px;}
.yd{bottom:1016.070000px;}
.y10f{bottom:1018.620000px;}
.y93{bottom:1021.144500px;}
.yc0{bottom:1023.600000px;}
.y10e{bottom:1033.920000px;}
.ya{bottom:1034.070000px;}
.y47{bottom:1034.250000px;}
.y92{bottom:1036.624500px;}
.yc{bottom:1039.290000px;}
.y46{bottom:1049.910000px;}
.y91{bottom:1052.284500px;}
.y9{bottom:1057.290000px;}
.ybf{bottom:1057.350000px;}
.y45{bottom:1065.390000px;}
.y10d{bottom:1065.420000px;}
.y90{bottom:1067.764500px;}
.yb{bottom:1071.330000px;}
.ybe{bottom:1072.800000px;}
.yba{bottom:1076.550000px;}
.y10c{bottom:1080.900000px;}
.y44{bottom:1081.050000px;}
.y8f{bottom:1083.244500px;}
.y8{bottom:1086.630000px;}
.y10b{bottom:1096.380000px;}
.y43{bottom:1096.530000px;}
.y8e{bottom:1098.724500px;}
.y7{bottom:1105.710000px;}
.y42{bottom:1112.010000px;}
.y10a{bottom:1112.040000px;}
.y8d{bottom:1114.384500px;}
.ybc{bottom:1116.750000px;}
.y6{bottom:1122.990000px;}
.ybb{bottom:1123.200000px;}
.y41{bottom:1127.490000px;}
.y109{bottom:1127.520000px;}
.y8c{bottom:1129.684500px;}
.y5{bottom:1140.300000px;}
.y108{bottom:1142.850000px;}
.ya8{bottom:1143.150000px;}
.y40{bottom:1143.180000px;}
.y8b{bottom:1145.164500px;}
.y4{bottom:1158.300000px;}
.y107{bottom:1158.510000px;}
.y3f{bottom:1158.660000px;}
.yb9{bottom:1158.960000px;}
.y8a{bottom:1160.854500px;}
.y3d{bottom:1175.160000px;}
.y89{bottom:1176.514500px;}
.y87{bottom:1193.164500px;}
.y3c{bottom:1193.700000px;}
.y85{bottom:1207.200000px;}
.y86{bottom:1212.814500px;}
.h16{height:22.530000px;}
.hc{height:35.314453px;}
.h26{height:35.332031px;}
.h1c{height:36.000000px;}
.h25{height:37.520508px;}
.hf{height:38.158594px;}
.h1a{height:38.160000px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.hb{height:52.971680px;}
.h11{height:52.998047px;}
.h1e{height:54.000000px;}
.h21{height:54.030000px;}
.hd{height:54.421875px;}
.h13{height:55.503491px;}
.h7{height:55.796836px;}
.h12{height:55.824609px;}
.h8{height:58.621992px;}
.h24{height:58.732031px;}
.h14{height:59.092031px;}
.h1f{height:59.332031px;}
.h3{height:60.226875px;}
.he{height:62.153438px;}
.h15{height:64.978594px;}
.h1{height:65.010937px;}
.h23{height:65.520000px;}
.h4{height:66.757500px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h1b{height:83.598047px;}
.h9{height:84.898125px;}
.h19{height:89.932031px;}
.h1d{height:90.532031px;}
.h18{height:92.340000px;}
.h20{height:115.398047px;}
.h17{height:116.221875px;}
.h22{height:120.892031px;}
.h0{height:1263.000000px;}
.w1{width:148.515000px;}
.w2{width:493.050000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x33{left:7.650000px;}
.x2b{left:18.900000px;}
.x4{left:30.150000px;}
.x2e{left:41.400000px;}
.x1e{left:44.280000px;}
.xd{left:46.950000px;}
.x16{left:48.351750px;}
.xf{left:50.283000px;}
.x13{left:52.605000px;}
.xa{left:54.870000px;}
.x14{left:56.025000px;}
.x27{left:60.150000px;}
.x17{left:69.840750px;}
.x11{left:74.265000px;}
.x12{left:101.340000px;}
.x35{left:109.050000px;}
.x22{left:178.245000px;}
.x23{left:194.925000px;}
.x32{left:206.550000px;}
.x34{left:213.300000px;}
.x2d{left:214.350000px;}
.x24{left:227.700000px;}
.x2c{left:230.400000px;}
.x31{left:233.700000px;}
.x36{left:235.800000px;}
.x1b{left:238.155750px;}
.x7{left:244.170000px;}
.x30{left:249.450000px;}
.x5{left:270.300000px;}
.x6{left:290.610000px;}
.xb{left:299.940000px;}
.x2f{left:301.050000px;}
.x28{left:311.700000px;}
.x29{left:319.050000px;}
.x25{left:326.100000px;}
.xc{left:327.780000px;}
.x10{left:355.695000px;}
.x3c{left:370.455000px;}
.x37{left:371.550000px;}
.x38{left:376.050000px;}
.x2a{left:401.850000px;}
.x3b{left:403.425000px;}
.xe{left:412.659000px;}
.x39{left:414.750000px;}
.x15{left:419.361750px;}
.x1{left:430.650000px;}
.x3d{left:438.195000px;}
.x1c{left:442.530750px;}
.x3a{left:447.525000px;}
.x20{left:449.295000px;}
.x3{left:455.550000px;}
.x19{left:471.705750px;}
.x8{left:478.965000px;}
.x9{left:506.580000px;}
.x26{left:551.100000px;}
.x1d{left:649.350750px;}
.x18{left:668.640750px;}
.x1a{left:674.205750px;}
.x21{left:675.945000px;}
.x1f{left:680.940000px;}
.x2{left:978.300000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v5{vertical-align:-58.240000pt;}
.ve{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-54.400000pt;}
.v9{vertical-align:-41.840000pt;}
.v4{vertical-align:-21.120000pt;}
.v7{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.vb{vertical-align:46.400000pt;}
.vc{vertical-align:48.533333pt;}
.va{vertical-align:54.933333pt;}
.vd{vertical-align:76.053333pt;}
.ls1e{letter-spacing:-0.928000pt;}
.ls1a{letter-spacing:-0.864000pt;}
.ls24{letter-spacing:-0.656000pt;}
.ls13{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.528000pt;}
.ls2a{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.196267pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.024320pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls25{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.208000pt;}
.ls18{letter-spacing:0.224000pt;}
.ls22{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.544000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.656000pt;}
.ls16{letter-spacing:0.704000pt;}
.ls29{letter-spacing:2.656000pt;}
.ls4{letter-spacing:3.360000pt;}
.ls28{letter-spacing:26.976000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls8{letter-spacing:49.440000pt;}
.ls20{letter-spacing:55.840000pt;}
.ls2{letter-spacing:59.040000pt;}
.lse{letter-spacing:61.002667pt;}
.ls0{letter-spacing:137.760000pt;}
.ls21{letter-spacing:372.000000pt;}
.ls1f{letter-spacing:452.746667pt;}
.ls1d{letter-spacing:470.666667pt;}
.ls1b{letter-spacing:478.986667pt;}
.ls26{letter-spacing:1147.466667pt;}
.ls7{letter-spacing:1215.413333pt;}
.ls27{letter-spacing:1255.733333pt;}
.ls23{letter-spacing:1330.933333pt;}
.ls10{letter-spacing:1362.400000pt;}
.ls1c{letter-spacing:1478.133333pt;}
.wsc{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.313067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.656000pt;}
.ws3{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.904000pt;}
.ws15{word-spacing:-11.808000pt;}
.ws9{word-spacing:-11.680000pt;}
.wse{word-spacing:-11.360000pt;}
.ws13{word-spacing:-11.136000pt;}
.ws10{word-spacing:-8.704000pt;}
.ws12{word-spacing:-8.224000pt;}
.ws7{word-spacing:-8.000000pt;}
.wsf{word-spacing:-7.360000pt;}
.ws14{word-spacing:-7.072000pt;}
.wsa{word-spacing:0.000000pt;}
._1a{margin-left:-15.354667pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._6{width:2.400000pt;}
._4{width:3.888000pt;}
._5{width:4.858667pt;}
._a{width:5.856000pt;}
._d{width:6.816000pt;}
._f{width:7.829120pt;}
._b{width:8.783360pt;}
._c{width:10.506667pt;}
._1b{width:13.568000pt;}
._7{width:15.440000pt;}
._8{width:16.586667pt;}
._9{width:17.509333pt;}
._e{width:18.421120pt;}
._17{width:91.621120pt;}
._18{width:93.333333pt;}
._14{width:103.216000pt;}
._19{width:115.482667pt;}
._15{width:189.381333pt;}
._16{width:205.381333pt;}
._13{width:234.815787pt;}
._12{width:339.509333pt;}
._10{width:844.693120pt;}
._11{width:2418.026667pt;}
._3{width:2693.920000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:4.400000pt;}
.ybd{bottom:5.733333pt;}
.ydc{bottom:9.733333pt;}
.yc9{bottom:12.000000pt;}
.yc5{bottom:12.933333pt;}
.yd9{bottom:18.266667pt;}
.ya4{bottom:18.400000pt;}
.yd1{bottom:20.000000pt;}
.ycd{bottom:20.133333pt;}
.yb8{bottom:21.400000pt;}
.y106{bottom:27.373333pt;}
.yd8{bottom:32.000000pt;}
.y1{bottom:35.333333pt;}
.yc1{bottom:36.800000pt;}
.yd7{bottom:45.866667pt;}
.ya7{bottom:48.000000pt;}
.y3e{bottom:48.053333pt;}
.y88{bottom:48.057333pt;}
.ya6{bottom:50.000000pt;}
.y3{bottom:51.520000pt;}
.y84{bottom:58.720000pt;}
.ya5{bottom:59.333333pt;}
.y105{bottom:59.480000pt;}
.yb7{bottom:63.333333pt;}
.ya3{bottom:65.324000pt;}
.y83{bottom:72.986667pt;}
.y104{bottom:73.266667pt;}
.yb6{bottom:77.093333pt;}
.ya2{bottom:79.110667pt;}
.y82{bottom:86.906667pt;}
.y103{bottom:87.186667pt;}
.y123{bottom:87.266667pt;}
.y3b{bottom:88.986667pt;}
.yb5{bottom:90.853333pt;}
.ya1{bottom:92.870667pt;}
.y124{bottom:95.270667pt;}
.y81{bottom:100.666667pt;}
.y102{bottom:100.946667pt;}
.y3a{bottom:102.746667pt;}
.yb4{bottom:104.773333pt;}
.ya0{bottom:106.790667pt;}
.y80{bottom:114.586667pt;}
.y101{bottom:114.706667pt;}
.y39{bottom:116.506667pt;}
.y2{bottom:118.386667pt;}
.yb3{bottom:118.533333pt;}
.y9f{bottom:120.550667pt;}
.y7f{bottom:128.346667pt;}
.y100{bottom:128.626667pt;}
.y38{bottom:130.266667pt;}
.y7e{bottom:142.106667pt;}
.yff{bottom:142.386667pt;}
.y37{bottom:144.186667pt;}
.yb2{bottom:145.893333pt;}
.y9e{bottom:149.257333pt;}
.y7d{bottom:156.026667pt;}
.yfe{bottom:156.306667pt;}
.y36{bottom:157.946667pt;}
.yb1{bottom:159.973333pt;}
.y9d{bottom:160.617333pt;}
.y7c{bottom:169.626667pt;}
.yfd{bottom:170.066667pt;}
.y35{bottom:171.866667pt;}
.yb0{bottom:173.893333pt;}
.y7b{bottom:183.706667pt;}
.yfc{bottom:183.826667pt;}
.yaf{bottom:184.933333pt;}
.y34{bottom:185.626667pt;}
.y7a{bottom:197.626667pt;}
.yfb{bottom:197.746667pt;}
.y33{bottom:199.386667pt;}
.y79{bottom:211.386667pt;}
.yfa{bottom:211.506667pt;}
.y32{bottom:213.146667pt;}
.yf9{bottom:225.266667pt;}
.y78{bottom:225.306667pt;}
.y31{bottom:227.066667pt;}
.yf8{bottom:239.026667pt;}
.y77{bottom:239.066667pt;}
.y30{bottom:240.826667pt;}
.y76{bottom:252.826667pt;}
.yf7{bottom:252.946667pt;}
.y2f{bottom:254.586667pt;}
.y75{bottom:266.586667pt;}
.yf6{bottom:266.706667pt;}
.y2e{bottom:268.506667pt;}
.y74{bottom:280.506667pt;}
.yf5{bottom:280.626667pt;}
.y2d{bottom:282.266667pt;}
.y73{bottom:294.266667pt;}
.yf4{bottom:294.386667pt;}
.y2c{bottom:296.026667pt;}
.y72{bottom:308.066667pt;}
.yf3{bottom:308.346667pt;}
.y2b{bottom:309.826667pt;}
.y71{bottom:321.986667pt;}
.yf2{bottom:322.106667pt;}
.y2a{bottom:323.746667pt;}
.y70{bottom:335.746667pt;}
.yf1{bottom:335.866667pt;}
.y29{bottom:337.506667pt;}
.y6f{bottom:349.506667pt;}
.yf0{bottom:349.626667pt;}
.y28{bottom:351.426667pt;}
.y6e{bottom:363.426667pt;}
.yef{bottom:363.546667pt;}
.y27{bottom:365.186667pt;}
.y9c{bottom:372.404000pt;}
.y6d{bottom:377.186667pt;}
.yee{bottom:377.306667pt;}
.y9b{bottom:386.324000pt;}
.y6c{bottom:390.946667pt;}
.yed{bottom:391.066667pt;}
.y26{bottom:392.546667pt;}
.y9a{bottom:400.084000pt;}
.y6b{bottom:404.866667pt;}
.yec{bottom:404.986667pt;}
.y99{bottom:414.004000pt;}
.y6a{bottom:418.626667pt;}
.yeb{bottom:418.746667pt;}
.y25{bottom:420.226667pt;}
.y98{bottom:425.044000pt;}
.y69{bottom:432.226667pt;}
.yea{bottom:432.666667pt;}
.y24{bottom:436.386667pt;}
.yae{bottom:437.600000pt;}
.y68{bottom:446.146667pt;}
.ye9{bottom:446.426667pt;}
.yad{bottom:451.680000pt;}
.ye8{bottom:460.186667pt;}
.y67{bottom:460.226667pt;}
.y23{bottom:462.146667pt;}
.yac{bottom:462.560000pt;}
.ye7{bottom:473.946667pt;}
.y66{bottom:473.986667pt;}
.y22{bottom:478.306667pt;}
.ye6{bottom:487.866667pt;}
.y65{bottom:487.906667pt;}
.y21{bottom:492.066667pt;}
.ye5{bottom:501.626667pt;}
.y64{bottom:501.666667pt;}
.y20{bottom:505.826667pt;}
.ye4{bottom:515.386667pt;}
.y63{bottom:515.586667pt;}
.y1f{bottom:519.746667pt;}
.ye3{bottom:529.306667pt;}
.y62{bottom:529.346667pt;}
.y1e{bottom:533.506667pt;}
.ye2{bottom:543.093333pt;}
.y61{bottom:543.133333pt;}
.y1d{bottom:547.293333pt;}
.ye1{bottom:556.853333pt;}
.y60{bottom:557.053333pt;}
.y1c{bottom:561.053333pt;}
.ye0{bottom:570.613333pt;}
.y5f{bottom:570.813333pt;}
.y1b{bottom:574.973333pt;}
.y5e{bottom:584.413333pt;}
.ydf{bottom:584.533333pt;}
.y1a{bottom:588.733333pt;}
.yde{bottom:598.133333pt;}
.y122{bottom:598.200000pt;}
.y5d{bottom:598.653333pt;}
.y19{bottom:602.493333pt;}
.y121{bottom:611.960000pt;}
.y5c{bottom:612.413333pt;}
.y18{bottom:616.413333pt;}
.y120{bottom:625.880000pt;}
.ydd{bottom:626.133333pt;}
.y5b{bottom:626.173333pt;}
.y97{bottom:633.977333pt;}
.ydb{bottom:634.666667pt;}
.y17{bottom:636.093333pt;}
.yd6{bottom:637.733333pt;}
.y11f{bottom:639.800000pt;}
.y5a{bottom:639.933333pt;}
.y11e{bottom:653.560000pt;}
.y59{bottom:653.853333pt;}
.y16{bottom:659.933333pt;}
.y96{bottom:661.337333pt;}
.y11d{bottom:667.480000pt;}
.y58{bottom:667.613333pt;}
.y95{bottom:672.537333pt;}
.y15{bottom:673.693333pt;}
.y57{bottom:681.213333pt;}
.y11c{bottom:681.400000pt;}
.y14{bottom:687.453333pt;}
.y11b{bottom:695.160000pt;}
.y56{bottom:695.293333pt;}
.yd5{bottom:696.533333pt;}
.yd4{bottom:702.800000pt;}
.yab{bottom:704.026667pt;}
.y55{bottom:709.053333pt;}
.y11a{bottom:709.080000pt;}
.yd3{bottom:716.533333pt;}
.y13{bottom:718.333333pt;}
.y54{bottom:722.973333pt;}
.y119{bottom:723.000000pt;}
.yd2{bottom:730.400000pt;}
.yaa{bottom:732.026667pt;}
.y53{bottom:736.733333pt;}
.y118{bottom:736.760000pt;}
.y12{bottom:737.373333pt;}
.ya9{bottom:743.066667pt;}
.yd0{bottom:745.200000pt;}
.y52{bottom:750.333333pt;}
.y117{bottom:750.680000pt;}
.ycf{bottom:758.400000pt;}
.y11{bottom:762.973333pt;}
.y116{bottom:764.280000pt;}
.y51{bottom:764.413333pt;}
.yce{bottom:772.266667pt;}
.y50{bottom:778.213333pt;}
.y115{bottom:792.320000pt;}
.y4f{bottom:793.093333pt;}
.ycc{bottom:793.866667pt;}
.y10{bottom:794.053333pt;}
.y114{bottom:806.080000pt;}
.y4e{bottom:806.853333pt;}
.ycb{bottom:807.066667pt;}
.y4d{bottom:820.613333pt;}
.yca{bottom:820.933333pt;}
.yf{bottom:828.773333pt;}
.y113{bottom:834.400000pt;}
.y4c{bottom:835.333333pt;}
.yc8{bottom:842.666667pt;}
.yc7{bottom:847.866667pt;}
.y4b{bottom:849.893333pt;}
.ye{bottom:850.373333pt;}
.y112{bottom:850.400000pt;}
.yc6{bottom:861.600000pt;}
.y4a{bottom:863.653333pt;}
.yc4{bottom:875.333333pt;}
.y111{bottom:877.760000pt;}
.y49{bottom:877.893333pt;}
.yc3{bottom:881.466667pt;}
.y94{bottom:889.604000pt;}
.y48{bottom:891.493333pt;}
.y110{bottom:891.520000pt;}
.yc2{bottom:895.200000pt;}
.yd{bottom:903.173333pt;}
.y10f{bottom:905.440000pt;}
.y93{bottom:907.684000pt;}
.yc0{bottom:909.866667pt;}
.y10e{bottom:919.040000pt;}
.ya{bottom:919.173333pt;}
.y47{bottom:919.333333pt;}
.y92{bottom:921.444000pt;}
.yc{bottom:923.813333pt;}
.y46{bottom:933.253333pt;}
.y91{bottom:935.364000pt;}
.y9{bottom:939.813333pt;}
.ybf{bottom:939.866667pt;}
.y45{bottom:947.013333pt;}
.y10d{bottom:947.040000pt;}
.y90{bottom:949.124000pt;}
.yb{bottom:952.293333pt;}
.ybe{bottom:953.600000pt;}
.yba{bottom:956.933333pt;}
.y10c{bottom:960.800000pt;}
.y44{bottom:960.933333pt;}
.y8f{bottom:962.884000pt;}
.y8{bottom:965.893333pt;}
.y10b{bottom:974.560000pt;}
.y43{bottom:974.693333pt;}
.y8e{bottom:976.644000pt;}
.y7{bottom:982.853333pt;}
.y42{bottom:988.453333pt;}
.y10a{bottom:988.480000pt;}
.y8d{bottom:990.564000pt;}
.ybc{bottom:992.666667pt;}
.y6{bottom:998.213333pt;}
.ybb{bottom:998.400000pt;}
.y41{bottom:1002.213333pt;}
.y109{bottom:1002.240000pt;}
.y8c{bottom:1004.164000pt;}
.y5{bottom:1013.600000pt;}
.y108{bottom:1015.866667pt;}
.ya8{bottom:1016.133333pt;}
.y40{bottom:1016.160000pt;}
.y8b{bottom:1017.924000pt;}
.y4{bottom:1029.600000pt;}
.y107{bottom:1029.786667pt;}
.y3f{bottom:1029.920000pt;}
.yb9{bottom:1030.186667pt;}
.y8a{bottom:1031.870667pt;}
.y3d{bottom:1044.586667pt;}
.y89{bottom:1045.790667pt;}
.y87{bottom:1060.590667pt;}
.y3c{bottom:1061.066667pt;}
.y85{bottom:1073.066667pt;}
.y86{bottom:1078.057333pt;}
.h16{height:20.026667pt;}
.hc{height:31.390625pt;}
.h26{height:31.406250pt;}
.h1c{height:32.000000pt;}
.h25{height:33.351562pt;}
.hf{height:33.918750pt;}
.h1a{height:33.920000pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.hb{height:47.085938pt;}
.h11{height:47.109375pt;}
.h1e{height:48.000000pt;}
.h21{height:48.026667pt;}
.hd{height:48.375000pt;}
.h13{height:49.336436pt;}
.h7{height:49.597187pt;}
.h12{height:49.621875pt;}
.h8{height:52.108438pt;}
.h24{height:52.206250pt;}
.h14{height:52.526250pt;}
.h1f{height:52.739583pt;}
.h3{height:53.535000pt;}
.he{height:55.247500pt;}
.h15{height:57.758750pt;}
.h1{height:57.787500pt;}
.h23{height:58.240000pt;}
.h4{height:59.340000pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h1b{height:74.309375pt;}
.h9{height:75.465000pt;}
.h19{height:79.939583pt;}
.h1d{height:80.472917pt;}
.h18{height:82.080000pt;}
.h20{height:102.576042pt;}
.h17{height:103.308333pt;}
.h22{height:107.459583pt;}
.h0{height:1122.666667pt;}
.w1{width:132.013333pt;}
.w2{width:438.266667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x33{left:6.800000pt;}
.x2b{left:16.800000pt;}
.x4{left:26.800000pt;}
.x2e{left:36.800000pt;}
.x1e{left:39.360000pt;}
.xd{left:41.733333pt;}
.x16{left:42.979333pt;}
.xf{left:44.696000pt;}
.x13{left:46.760000pt;}
.xa{left:48.773333pt;}
.x14{left:49.800000pt;}
.x27{left:53.466667pt;}
.x17{left:62.080667pt;}
.x11{left:66.013333pt;}
.x12{left:90.080000pt;}
.x35{left:96.933333pt;}
.x22{left:158.440000pt;}
.x23{left:173.266667pt;}
.x32{left:183.600000pt;}
.x34{left:189.600000pt;}
.x2d{left:190.533333pt;}
.x24{left:202.400000pt;}
.x2c{left:204.800000pt;}
.x31{left:207.733333pt;}
.x36{left:209.600000pt;}
.x1b{left:211.694000pt;}
.x7{left:217.040000pt;}
.x30{left:221.733333pt;}
.x5{left:240.266667pt;}
.x6{left:258.320000pt;}
.xb{left:266.613333pt;}
.x2f{left:267.600000pt;}
.x28{left:277.066667pt;}
.x29{left:283.600000pt;}
.x25{left:289.866667pt;}
.xc{left:291.360000pt;}
.x10{left:316.173333pt;}
.x3c{left:329.293333pt;}
.x37{left:330.266667pt;}
.x38{left:334.266667pt;}
.x2a{left:357.200000pt;}
.x3b{left:358.600000pt;}
.xe{left:366.808000pt;}
.x39{left:368.666667pt;}
.x15{left:372.766000pt;}
.x1{left:382.800000pt;}
.x3d{left:389.506667pt;}
.x1c{left:393.360667pt;}
.x3a{left:397.800000pt;}
.x20{left:399.373333pt;}
.x3{left:404.933333pt;}
.x19{left:419.294000pt;}
.x8{left:425.746667pt;}
.x9{left:450.293333pt;}
.x26{left:489.866667pt;}
.x1d{left:577.200667pt;}
.x18{left:594.347333pt;}
.x1a{left:599.294000pt;}
.x21{left:600.840000pt;}
.x1f{left:605.280000pt;}
.x2{left:869.600000pt;}
}




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