
    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_6d9a030fab06df2758ce5ffa.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_461ed1de3653157de8582657.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_5b8d3f1b3fd256bb8991df7c.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_1034c726f47e177e9a470a21.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.401855;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_f429575a891fd82a0deefc98.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_84841205dc110046383d9246.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_c54f27779f060235b29641cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_ea8be4264c561770cecfe9b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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:-113.880000px;}
.v5{vertical-align:-83.520000px;}
.v7{vertical-align:-82.080000px;}
.v6{vertical-align:-80.640000px;}
.v1{vertical-align:-78.480000px;}
.v4{vertical-align:-72.720000px;}
.v3{vertical-align:-71.280000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.109200px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.109200px;}
.ls8{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.504000px;}
.lse{letter-spacing:0.792000px;}
.ls1{letter-spacing:12.780000px;}
.ls4{letter-spacing:17.280000px;}
.ls2{letter-spacing:68.760000px;}
.lsa{letter-spacing:194.376000px;}
.lsc{letter-spacing:195.816000px;}
.ls9{letter-spacing:406.056000px;}
.ls3{letter-spacing:414.540000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.450800px;}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.220000px;}
.ws5{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._28{margin-left:-9.504000px;}
._34{margin-left:-8.429760px;}
._2a{margin-left:-7.344000px;}
._31{margin-left:-6.104640px;}
._27{margin-left:-4.769280px;}
._26{margin-left:-3.638880px;}
._1d{margin-left:-2.304000px;}
._3{margin-left:-1.229760px;}
._1{width:1.135440px;}
._9{width:2.309760px;}
._19{width:4.104000px;}
._1f{width:5.544000px;}
._0{width:7.529760px;}
._2{width:8.964000px;}
._b{width:10.620000px;}
._f{width:11.880000px;}
._7{width:13.320000px;}
._1e{width:14.760000px;}
._1b{width:15.840000px;}
._14{width:16.848000px;}
._23{width:19.512000px;}
._10{width:21.024000px;}
._11{width:22.176000px;}
._8{width:23.765760px;}
._1a{width:25.127280px;}
._17{width:26.861760px;}
._4{width:27.864000px;}
._5{width:28.944000px;}
._2d{width:30.096000px;}
._2b{width:31.104000px;}
._1c{width:32.112000px;}
._29{width:33.264000px;}
._30{width:34.500000px;}
._13{width:36.288000px;}
._39{width:37.492560px;}
._33{width:38.808000px;}
._c{width:39.960000px;}
._d{width:41.333760px;}
._25{width:42.357600px;}
._2c{width:45.072000px;}
._e{width:46.872000px;}
._2e{width:47.952000px;}
._2f{width:49.048560px;}
._3b{width:50.057280px;}
._3c{width:51.319440px;}
._22{width:53.064000px;}
._32{width:54.348000px;}
._a{width:60.300000px;}
._24{width:61.380000px;}
._6{width:64.152000px;}
._37{width:65.268000px;}
._18{width:66.312000px;}
._21{width:68.261760px;}
._20{width:69.768000px;}
._3d{width:71.784000px;}
._3e{width:72.792000px;}
._15{width:91.440000px;}
._16{width:92.520000px;}
._12{width:93.816000px;}
._35{width:106.056000px;}
._36{width:107.064000px;}
._3a{width:162.864000px;}
._38{width:946.152000px;}
.fc4{color:rgb(0,0,128);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,10);}
.fc1{color:rgb(128,0,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs5{font-size:33.120000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y8d{bottom:-27.900000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:5.040000px;}
.y5a{bottom:5.220000px;}
.y5f{bottom:14.752500px;}
.y7{bottom:15.120000px;}
.y5e{bottom:32.032500px;}
.y6{bottom:33.120000px;}
.y5d{bottom:49.312500px;}
.y4{bottom:49.320000px;}
.y60{bottom:53.496000px;}
.y5c{bottom:54.763500px;}
.y3{bottom:68.976000px;}
.y49{bottom:91.116000px;}
.y48{bottom:114.696000px;}
.y47{bottom:135.396000px;}
.y107{bottom:150.150000px;}
.y8a{bottom:150.510000px;}
.y14e{bottom:151.770000px;}
.yb1{bottom:153.030000px;}
.y46{bottom:156.090000px;}
.yf4{bottom:160.590000px;}
.y120{bottom:161.850000px;}
.ycd{bottom:164.010000px;}
.y162{bottom:165.630000px;}
.y106{bottom:173.910000px;}
.y89{bottom:174.270000px;}
.y45{bottom:176.790000px;}
.y13b{bottom:181.650000px;}
.yf3{bottom:184.350000px;}
.ycc{bottom:187.950000px;}
.y11f{bottom:192.990000px;}
.y161{bottom:196.770000px;}
.y44{bottom:197.490000px;}
.y105{bottom:197.850000px;}
.y88{bottom:198.030000px;}
.yb0{bottom:200.730000px;}
.yf2{bottom:208.290000px;}
.ycb{bottom:211.710000px;}
.y13a{bottom:212.790000px;}
.y43{bottom:218.190000px;}
.y104{bottom:221.610000px;}
.y87{bottom:221.790000px;}
.y11e{bottom:223.950000px;}
.yaf{bottom:224.490000px;}
.y160{bottom:227.730000px;}
.y14d{bottom:228.810000px;}
.yf1{bottom:232.050000px;}
.yca{bottom:235.470000px;}
.y42{bottom:238.890000px;}
.y139{bottom:243.750000px;}
.y103{bottom:245.370000px;}
.y86{bottom:245.730000px;}
.yae{bottom:248.250000px;}
.yf0{bottom:255.810000px;}
.y15f{bottom:258.870000px;}
.yc9{bottom:259.230000px;}
.y41{bottom:259.590000px;}
.y14c{bottom:259.950000px;}
.y102{bottom:269.130000px;}
.y85{bottom:269.490000px;}
.y11d{bottom:270.030000px;}
.yad{bottom:272.010000px;}
.y40{bottom:280.110000px;}
.yc8{bottom:283.215000px;}
.y138{bottom:289.875000px;}
.y101{bottom:293.115000px;}
.y84{bottom:293.295000px;}
.yac{bottom:295.815000px;}
.yef{bottom:300.135000px;}
.y3f{bottom:300.810000px;}
.y11c{bottom:301.035000px;}
.y15e{bottom:304.995000px;}
.y14b{bottom:305.895000px;}
.yc7{bottom:306.975000px;}
.y10d{bottom:316.335000px;}
.y100{bottom:316.875000px;}
.y83{bottom:317.055000px;}
.yee{bottom:319.215000px;}
.yab{bottom:319.755000px;}
.y137{bottom:321.015000px;}
.y3e{bottom:321.510000px;}
.yc6{bottom:330.735000px;}
.y11b{bottom:332.175000px;}
.y10c{bottom:335.415000px;}
.y15d{bottom:335.955000px;}
.y14a{bottom:337.035000px;}
.yed{bottom:339.375000px;}
.y114{bottom:340.095000px;}
.yff{bottom:340.635000px;}
.y82{bottom:340.995000px;}
.y3d{bottom:342.255000px;}
.yaa{bottom:343.515000px;}
.y136{bottom:351.975000px;}
.yc5{bottom:354.495000px;}
.y10b{bottom:355.935000px;}
.yec{bottom:359.175000px;}
.y3c{bottom:362.955000px;}
.yfe{bottom:364.395000px;}
.y81{bottom:364.755000px;}
.y15c{bottom:366.915000px;}
.ya9{bottom:367.275000px;}
.y149{bottom:367.995000px;}
.y11a{bottom:378.255000px;}
.yc4{bottom:378.435000px;}
.yeb{bottom:379.875000px;}
.y3b{bottom:383.655000px;}
.yfd{bottom:388.335000px;}
.y80{bottom:388.515000px;}
.ya8{bottom:391.035000px;}
.y135{bottom:398.055000px;}
.yea{bottom:400.575000px;}
.yc3{bottom:402.195000px;}
.y3a{bottom:404.355000px;}
.y119{bottom:409.215000px;}
.yfc{bottom:412.095000px;}
.y7f{bottom:412.275000px;}
.y148{bottom:414.075000px;}
.ya7{bottom:414.975000px;}
.ye9{bottom:421.275000px;}
.y39{bottom:425.055000px;}
.yc2{bottom:425.955000px;}
.y134{bottom:429.015000px;}
.yfb{bottom:435.855000px;}
.y7e{bottom:436.215000px;}
.ya6{bottom:438.735000px;}
.ye8{bottom:441.975000px;}
.y15b{bottom:444.135000px;}
.y147{bottom:445.215000px;}
.y38{bottom:445.755000px;}
.yc1{bottom:449.715000px;}
.y118{bottom:455.295000px;}
.yfa{bottom:459.615000px;}
.y7d{bottom:459.975000px;}
.y133{bottom:460.155000px;}
.ya5{bottom:462.495000px;}
.ye7{bottom:462.675000px;}
.y37{bottom:466.455000px;}
.yc0{bottom:473.475000px;}
.y15a{bottom:475.095000px;}
.y146{bottom:476.175000px;}
.ye6{bottom:483.015000px;}
.yf9{bottom:483.555000px;}
.y7c{bottom:483.735000px;}
.ya4{bottom:486.255000px;}
.y36{bottom:487.155000px;}
.y132{bottom:491.115000px;}
.ybf{bottom:497.415000px;}
.ye5{bottom:504.075000px;}
.y159{bottom:506.235000px;}
.y117{bottom:506.775000px;}
.yf8{bottom:507.315000px;}
.y7b{bottom:507.495000px;}
.y35{bottom:507.855000px;}
.ya3{bottom:510.195000px;}
.ybe{bottom:521.175000px;}
.y145{bottom:522.255000px;}
.ye4{bottom:524.775000px;}
.y116{bottom:525.855000px;}
.y34{bottom:528.555000px;}
.y7a{bottom:531.255000px;}
.ya2{bottom:533.955000px;}
.y131{bottom:537.195000px;}
.ybd{bottom:544.935000px;}
.ye3{bottom:545.475000px;}
.y115{bottom:546.375000px;}
.y33{bottom:549.255000px;}
.y58{bottom:549.975000px;}
.yf7{bottom:551.415000px;}
.y144{bottom:553.215000px;}
.y79{bottom:555.195000px;}
.ya1{bottom:557.745000px;}
.ye2{bottom:566.205000px;}
.y130{bottom:568.365000px;}
.ybc{bottom:568.725000px;}
.y57{bottom:569.415000px;}
.y32{bottom:569.955000px;}
.yf6{bottom:570.525000px;}
.y110{bottom:578.265000px;}
.y78{bottom:578.985000px;}
.ya0{bottom:581.505000px;}
.y158{bottom:583.305000px;}
.y143{bottom:584.385000px;}
.ye1{bottom:586.905000px;}
.y56{bottom:590.115000px;}
.y31{bottom:590.655000px;}
.ybb{bottom:592.665000px;}
.yf5{bottom:594.105000px;}
.y10f{bottom:597.345000px;}
.y12f{bottom:599.325000px;}
.y77{bottom:602.745000px;}
.y9f{bottom:605.445000px;}
.ye0{bottom:607.605000px;}
.y55{bottom:610.845000px;}
.y30{bottom:611.385000px;}
.y157{bottom:614.445000px;}
.yba{bottom:616.425000px;}
.y10e{bottom:617.865000px;}
.ydf{bottom:628.305000px;}
.y9e{bottom:629.205000px;}
.y142{bottom:630.465000px;}
.y54{bottom:631.365000px;}
.y2f{bottom:632.085000px;}
.yb9{bottom:640.185000px;}
.y12e{bottom:645.405000px;}
.y76{bottom:647.385000px;}
.yde{bottom:648.645000px;}
.y53{bottom:652.065000px;}
.y2e{bottom:652.785000px;}
.y9d{bottom:652.965000px;}
.y141{bottom:661.425000px;}
.yb8{bottom:663.945000px;}
.ydd{bottom:669.705000px;}
.y75{bottom:669.885000px;}
.y52{bottom:672.765000px;}
.y2d{bottom:673.485000px;}
.y12d{bottom:676.545000px;}
.y9c{bottom:676.725000px;}
.yb7{bottom:687.885000px;}
.y74{bottom:689.685000px;}
.ydc{bottom:690.405000px;}
.y156{bottom:691.485000px;}
.y140{bottom:692.565000px;}
.y51{bottom:693.465000px;}
.y2c{bottom:694.185000px;}
.y113{bottom:697.245000px;}
.y9b{bottom:700.665000px;}
.y12c{bottom:707.505000px;}
.y73{bottom:709.485000px;}
.ydb{bottom:711.105000px;}
.yb6{bottom:711.645000px;}
.y50{bottom:714.165000px;}
.y2b{bottom:714.885000px;}
.y112{bottom:716.325000px;}
.y155{bottom:722.445000px;}
.y13f{bottom:723.525000px;}
.y9a{bottom:724.425000px;}
.y72{bottom:729.285000px;}
.yda{bottom:731.805000px;}
.y4f{bottom:734.865000px;}
.yb5{bottom:735.405000px;}
.y2a{bottom:735.585000px;}
.y23{bottom:735.765000px;}
.y111{bottom:736.845000px;}
.y12b{bottom:738.465000px;}
.y10a{bottom:744.765000px;}
.y99{bottom:748.185000px;}
.y71{bottom:749.085000px;}
.yd9{bottom:752.505000px;}
.y22{bottom:755.565000px;}
.y29{bottom:756.285000px;}
.yb4{bottom:759.165000px;}
.y109{bottom:763.845000px;}
.y154{bottom:768.525000px;}
.y70{bottom:769.065000px;}
.y12a{bottom:769.605000px;}
.y98{bottom:771.945000px;}
.yd8{bottom:773.205000px;}
.y21{bottom:775.365000px;}
.y4e{bottom:776.265000px;}
.y28{bottom:776.985000px;}
.yb3{bottom:783.105000px;}
.y108{bottom:784.545000px;}
.y20{bottom:792.825000px;}
.yd7{bottom:793.905000px;}
.y97{bottom:795.705000px;}
.y4d{bottom:796.965000px;}
.y27{bottom:797.685000px;}
.y153{bottom:799.665000px;}
.y129{bottom:800.565000px;}
.yb2{bottom:806.865000px;}
.y6f{bottom:807.045000px;}
.yd6{bottom:814.605000px;}
.y4c{bottom:817.665000px;}
.y26{bottom:818.385000px;}
.y96{bottom:819.645000px;}
.y1f{bottom:829.365000px;}
.y6e{bottom:830.625000px;}
.y128{bottom:831.705000px;}
.yd5{bottom:835.305000px;}
.y4b{bottom:838.365000px;}
.y25{bottom:841.965000px;}
.y95{bottom:843.450000px;}
.y13e{bottom:846.690000px;}
.y1e{bottom:848.265000px;}
.y6d{bottom:854.430000px;}
.yd4{bottom:856.050000px;}
.y4a{bottom:860.505000px;}
.y152{bottom:861.810000px;}
.y24{bottom:865.590000px;}
.y94{bottom:867.210000px;}
.y1d{bottom:867.390000px;}
.yd3{bottom:876.750000px;}
.y127{bottom:877.830000px;}
.y6c{bottom:878.370000px;}
.y16{bottom:885.930000px;}
.y93{bottom:890.970000px;}
.yd2{bottom:897.450000px;}
.y6b{bottom:902.130000px;}
.y151{bottom:907.710000px;}
.y15{bottom:908.070000px;}
.y92{bottom:914.910000px;}
.yd1{bottom:918.150000px;}
.y126{bottom:923.910000px;}
.y6a{bottom:925.890000px;}
.y14{bottom:926.790000px;}
.y91{bottom:938.670000px;}
.y150{bottom:938.850000px;}
.y13{bottom:945.690000px;}
.y69{bottom:949.650000px;}
.y125{bottom:954.870000px;}
.yd0{bottom:959.010000px;}
.y12{bottom:964.770000px;}
.y13d{bottom:969.810000px;}
.y68{bottom:973.410000px;}
.ycf{bottom:978.090000px;}
.y90{bottom:982.590000px;}
.y11{bottom:983.670000px;}
.y1c{bottom:991.050000px;}
.y5{bottom:992.850000px;}
.y67{bottom:997.350000px;}
.yce{bottom:998.790000px;}
.y124{bottom:1000.950000px;}
.y8f{bottom:1002.030000px;}
.y10{bottom:1005.450000px;}
.y66{bottom:1021.110000px;}
.y8e{bottom:1022.550000px;}
.y1b{bottom:1027.230000px;}
.y123{bottom:1031.910000px;}
.y1a{bottom:1037.850000px;}
.y65{bottom:1044.870000px;}
.yf{bottom:1046.850000px;}
.y14f{bottom:1047.030000px;}
.y19{bottom:1057.650000px;}
.y13c{bottom:1063.050000px;}
.ye{bottom:1067.730000px;}
.y64{bottom:1068.630000px;}
.y122{bottom:1077.990000px;}
.y18{bottom:1081.050000px;}
.yd{bottom:1082.850000px;}
.y63{bottom:1092.570000px;}
.y163{bottom:1094.010000px;}
.yc{bottom:1097.790000px;}
.y121{bottom:1109.130000px;}
.yb{bottom:1112.730000px;}
.y62{bottom:1116.330000px;}
.ya{bottom:1127.850000px;}
.y61{bottom:1140.120000px;}
.y17{bottom:1141.200000px;}
.y9{bottom:1142.820000px;}
.y8{bottom:1157.760000px;}
.y59{bottom:1168.560000px;}
.y8b{bottom:1168.740000px;}
.y5b{bottom:1175.040000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1219.860000px;}
.h13{height:5.653125px;}
.h15{height:19.440000px;}
.h11{height:19.620000px;}
.hb{height:32.505469px;}
.hc{height:41.493516px;}
.h4{height:47.505000px;}
.h14{height:53.573906px;}
.h3{height:58.621992px;}
.h2{height:58.651172px;}
.h9{height:60.226875px;}
.h12{height:62.812500px;}
.he{height:64.546875px;}
.h7{height:65.010937px;}
.h5{height:66.757500px;}
.h16{height:70.628906px;}
.hd{height:70.664062px;}
.ha{height:72.562500px;}
.h6{height:82.676953px;}
.hf{height:93.983203px;}
.h8{height:96.508125px;}
.h10{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:163.108500px;}
.w6{width:209.719500px;}
.w9{width:212.415000px;}
.w8{width:432.964500px;}
.w7{width:437.835000px;}
.w5{width:623.070000px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x15{left:8.089500px;}
.x1d{left:11.685000px;}
.x17{left:13.140000px;}
.x6{left:25.560000px;}
.x7{left:34.020000px;}
.xe{left:36.180000px;}
.x5{left:37.621500px;}
.x1b{left:40.123500px;}
.x18{left:42.120000px;}
.x1e{left:106.725000px;}
.x14{left:119.566500px;}
.x13{left:127.656000px;}
.x11{left:140.626500px;}
.x19{left:180.750000px;}
.xf{left:224.130000px;}
.x1{left:227.550000px;}
.xd{left:239.610000px;}
.xc{left:260.850000px;}
.x8{left:269.310000px;}
.x2{left:280.875000px;}
.x16{left:330.015000px;}
.x9{left:414.075000px;}
.xb{left:432.975000px;}
.x12{left:453.838500px;}
.x10{left:514.005000px;}
.xa{left:519.585000px;}
.x1c{left:553.260000px;}
.x4{left:664.350000px;}
.x3{left:667.590000px;}
.x1a{left:743.010000px;}
@media print{
.v2{vertical-align:-101.226667pt;}
.v5{vertical-align:-74.240000pt;}
.v7{vertical-align:-72.960000pt;}
.v6{vertical-align:-71.680000pt;}
.v1{vertical-align:-69.760000pt;}
.v4{vertical-align:-64.640000pt;}
.v3{vertical-align:-63.360000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.097067pt;}
.ls8{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.704000pt;}
.ls1{letter-spacing:11.360000pt;}
.ls4{letter-spacing:15.360000pt;}
.ls2{letter-spacing:61.120000pt;}
.lsa{letter-spacing:172.778667pt;}
.lsc{letter-spacing:174.058667pt;}
.ls9{letter-spacing:360.938667pt;}
.ls3{letter-spacing:368.480000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.622933pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.640000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._28{margin-left:-8.448000pt;}
._34{margin-left:-7.493120pt;}
._2a{margin-left:-6.528000pt;}
._31{margin-left:-5.426347pt;}
._27{margin-left:-4.239360pt;}
._26{margin-left:-3.234560pt;}
._1d{margin-left:-2.048000pt;}
._3{margin-left:-1.093120pt;}
._1{width:1.009280pt;}
._9{width:2.053120pt;}
._19{width:3.648000pt;}
._1f{width:4.928000pt;}
._0{width:6.693120pt;}
._2{width:7.968000pt;}
._b{width:9.440000pt;}
._f{width:10.560000pt;}
._7{width:11.840000pt;}
._1e{width:13.120000pt;}
._1b{width:14.080000pt;}
._14{width:14.976000pt;}
._23{width:17.344000pt;}
._10{width:18.688000pt;}
._11{width:19.712000pt;}
._8{width:21.125120pt;}
._1a{width:22.335360pt;}
._17{width:23.877120pt;}
._4{width:24.768000pt;}
._5{width:25.728000pt;}
._2d{width:26.752000pt;}
._2b{width:27.648000pt;}
._1c{width:28.544000pt;}
._29{width:29.568000pt;}
._30{width:30.666667pt;}
._13{width:32.256000pt;}
._39{width:33.326720pt;}
._33{width:34.496000pt;}
._c{width:35.520000pt;}
._d{width:36.741120pt;}
._25{width:37.651200pt;}
._2c{width:40.064000pt;}
._e{width:41.664000pt;}
._2e{width:42.624000pt;}
._2f{width:43.598720pt;}
._3b{width:44.495360pt;}
._3c{width:45.617280pt;}
._22{width:47.168000pt;}
._32{width:48.309333pt;}
._a{width:53.600000pt;}
._24{width:54.560000pt;}
._6{width:57.024000pt;}
._37{width:58.016000pt;}
._18{width:58.944000pt;}
._21{width:60.677120pt;}
._20{width:62.016000pt;}
._3d{width:63.808000pt;}
._3e{width:64.704000pt;}
._15{width:81.280000pt;}
._16{width:82.240000pt;}
._12{width:83.392000pt;}
._35{width:94.272000pt;}
._36{width:95.168000pt;}
._3a{width:144.768000pt;}
._38{width:841.024000pt;}
.fs8{font-size:5.120000pt;}
.fs5{font-size:29.440000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y8d{bottom:-24.800000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:4.480000pt;}
.y5a{bottom:4.640000pt;}
.y5f{bottom:13.113333pt;}
.y7{bottom:13.440000pt;}
.y5e{bottom:28.473333pt;}
.y6{bottom:29.440000pt;}
.y5d{bottom:43.833333pt;}
.y4{bottom:43.840000pt;}
.y60{bottom:47.552000pt;}
.y5c{bottom:48.678667pt;}
.y3{bottom:61.312000pt;}
.y49{bottom:80.992000pt;}
.y48{bottom:101.952000pt;}
.y47{bottom:120.352000pt;}
.y107{bottom:133.466667pt;}
.y8a{bottom:133.786667pt;}
.y14e{bottom:134.906667pt;}
.yb1{bottom:136.026667pt;}
.y46{bottom:138.746667pt;}
.yf4{bottom:142.746667pt;}
.y120{bottom:143.866667pt;}
.ycd{bottom:145.786667pt;}
.y162{bottom:147.226667pt;}
.y106{bottom:154.586667pt;}
.y89{bottom:154.906667pt;}
.y45{bottom:157.146667pt;}
.y13b{bottom:161.466667pt;}
.yf3{bottom:163.866667pt;}
.ycc{bottom:167.066667pt;}
.y11f{bottom:171.546667pt;}
.y161{bottom:174.906667pt;}
.y44{bottom:175.546667pt;}
.y105{bottom:175.866667pt;}
.y88{bottom:176.026667pt;}
.yb0{bottom:178.426667pt;}
.yf2{bottom:185.146667pt;}
.ycb{bottom:188.186667pt;}
.y13a{bottom:189.146667pt;}
.y43{bottom:193.946667pt;}
.y104{bottom:196.986667pt;}
.y87{bottom:197.146667pt;}
.y11e{bottom:199.066667pt;}
.yaf{bottom:199.546667pt;}
.y160{bottom:202.426667pt;}
.y14d{bottom:203.386667pt;}
.yf1{bottom:206.266667pt;}
.yca{bottom:209.306667pt;}
.y42{bottom:212.346667pt;}
.y139{bottom:216.666667pt;}
.y103{bottom:218.106667pt;}
.y86{bottom:218.426667pt;}
.yae{bottom:220.666667pt;}
.yf0{bottom:227.386667pt;}
.y15f{bottom:230.106667pt;}
.yc9{bottom:230.426667pt;}
.y41{bottom:230.746667pt;}
.y14c{bottom:231.066667pt;}
.y102{bottom:239.226667pt;}
.y85{bottom:239.546667pt;}
.y11d{bottom:240.026667pt;}
.yad{bottom:241.786667pt;}
.y40{bottom:248.986667pt;}
.yc8{bottom:251.746667pt;}
.y138{bottom:257.666667pt;}
.y101{bottom:260.546667pt;}
.y84{bottom:260.706667pt;}
.yac{bottom:262.946667pt;}
.yef{bottom:266.786667pt;}
.y3f{bottom:267.386667pt;}
.y11c{bottom:267.586667pt;}
.y15e{bottom:271.106667pt;}
.y14b{bottom:271.906667pt;}
.yc7{bottom:272.866667pt;}
.y10d{bottom:281.186667pt;}
.y100{bottom:281.666667pt;}
.y83{bottom:281.826667pt;}
.yee{bottom:283.746667pt;}
.yab{bottom:284.226667pt;}
.y137{bottom:285.346667pt;}
.y3e{bottom:285.786667pt;}
.yc6{bottom:293.986667pt;}
.y11b{bottom:295.266667pt;}
.y10c{bottom:298.146667pt;}
.y15d{bottom:298.626667pt;}
.y14a{bottom:299.586667pt;}
.yed{bottom:301.666667pt;}
.y114{bottom:302.306667pt;}
.yff{bottom:302.786667pt;}
.y82{bottom:303.106667pt;}
.y3d{bottom:304.226667pt;}
.yaa{bottom:305.346667pt;}
.y136{bottom:312.866667pt;}
.yc5{bottom:315.106667pt;}
.y10b{bottom:316.386667pt;}
.yec{bottom:319.266667pt;}
.y3c{bottom:322.626667pt;}
.yfe{bottom:323.906667pt;}
.y81{bottom:324.226667pt;}
.y15c{bottom:326.146667pt;}
.ya9{bottom:326.466667pt;}
.y149{bottom:327.106667pt;}
.y11a{bottom:336.226667pt;}
.yc4{bottom:336.386667pt;}
.yeb{bottom:337.666667pt;}
.y3b{bottom:341.026667pt;}
.yfd{bottom:345.186667pt;}
.y80{bottom:345.346667pt;}
.ya8{bottom:347.586667pt;}
.y135{bottom:353.826667pt;}
.yea{bottom:356.066667pt;}
.yc3{bottom:357.506667pt;}
.y3a{bottom:359.426667pt;}
.y119{bottom:363.746667pt;}
.yfc{bottom:366.306667pt;}
.y7f{bottom:366.466667pt;}
.y148{bottom:368.066667pt;}
.ya7{bottom:368.866667pt;}
.ye9{bottom:374.466667pt;}
.y39{bottom:377.826667pt;}
.yc2{bottom:378.626667pt;}
.y134{bottom:381.346667pt;}
.yfb{bottom:387.426667pt;}
.y7e{bottom:387.746667pt;}
.ya6{bottom:389.986667pt;}
.ye8{bottom:392.866667pt;}
.y15b{bottom:394.786667pt;}
.y147{bottom:395.746667pt;}
.y38{bottom:396.226667pt;}
.yc1{bottom:399.746667pt;}
.y118{bottom:404.706667pt;}
.yfa{bottom:408.546667pt;}
.y7d{bottom:408.866667pt;}
.y133{bottom:409.026667pt;}
.ya5{bottom:411.106667pt;}
.ye7{bottom:411.266667pt;}
.y37{bottom:414.626667pt;}
.yc0{bottom:420.866667pt;}
.y15a{bottom:422.306667pt;}
.y146{bottom:423.266667pt;}
.ye6{bottom:429.346667pt;}
.yf9{bottom:429.826667pt;}
.y7c{bottom:429.986667pt;}
.ya4{bottom:432.226667pt;}
.y36{bottom:433.026667pt;}
.y132{bottom:436.546667pt;}
.ybf{bottom:442.146667pt;}
.ye5{bottom:448.066667pt;}
.y159{bottom:449.986667pt;}
.y117{bottom:450.466667pt;}
.yf8{bottom:450.946667pt;}
.y7b{bottom:451.106667pt;}
.y35{bottom:451.426667pt;}
.ya3{bottom:453.506667pt;}
.ybe{bottom:463.266667pt;}
.y145{bottom:464.226667pt;}
.ye4{bottom:466.466667pt;}
.y116{bottom:467.426667pt;}
.y34{bottom:469.826667pt;}
.y7a{bottom:472.226667pt;}
.ya2{bottom:474.626667pt;}
.y131{bottom:477.506667pt;}
.ybd{bottom:484.386667pt;}
.ye3{bottom:484.866667pt;}
.y115{bottom:485.666667pt;}
.y33{bottom:488.226667pt;}
.y58{bottom:488.866667pt;}
.yf7{bottom:490.146667pt;}
.y144{bottom:491.746667pt;}
.y79{bottom:493.506667pt;}
.ya1{bottom:495.773333pt;}
.ye2{bottom:503.293333pt;}
.y130{bottom:505.213333pt;}
.ybc{bottom:505.533333pt;}
.y57{bottom:506.146667pt;}
.y32{bottom:506.626667pt;}
.yf6{bottom:507.133333pt;}
.y110{bottom:514.013333pt;}
.y78{bottom:514.653333pt;}
.ya0{bottom:516.893333pt;}
.y158{bottom:518.493333pt;}
.y143{bottom:519.453333pt;}
.ye1{bottom:521.693333pt;}
.y56{bottom:524.546667pt;}
.y31{bottom:525.026667pt;}
.ybb{bottom:526.813333pt;}
.yf5{bottom:528.093333pt;}
.y10f{bottom:530.973333pt;}
.y12f{bottom:532.733333pt;}
.y77{bottom:535.773333pt;}
.y9f{bottom:538.173333pt;}
.ye0{bottom:540.093333pt;}
.y55{bottom:542.973333pt;}
.y30{bottom:543.453333pt;}
.y157{bottom:546.173333pt;}
.yba{bottom:547.933333pt;}
.y10e{bottom:549.213333pt;}
.ydf{bottom:558.493333pt;}
.y9e{bottom:559.293333pt;}
.y142{bottom:560.413333pt;}
.y54{bottom:561.213333pt;}
.y2f{bottom:561.853333pt;}
.yb9{bottom:569.053333pt;}
.y12e{bottom:573.693333pt;}
.y76{bottom:575.453333pt;}
.yde{bottom:576.573333pt;}
.y53{bottom:579.613333pt;}
.y2e{bottom:580.253333pt;}
.y9d{bottom:580.413333pt;}
.y141{bottom:587.933333pt;}
.yb8{bottom:590.173333pt;}
.ydd{bottom:595.293333pt;}
.y75{bottom:595.453333pt;}
.y52{bottom:598.013333pt;}
.y2d{bottom:598.653333pt;}
.y12d{bottom:601.373333pt;}
.y9c{bottom:601.533333pt;}
.yb7{bottom:611.453333pt;}
.y74{bottom:613.053333pt;}
.ydc{bottom:613.693333pt;}
.y156{bottom:614.653333pt;}
.y140{bottom:615.613333pt;}
.y51{bottom:616.413333pt;}
.y2c{bottom:617.053333pt;}
.y113{bottom:619.773333pt;}
.y9b{bottom:622.813333pt;}
.y12c{bottom:628.893333pt;}
.y73{bottom:630.653333pt;}
.ydb{bottom:632.093333pt;}
.yb6{bottom:632.573333pt;}
.y50{bottom:634.813333pt;}
.y2b{bottom:635.453333pt;}
.y112{bottom:636.733333pt;}
.y155{bottom:642.173333pt;}
.y13f{bottom:643.133333pt;}
.y9a{bottom:643.933333pt;}
.y72{bottom:648.253333pt;}
.yda{bottom:650.493333pt;}
.y4f{bottom:653.213333pt;}
.yb5{bottom:653.693333pt;}
.y2a{bottom:653.853333pt;}
.y23{bottom:654.013333pt;}
.y111{bottom:654.973333pt;}
.y12b{bottom:656.413333pt;}
.y10a{bottom:662.013333pt;}
.y99{bottom:665.053333pt;}
.y71{bottom:665.853333pt;}
.yd9{bottom:668.893333pt;}
.y22{bottom:671.613333pt;}
.y29{bottom:672.253333pt;}
.yb4{bottom:674.813333pt;}
.y109{bottom:678.973333pt;}
.y154{bottom:683.133333pt;}
.y70{bottom:683.613333pt;}
.y12a{bottom:684.093333pt;}
.y98{bottom:686.173333pt;}
.yd8{bottom:687.293333pt;}
.y21{bottom:689.213333pt;}
.y4e{bottom:690.013333pt;}
.y28{bottom:690.653333pt;}
.yb3{bottom:696.093333pt;}
.y108{bottom:697.373333pt;}
.y20{bottom:704.733333pt;}
.yd7{bottom:705.693333pt;}
.y97{bottom:707.293333pt;}
.y4d{bottom:708.413333pt;}
.y27{bottom:709.053333pt;}
.y153{bottom:710.813333pt;}
.y129{bottom:711.613333pt;}
.yb2{bottom:717.213333pt;}
.y6f{bottom:717.373333pt;}
.yd6{bottom:724.093333pt;}
.y4c{bottom:726.813333pt;}
.y26{bottom:727.453333pt;}
.y96{bottom:728.573333pt;}
.y1f{bottom:737.213333pt;}
.y6e{bottom:738.333333pt;}
.y128{bottom:739.293333pt;}
.yd5{bottom:742.493333pt;}
.y4b{bottom:745.213333pt;}
.y25{bottom:748.413333pt;}
.y95{bottom:749.733333pt;}
.y13e{bottom:752.613333pt;}
.y1e{bottom:754.013333pt;}
.y6d{bottom:759.493333pt;}
.yd4{bottom:760.933333pt;}
.y4a{bottom:764.893333pt;}
.y152{bottom:766.053333pt;}
.y24{bottom:769.413333pt;}
.y94{bottom:770.853333pt;}
.y1d{bottom:771.013333pt;}
.yd3{bottom:779.333333pt;}
.y127{bottom:780.293333pt;}
.y6c{bottom:780.773333pt;}
.y16{bottom:787.493333pt;}
.y93{bottom:791.973333pt;}
.yd2{bottom:797.733333pt;}
.y6b{bottom:801.893333pt;}
.y151{bottom:806.853333pt;}
.y15{bottom:807.173333pt;}
.y92{bottom:813.253333pt;}
.yd1{bottom:816.133333pt;}
.y126{bottom:821.253333pt;}
.y6a{bottom:823.013333pt;}
.y14{bottom:823.813333pt;}
.y91{bottom:834.373333pt;}
.y150{bottom:834.533333pt;}
.y13{bottom:840.613333pt;}
.y69{bottom:844.133333pt;}
.y125{bottom:848.773333pt;}
.yd0{bottom:852.453333pt;}
.y12{bottom:857.573333pt;}
.y13d{bottom:862.053333pt;}
.y68{bottom:865.253333pt;}
.ycf{bottom:869.413333pt;}
.y90{bottom:873.413333pt;}
.y11{bottom:874.373333pt;}
.y1c{bottom:880.933333pt;}
.y5{bottom:882.533333pt;}
.y67{bottom:886.533333pt;}
.yce{bottom:887.813333pt;}
.y124{bottom:889.733333pt;}
.y8f{bottom:890.693333pt;}
.y10{bottom:893.733333pt;}
.y66{bottom:907.653333pt;}
.y8e{bottom:908.933333pt;}
.y1b{bottom:913.093333pt;}
.y123{bottom:917.253333pt;}
.y1a{bottom:922.533333pt;}
.y65{bottom:928.773333pt;}
.yf{bottom:930.533333pt;}
.y14f{bottom:930.693333pt;}
.y19{bottom:940.133333pt;}
.y13c{bottom:944.933333pt;}
.ye{bottom:949.093333pt;}
.y64{bottom:949.893333pt;}
.y122{bottom:958.213333pt;}
.y18{bottom:960.933333pt;}
.yd{bottom:962.533333pt;}
.y63{bottom:971.173333pt;}
.y163{bottom:972.453333pt;}
.yc{bottom:975.813333pt;}
.y121{bottom:985.893333pt;}
.yb{bottom:989.093333pt;}
.y62{bottom:992.293333pt;}
.ya{bottom:1002.533333pt;}
.y61{bottom:1013.440000pt;}
.y17{bottom:1014.400000pt;}
.y9{bottom:1015.840000pt;}
.y8{bottom:1029.120000pt;}
.y59{bottom:1038.720000pt;}
.y8b{bottom:1038.880000pt;}
.y5b{bottom:1044.480000pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1084.320000pt;}
.h13{height:5.025000pt;}
.h15{height:17.280000pt;}
.h11{height:17.440000pt;}
.hb{height:28.893750pt;}
.hc{height:36.883125pt;}
.h4{height:42.226667pt;}
.h14{height:47.621250pt;}
.h3{height:52.108438pt;}
.h2{height:52.134375pt;}
.h9{height:53.535000pt;}
.h12{height:55.833333pt;}
.he{height:57.375000pt;}
.h7{height:57.787500pt;}
.h5{height:59.340000pt;}
.h16{height:62.781250pt;}
.hd{height:62.812500pt;}
.ha{height:64.500000pt;}
.h6{height:73.490625pt;}
.hf{height:83.540625pt;}
.h8{height:85.785000pt;}
.h10{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:144.985333pt;}
.w6{width:186.417333pt;}
.w9{width:188.813333pt;}
.w8{width:384.857333pt;}
.w7{width:389.186667pt;}
.w5{width:553.840000pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x15{left:7.190667pt;}
.x1d{left:10.386667pt;}
.x17{left:11.680000pt;}
.x6{left:22.720000pt;}
.x7{left:30.240000pt;}
.xe{left:32.160000pt;}
.x5{left:33.441333pt;}
.x1b{left:35.665333pt;}
.x18{left:37.440000pt;}
.x1e{left:94.866667pt;}
.x14{left:106.281333pt;}
.x13{left:113.472000pt;}
.x11{left:125.001333pt;}
.x19{left:160.666667pt;}
.xf{left:199.226667pt;}
.x1{left:202.266667pt;}
.xd{left:212.986667pt;}
.xc{left:231.866667pt;}
.x8{left:239.386667pt;}
.x2{left:249.666667pt;}
.x16{left:293.346667pt;}
.x9{left:368.066667pt;}
.xb{left:384.866667pt;}
.x12{left:403.412000pt;}
.x10{left:456.893333pt;}
.xa{left:461.853333pt;}
.x1c{left:491.786667pt;}
.x4{left:590.533333pt;}
.x3{left:593.413333pt;}
.x1a{left:660.453333pt;}
}




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