
    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_b50afb84ffbaa4d5614a55b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_e1884d68d3f9335b16ae9f18.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b5ccf106ace78b9adbd4bd62.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_c653e09b5e65e8fa00cbd5e4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0db65fb8188b7647856f44a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2f5f727bc8c32f185d833ef6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_885be01c86aad78ad5dbd24f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e774a73e3d0f39fb262e2c96.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_1353d4fcd85fdda54c45426a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0f2b58a2becb2e436bc9a434.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999512;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;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.132600px;}
.ls3{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.247680px;}
.lse{letter-spacing:0.720000px;}
.ls9{letter-spacing:2.160000px;}
.ls7{letter-spacing:10.944000px;}
.lsa{letter-spacing:23.040000px;}
.lsc{letter-spacing:27.360000px;}
.lsd{letter-spacing:33.264000px;}
.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;}
}
.ws9{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.613280px;}
.ws2{word-spacing:-16.506480px;}
.ws0{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws4{word-spacing:-13.505760px;}
.ws7{word-spacing:0.000000px;}
._20{margin-left:-9.696000px;}
._28{margin-left:-8.424000px;}
._6{margin-left:-7.412640px;}
._27{margin-left:-6.290160px;}
._4{margin-left:-5.266560px;}
._b{margin-left:-3.312000px;}
._0{margin-left:-2.274480px;}
._1{margin-left:-1.263600px;}
._5{width:1.082160px;}
._13{width:2.592000px;}
._d{width:4.032000px;}
._c{width:5.592000px;}
._e{width:7.005840px;}
._10{width:9.000000px;}
._11{width:10.346160px;}
._f{width:11.592000px;}
._12{width:13.536000px;}
._21{width:14.539680px;}
._17{width:15.552000px;}
._15{width:16.920000px;}
._1f{width:19.717440px;}
._18{width:20.880000px;}
._2{width:22.621680px;}
._19{width:23.862960px;}
._14{width:24.912000px;}
._16{width:26.856000px;}
._1a{width:29.016000px;}
._1b{width:30.063600px;}
._1e{width:31.752000px;}
._22{width:32.755680px;}
._25{width:33.986160px;}
._23{width:35.280000px;}
._24{width:36.339600px;}
._26{width:37.440000px;}
._1c{width:42.336000px;}
._1d{width:43.485840px;}
._7{width:71.242560px;}
._a{width:119.669760px;}
._29{width:130.872000px;}
._3{width:197.549760px;}
._9{width:1020.569760px;}
._8{width:1164.545760px;}
.fc3{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc1{color:rgb(244,176,131);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs7{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya8{bottom:3.960000px;}
.y12f{bottom:3.990000px;}
.yb1{bottom:14.220000px;}
.ybd{bottom:14.394000px;}
.yb9{bottom:14.400000px;}
.yca{bottom:14.445000px;}
.ybb{bottom:24.654000px;}
.yad{bottom:24.660000px;}
.yc2{bottom:24.690000px;}
.yb4{bottom:24.705000px;}
.y4{bottom:25.956000px;}
.yaf{bottom:34.920000px;}
.yc3{bottom:34.950000px;}
.yb5{bottom:34.965000px;}
.ybc{bottom:35.094000px;}
.yb8{bottom:35.100000px;}
.yc9{bottom:35.145000px;}
.ybe{bottom:45.354000px;}
.yaa{bottom:45.360000px;}
.yc4{bottom:45.390000px;}
.yb6{bottom:45.405000px;}
.y3{bottom:46.116000px;}
.yb0{bottom:55.620000px;}
.yac{bottom:66.060000px;}
.yab{bottom:86.760000px;}
.ye5{bottom:90.036000px;}
.y31{bottom:92.916000px;}
.ybf{bottom:97.776000px;}
.y65{bottom:99.756000px;}
.y150{bottom:107.856000px;}
.y12c{bottom:109.476000px;}
.ye4{bottom:110.736000px;}
.y30{bottom:113.616000px;}
.y106{bottom:118.476000px;}
.y64{bottom:120.456000px;}
.y14f{bottom:128.376000px;}
.ye3{bottom:131.436000px;}
.y2f{bottom:134.316000px;}
.y92{bottom:137.556000px;}
.y12b{bottom:139.176000px;}
.yba{bottom:139.896000px;}
.y63{bottom:141.156000px;}
.y16c{bottom:145.476000px;}
.y105{bottom:148.176000px;}
.y14e{bottom:149.076000px;}
.ye2{bottom:152.130000px;}
.y2e{bottom:155.010000px;}
.y91{bottom:158.250000px;}
.y12a{bottom:159.870000px;}
.y62{bottom:161.850000px;}
.y16b{bottom:166.170000px;}
.ye1{bottom:172.830000px;}
.y2d{bottom:175.710000px;}
.y104{bottom:177.870000px;}
.y14d{bottom:178.770000px;}
.y61{bottom:182.550000px;}
.y90{bottom:187.770000px;}
.y129{bottom:189.570000px;}
.y16a{bottom:195.870000px;}
.y2c{bottom:196.410000px;}
.y103{bottom:198.570000px;}
.ye0{bottom:202.530000px;}
.yb7{bottom:202.710000px;}
.y60{bottom:203.250000px;}
.y14c{bottom:208.470000px;}
.y128{bottom:210.270000px;}
.y169{bottom:216.570000px;}
.y2b{bottom:217.110000px;}
.y8f{bottom:217.470000px;}
.y102{bottom:219.270000px;}
.y5f{bottom:223.950000px;}
.y14b{bottom:229.170000px;}
.ydf{bottom:232.230000px;}
.y2a{bottom:237.810000px;}
.y8e{bottom:238.170000px;}
.y127{bottom:239.970000px;}
.y5e{bottom:244.470000px;}
.y168{bottom:246.270000px;}
.y101{bottom:248.970000px;}
.y14a{bottom:249.870000px;}
.yde{bottom:252.930000px;}
.y29{bottom:258.510000px;}
.y126{bottom:260.670000px;}
.y5d{bottom:265.170000px;}
.yb3{bottom:265.710000px;}
.y167{bottom:266.970000px;}
.y8d{bottom:267.870000px;}
.y149{bottom:270.570000px;}
.y100{bottom:278.670000px;}
.y28{bottom:279.210000px;}
.y125{bottom:281.370000px;}
.ydd{bottom:282.675000px;}
.y5c{bottom:285.915000px;}
.y8c{bottom:288.615000px;}
.y148{bottom:291.315000px;}
.y166{bottom:296.715000px;}
.yff{bottom:299.415000px;}
.y124{bottom:302.115000px;}
.y5b{bottom:306.615000px;}
.y27{bottom:308.955000px;}
.ydc{bottom:309.675000px;}
.y147{bottom:312.015000px;}
.ydb{bottom:315.975000px;}
.y165{bottom:317.415000px;}
.y8b{bottom:318.315000px;}
.yfe{bottom:320.115000px;}
.y5a{bottom:327.315000px;}
.yb2{bottom:328.575000px;}
.y123{bottom:331.815000px;}
.y26{bottom:332.715000px;}
.yda{bottom:337.395000px;}
.y8a{bottom:339.015000px;}
.yfd{bottom:340.815000px;}
.y164{bottom:347.115000px;}
.y59{bottom:348.015000px;}
.y146{bottom:353.415000px;}
.y25{bottom:356.655000px;}
.y122{bottom:361.515000px;}
.y163{bottom:367.815000px;}
.y58{bottom:368.715000px;}
.yfc{bottom:370.515000px;}
.y145{bottom:374.115000px;}
.yd9{bottom:379.515000px;}
.y121{bottom:382.215000px;}
.y24{bottom:386.355000px;}
.y162{bottom:388.515000px;}
.y57{bottom:389.415000px;}
.yae{bottom:391.395000px;}
.y144{bottom:394.815000px;}
.y89{bottom:398.415000px;}
.yfb{bottom:400.215000px;}
.yd8{bottom:401.115000px;}
.y120{bottom:402.915000px;}
.y56{bottom:410.115000px;}
.y23{bottom:416.055000px;}
.y161{bottom:418.215000px;}
.y88{bottom:419.115000px;}
.yfa{bottom:420.915000px;}
.y143{bottom:424.515000px;}
.y55{bottom:430.815000px;}
.y11f{bottom:432.615000px;}
.y22{bottom:436.755000px;}
.y160{bottom:438.915000px;}
.y87{bottom:439.815000px;}
.yf9{bottom:441.615000px;}
.y54{bottom:451.515000px;}
.y142{bottom:454.215000px;}
.yd7{bottom:456.195000px;}
.y21{bottom:457.455000px;}
.y15f{bottom:459.615000px;}
.y86{bottom:460.515000px;}
.y11e{bottom:462.315000px;}
.yf8{bottom:471.315000px;}
.y53{bottom:472.215000px;}
.ya9{bottom:474.915000px;}
.y20{bottom:478.155000px;}
.y85{bottom:481.215000px;}
.y11d{bottom:483.015000px;}
.yd6{bottom:485.895000px;}
.y15e{bottom:489.315000px;}
.y52{bottom:492.915000px;}
.y141{bottom:495.615000px;}
.y1f{bottom:498.855000px;}
.yf7{bottom:501.015000px;}
.y84{bottom:501.915000px;}
.y11c{bottom:503.715000px;}
.yd5{bottom:506.595000px;}
.y15d{bottom:510.015000px;}
.y51{bottom:513.615000px;}
.y1e{bottom:519.555000px;}
.yf6{bottom:521.715000px;}
.y83{bottom:522.615000px;}
.y11b{bottom:524.415000px;}
.y140{bottom:525.315000px;}
.y15c{bottom:530.715000px;}
.y50{bottom:534.315000px;}
.yd4{bottom:536.295000px;}
.y1d{bottom:540.075000px;}
.yf5{bottom:542.415000px;}
.y82{bottom:543.315000px;}
.y11a{bottom:545.115000px;}
.y13f{bottom:546.015000px;}
.y4f{bottom:555.015000px;}
.yd3{bottom:556.995000px;}
.y15b{bottom:560.415000px;}
.y1c{bottom:560.775000px;}
.y81{bottom:564.015000px;}
.y119{bottom:565.845000px;}
.y13e{bottom:566.745000px;}
.yf4{bottom:572.145000px;}
.y4e{bottom:575.745000px;}
.ya7{bottom:579.165000px;}
.y15a{bottom:581.145000px;}
.y1b{bottom:581.505000px;}
.y80{bottom:584.745000px;}
.y118{bottom:586.545000px;}
.yd2{bottom:586.725000px;}
.y13d{bottom:587.445000px;}
.y4d{bottom:596.445000px;}
.yf3{bottom:601.845000px;}
.y7f{bottom:605.445000px;}
.y117{bottom:607.245000px;}
.yd1{bottom:607.425000px;}
.y13c{bottom:608.145000px;}
.y1a{bottom:611.205000px;}
.ya6{bottom:613.545000px;}
.y4c{bottom:617.145000px;}
.yf2{bottom:622.545000px;}
.y7e{bottom:626.145000px;}
.y116{bottom:627.945000px;}
.yd0{bottom:628.125000px;}
.y13b{bottom:628.845000px;}
.y159{bottom:631.545000px;}
.y19{bottom:631.905000px;}
.y172{bottom:634.245000px;}
.y4b{bottom:637.845000px;}
.ya5{bottom:643.245000px;}
.y7d{bottom:646.845000px;}
.ycf{bottom:648.825000px;}
.y158{bottom:652.245000px;}
.y18{bottom:652.605000px;}
.y171{bottom:654.945000px;}
.y115{bottom:657.645000px;}
.y4a{bottom:658.545000px;}
.ya4{bottom:663.945000px;}
.y7c{bottom:667.545000px;}
.y17{bottom:673.305000px;}
.yce{bottom:678.525000px;}
.y49{bottom:679.245000px;}
.y157{bottom:681.945000px;}
.ya3{bottom:684.645000px;}
.y114{bottom:687.345000px;}
.y7b{bottom:688.245000px;}
.yf1{bottom:693.645000px;}
.y16{bottom:694.005000px;}
.y48{bottom:699.945000px;}
.y156{bottom:702.645000px;}
.ya2{bottom:705.345000px;}
.ycd{bottom:706.605000px;}
.y113{bottom:708.045000px;}
.y7a{bottom:708.945000px;}
.y15{bottom:714.705000px;}
.ycc{bottom:717.045000px;}
.y47{bottom:720.645000px;}
.yf0{bottom:723.345000px;}
.ya1{bottom:726.045000px;}
.y112{bottom:728.745000px;}
.y79{bottom:729.645000px;}
.y170{bottom:735.045000px;}
.y14{bottom:735.405000px;}
.y46{bottom:741.345000px;}
.yef{bottom:744.045000px;}
.y111{bottom:749.445000px;}
.y78{bottom:750.345000px;}
.y155{bottom:753.045000px;}
.ya0{bottom:755.745000px;}
.y13{bottom:756.105000px;}
.y45{bottom:762.045000px;}
.yee{bottom:764.745000px;}
.y77{bottom:771.045000px;}
.y9f{bottom:776.445000px;}
.y12{bottom:776.805000px;}
.y110{bottom:779.145000px;}
.ycb{bottom:779.865000px;}
.y13a{bottom:780.045000px;}
.y44{bottom:782.745000px;}
.yed{bottom:785.445000px;}
.y76{bottom:791.745000px;}
.y9e{bottom:797.145000px;}
.y11{bottom:797.505000px;}
.y139{bottom:800.745000px;}
.y154{bottom:803.445000px;}
.yec{bottom:806.145000px;}
.y10f{bottom:808.845000px;}
.y43{bottom:812.445000px;}
.y9d{bottom:817.845000px;}
.y10{bottom:818.205000px;}
.y75{bottom:821.445000px;}
.y153{bottom:824.145000px;}
.yeb{bottom:826.845000px;}
.y10e{bottom:829.545000px;}
.yf{bottom:842.145000px;}
.yc8{bottom:842.685000px;}
.y9c{bottom:847.590000px;}
.y10d{bottom:850.290000px;}
.y74{bottom:851.190000px;}
.y152{bottom:853.890000px;}
.y42{bottom:862.890000px;}
.ye{bottom:865.950000px;}
.y9b{bottom:868.290000px;}
.y73{bottom:871.890000px;}
.y151{bottom:874.590000px;}
.y16f{bottom:877.290000px;}
.y10c{bottom:879.990000px;}
.y41{bottom:883.590000px;}
.yea{bottom:888.990000px;}
.yd{bottom:889.710000px;}
.y72{bottom:892.590000px;}
.y9a{bottom:897.990000px;}
.y138{bottom:900.150000px;}
.y40{bottom:904.290000px;}
.yc7{bottom:905.550000px;}
.y10b{bottom:909.690000px;}
.y71{bottom:913.290000px;}
.y99{bottom:918.690000px;}
.y137{bottom:921.570000px;}
.y3f{bottom:924.990000px;}
.y10a{bottom:930.390000px;}
.yc{bottom:931.470000px;}
.y70{bottom:933.990000px;}
.y98{bottom:939.390000px;}
.y136{bottom:942.990000px;}
.y3e{bottom:945.690000px;}
.ye9{bottom:948.390000px;}
.y109{bottom:951.090000px;}
.y6f{bottom:954.690000px;}
.yb{bottom:955.410000px;}
.y97{bottom:960.090000px;}
.y3d{bottom:966.390000px;}
.y16e{bottom:969.090000px;}
.y6e{bottom:975.390000px;}
.ye8{bottom:978.090000px;}
.ya{bottom:979.170000px;}
.y108{bottom:980.790000px;}
.y3c{bottom:987.090000px;}
.yc6{bottom:989.070000px;}
.y96{bottom:989.790000px;}
.y6d{bottom:996.090000px;}
.y135{bottom:998.070000px;}
.ye7{bottom:998.790000px;}
.y3b{bottom:1007.790000px;}
.y95{bottom:1010.490000px;}
.y6c{bottom:1016.790000px;}
.y134{bottom:1018.770000px;}
.y9{bottom:1019.130000px;}
.ye6{bottom:1019.490000px;}
.y3a{bottom:1028.490000px;}
.y94{bottom:1031.190000px;}
.y6b{bottom:1037.490000px;}
.y16d{bottom:1040.190000px;}
.y133{bottom:1048.470000px;}
.y39{bottom:1049.190000px;}
.y8{bottom:1051.890000px;}
.yc5{bottom:1052.070000px;}
.y6a{bottom:1058.190000px;}
.y38{bottom:1069.890000px;}
.y132{bottom:1075.830000px;}
.y69{bottom:1078.890000px;}
.y93{bottom:1081.590000px;}
.y131{bottom:1083.570000px;}
.y7{bottom:1087.710000px;}
.y37{bottom:1090.590000px;}
.y68{bottom:1099.590000px;}
.y130{bottom:1105.170000px;}
.y36{bottom:1111.290000px;}
.yc1{bottom:1114.890000px;}
.y67{bottom:1120.290000px;}
.y6{bottom:1123.350000px;}
.y12e{bottom:1126.590000px;}
.y35{bottom:1132.020000px;}
.y66{bottom:1141.020000px;}
.y12d{bottom:1148.040000px;}
.y107{bottom:1152.720000px;}
.y5{bottom:1154.520000px;}
.y34{bottom:1161.720000px;}
.yc0{bottom:1177.740000px;}
.y33{bottom:1182.420000px;}
.y2{bottom:1185.300000px;}
.y1{bottom:1210.860000px;}
.y32{bottom:1216.620000px;}
.h16{height:5.805000px;}
.hb{height:20.700000px;}
.h14{height:20.736000px;}
.h13{height:23.945625px;}
.h15{height:30.476250px;}
.h10{height:41.400000px;}
.h11{height:42.086250px;}
.h8{height:50.273438px;}
.he{height:62.100000px;}
.hf{height:62.136000px;}
.h9{height:62.327813px;}
.h3{height:65.884219px;}
.h12{height:70.628906px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.ha{height:75.093750px;}
.hd{height:82.800000px;}
.h2{height:86.255508px;}
.h5{height:96.508125px;}
.hc{height:103.536000px;}
.h4{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:36.720000px;}
.w8{width:36.900000px;}
.w7{width:41.760000px;}
.w12{width:41.940000px;}
.w10{width:45.720000px;}
.wf{width:45.756000px;}
.we{width:45.900000px;}
.w15{width:45.936000px;}
.wd{width:46.800000px;}
.w14{width:46.980000px;}
.wb{width:47.520000px;}
.w9{width:47.556000px;}
.wa{width:47.700000px;}
.wc{width:47.736000px;}
.w6{width:73.440000px;}
.w11{width:81.720000px;}
.w3{width:94.320000px;}
.w16{width:111.960000px;}
.w17{width:111.996000px;}
.w4{width:137.916000px;}
.w5{width:467.175000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:8.460000px;}
.x35{left:10.080000px;}
.x15{left:11.340000px;}
.x2c{left:12.960000px;}
.x1c{left:14.760000px;}
.x18{left:15.840000px;}
.x29{left:17.640000px;}
.x20{left:19.440000px;}
.x1d{left:21.600000px;}
.x17{left:23.220000px;}
.x14{left:25.380000px;}
.x31{left:27.000000px;}
.x1f{left:28.980000px;}
.x27{left:30.060000px;}
.xf{left:31.680000px;}
.x23{left:32.940000px;}
.x33{left:34.920000px;}
.x2b{left:36.900000px;}
.x11{left:38.340000px;}
.x51{left:39.414000px;}
.x1a{left:40.860000px;}
.x21{left:43.380000px;}
.x2f{left:46.260000px;}
.x16{left:49.320000px;}
.x57{left:51.480000px;}
.x22{left:53.460000px;}
.x1b{left:66.060000px;}
.x36{left:76.860000px;}
.x2e{left:79.560000px;}
.x2{left:106.415987px;}
.x30{left:109.260000px;}
.x5{left:113.435987px;}
.xb{left:115.235987px;}
.xe{left:117.396000px;}
.x45{left:125.856000px;}
.xd{left:127.655987px;}
.x37{left:129.996000px;}
.x19{left:132.480000px;}
.x1e{left:143.310000px;}
.x2a{left:148.350000px;}
.x8{left:150.329987px;}
.x32{left:152.310000px;}
.x4{left:170.129987px;}
.x2d{left:174.810000px;}
.x1{left:180.929987px;}
.x13{left:189.030000px;}
.x26{left:199.290000px;}
.x24{left:202.890000px;}
.x38{left:204.150000px;}
.x34{left:208.290000px;}
.x10{left:212.430000px;}
.x28{left:217.830000px;}
.x52{left:242.670000px;}
.x39{left:246.630000px;}
.x46{left:250.950000px;}
.x3a{left:284.250000px;}
.x47{left:288.390000px;}
.x3b{left:332.535000px;}
.x6{left:336.134987px;}
.xa{left:344.774987px;}
.x12{left:351.075000px;}
.x53{left:355.395000px;}
.x3c{left:380.955000px;}
.x48{left:385.095000px;}
.x7{left:394.994987px;}
.x9{left:400.574987px;}
.x3d{left:429.195000px;}
.x49{left:433.335000px;}
.xc{left:439.274987px;}
.x3{left:455.294987px;}
.x54{left:468.075000px;}
.x3e{left:477.435000px;}
.x4a{left:481.755000px;}
.x3f{left:525.885000px;}
.x4b{left:530.025000px;}
.x40{left:573.405000px;}
.x4c{left:577.725000px;}
.x55{left:580.965000px;}
.x41{left:620.025000px;}
.x4d{left:624.165000px;}
.x42{left:666.645000px;}
.x4e{left:670.785000px;}
.x56{left:693.690000px;}
.x43{left:713.310000px;}
.x4f{left:717.450000px;}
.x44{left:759.750000px;}
.x50{left:764.070000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.117867pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.220160pt;}
.lse{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.920000pt;}
.ls7{letter-spacing:9.728000pt;}
.lsa{letter-spacing:20.480000pt;}
.lsc{letter-spacing:24.320000pt;}
.lsd{letter-spacing:29.568000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.767360pt;}
.ws2{word-spacing:-14.672427pt;}
.ws0{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws4{word-spacing:-12.005120pt;}
.ws7{word-spacing:0.000000pt;}
._20{margin-left:-8.618667pt;}
._28{margin-left:-7.488000pt;}
._6{margin-left:-6.589013pt;}
._27{margin-left:-5.591253pt;}
._4{margin-left:-4.681387pt;}
._b{margin-left:-2.944000pt;}
._0{margin-left:-2.021760pt;}
._1{margin-left:-1.123200pt;}
._5{width:0.961920pt;}
._13{width:2.304000pt;}
._d{width:3.584000pt;}
._c{width:4.970667pt;}
._e{width:6.227413pt;}
._10{width:8.000000pt;}
._11{width:9.196587pt;}
._f{width:10.304000pt;}
._12{width:12.032000pt;}
._21{width:12.924160pt;}
._17{width:13.824000pt;}
._15{width:15.040000pt;}
._1f{width:17.526613pt;}
._18{width:18.560000pt;}
._2{width:20.108160pt;}
._19{width:21.211520pt;}
._14{width:22.144000pt;}
._16{width:23.872000pt;}
._1a{width:25.792000pt;}
._1b{width:26.723200pt;}
._1e{width:28.224000pt;}
._22{width:29.116160pt;}
._25{width:30.209920pt;}
._23{width:31.360000pt;}
._24{width:32.301867pt;}
._26{width:33.280000pt;}
._1c{width:37.632000pt;}
._1d{width:38.654080pt;}
._7{width:63.326720pt;}
._a{width:106.373120pt;}
._29{width:116.330667pt;}
._3{width:175.599787pt;}
._9{width:907.173120pt;}
._8{width:1035.151787pt;}
.fs9{font-size:5.120000pt;}
.fs7{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:3.520000pt;}
.y12f{bottom:3.546667pt;}
.yb1{bottom:12.640000pt;}
.ybd{bottom:12.794667pt;}
.yb9{bottom:12.800000pt;}
.yca{bottom:12.840000pt;}
.ybb{bottom:21.914667pt;}
.yad{bottom:21.920000pt;}
.yc2{bottom:21.946667pt;}
.yb4{bottom:21.960000pt;}
.y4{bottom:23.072000pt;}
.yaf{bottom:31.040000pt;}
.yc3{bottom:31.066667pt;}
.yb5{bottom:31.080000pt;}
.ybc{bottom:31.194667pt;}
.yb8{bottom:31.200000pt;}
.yc9{bottom:31.240000pt;}
.ybe{bottom:40.314667pt;}
.yaa{bottom:40.320000pt;}
.yc4{bottom:40.346667pt;}
.yb6{bottom:40.360000pt;}
.y3{bottom:40.992000pt;}
.yb0{bottom:49.440000pt;}
.yac{bottom:58.720000pt;}
.yab{bottom:77.120000pt;}
.ye5{bottom:80.032000pt;}
.y31{bottom:82.592000pt;}
.ybf{bottom:86.912000pt;}
.y65{bottom:88.672000pt;}
.y150{bottom:95.872000pt;}
.y12c{bottom:97.312000pt;}
.ye4{bottom:98.432000pt;}
.y30{bottom:100.992000pt;}
.y106{bottom:105.312000pt;}
.y64{bottom:107.072000pt;}
.y14f{bottom:114.112000pt;}
.ye3{bottom:116.832000pt;}
.y2f{bottom:119.392000pt;}
.y92{bottom:122.272000pt;}
.y12b{bottom:123.712000pt;}
.yba{bottom:124.352000pt;}
.y63{bottom:125.472000pt;}
.y16c{bottom:129.312000pt;}
.y105{bottom:131.712000pt;}
.y14e{bottom:132.512000pt;}
.ye2{bottom:135.226667pt;}
.y2e{bottom:137.786667pt;}
.y91{bottom:140.666667pt;}
.y12a{bottom:142.106667pt;}
.y62{bottom:143.866667pt;}
.y16b{bottom:147.706667pt;}
.ye1{bottom:153.626667pt;}
.y2d{bottom:156.186667pt;}
.y104{bottom:158.106667pt;}
.y14d{bottom:158.906667pt;}
.y61{bottom:162.266667pt;}
.y90{bottom:166.906667pt;}
.y129{bottom:168.506667pt;}
.y16a{bottom:174.106667pt;}
.y2c{bottom:174.586667pt;}
.y103{bottom:176.506667pt;}
.ye0{bottom:180.026667pt;}
.yb7{bottom:180.186667pt;}
.y60{bottom:180.666667pt;}
.y14c{bottom:185.306667pt;}
.y128{bottom:186.906667pt;}
.y169{bottom:192.506667pt;}
.y2b{bottom:192.986667pt;}
.y8f{bottom:193.306667pt;}
.y102{bottom:194.906667pt;}
.y5f{bottom:199.066667pt;}
.y14b{bottom:203.706667pt;}
.ydf{bottom:206.426667pt;}
.y2a{bottom:211.386667pt;}
.y8e{bottom:211.706667pt;}
.y127{bottom:213.306667pt;}
.y5e{bottom:217.306667pt;}
.y168{bottom:218.906667pt;}
.y101{bottom:221.306667pt;}
.y14a{bottom:222.106667pt;}
.yde{bottom:224.826667pt;}
.y29{bottom:229.786667pt;}
.y126{bottom:231.706667pt;}
.y5d{bottom:235.706667pt;}
.yb3{bottom:236.186667pt;}
.y167{bottom:237.306667pt;}
.y8d{bottom:238.106667pt;}
.y149{bottom:240.506667pt;}
.y100{bottom:247.706667pt;}
.y28{bottom:248.186667pt;}
.y125{bottom:250.106667pt;}
.ydd{bottom:251.266667pt;}
.y5c{bottom:254.146667pt;}
.y8c{bottom:256.546667pt;}
.y148{bottom:258.946667pt;}
.y166{bottom:263.746667pt;}
.yff{bottom:266.146667pt;}
.y124{bottom:268.546667pt;}
.y5b{bottom:272.546667pt;}
.y27{bottom:274.626667pt;}
.ydc{bottom:275.266667pt;}
.y147{bottom:277.346667pt;}
.ydb{bottom:280.866667pt;}
.y165{bottom:282.146667pt;}
.y8b{bottom:282.946667pt;}
.yfe{bottom:284.546667pt;}
.y5a{bottom:290.946667pt;}
.yb2{bottom:292.066667pt;}
.y123{bottom:294.946667pt;}
.y26{bottom:295.746667pt;}
.yda{bottom:299.906667pt;}
.y8a{bottom:301.346667pt;}
.yfd{bottom:302.946667pt;}
.y164{bottom:308.546667pt;}
.y59{bottom:309.346667pt;}
.y146{bottom:314.146667pt;}
.y25{bottom:317.026667pt;}
.y122{bottom:321.346667pt;}
.y163{bottom:326.946667pt;}
.y58{bottom:327.746667pt;}
.yfc{bottom:329.346667pt;}
.y145{bottom:332.546667pt;}
.yd9{bottom:337.346667pt;}
.y121{bottom:339.746667pt;}
.y24{bottom:343.426667pt;}
.y162{bottom:345.346667pt;}
.y57{bottom:346.146667pt;}
.yae{bottom:347.906667pt;}
.y144{bottom:350.946667pt;}
.y89{bottom:354.146667pt;}
.yfb{bottom:355.746667pt;}
.yd8{bottom:356.546667pt;}
.y120{bottom:358.146667pt;}
.y56{bottom:364.546667pt;}
.y23{bottom:369.826667pt;}
.y161{bottom:371.746667pt;}
.y88{bottom:372.546667pt;}
.yfa{bottom:374.146667pt;}
.y143{bottom:377.346667pt;}
.y55{bottom:382.946667pt;}
.y11f{bottom:384.546667pt;}
.y22{bottom:388.226667pt;}
.y160{bottom:390.146667pt;}
.y87{bottom:390.946667pt;}
.yf9{bottom:392.546667pt;}
.y54{bottom:401.346667pt;}
.y142{bottom:403.746667pt;}
.yd7{bottom:405.506667pt;}
.y21{bottom:406.626667pt;}
.y15f{bottom:408.546667pt;}
.y86{bottom:409.346667pt;}
.y11e{bottom:410.946667pt;}
.yf8{bottom:418.946667pt;}
.y53{bottom:419.746667pt;}
.ya9{bottom:422.146667pt;}
.y20{bottom:425.026667pt;}
.y85{bottom:427.746667pt;}
.y11d{bottom:429.346667pt;}
.yd6{bottom:431.906667pt;}
.y15e{bottom:434.946667pt;}
.y52{bottom:438.146667pt;}
.y141{bottom:440.546667pt;}
.y1f{bottom:443.426667pt;}
.yf7{bottom:445.346667pt;}
.y84{bottom:446.146667pt;}
.y11c{bottom:447.746667pt;}
.yd5{bottom:450.306667pt;}
.y15d{bottom:453.346667pt;}
.y51{bottom:456.546667pt;}
.y1e{bottom:461.826667pt;}
.yf6{bottom:463.746667pt;}
.y83{bottom:464.546667pt;}
.y11b{bottom:466.146667pt;}
.y140{bottom:466.946667pt;}
.y15c{bottom:471.746667pt;}
.y50{bottom:474.946667pt;}
.yd4{bottom:476.706667pt;}
.y1d{bottom:480.066667pt;}
.yf5{bottom:482.146667pt;}
.y82{bottom:482.946667pt;}
.y11a{bottom:484.546667pt;}
.y13f{bottom:485.346667pt;}
.y4f{bottom:493.346667pt;}
.yd3{bottom:495.106667pt;}
.y15b{bottom:498.146667pt;}
.y1c{bottom:498.466667pt;}
.y81{bottom:501.346667pt;}
.y119{bottom:502.973333pt;}
.y13e{bottom:503.773333pt;}
.yf4{bottom:508.573333pt;}
.y4e{bottom:511.773333pt;}
.ya7{bottom:514.813333pt;}
.y15a{bottom:516.573333pt;}
.y1b{bottom:516.893333pt;}
.y80{bottom:519.773333pt;}
.y118{bottom:521.373333pt;}
.yd2{bottom:521.533333pt;}
.y13d{bottom:522.173333pt;}
.y4d{bottom:530.173333pt;}
.yf3{bottom:534.973333pt;}
.y7f{bottom:538.173333pt;}
.y117{bottom:539.773333pt;}
.yd1{bottom:539.933333pt;}
.y13c{bottom:540.573333pt;}
.y1a{bottom:543.293333pt;}
.ya6{bottom:545.373333pt;}
.y4c{bottom:548.573333pt;}
.yf2{bottom:553.373333pt;}
.y7e{bottom:556.573333pt;}
.y116{bottom:558.173333pt;}
.yd0{bottom:558.333333pt;}
.y13b{bottom:558.973333pt;}
.y159{bottom:561.373333pt;}
.y19{bottom:561.693333pt;}
.y172{bottom:563.773333pt;}
.y4b{bottom:566.973333pt;}
.ya5{bottom:571.773333pt;}
.y7d{bottom:574.973333pt;}
.ycf{bottom:576.733333pt;}
.y158{bottom:579.773333pt;}
.y18{bottom:580.093333pt;}
.y171{bottom:582.173333pt;}
.y115{bottom:584.573333pt;}
.y4a{bottom:585.373333pt;}
.ya4{bottom:590.173333pt;}
.y7c{bottom:593.373333pt;}
.y17{bottom:598.493333pt;}
.yce{bottom:603.133333pt;}
.y49{bottom:603.773333pt;}
.y157{bottom:606.173333pt;}
.ya3{bottom:608.573333pt;}
.y114{bottom:610.973333pt;}
.y7b{bottom:611.773333pt;}
.yf1{bottom:616.573333pt;}
.y16{bottom:616.893333pt;}
.y48{bottom:622.173333pt;}
.y156{bottom:624.573333pt;}
.ya2{bottom:626.973333pt;}
.ycd{bottom:628.093333pt;}
.y113{bottom:629.373333pt;}
.y7a{bottom:630.173333pt;}
.y15{bottom:635.293333pt;}
.ycc{bottom:637.373333pt;}
.y47{bottom:640.573333pt;}
.yf0{bottom:642.973333pt;}
.ya1{bottom:645.373333pt;}
.y112{bottom:647.773333pt;}
.y79{bottom:648.573333pt;}
.y170{bottom:653.373333pt;}
.y14{bottom:653.693333pt;}
.y46{bottom:658.973333pt;}
.yef{bottom:661.373333pt;}
.y111{bottom:666.173333pt;}
.y78{bottom:666.973333pt;}
.y155{bottom:669.373333pt;}
.ya0{bottom:671.773333pt;}
.y13{bottom:672.093333pt;}
.y45{bottom:677.373333pt;}
.yee{bottom:679.773333pt;}
.y77{bottom:685.373333pt;}
.y9f{bottom:690.173333pt;}
.y12{bottom:690.493333pt;}
.y110{bottom:692.573333pt;}
.ycb{bottom:693.213333pt;}
.y13a{bottom:693.373333pt;}
.y44{bottom:695.773333pt;}
.yed{bottom:698.173333pt;}
.y76{bottom:703.773333pt;}
.y9e{bottom:708.573333pt;}
.y11{bottom:708.893333pt;}
.y139{bottom:711.773333pt;}
.y154{bottom:714.173333pt;}
.yec{bottom:716.573333pt;}
.y10f{bottom:718.973333pt;}
.y43{bottom:722.173333pt;}
.y9d{bottom:726.973333pt;}
.y10{bottom:727.293333pt;}
.y75{bottom:730.173333pt;}
.y153{bottom:732.573333pt;}
.yeb{bottom:734.973333pt;}
.y10e{bottom:737.373333pt;}
.yf{bottom:748.573333pt;}
.yc8{bottom:749.053333pt;}
.y9c{bottom:753.413333pt;}
.y10d{bottom:755.813333pt;}
.y74{bottom:756.613333pt;}
.y152{bottom:759.013333pt;}
.y42{bottom:767.013333pt;}
.ye{bottom:769.733333pt;}
.y9b{bottom:771.813333pt;}
.y73{bottom:775.013333pt;}
.y151{bottom:777.413333pt;}
.y16f{bottom:779.813333pt;}
.y10c{bottom:782.213333pt;}
.y41{bottom:785.413333pt;}
.yea{bottom:790.213333pt;}
.yd{bottom:790.853333pt;}
.y72{bottom:793.413333pt;}
.y9a{bottom:798.213333pt;}
.y138{bottom:800.133333pt;}
.y40{bottom:803.813333pt;}
.yc7{bottom:804.933333pt;}
.y10b{bottom:808.613333pt;}
.y71{bottom:811.813333pt;}
.y99{bottom:816.613333pt;}
.y137{bottom:819.173333pt;}
.y3f{bottom:822.213333pt;}
.y10a{bottom:827.013333pt;}
.yc{bottom:827.973333pt;}
.y70{bottom:830.213333pt;}
.y98{bottom:835.013333pt;}
.y136{bottom:838.213333pt;}
.y3e{bottom:840.613333pt;}
.ye9{bottom:843.013333pt;}
.y109{bottom:845.413333pt;}
.y6f{bottom:848.613333pt;}
.yb{bottom:849.253333pt;}
.y97{bottom:853.413333pt;}
.y3d{bottom:859.013333pt;}
.y16e{bottom:861.413333pt;}
.y6e{bottom:867.013333pt;}
.ye8{bottom:869.413333pt;}
.ya{bottom:870.373333pt;}
.y108{bottom:871.813333pt;}
.y3c{bottom:877.413333pt;}
.yc6{bottom:879.173333pt;}
.y96{bottom:879.813333pt;}
.y6d{bottom:885.413333pt;}
.y135{bottom:887.173333pt;}
.ye7{bottom:887.813333pt;}
.y3b{bottom:895.813333pt;}
.y95{bottom:898.213333pt;}
.y6c{bottom:903.813333pt;}
.y134{bottom:905.573333pt;}
.y9{bottom:905.893333pt;}
.ye6{bottom:906.213333pt;}
.y3a{bottom:914.213333pt;}
.y94{bottom:916.613333pt;}
.y6b{bottom:922.213333pt;}
.y16d{bottom:924.613333pt;}
.y133{bottom:931.973333pt;}
.y39{bottom:932.613333pt;}
.y8{bottom:935.013333pt;}
.yc5{bottom:935.173333pt;}
.y6a{bottom:940.613333pt;}
.y38{bottom:951.013333pt;}
.y132{bottom:956.293333pt;}
.y69{bottom:959.013333pt;}
.y93{bottom:961.413333pt;}
.y131{bottom:963.173333pt;}
.y7{bottom:966.853333pt;}
.y37{bottom:969.413333pt;}
.y68{bottom:977.413333pt;}
.y130{bottom:982.373333pt;}
.y36{bottom:987.813333pt;}
.yc1{bottom:991.013333pt;}
.y67{bottom:995.813333pt;}
.y6{bottom:998.533333pt;}
.y12e{bottom:1001.413333pt;}
.y35{bottom:1006.240000pt;}
.y66{bottom:1014.240000pt;}
.y12d{bottom:1020.480000pt;}
.y107{bottom:1024.640000pt;}
.y5{bottom:1026.240000pt;}
.y34{bottom:1032.640000pt;}
.yc0{bottom:1046.880000pt;}
.y33{bottom:1051.040000pt;}
.y2{bottom:1053.600000pt;}
.y1{bottom:1076.320000pt;}
.y32{bottom:1081.440000pt;}
.h16{height:5.160000pt;}
.hb{height:18.400000pt;}
.h14{height:18.432000pt;}
.h13{height:21.285000pt;}
.h15{height:27.090000pt;}
.h10{height:36.800000pt;}
.h11{height:37.410000pt;}
.h8{height:44.687500pt;}
.he{height:55.200000pt;}
.hf{height:55.232000pt;}
.h9{height:55.402500pt;}
.h3{height:58.563750pt;}
.h12{height:62.781250pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.ha{height:66.750000pt;}
.hd{height:73.600000pt;}
.h2{height:76.671562pt;}
.h5{height:85.785000pt;}
.hc{height:92.032000pt;}
.h4{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:32.640000pt;}
.w8{width:32.800000pt;}
.w7{width:37.120000pt;}
.w12{width:37.280000pt;}
.w10{width:40.640000pt;}
.wf{width:40.672000pt;}
.we{width:40.800000pt;}
.w15{width:40.832000pt;}
.wd{width:41.600000pt;}
.w14{width:41.760000pt;}
.wb{width:42.240000pt;}
.w9{width:42.272000pt;}
.wa{width:42.400000pt;}
.wc{width:42.432000pt;}
.w6{width:65.280000pt;}
.w11{width:72.640000pt;}
.w3{width:83.840000pt;}
.w16{width:99.520000pt;}
.w17{width:99.552000pt;}
.w4{width:122.592000pt;}
.w5{width:415.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:7.520000pt;}
.x35{left:8.960000pt;}
.x15{left:10.080000pt;}
.x2c{left:11.520000pt;}
.x1c{left:13.120000pt;}
.x18{left:14.080000pt;}
.x29{left:15.680000pt;}
.x20{left:17.280000pt;}
.x1d{left:19.200000pt;}
.x17{left:20.640000pt;}
.x14{left:22.560000pt;}
.x31{left:24.000000pt;}
.x1f{left:25.760000pt;}
.x27{left:26.720000pt;}
.xf{left:28.160000pt;}
.x23{left:29.280000pt;}
.x33{left:31.040000pt;}
.x2b{left:32.800000pt;}
.x11{left:34.080000pt;}
.x51{left:35.034667pt;}
.x1a{left:36.320000pt;}
.x21{left:38.560000pt;}
.x2f{left:41.120000pt;}
.x16{left:43.840000pt;}
.x57{left:45.760000pt;}
.x22{left:47.520000pt;}
.x1b{left:58.720000pt;}
.x36{left:68.320000pt;}
.x2e{left:70.720000pt;}
.x2{left:94.591988pt;}
.x30{left:97.120000pt;}
.x5{left:100.831988pt;}
.xb{left:102.431988pt;}
.xe{left:104.352000pt;}
.x45{left:111.872000pt;}
.xd{left:113.471988pt;}
.x37{left:115.552000pt;}
.x19{left:117.760000pt;}
.x1e{left:127.386667pt;}
.x2a{left:131.866667pt;}
.x8{left:133.626655pt;}
.x32{left:135.386667pt;}
.x4{left:151.226655pt;}
.x2d{left:155.386667pt;}
.x1{left:160.826655pt;}
.x13{left:168.026667pt;}
.x26{left:177.146667pt;}
.x24{left:180.346667pt;}
.x38{left:181.466667pt;}
.x34{left:185.146667pt;}
.x10{left:188.826667pt;}
.x28{left:193.626667pt;}
.x52{left:215.706667pt;}
.x39{left:219.226667pt;}
.x46{left:223.066667pt;}
.x3a{left:252.666667pt;}
.x47{left:256.346667pt;}
.x3b{left:295.586667pt;}
.x6{left:298.786655pt;}
.xa{left:306.466655pt;}
.x12{left:312.066667pt;}
.x53{left:315.906667pt;}
.x3c{left:338.626667pt;}
.x48{left:342.306667pt;}
.x7{left:351.106655pt;}
.x9{left:356.066655pt;}
.x3d{left:381.506667pt;}
.x49{left:385.186667pt;}
.xc{left:390.466655pt;}
.x3{left:404.706655pt;}
.x54{left:416.066667pt;}
.x3e{left:424.386667pt;}
.x4a{left:428.226667pt;}
.x3f{left:467.453333pt;}
.x4b{left:471.133333pt;}
.x40{left:509.693333pt;}
.x4c{left:513.533333pt;}
.x55{left:516.413333pt;}
.x41{left:551.133333pt;}
.x4d{left:554.813333pt;}
.x42{left:592.573333pt;}
.x4e{left:596.253333pt;}
.x56{left:616.613333pt;}
.x43{left:634.053333pt;}
.x4f{left:637.733333pt;}
.x44{left:675.333333pt;}
.x50{left:679.173333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  