
    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_47b3694d1027f9a657c0d6e5.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_d4d6e9a7749989fc71572860.woff2')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_4cd6b7f3724c5e8421c6e58e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bbbb9223b1f23600c925007c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_43ba3e58275193ce0cb012df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.118164;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_a914e6576be154e76d58fb57.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.118164;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_24fc80c5499dd2e5e3a65224.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_0990ba291418ee3036932eb4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f57bcf1b805a213df6044a75.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.097800px;}
.ls2{letter-spacing:-0.088800px;}
.ls9{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000001px;}
.ls4{letter-spacing:0.012960px;}
.ls12{letter-spacing:0.023040px;}
.lsf{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.319680px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.361200px;}
.ls15{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.535800px;}
.ls16{letter-spacing:0.576000px;}
.lse{letter-spacing:0.648000px;}
.ls13{letter-spacing:13.680000px;}
.ls17{letter-spacing:23.040000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(238,236,225),0 0.015em rgb(238,236,225),0.015em 0 rgb(238,236,225),0 -0.015em  rgb(238,236,225);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(238,236,225);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.421200px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-20.971200px;}
.ws10{word-spacing:-16.272000px;}
.wsc{word-spacing:-15.984000px;}
.wsb{word-spacing:-15.912000px;}
.ws8{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.696000px;}
.ws9{word-spacing:-15.624000px;}
.wsa{word-spacing:-15.552000px;}
.wsd{word-spacing:-15.480000px;}
.wsf{word-spacing:-14.595840px;}
.wse{word-spacing:-14.572800px;}
.ws7{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.049400px;}
.ws0{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-4.104000px;}
._b{margin-left:-2.880000px;}
._0{margin-left:-1.236240px;}
._3{width:1.314720px;}
._13{width:2.813040px;}
._4{width:3.962400px;}
._d{width:5.184000px;}
._e{width:6.264000px;}
._1a{width:7.583040px;}
._5{width:8.784720px;}
._6{width:9.860400px;}
._2{width:11.473920px;}
._17{width:13.464000px;}
._9{width:14.659680px;}
._a{width:15.673680px;}
._2b{width:16.783920px;}
._c{width:17.784000px;}
._23{width:19.512000px;}
._22{width:20.736960px;}
._8{width:22.319040px;}
._7{width:23.366160px;}
._1d{width:24.959520px;}
._19{width:26.376480px;}
._18{width:27.576000px;}
._1f{width:29.016000px;}
._14{width:30.672000px;}
._15{width:31.752000px;}
._1b{width:32.760000px;}
._24{width:33.768000px;}
._20{width:35.928000px;}
._21{width:37.224000px;}
._2d{width:38.233440px;}
._1c{width:39.384000px;}
._29{width:41.237280px;}
._2c{width:43.282800px;}
._11{width:44.508240px;}
._10{width:45.648000px;}
._12{width:47.375520px;}
._25{width:49.032000px;}
._26{width:50.328000px;}
._27{width:53.424000px;}
._16{width:57.360000px;}
._1e{width:59.064000px;}
._28{width:60.312000px;}
._2e{width:61.992000px;}
._2f{width:63.360000px;}
._2a{width:71.075520px;}
._31{width:83.232000px;}
._32{width:84.768000px;}
._34{width:131.040000px;}
._33{width:132.672000px;}
._36{width:165.528000px;}
._37{width:166.548000px;}
._30{width:176.592000px;}
._35{width:976.752000px;}
._1{width:1260.300000px;}
.fc3{color:transparent;}
.fc2{color:rgb(238,236,225);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y18{bottom:3.240000px;}
.y157{bottom:3.600000px;}
.y15f{bottom:3.780000px;}
.y4{bottom:12.060000px;}
.y159{bottom:13.320000px;}
.yb{bottom:16.740000px;}
.y17{bottom:20.880000px;}
.y15a{bottom:23.040000px;}
.ye{bottom:30.600000px;}
.y15c{bottom:32.760000px;}
.y16{bottom:38.340000px;}
.ya{bottom:41.070000px;}
.y15b{bottom:42.300000px;}
.y15e{bottom:42.480000px;}
.y7{bottom:52.560000px;}
.y15{bottom:55.980000px;}
.y9{bottom:65.370000px;}
.y14{bottom:73.656000px;}
.y13{bottom:91.116000px;}
.y12{bottom:108.756000px;}
.y11{bottom:126.396000px;}
.y10{bottom:143.856000px;}
.y49{bottom:161.490000px;}
.yb2{bottom:164.190000px;}
.y10b{bottom:165.990000px;}
.yd9{bottom:169.410000px;}
.y197{bottom:169.770000px;}
.y6c{bottom:169.950000px;}
.y14f{bottom:175.350000px;}
.y48{bottom:179.130000px;}
.y172{bottom:180.390000px;}
.y8a{bottom:180.570000px;}
.y125{bottom:182.370000px;}
.yb1{bottom:183.630000px;}
.yf2{bottom:183.990000px;}
.y10a{bottom:185.250000px;}
.y167{bottom:186.150000px;}
.yd8{bottom:188.850000px;}
.y196{bottom:190.830000px;}
.y47{bottom:196.770000px;}
.y171{bottom:201.450000px;}
.y6b{bottom:201.630000px;}
.yb0{bottom:202.890000px;}
.y109{bottom:204.690000px;}
.y14e{bottom:206.850000px;}
.yd7{bottom:208.110000px;}
.y195{bottom:212.070000px;}
.y86{bottom:212.250000px;}
.y124{bottom:213.870000px;}
.y46{bottom:214.230000px;}
.yf1{bottom:215.670000px;}
.y166{bottom:217.830000px;}
.y45{bottom:218.010000px;}
.yaf{bottom:222.330000px;}
.y97{bottom:222.510000px;}
.yd{bottom:222.870000px;}
.y108{bottom:223.950000px;}
.yd6{bottom:227.550000px;}
.y44{bottom:231.870000px;}
.y194{bottom:233.130000px;}
.y6a{bottom:233.310000px;}
.y14d{bottom:238.530000px;}
.yae{bottom:241.590000px;}
.y96{bottom:243.750000px;}
.y85{bottom:243.930000px;}
.y123{bottom:245.550000px;}
.yd5{bottom:246.810000px;}
.yf0{bottom:247.350000px;}
.y165{bottom:249.510000px;}
.y43{bottom:250.050000px;}
.y193{bottom:254.190000px;}
.y107{bottom:254.370000px;}
.y42{bottom:254.550000px;}
.yad{bottom:261.030000px;}
.y95{bottom:264.810000px;}
.y69{bottom:264.990000px;}
.yd4{bottom:266.250000px;}
.y14c{bottom:270.210000px;}
.y41{bottom:270.570000px;}
.y192{bottom:275.250000px;}
.y84{bottom:275.430000px;}
.y122{bottom:277.230000px;}
.yef{bottom:279.030000px;}
.yac{bottom:280.290000px;}
.y164{bottom:281.190000px;}
.yd3{bottom:285.510000px;}
.y94{bottom:285.870000px;}
.y106{bottom:286.050000px;}
.y40{bottom:288.750000px;}
.y3f{bottom:293.250000px;}
.y191{bottom:296.490000px;}
.y68{bottom:296.670000px;}
.ydf{bottom:299.550000px;}
.y14b{bottom:301.890000px;}
.y163{bottom:302.070000px;}
.yd2{bottom:304.950000px;}
.y170{bottom:306.930000px;}
.y83{bottom:307.110000px;}
.y121{bottom:308.910000px;}
.y3e{bottom:310.350000px;}
.yab{bottom:310.710000px;}
.y190{bottom:317.550000px;}
.y93{bottom:317.730000px;}
.yde{bottom:318.990000px;}
.y162{bottom:323.130000px;}
.yd1{bottom:324.210000px;}
.y16f{bottom:328.170000px;}
.y67{bottom:328.350000px;}
.y14a{bottom:333.570000px;}
.y18f{bottom:338.655000px;}
.y82{bottom:338.835000px;}
.y120{bottom:340.635000px;}
.yaa{bottom:342.435000px;}
.y105{bottom:343.695000px;}
.y161{bottom:344.415000px;}
.y3d{bottom:345.855000px;}
.y66{bottom:349.275000px;}
.y92{bottom:349.455000px;}
.yd0{bottom:354.675000px;}
.y18e{bottom:359.715000px;}
.y160{bottom:365.115000px;}
.y149{bottom:365.295000px;}
.y65{bottom:370.335000px;}
.y81{bottom:370.515000px;}
.y11f{bottom:372.315000px;}
.ya9{bottom:374.115000px;}
.y3c{bottom:377.535000px;}
.y18d{bottom:380.955000px;}
.y91{bottom:381.135000px;}
.y15d{bottom:385.635000px;}
.ycf{bottom:386.355000px;}
.y64{bottom:391.395000px;}
.y148{bottom:396.975000px;}
.y18c{bottom:402.015000px;}
.y80{bottom:402.195000px;}
.y11e{bottom:403.995000px;}
.ya8{bottom:405.615000px;}
.y3b{bottom:409.215000px;}
.y16e{bottom:412.455000px;}
.y90{bottom:412.635000px;}
.yce{bottom:418.035000px;}
.y18b{bottom:423.075000px;}
.y63{bottom:423.255000px;}
.y147{bottom:428.475000px;}
.y16d{bottom:433.695000px;}
.y7f{bottom:433.875000px;}
.y11d{bottom:435.495000px;}
.ya7{bottom:437.295000px;}
.y3a{bottom:440.895000px;}
.y62{bottom:444.135000px;}
.y8f{bottom:444.315000px;}
.ycd{bottom:449.715000px;}
.y16c{bottom:454.755000px;}
.y146{bottom:460.155000px;}
.y18a{bottom:465.375000px;}
.y7e{bottom:465.555000px;}
.y11c{bottom:467.175000px;}
.ya6{bottom:468.975000px;}
.y39{bottom:472.575000px;}
.y16b{bottom:475.815000px;}
.y61{bottom:475.995000px;}
.ycc{bottom:481.215000px;}
.y152{bottom:486.435000px;}
.y145{bottom:491.835000px;}
.y16a{bottom:496.875000px;}
.y7d{bottom:497.055000px;}
.y11b{bottom:498.855000px;}
.ya5{bottom:500.655000px;}
.yc{bottom:502.995000px;}
.y38{bottom:504.075000px;}
.y151{bottom:507.495000px;}
.y60{bottom:507.675000px;}
.ycb{bottom:512.895000px;}
.y158{bottom:513.795000px;}
.y169{bottom:518.115000px;}
.y144{bottom:523.515000px;}
.y150{bottom:528.555000px;}
.y7c{bottom:528.735000px;}
.y11a{bottom:530.535000px;}
.ya4{bottom:532.335000px;}
.y37{bottom:535.755000px;}
.y168{bottom:539.175000px;}
.y5f{bottom:539.355000px;}
.yca{bottom:544.575000px;}
.y189{bottom:549.795000px;}
.y143{bottom:555.195000px;}
.y156{bottom:558.435000px;}
.ydd{bottom:560.235000px;}
.y7b{bottom:560.415000px;}
.y119{bottom:562.215000px;}
.ya3{bottom:564.015000px;}
.y36{bottom:567.435000px;}
.y188{bottom:570.855000px;}
.y5e{bottom:571.035000px;}
.y142{bottom:575.715000px;}
.yc9{bottom:576.255000px;}
.ydc{bottom:581.295000px;}
.y155{bottom:586.335000px;}
.y187{bottom:591.915000px;}
.y7a{bottom:592.095000px;}
.y118{bottom:593.895000px;}
.y141{bottom:595.155000px;}
.ya2{bottom:595.695000px;}
.y35{bottom:599.115000px;}
.ydb{bottom:602.535000px;}
.y5d{bottom:602.715000px;}
.y154{bottom:605.625000px;}
.yc8{bottom:607.965000px;}
.y186{bottom:613.005000px;}
.y140{bottom:614.445000px;}
.yee{bottom:616.245000px;}
.yda{bottom:623.625000px;}
.y79{bottom:623.805000px;}
.y153{bottom:625.065000px;}
.y117{bottom:625.605000px;}
.ya1{bottom:627.225000px;}
.y34{bottom:630.825000px;}
.y13f{bottom:633.885000px;}
.y185{bottom:634.065000px;}
.y5c{bottom:634.245000px;}
.yed{bottom:635.505000px;}
.yc7{bottom:639.645000px;}
.y33{bottom:651.705000px;}
.y13e{bottom:653.145000px;}
.yec{bottom:654.945000px;}
.y184{bottom:655.305000px;}
.y78{bottom:655.485000px;}
.y116{bottom:657.105000px;}
.ya0{bottom:658.905000px;}
.y5b{bottom:665.925000px;}
.yc6{bottom:671.325000px;}
.y13d{bottom:672.585000px;}
.y32{bottom:672.765000px;}
.yeb{bottom:674.205000px;}
.y183{bottom:676.365000px;}
.y9f{bottom:679.605000px;}
.y77{bottom:687.165000px;}
.y115{bottom:688.785000px;}
.y104{bottom:690.585000px;}
.y13c{bottom:691.845000px;}
.yea{bottom:693.645000px;}
.y31{bottom:694.005000px;}
.y182{bottom:697.425000px;}
.y5a{bottom:697.605000px;}
.y9e{bottom:698.865000px;}
.yc5{bottom:702.825000px;}
.y13b{bottom:711.285000px;}
.ye9{bottom:712.905000px;}
.y30{bottom:715.065000px;}
.y9d{bottom:718.305000px;}
.y181{bottom:718.485000px;}
.y76{bottom:718.665000px;}
.y114{bottom:720.465000px;}
.y103{bottom:722.265000px;}
.y59{bottom:729.285000px;}
.ye8{bottom:732.345000px;}
.yc4{bottom:734.505000px;}
.y2f{bottom:736.125000px;}
.y9c{bottom:737.565000px;}
.y89{bottom:739.725000px;}
.y130{bottom:741.345000px;}
.y13a{bottom:741.525000px;}
.y75{bottom:750.345000px;}
.y113{bottom:752.145000px;}
.y102{bottom:753.945000px;}
.y9b{bottom:757.005000px;}
.y2e{bottom:757.185000px;}
.y88{bottom:760.785000px;}
.y58{bottom:760.965000px;}
.y12f{bottom:762.585000px;}
.ye7{bottom:762.765000px;}
.yc3{bottom:766.185000px;}
.y112{bottom:772.665000px;}
.y139{bottom:773.205000px;}
.y9a{bottom:776.265000px;}
.y2c{bottom:778.425000px;}
.y87{bottom:781.845000px;}
.y74{bottom:782.025000px;}
.y2d{bottom:782.925000px;}
.y12e{bottom:783.645000px;}
.y101{bottom:785.625000px;}
.y111{bottom:792.105000px;}
.y57{bottom:792.645000px;}
.ye6{bottom:794.265000px;}
.y99{bottom:795.525000px;}
.yc2{bottom:797.865000px;}
.y2b{bottom:799.485000px;}
.y180{bottom:802.905000px;}
.y12d{bottom:804.705000px;}
.y138{bottom:804.885000px;}
.y110{bottom:811.365000px;}
.y73{bottom:813.705000px;}
.y98{bottom:814.965000px;}
.y100{bottom:817.125000px;}
.y2a{bottom:820.545000px;}
.y17f{bottom:824.145000px;}
.y56{bottom:824.325000px;}
.ye5{bottom:825.945000px;}
.yc1{bottom:829.545000px;}
.y10f{bottom:830.805000px;}
.y12c{bottom:836.565000px;}
.y29{bottom:841.605000px;}
.y8e{bottom:845.205000px;}
.y72{bottom:845.385000px;}
.yff{bottom:848.805000px;}
.yc0{bottom:850.065000px;}
.y55{bottom:855.825000px;}
.y137{bottom:857.085000px;}
.ye4{bottom:857.625000px;}
.y28{bottom:862.845000px;}
.y8d{bottom:866.265000px;}
.y12b{bottom:868.245000px;}
.ybf{bottom:869.505000px;}
.y136{bottom:876.570000px;}
.y54{bottom:876.930000px;}
.y71{bottom:877.110000px;}
.yfe{bottom:880.530000px;}
.y26{bottom:883.950000px;}
.y8c{bottom:887.370000px;}
.y27{bottom:888.450000px;}
.ybe{bottom:888.810000px;}
.ye3{bottom:889.350000px;}
.y135{bottom:895.830000px;}
.y53{bottom:897.990000px;}
.y12a{bottom:899.970000px;}
.y3{bottom:903.390000px;}
.y25{bottom:905.010000px;}
.ybd{bottom:908.250000px;}
.y8b{bottom:908.610000px;}
.y70{bottom:908.790000px;}
.yfd{bottom:912.210000px;}
.y134{bottom:915.270000px;}
.y52{bottom:919.050000px;}
.y10e{bottom:919.230000px;}
.ye2{bottom:921.030000px;}
.y24{bottom:926.070000px;}
.ybc{bottom:927.510000px;}
.y17e{bottom:929.670000px;}
.y129{bottom:931.650000px;}
.y133{bottom:934.530000px;}
.y6f{bottom:940.290000px;}
.yfc{bottom:943.890000px;}
.ybb{bottom:946.950000px;}
.y23{bottom:947.130000px;}
.y17d{bottom:950.730000px;}
.y51{bottom:950.910000px;}
.ye1{bottom:952.710000px;}
.y132{bottom:953.970000px;}
.y128{bottom:963.150000px;}
.yba{bottom:966.210000px;}
.y22{bottom:968.370000px;}
.y198{bottom:971.790000px;}
.y6e{bottom:971.970000px;}
.y17c{bottom:972.150000px;}
.y131{bottom:973.230000px;}
.yfb{bottom:975.570000px;}
.y50{bottom:982.590000px;}
.ye0{bottom:984.390000px;}
.yb9{bottom:985.650000px;}
.y20{bottom:989.430000px;}
.y17b{bottom:992.850000px;}
.y21{bottom:993.930000px;}
.y127{bottom:994.830000px;}
.y4f{bottom:1003.470000px;}
.y6d{bottom:1003.650000px;}
.yfa{bottom:1007.250000px;}
.y1f{bottom:1011.390000px;}
.y17a{bottom:1014.090000px;}
.y10d{bottom:1014.270000px;}
.yb8{bottom:1015.890000px;}
.y126{bottom:1026.510000px;}
.yf9{bottom:1027.770000px;}
.y179{bottom:1035.150000px;}
.y4e{bottom:1035.330000px;}
.y1e{bottom:1035.870000px;}
.y10c{bottom:1045.950000px;}
.yf8{bottom:1047.210000px;}
.yb7{bottom:1047.570000px;}
.y178{bottom:1056.210000px;}
.y1d{bottom:1060.530000px;}
.yf7{bottom:1066.470000px;}
.y4d{bottom:1067.010000px;}
.y177{bottom:1077.270000px;}
.yb6{bottom:1079.250000px;}
.y1c{bottom:1085.190000px;}
.yf6{bottom:1085.730000px;}
.y176{bottom:1098.510000px;}
.y4c{bottom:1098.690000px;}
.yf5{bottom:1105.170000px;}
.y8{bottom:1107.870000px;}
.y1b{bottom:1109.850000px;}
.yb5{bottom:1110.930000px;}
.y175{bottom:1119.570000px;}
.yf4{bottom:1124.430000px;}
.y4b{bottom:1130.190000px;}
.y1a{bottom:1134.510000px;}
.y174{bottom:1140.660000px;}
.y6{bottom:1141.380000px;}
.yb4{bottom:1142.640000px;}
.yf3{bottom:1143.900000px;}
.y19{bottom:1159.020000px;}
.y173{bottom:1161.720000px;}
.y4a{bottom:1161.900000px;}
.y5{bottom:1162.260000px;}
.yb3{bottom:1163.160000px;}
.yf{bottom:1183.320000px;}
.y2{bottom:1184.040000px;}
.y1{bottom:1204.020000px;}
.h15{height:19.260000px;}
.h4{height:29.160000px;}
.h11{height:33.830156px;}
.h16{height:38.700000px;}
.hf{height:41.974453px;}
.he{height:42.351328px;}
.h10{height:51.998203px;}
.hb{height:52.465078px;}
.h13{height:57.636562px;}
.h17{height:57.960000px;}
.h18{height:58.140000px;}
.h14{height:58.154062px;}
.h12{height:59.439023px;}
.h6{height:62.648438px;}
.hd{height:63.210938px;}
.h3{height:65.884219px;}
.h2{height:70.664062px;}
.hc{height:73.956797px;}
.h5{height:74.953125px;}
.h8{height:76.507031px;}
.ha{height:93.983203px;}
.h7{height:106.416000px;}
.h9{height:244.650000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:39.996000px;}
.w6{width:80.100000px;}
.w8{width:271.650000px;}
.w7{width:294.195000px;}
.w5{width:717.090000px;}
.w4{width:892.979972px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:1.260000px;}
.x26{left:2.700000px;}
.x27{left:3.780000px;}
.x30{left:5.760000px;}
.x2c{left:8.820000px;}
.x9{left:10.800000px;}
.x25{left:12.420000px;}
.x5{left:14.579972px;}
.x2d{left:19.440000px;}
.x6{left:22.499972px;}
.x2b{left:33.840000px;}
.x1{left:42.479987px;}
.x2e{left:44.460000px;}
.x8{left:51.660000px;}
.x24{left:55.260000px;}
.x28{left:67.320000px;}
.x2f{left:73.665000px;}
.x2a{left:78.885000px;}
.x22{left:109.665000px;}
.x3{left:127.655987px;}
.x20{left:130.536000px;}
.xd{left:133.595987px;}
.x1b{left:170.129973px;}
.x1e{left:180.749987px;}
.x21{left:214.410000px;}
.x14{left:254.909987px;}
.x18{left:268.949987px;}
.x12{left:271.289987px;}
.x19{left:274.709987px;}
.x7{left:291.674972px;}
.x1f{left:297.794987px;}
.x13{left:300.854987px;}
.xe{left:342.254987px;}
.xc{left:346.214987px;}
.xa{left:351.615000px;}
.xf{left:353.594987px;}
.x15{left:362.414987px;}
.x1c{left:386.174987px;}
.x1d{left:407.054987px;}
.x1a{left:416.234987px;}
.xb{left:451.874987px;}
.x23{left:512.205000px;}
.x16{left:534.164973px;}
.x17{left:541.364987px;}
.x10{left:542.984973px;}
.x11{left:550.184987px;}
.x2{left:825.450000px;}
.x4{left:897.839987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.086933pt;}
.ls2{letter-spacing:-0.078933pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000001pt;}
.ls4{letter-spacing:0.011520pt;}
.ls12{letter-spacing:0.020480pt;}
.lsf{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.284160pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.321067pt;}
.ls15{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.476267pt;}
.ls16{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.576000pt;}
.ls13{letter-spacing:12.160000pt;}
.ls17{letter-spacing:20.480000pt;}
.ws2{word-spacing:-19.041067pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.641067pt;}
.ws10{word-spacing:-14.464000pt;}
.wsc{word-spacing:-14.208000pt;}
.wsb{word-spacing:-14.144000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.952000pt;}
.ws9{word-spacing:-13.888000pt;}
.wsa{word-spacing:-13.824000pt;}
.wsd{word-spacing:-13.760000pt;}
.wsf{word-spacing:-12.974080pt;}
.wse{word-spacing:-12.953600pt;}
.ws7{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.599467pt;}
.ws0{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-3.648000pt;}
._b{margin-left:-2.560000pt;}
._0{margin-left:-1.098880pt;}
._3{width:1.168640pt;}
._13{width:2.500480pt;}
._4{width:3.522133pt;}
._d{width:4.608000pt;}
._e{width:5.568000pt;}
._1a{width:6.740480pt;}
._5{width:7.808640pt;}
._6{width:8.764800pt;}
._2{width:10.199040pt;}
._17{width:11.968000pt;}
._9{width:13.030827pt;}
._a{width:13.932160pt;}
._2b{width:14.919040pt;}
._c{width:15.808000pt;}
._23{width:17.344000pt;}
._22{width:18.432853pt;}
._8{width:19.839147pt;}
._7{width:20.769920pt;}
._1d{width:22.186240pt;}
._19{width:23.445760pt;}
._18{width:24.512000pt;}
._1f{width:25.792000pt;}
._14{width:27.264000pt;}
._15{width:28.224000pt;}
._1b{width:29.120000pt;}
._24{width:30.016000pt;}
._20{width:31.936000pt;}
._21{width:33.088000pt;}
._2d{width:33.985280pt;}
._1c{width:35.008000pt;}
._29{width:36.655360pt;}
._2c{width:38.473600pt;}
._11{width:39.562880pt;}
._10{width:40.576000pt;}
._12{width:42.111573pt;}
._25{width:43.584000pt;}
._26{width:44.736000pt;}
._27{width:47.488000pt;}
._16{width:50.986667pt;}
._1e{width:52.501333pt;}
._28{width:53.610667pt;}
._2e{width:55.104000pt;}
._2f{width:56.320000pt;}
._2a{width:63.178240pt;}
._31{width:73.984000pt;}
._32{width:75.349333pt;}
._34{width:116.480000pt;}
._33{width:117.930667pt;}
._36{width:147.136000pt;}
._37{width:148.042667pt;}
._30{width:156.970667pt;}
._35{width:868.224000pt;}
._1{width:1120.266667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:2.880000pt;}
.y157{bottom:3.200000pt;}
.y15f{bottom:3.360000pt;}
.y4{bottom:10.720000pt;}
.y159{bottom:11.840000pt;}
.yb{bottom:14.880000pt;}
.y17{bottom:18.560000pt;}
.y15a{bottom:20.480000pt;}
.ye{bottom:27.200000pt;}
.y15c{bottom:29.120000pt;}
.y16{bottom:34.080000pt;}
.ya{bottom:36.506667pt;}
.y15b{bottom:37.600000pt;}
.y15e{bottom:37.760000pt;}
.y7{bottom:46.720000pt;}
.y15{bottom:49.760000pt;}
.y9{bottom:58.106667pt;}
.y14{bottom:65.472000pt;}
.y13{bottom:80.992000pt;}
.y12{bottom:96.672000pt;}
.y11{bottom:112.352000pt;}
.y10{bottom:127.872000pt;}
.y49{bottom:143.546667pt;}
.yb2{bottom:145.946667pt;}
.y10b{bottom:147.546667pt;}
.yd9{bottom:150.586667pt;}
.y197{bottom:150.906667pt;}
.y6c{bottom:151.066667pt;}
.y14f{bottom:155.866667pt;}
.y48{bottom:159.226667pt;}
.y172{bottom:160.346667pt;}
.y8a{bottom:160.506667pt;}
.y125{bottom:162.106667pt;}
.yb1{bottom:163.226667pt;}
.yf2{bottom:163.546667pt;}
.y10a{bottom:164.666667pt;}
.y167{bottom:165.466667pt;}
.yd8{bottom:167.866667pt;}
.y196{bottom:169.626667pt;}
.y47{bottom:174.906667pt;}
.y171{bottom:179.066667pt;}
.y6b{bottom:179.226667pt;}
.yb0{bottom:180.346667pt;}
.y109{bottom:181.946667pt;}
.y14e{bottom:183.866667pt;}
.yd7{bottom:184.986667pt;}
.y195{bottom:188.506667pt;}
.y86{bottom:188.666667pt;}
.y124{bottom:190.106667pt;}
.y46{bottom:190.426667pt;}
.yf1{bottom:191.706667pt;}
.y166{bottom:193.626667pt;}
.y45{bottom:193.786667pt;}
.yaf{bottom:197.626667pt;}
.y97{bottom:197.786667pt;}
.yd{bottom:198.106667pt;}
.y108{bottom:199.066667pt;}
.yd6{bottom:202.266667pt;}
.y44{bottom:206.106667pt;}
.y194{bottom:207.226667pt;}
.y6a{bottom:207.386667pt;}
.y14d{bottom:212.026667pt;}
.yae{bottom:214.746667pt;}
.y96{bottom:216.666667pt;}
.y85{bottom:216.826667pt;}
.y123{bottom:218.266667pt;}
.yd5{bottom:219.386667pt;}
.yf0{bottom:219.866667pt;}
.y165{bottom:221.786667pt;}
.y43{bottom:222.266667pt;}
.y193{bottom:225.946667pt;}
.y107{bottom:226.106667pt;}
.y42{bottom:226.266667pt;}
.yad{bottom:232.026667pt;}
.y95{bottom:235.386667pt;}
.y69{bottom:235.546667pt;}
.yd4{bottom:236.666667pt;}
.y14c{bottom:240.186667pt;}
.y41{bottom:240.506667pt;}
.y192{bottom:244.666667pt;}
.y84{bottom:244.826667pt;}
.y122{bottom:246.426667pt;}
.yef{bottom:248.026667pt;}
.yac{bottom:249.146667pt;}
.y164{bottom:249.946667pt;}
.yd3{bottom:253.786667pt;}
.y94{bottom:254.106667pt;}
.y106{bottom:254.266667pt;}
.y40{bottom:256.666667pt;}
.y3f{bottom:260.666667pt;}
.y191{bottom:263.546667pt;}
.y68{bottom:263.706667pt;}
.ydf{bottom:266.266667pt;}
.y14b{bottom:268.346667pt;}
.y163{bottom:268.506667pt;}
.yd2{bottom:271.066667pt;}
.y170{bottom:272.826667pt;}
.y83{bottom:272.986667pt;}
.y121{bottom:274.586667pt;}
.y3e{bottom:275.866667pt;}
.yab{bottom:276.186667pt;}
.y190{bottom:282.266667pt;}
.y93{bottom:282.426667pt;}
.yde{bottom:283.546667pt;}
.y162{bottom:287.226667pt;}
.yd1{bottom:288.186667pt;}
.y16f{bottom:291.706667pt;}
.y67{bottom:291.866667pt;}
.y14a{bottom:296.506667pt;}
.y18f{bottom:301.026667pt;}
.y82{bottom:301.186667pt;}
.y120{bottom:302.786667pt;}
.yaa{bottom:304.386667pt;}
.y105{bottom:305.506667pt;}
.y161{bottom:306.146667pt;}
.y3d{bottom:307.426667pt;}
.y66{bottom:310.466667pt;}
.y92{bottom:310.626667pt;}
.yd0{bottom:315.266667pt;}
.y18e{bottom:319.746667pt;}
.y160{bottom:324.546667pt;}
.y149{bottom:324.706667pt;}
.y65{bottom:329.186667pt;}
.y81{bottom:329.346667pt;}
.y11f{bottom:330.946667pt;}
.ya9{bottom:332.546667pt;}
.y3c{bottom:335.586667pt;}
.y18d{bottom:338.626667pt;}
.y91{bottom:338.786667pt;}
.y15d{bottom:342.786667pt;}
.ycf{bottom:343.426667pt;}
.y64{bottom:347.906667pt;}
.y148{bottom:352.866667pt;}
.y18c{bottom:357.346667pt;}
.y80{bottom:357.506667pt;}
.y11e{bottom:359.106667pt;}
.ya8{bottom:360.546667pt;}
.y3b{bottom:363.746667pt;}
.y16e{bottom:366.626667pt;}
.y90{bottom:366.786667pt;}
.yce{bottom:371.586667pt;}
.y18b{bottom:376.066667pt;}
.y63{bottom:376.226667pt;}
.y147{bottom:380.866667pt;}
.y16d{bottom:385.506667pt;}
.y7f{bottom:385.666667pt;}
.y11d{bottom:387.106667pt;}
.ya7{bottom:388.706667pt;}
.y3a{bottom:391.906667pt;}
.y62{bottom:394.786667pt;}
.y8f{bottom:394.946667pt;}
.ycd{bottom:399.746667pt;}
.y16c{bottom:404.226667pt;}
.y146{bottom:409.026667pt;}
.y18a{bottom:413.666667pt;}
.y7e{bottom:413.826667pt;}
.y11c{bottom:415.266667pt;}
.ya6{bottom:416.866667pt;}
.y39{bottom:420.066667pt;}
.y16b{bottom:422.946667pt;}
.y61{bottom:423.106667pt;}
.ycc{bottom:427.746667pt;}
.y152{bottom:432.386667pt;}
.y145{bottom:437.186667pt;}
.y16a{bottom:441.666667pt;}
.y7d{bottom:441.826667pt;}
.y11b{bottom:443.426667pt;}
.ya5{bottom:445.026667pt;}
.yc{bottom:447.106667pt;}
.y38{bottom:448.066667pt;}
.y151{bottom:451.106667pt;}
.y60{bottom:451.266667pt;}
.ycb{bottom:455.906667pt;}
.y158{bottom:456.706667pt;}
.y169{bottom:460.546667pt;}
.y144{bottom:465.346667pt;}
.y150{bottom:469.826667pt;}
.y7c{bottom:469.986667pt;}
.y11a{bottom:471.586667pt;}
.ya4{bottom:473.186667pt;}
.y37{bottom:476.226667pt;}
.y168{bottom:479.266667pt;}
.y5f{bottom:479.426667pt;}
.yca{bottom:484.066667pt;}
.y189{bottom:488.706667pt;}
.y143{bottom:493.506667pt;}
.y156{bottom:496.386667pt;}
.ydd{bottom:497.986667pt;}
.y7b{bottom:498.146667pt;}
.y119{bottom:499.746667pt;}
.ya3{bottom:501.346667pt;}
.y36{bottom:504.386667pt;}
.y188{bottom:507.426667pt;}
.y5e{bottom:507.586667pt;}
.y142{bottom:511.746667pt;}
.yc9{bottom:512.226667pt;}
.ydc{bottom:516.706667pt;}
.y155{bottom:521.186667pt;}
.y187{bottom:526.146667pt;}
.y7a{bottom:526.306667pt;}
.y118{bottom:527.906667pt;}
.y141{bottom:529.026667pt;}
.ya2{bottom:529.506667pt;}
.y35{bottom:532.546667pt;}
.ydb{bottom:535.586667pt;}
.y5d{bottom:535.746667pt;}
.y154{bottom:538.333333pt;}
.yc8{bottom:540.413333pt;}
.y186{bottom:544.893333pt;}
.y140{bottom:546.173333pt;}
.yee{bottom:547.773333pt;}
.yda{bottom:554.333333pt;}
.y79{bottom:554.493333pt;}
.y153{bottom:555.613333pt;}
.y117{bottom:556.093333pt;}
.ya1{bottom:557.533333pt;}
.y34{bottom:560.733333pt;}
.y13f{bottom:563.453333pt;}
.y185{bottom:563.613333pt;}
.y5c{bottom:563.773333pt;}
.yed{bottom:564.893333pt;}
.yc7{bottom:568.573333pt;}
.y33{bottom:579.293333pt;}
.y13e{bottom:580.573333pt;}
.yec{bottom:582.173333pt;}
.y184{bottom:582.493333pt;}
.y78{bottom:582.653333pt;}
.y116{bottom:584.093333pt;}
.ya0{bottom:585.693333pt;}
.y5b{bottom:591.933333pt;}
.yc6{bottom:596.733333pt;}
.y13d{bottom:597.853333pt;}
.y32{bottom:598.013333pt;}
.yeb{bottom:599.293333pt;}
.y183{bottom:601.213333pt;}
.y9f{bottom:604.093333pt;}
.y77{bottom:610.813333pt;}
.y115{bottom:612.253333pt;}
.y104{bottom:613.853333pt;}
.y13c{bottom:614.973333pt;}
.yea{bottom:616.573333pt;}
.y31{bottom:616.893333pt;}
.y182{bottom:619.933333pt;}
.y5a{bottom:620.093333pt;}
.y9e{bottom:621.213333pt;}
.yc5{bottom:624.733333pt;}
.y13b{bottom:632.253333pt;}
.ye9{bottom:633.693333pt;}
.y30{bottom:635.613333pt;}
.y9d{bottom:638.493333pt;}
.y181{bottom:638.653333pt;}
.y76{bottom:638.813333pt;}
.y114{bottom:640.413333pt;}
.y103{bottom:642.013333pt;}
.y59{bottom:648.253333pt;}
.ye8{bottom:650.973333pt;}
.yc4{bottom:652.893333pt;}
.y2f{bottom:654.333333pt;}
.y9c{bottom:655.613333pt;}
.y89{bottom:657.533333pt;}
.y130{bottom:658.973333pt;}
.y13a{bottom:659.133333pt;}
.y75{bottom:666.973333pt;}
.y113{bottom:668.573333pt;}
.y102{bottom:670.173333pt;}
.y9b{bottom:672.893333pt;}
.y2e{bottom:673.053333pt;}
.y88{bottom:676.253333pt;}
.y58{bottom:676.413333pt;}
.y12f{bottom:677.853333pt;}
.ye7{bottom:678.013333pt;}
.yc3{bottom:681.053333pt;}
.y112{bottom:686.813333pt;}
.y139{bottom:687.293333pt;}
.y9a{bottom:690.013333pt;}
.y2c{bottom:691.933333pt;}
.y87{bottom:694.973333pt;}
.y74{bottom:695.133333pt;}
.y2d{bottom:695.933333pt;}
.y12e{bottom:696.573333pt;}
.y101{bottom:698.333333pt;}
.y111{bottom:704.093333pt;}
.y57{bottom:704.573333pt;}
.ye6{bottom:706.013333pt;}
.y99{bottom:707.133333pt;}
.yc2{bottom:709.213333pt;}
.y2b{bottom:710.653333pt;}
.y180{bottom:713.693333pt;}
.y12d{bottom:715.293333pt;}
.y138{bottom:715.453333pt;}
.y110{bottom:721.213333pt;}
.y73{bottom:723.293333pt;}
.y98{bottom:724.413333pt;}
.y100{bottom:726.333333pt;}
.y2a{bottom:729.373333pt;}
.y17f{bottom:732.573333pt;}
.y56{bottom:732.733333pt;}
.ye5{bottom:734.173333pt;}
.yc1{bottom:737.373333pt;}
.y10f{bottom:738.493333pt;}
.y12c{bottom:743.613333pt;}
.y29{bottom:748.093333pt;}
.y8e{bottom:751.293333pt;}
.y72{bottom:751.453333pt;}
.yff{bottom:754.493333pt;}
.yc0{bottom:755.613333pt;}
.y55{bottom:760.733333pt;}
.y137{bottom:761.853333pt;}
.ye4{bottom:762.333333pt;}
.y28{bottom:766.973333pt;}
.y8d{bottom:770.013333pt;}
.y12b{bottom:771.773333pt;}
.ybf{bottom:772.893333pt;}
.y136{bottom:779.173333pt;}
.y54{bottom:779.493333pt;}
.y71{bottom:779.653333pt;}
.yfe{bottom:782.693333pt;}
.y26{bottom:785.733333pt;}
.y8c{bottom:788.773333pt;}
.y27{bottom:789.733333pt;}
.ybe{bottom:790.053333pt;}
.ye3{bottom:790.533333pt;}
.y135{bottom:796.293333pt;}
.y53{bottom:798.213333pt;}
.y12a{bottom:799.973333pt;}
.y3{bottom:803.013333pt;}
.y25{bottom:804.453333pt;}
.ybd{bottom:807.333333pt;}
.y8b{bottom:807.653333pt;}
.y70{bottom:807.813333pt;}
.yfd{bottom:810.853333pt;}
.y134{bottom:813.573333pt;}
.y52{bottom:816.933333pt;}
.y10e{bottom:817.093333pt;}
.ye2{bottom:818.693333pt;}
.y24{bottom:823.173333pt;}
.ybc{bottom:824.453333pt;}
.y17e{bottom:826.373333pt;}
.y129{bottom:828.133333pt;}
.y133{bottom:830.693333pt;}
.y6f{bottom:835.813333pt;}
.yfc{bottom:839.013333pt;}
.ybb{bottom:841.733333pt;}
.y23{bottom:841.893333pt;}
.y17d{bottom:845.093333pt;}
.y51{bottom:845.253333pt;}
.ye1{bottom:846.853333pt;}
.y132{bottom:847.973333pt;}
.y128{bottom:856.133333pt;}
.yba{bottom:858.853333pt;}
.y22{bottom:860.773333pt;}
.y198{bottom:863.813333pt;}
.y6e{bottom:863.973333pt;}
.y17c{bottom:864.133333pt;}
.y131{bottom:865.093333pt;}
.yfb{bottom:867.173333pt;}
.y50{bottom:873.413333pt;}
.ye0{bottom:875.013333pt;}
.yb9{bottom:876.133333pt;}
.y20{bottom:879.493333pt;}
.y17b{bottom:882.533333pt;}
.y21{bottom:883.493333pt;}
.y127{bottom:884.293333pt;}
.y4f{bottom:891.973333pt;}
.y6d{bottom:892.133333pt;}
.yfa{bottom:895.333333pt;}
.y1f{bottom:899.013333pt;}
.y17a{bottom:901.413333pt;}
.y10d{bottom:901.573333pt;}
.yb8{bottom:903.013333pt;}
.y126{bottom:912.453333pt;}
.yf9{bottom:913.573333pt;}
.y179{bottom:920.133333pt;}
.y4e{bottom:920.293333pt;}
.y1e{bottom:920.773333pt;}
.y10c{bottom:929.733333pt;}
.yf8{bottom:930.853333pt;}
.yb7{bottom:931.173333pt;}
.y178{bottom:938.853333pt;}
.y1d{bottom:942.693333pt;}
.yf7{bottom:947.973333pt;}
.y4d{bottom:948.453333pt;}
.y177{bottom:957.573333pt;}
.yb6{bottom:959.333333pt;}
.y1c{bottom:964.613333pt;}
.yf6{bottom:965.093333pt;}
.y176{bottom:976.453333pt;}
.y4c{bottom:976.613333pt;}
.yf5{bottom:982.373333pt;}
.y8{bottom:984.773333pt;}
.y1b{bottom:986.533333pt;}
.yb5{bottom:987.493333pt;}
.y175{bottom:995.173333pt;}
.yf4{bottom:999.493333pt;}
.y4b{bottom:1004.613333pt;}
.y1a{bottom:1008.453333pt;}
.y174{bottom:1013.920000pt;}
.y6{bottom:1014.560000pt;}
.yb4{bottom:1015.680000pt;}
.yf3{bottom:1016.800000pt;}
.y19{bottom:1030.240000pt;}
.y173{bottom:1032.640000pt;}
.y4a{bottom:1032.800000pt;}
.y5{bottom:1033.120000pt;}
.yb3{bottom:1033.920000pt;}
.yf{bottom:1051.840000pt;}
.y2{bottom:1052.480000pt;}
.y1{bottom:1070.240000pt;}
.h15{height:17.120000pt;}
.h4{height:25.920000pt;}
.h11{height:30.071250pt;}
.h16{height:34.400000pt;}
.hf{height:37.310625pt;}
.he{height:37.645625pt;}
.h10{height:46.220625pt;}
.hb{height:46.635625pt;}
.h13{height:51.232500pt;}
.h17{height:51.520000pt;}
.h18{height:51.680000pt;}
.h14{height:51.692500pt;}
.h12{height:52.834688pt;}
.h6{height:55.687500pt;}
.hd{height:56.187500pt;}
.h3{height:58.563750pt;}
.h2{height:62.812500pt;}
.hc{height:65.739375pt;}
.h5{height:66.625000pt;}
.h8{height:68.006250pt;}
.ha{height:83.540625pt;}
.h7{height:94.592000pt;}
.h9{height:217.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:35.552000pt;}
.w6{width:71.200000pt;}
.w8{width:241.466667pt;}
.w7{width:261.506667pt;}
.w5{width:637.413333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:1.120000pt;}
.x26{left:2.400000pt;}
.x27{left:3.360000pt;}
.x30{left:5.120000pt;}
.x2c{left:7.840000pt;}
.x9{left:9.600000pt;}
.x25{left:11.040000pt;}
.x5{left:12.959976pt;}
.x2d{left:17.280000pt;}
.x6{left:19.999976pt;}
.x2b{left:30.080000pt;}
.x1{left:37.759988pt;}
.x2e{left:39.520000pt;}
.x8{left:45.920000pt;}
.x24{left:49.120000pt;}
.x28{left:59.840000pt;}
.x2f{left:65.480000pt;}
.x2a{left:70.120000pt;}
.x22{left:97.480000pt;}
.x3{left:113.471988pt;}
.x20{left:116.032000pt;}
.xd{left:118.751988pt;}
.x1b{left:151.226643pt;}
.x1e{left:160.666655pt;}
.x21{left:190.586667pt;}
.x14{left:226.586655pt;}
.x18{left:239.066655pt;}
.x12{left:241.146655pt;}
.x19{left:244.186655pt;}
.x7{left:259.266642pt;}
.x1f{left:264.706655pt;}
.x13{left:267.426655pt;}
.xe{left:304.226655pt;}
.xc{left:307.746655pt;}
.xa{left:312.546667pt;}
.xf{left:314.306655pt;}
.x15{left:322.146655pt;}
.x1c{left:343.266655pt;}
.x1d{left:361.826655pt;}
.x1a{left:369.986655pt;}
.xb{left:401.666655pt;}
.x23{left:455.293333pt;}
.x16{left:474.813310pt;}
.x17{left:481.213322pt;}
.x10{left:482.653310pt;}
.x11{left:489.053322pt;}
.x2{left:733.733333pt;}
.x4{left:798.079988pt;}
}




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