
    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_8eba8e5318694ac5e53a3266.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_c8f3c2cc9f0570ee9ab6cb38.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0d6d1258aef42d603ca22edb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.923340;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_00bcc7d925a91b5bce85e415.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.720000px;}
.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.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:0.000000px;}
._20{margin-left:-5.264640px;}
._c{margin-left:-4.173120px;}
._6{margin-left:-2.302560px;}
._1{margin-left:-1.258560px;}
._0{width:1.434240px;}
._7{width:3.072960px;}
._15{width:4.402560px;}
._12{width:5.639040px;}
._4{width:6.690240px;}
._17{width:7.807680px;}
._d{width:8.809920px;}
._13{width:9.812160px;}
._18{width:11.667360px;}
._b{width:13.645440px;}
._a{width:14.771520px;}
._10{width:15.894720px;}
._16{width:16.937280px;}
._5{width:18.414720px;}
._1b{width:19.514400px;}
._14{width:20.592000px;}
._19{width:21.744000px;}
._1e{width:22.896000px;}
._8{width:24.177600px;}
._9{width:26.006400px;}
._1c{width:27.400320px;}
._1d{width:28.903680px;}
._11{width:30.024000px;}
._1f{width:32.034240px;}
._1a{width:33.310080px;}
._2{width:34.908480px;}
._3{width:36.233280px;}
._e{width:38.304000px;}
._f{width:39.384000px;}
._21{width:40.968000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.700000px;}
.yb2{bottom:112.860000px;}
.y2b{bottom:115.560000px;}
.y6e{bottom:116.460000px;}
.yf5{bottom:118.440000px;}
.y141{bottom:122.040000px;}
.yb1{bottom:133.560000px;}
.y2a{bottom:136.260000px;}
.y6d{bottom:137.160000px;}
.y157{bottom:137.880000px;}
.yf4{bottom:139.140000px;}
.y140{bottom:142.740000px;}
.y17b{bottom:147.060000px;}
.yb0{bottom:154.260000px;}
.y129{bottom:157.680000px;}
.y6c{bottom:157.860000px;}
.y107{bottom:159.660000px;}
.y9a{bottom:160.560000px;}
.y57{bottom:163.440000px;}
.y17a{bottom:167.760000px;}
.y29{bottom:171.900000px;}
.y156{bottom:173.520000px;}
.yc5{bottom:174.960000px;}
.y196{bottom:177.120000px;}
.y128{bottom:178.380000px;}
.y6b{bottom:178.560000px;}
.y106{bottom:180.360000px;}
.y99{bottom:181.260000px;}
.y56{bottom:184.140000px;}
.yaf{bottom:189.900000px;}
.y28{bottom:192.630000px;}
.y155{bottom:194.250000px;}
.yc4{bottom:195.690000px;}
.y195{bottom:197.850000px;}
.y127{bottom:199.110000px;}
.y6a{bottom:199.290000px;}
.y105{bottom:201.090000px;}
.y98{bottom:201.990000px;}
.y179{bottom:203.430000px;}
.y55{bottom:204.870000px;}
.yae{bottom:210.630000px;}
.y27{bottom:213.330000px;}
.y154{bottom:214.950000px;}
.yc3{bottom:216.390000px;}
.y194{bottom:218.550000px;}
.y126{bottom:219.810000px;}
.y69{bottom:219.990000px;}
.y104{bottom:221.790000px;}
.y97{bottom:222.690000px;}
.y178{bottom:224.130000px;}
.y54{bottom:225.570000px;}
.yad{bottom:231.330000px;}
.y26{bottom:234.030000px;}
.y153{bottom:235.650000px;}
.yc2{bottom:237.090000px;}
.y193{bottom:239.250000px;}
.y125{bottom:240.510000px;}
.ydb{bottom:240.690000px;}
.y103{bottom:242.490000px;}
.y96{bottom:243.390000px;}
.y53{bottom:246.270000px;}
.yac{bottom:252.030000px;}
.y25{bottom:254.730000px;}
.y68{bottom:255.810000px;}
.yf3{bottom:257.790000px;}
.y177{bottom:259.770000px;}
.y124{bottom:261.210000px;}
.yda{bottom:261.390000px;}
.y102{bottom:263.190000px;}
.y52{bottom:266.970000px;}
.yc1{bottom:267.150000px;}
.y152{bottom:271.290000px;}
.yab{bottom:272.730000px;}
.y192{bottom:274.890000px;}
.y24{bottom:275.430000px;}
.y67{bottom:276.510000px;}
.yf2{bottom:278.490000px;}
.y95{bottom:279.030000px;}
.y176{bottom:280.470000px;}
.y123{bottom:281.910000px;}
.yd9{bottom:282.090000px;}
.y101{bottom:283.890000px;}
.y51{bottom:287.670000px;}
.yaa{bottom:293.430000px;}
.y191{bottom:295.590000px;}
.y23{bottom:296.130000px;}
.y13f{bottom:296.850000px;}
.y66{bottom:297.210000px;}
.y94{bottom:299.730000px;}
.y175{bottom:301.170000px;}
.y122{bottom:302.610000px;}
.yd8{bottom:302.790000px;}
.y151{bottom:307.110000px;}
.yf1{bottom:314.130000px;}
.y190{bottom:316.290000px;}
.y13e{bottom:317.550000px;}
.y50{bottom:317.910000px;}
.y100{bottom:319.530000px;}
.y93{bottom:320.430000px;}
.y174{bottom:321.870000px;}
.y121{bottom:323.310000px;}
.ya9{bottom:329.070000px;}
.y22{bottom:331.950000px;}
.yf0{bottom:334.830000px;}
.y13d{bottom:338.250000px;}
.y65{bottom:338.610000px;}
.yff{bottom:340.230000px;}
.y92{bottom:341.130000px;}
.y150{bottom:342.750000px;}
.y120{bottom:344.010000px;}
.ya8{bottom:349.770000px;}
.y18f{bottom:352.110000px;}
.y21{bottom:352.650000px;}
.yef{bottom:355.530000px;}
.y173{bottom:357.510000px;}
.y13c{bottom:358.950000px;}
.yc0{bottom:359.310000px;}
.yfe{bottom:360.930000px;}
.y91{bottom:361.830000px;}
.y4f{bottom:368.490000px;}
.ya7{bottom:370.470000px;}
.y18e{bottom:372.810000px;}
.y20{bottom:373.350000px;}
.y64{bottom:374.250000px;}
.yee{bottom:376.230000px;}
.y172{bottom:378.210000px;}
.y14f{bottom:378.390000px;}
.y11f{bottom:379.650000px;}
.ybf{bottom:380.010000px;}
.yfd{bottom:381.630000px;}
.y90{bottom:382.530000px;}
.y4e{bottom:389.190000px;}
.ya6{bottom:391.170000px;}
.y18d{bottom:393.510000px;}
.y1f{bottom:394.050000px;}
.y63{bottom:394.950000px;}
.yed{bottom:396.930000px;}
.y171{bottom:398.910000px;}
.y14e{bottom:399.090000px;}
.y11e{bottom:400.350000px;}
.ybe{bottom:400.710000px;}
.yfc{bottom:402.330000px;}
.y8f{bottom:403.230000px;}
.y4d{bottom:409.890000px;}
.ya5{bottom:411.870000px;}
.y1e{bottom:414.750000px;}
.y62{bottom:415.650000px;}
.yec{bottom:417.630000px;}
.y170{bottom:419.610000px;}
.y11d{bottom:421.050000px;}
.ybd{bottom:421.410000px;}
.yfb{bottom:423.030000px;}
.y8e{bottom:423.930000px;}
.y18c{bottom:429.150000px;}
.y4c{bottom:430.635000px;}
.ya4{bottom:432.615000px;}
.y14d{bottom:434.955000px;}
.y1d{bottom:435.495000px;}
.y61{bottom:436.395000px;}
.y11c{bottom:441.795000px;}
.yd7{bottom:442.155000px;}
.yfa{bottom:443.775000px;}
.y18b{bottom:449.895000px;}
.y4b{bottom:451.335000px;}
.ya3{bottom:453.315000px;}
.y16f{bottom:455.475000px;}
.y1c{bottom:456.015000px;}
.y60{bottom:457.095000px;}
.y8d{bottom:459.615000px;}
.y11b{bottom:462.495000px;}
.yd6{bottom:462.855000px;}
.y14c{bottom:470.595000px;}
.y4a{bottom:472.035000px;}
.yf9{bottom:472.215000px;}
.yeb{bottom:474.015000px;}
.y16e{bottom:476.175000px;}
.y13b{bottom:477.615000px;}
.y5f{bottom:477.795000px;}
.y8c{bottom:480.315000px;}
.y11a{bottom:483.195000px;}
.yd5{bottom:483.555000px;}
.y1b{bottom:486.435000px;}
.ya2{bottom:488.955000px;}
.y49{bottom:492.735000px;}
.yea{bottom:494.715000px;}
.y16d{bottom:496.875000px;}
.y13a{bottom:498.315000px;}
.y5e{bottom:498.495000px;}
.y8b{bottom:501.015000px;}
.y119{bottom:503.895000px;}
.y14b{bottom:506.235000px;}
.ya1{bottom:509.655000px;}
.y48{bottom:513.435000px;}
.ye9{bottom:515.415000px;}
.y16c{bottom:517.575000px;}
.y139{bottom:519.015000px;}
.ybc{bottom:519.195000px;}
.y8a{bottom:521.715000px;}
.y18a{bottom:526.935000px;}
.ya0{bottom:530.355000px;}
.y47{bottom:534.135000px;}
.ye8{bottom:536.115000px;}
.y118{bottom:539.715000px;}
.ybb{bottom:539.895000px;}
.y14a{bottom:542.055000px;}
.y89{bottom:542.415000px;}
.y1a{bottom:545.475000px;}
.y9f{bottom:551.055000px;}
.y16b{bottom:553.215000px;}
.y46{bottom:554.835000px;}
.ye7{bottom:556.815000px;}
.y117{bottom:560.415000px;}
.yba{bottom:560.595000px;}
.y149{bottom:562.755000px;}
.y88{bottom:563.115000px;}
.y19{bottom:564.555000px;}
.y9e{bottom:571.755000px;}
.y16a{bottom:573.915000px;}
.y45{bottom:575.535000px;}
.ye6{bottom:577.515000px;}
.y116{bottom:581.115000px;}
.yd4{bottom:581.295000px;}
.y189{bottom:583.455000px;}
.y87{bottom:583.815000px;}
.y9d{bottom:592.455000px;}
.y169{bottom:594.615000px;}
.y44{bottom:596.235000px;}
.yf8{bottom:598.215000px;}
.y148{bottom:598.395000px;}
.y18{bottom:601.455000px;}
.y115{bottom:601.815000px;}
.yd3{bottom:601.995000px;}
.y188{bottom:604.155000px;}
.y86{bottom:604.515000px;}
.y9c{bottom:613.155000px;}
.y5d{bottom:616.935000px;}
.yf7{bottom:618.915000px;}
.y17{bottom:620.535000px;}
.y114{bottom:622.515000px;}
.yd2{bottom:622.695000px;}
.y168{bottom:630.255000px;}
.y43{bottom:632.055000px;}
.ye5{bottom:633.855000px;}
.y147{bottom:634.035000px;}
.y5c{bottom:637.635000px;}
.y16{bottom:639.615000px;}
.y187{bottom:639.795000px;}
.y85{bottom:640.155000px;}
.y113{bottom:643.215000px;}
.y9b{bottom:643.395000px;}
.yf6{bottom:649.155000px;}
.y167{bottom:650.955000px;}
.y42{bottom:652.755000px;}
.ye4{bottom:654.555000px;}
.y146{bottom:654.735000px;}
.y138{bottom:658.155000px;}
.y5b{bottom:658.335000px;}
.y15{bottom:658.515000px;}
.y186{bottom:660.495000px;}
.y84{bottom:660.855000px;}
.y112{bottom:663.915000px;}
.y41{bottom:673.485000px;}
.ye3{bottom:675.285000px;}
.y145{bottom:675.465000px;}
.y14{bottom:677.445000px;}
.y137{bottom:678.885000px;}
.yb9{bottom:679.065000px;}
.y185{bottom:681.225000px;}
.y83{bottom:681.585000px;}
.y111{bottom:684.645000px;}
.y166{bottom:686.805000px;}
.y40{bottom:694.185000px;}
.ye2{bottom:695.985000px;}
.y13{bottom:696.525000px;}
.y136{bottom:699.585000px;}
.yb8{bottom:699.765000px;}
.y82{bottom:702.285000px;}
.y110{bottom:705.345000px;}
.y165{bottom:707.505000px;}
.y144{bottom:711.105000px;}
.y3f{bottom:714.885000px;}
.y12{bottom:715.425000px;}
.y184{bottom:716.865000px;}
.y135{bottom:720.285000px;}
.yb7{bottom:720.465000px;}
.y81{bottom:722.985000px;}
.y10f{bottom:726.045000px;}
.y142{bottom:726.225000px;}
.y164{bottom:728.205000px;}
.ye1{bottom:731.805000px;}
.y11{bottom:734.505000px;}
.y3e{bottom:735.585000px;}
.y183{bottom:737.565000px;}
.y134{bottom:740.985000px;}
.yd1{bottom:741.165000px;}
.y80{bottom:743.685000px;}
.y10e{bottom:746.745000px;}
.y143{bottom:746.925000px;}
.ye0{bottom:752.505000px;}
.y10{bottom:753.405000px;}
.yb6{bottom:756.105000px;}
.y3d{bottom:756.285000px;}
.y133{bottom:761.685000px;}
.yd0{bottom:761.865000px;}
.y163{bottom:763.845000px;}
.y7f{bottom:764.385000px;}
.y10d{bottom:767.445000px;}
.yf{bottom:772.485000px;}
.ydf{bottom:773.205000px;}
.y3c{bottom:776.805000px;}
.y132{bottom:782.385000px;}
.ycf{bottom:782.565000px;}
.y162{bottom:784.545000px;}
.y10c{bottom:788.145000px;}
.ye{bottom:791.385000px;}
.yde{bottom:793.905000px;}
.y5a{bottom:797.505000px;}
.y7e{bottom:800.205000px;}
.y131{bottom:803.085000px;}
.yce{bottom:803.265000px;}
.y161{bottom:805.245000px;}
.y10b{bottom:808.845000px;}
.yd{bottom:810.285000px;}
.y3b{bottom:812.625000px;}
.ydd{bottom:814.605000px;}
.yb5{bottom:818.205000px;}
.y7d{bottom:820.905000px;}
.y130{bottom:823.785000px;}
.y160{bottom:825.945000px;}
.yc{bottom:829.365000px;}
.y3a{bottom:833.325000px;}
.yb4{bottom:838.905000px;}
.y7c{bottom:841.605000px;}
.y10a{bottom:844.485000px;}
.ydc{bottom:844.665000px;}
.yb{bottom:848.265000px;}
.y182{bottom:850.425000px;}
.y39{bottom:854.025000px;}
.y12f{bottom:859.425000px;}
.yb3{bottom:859.605000px;}
.y15f{bottom:861.585000px;}
.y7b{bottom:862.305000px;}
.y109{bottom:865.185000px;}
.ya{bottom:867.345000px;}
.y181{bottom:871.125000px;}
.y38{bottom:874.725000px;}
.y12e{bottom:880.125000px;}
.ycd{bottom:880.305000px;}
.y15e{bottom:882.285000px;}
.y7a{bottom:883.005000px;}
.y9{bottom:886.245000px;}
.y180{bottom:891.825000px;}
.y108{bottom:893.445000px;}
.y37{bottom:895.425000px;}
.y12d{bottom:900.825000px;}
.ycc{bottom:901.005000px;}
.y15d{bottom:902.985000px;}
.y79{bottom:903.705000px;}
.y8{bottom:914.550000px;}
.y36{bottom:916.170000px;}
.y12c{bottom:921.570000px;}
.ycb{bottom:921.750000px;}
.y15c{bottom:923.730000px;}
.y17f{bottom:927.510000px;}
.y35{bottom:936.870000px;}
.y78{bottom:939.390000px;}
.y12b{bottom:942.270000px;}
.yca{bottom:942.450000px;}
.y34{bottom:957.570000px;}
.y15b{bottom:959.550000px;}
.y77{bottom:960.090000px;}
.y7{bottom:962.250000px;}
.y17e{bottom:963.150000px;}
.y12a{bottom:970.710000px;}
.y33{bottom:978.270000px;}
.y15a{bottom:980.250000px;}
.y76{bottom:980.790000px;}
.y17d{bottom:983.850000px;}
.y59{bottom:993.210000px;}
.y32{bottom:998.970000px;}
.y159{bottom:1000.950000px;}
.y75{bottom:1001.490000px;}
.y17c{bottom:1004.550000px;}
.y6{bottom:1009.410000px;}
.y58{bottom:1013.910000px;}
.yc9{bottom:1019.670000px;}
.y74{bottom:1022.190000px;}
.y158{bottom:1031.010000px;}
.y31{bottom:1034.610000px;}
.y5{bottom:1037.850000px;}
.yc8{bottom:1040.370000px;}
.y73{bottom:1042.890000px;}
.y30{bottom:1055.310000px;}
.yc7{bottom:1061.070000px;}
.y72{bottom:1063.590000px;}
.y2f{bottom:1076.010000px;}
.yc6{bottom:1081.770000px;}
.y71{bottom:1084.290000px;}
.y4{bottom:1086.990000px;}
.y2e{bottom:1096.710000px;}
.y70{bottom:1104.990000px;}
.y2d{bottom:1117.410000px;}
.y3{bottom:1132.530000px;}
.y6f{bottom:1135.230000px;}
.y2c{bottom:1138.110000px;}
.y1{bottom:1195.740000px;}
.h4{height:46.866094px;}
.h5{height:47.901094px;}
.h8{height:50.800781px;}
.h2{height:52.066406px;}
.h7{height:54.864844px;}
.h6{height:59.436914px;}
.h3{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:108.035987px;}
.x3{left:155.369987px;}
.x9{left:162.029987px;}
.x4{left:246.089987px;}
.x7{left:297.254987px;}
.x6{left:346.934987px;}
.x1{left:390.674987px;}
.x5{left:401.294987px;}
.x8{left:412.994987px;}
.xb{left:438.194987px;}
.x2{left:442.334987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.640000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:0.000000pt;}
._20{margin-left:-4.679680pt;}
._c{margin-left:-3.709440pt;}
._6{margin-left:-2.046720pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.274880pt;}
._7{width:2.731520pt;}
._15{width:3.913387pt;}
._12{width:5.012480pt;}
._4{width:5.946880pt;}
._17{width:6.940160pt;}
._d{width:7.831040pt;}
._13{width:8.721920pt;}
._18{width:10.370987pt;}
._b{width:12.129280pt;}
._a{width:13.130240pt;}
._10{width:14.128640pt;}
._16{width:15.055360pt;}
._5{width:16.368640pt;}
._1b{width:17.346133pt;}
._14{width:18.304000pt;}
._19{width:19.328000pt;}
._1e{width:20.352000pt;}
._8{width:21.491200pt;}
._9{width:23.116800pt;}
._1c{width:24.355840pt;}
._1d{width:25.692160pt;}
._11{width:26.688000pt;}
._1f{width:28.474880pt;}
._1a{width:29.608960pt;}
._2{width:31.029760pt;}
._3{width:32.207360pt;}
._e{width:34.048000pt;}
._f{width:35.008000pt;}
._21{width:36.416000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.400000pt;}
.yb2{bottom:100.320000pt;}
.y2b{bottom:102.720000pt;}
.y6e{bottom:103.520000pt;}
.yf5{bottom:105.280000pt;}
.y141{bottom:108.480000pt;}
.yb1{bottom:118.720000pt;}
.y2a{bottom:121.120000pt;}
.y6d{bottom:121.920000pt;}
.y157{bottom:122.560000pt;}
.yf4{bottom:123.680000pt;}
.y140{bottom:126.880000pt;}
.y17b{bottom:130.720000pt;}
.yb0{bottom:137.120000pt;}
.y129{bottom:140.160000pt;}
.y6c{bottom:140.320000pt;}
.y107{bottom:141.920000pt;}
.y9a{bottom:142.720000pt;}
.y57{bottom:145.280000pt;}
.y17a{bottom:149.120000pt;}
.y29{bottom:152.800000pt;}
.y156{bottom:154.240000pt;}
.yc5{bottom:155.520000pt;}
.y196{bottom:157.440000pt;}
.y128{bottom:158.560000pt;}
.y6b{bottom:158.720000pt;}
.y106{bottom:160.320000pt;}
.y99{bottom:161.120000pt;}
.y56{bottom:163.680000pt;}
.yaf{bottom:168.800000pt;}
.y28{bottom:171.226667pt;}
.y155{bottom:172.666667pt;}
.yc4{bottom:173.946667pt;}
.y195{bottom:175.866667pt;}
.y127{bottom:176.986667pt;}
.y6a{bottom:177.146667pt;}
.y105{bottom:178.746667pt;}
.y98{bottom:179.546667pt;}
.y179{bottom:180.826667pt;}
.y55{bottom:182.106667pt;}
.yae{bottom:187.226667pt;}
.y27{bottom:189.626667pt;}
.y154{bottom:191.066667pt;}
.yc3{bottom:192.346667pt;}
.y194{bottom:194.266667pt;}
.y126{bottom:195.386667pt;}
.y69{bottom:195.546667pt;}
.y104{bottom:197.146667pt;}
.y97{bottom:197.946667pt;}
.y178{bottom:199.226667pt;}
.y54{bottom:200.506667pt;}
.yad{bottom:205.626667pt;}
.y26{bottom:208.026667pt;}
.y153{bottom:209.466667pt;}
.yc2{bottom:210.746667pt;}
.y193{bottom:212.666667pt;}
.y125{bottom:213.786667pt;}
.ydb{bottom:213.946667pt;}
.y103{bottom:215.546667pt;}
.y96{bottom:216.346667pt;}
.y53{bottom:218.906667pt;}
.yac{bottom:224.026667pt;}
.y25{bottom:226.426667pt;}
.y68{bottom:227.386667pt;}
.yf3{bottom:229.146667pt;}
.y177{bottom:230.906667pt;}
.y124{bottom:232.186667pt;}
.yda{bottom:232.346667pt;}
.y102{bottom:233.946667pt;}
.y52{bottom:237.306667pt;}
.yc1{bottom:237.466667pt;}
.y152{bottom:241.146667pt;}
.yab{bottom:242.426667pt;}
.y192{bottom:244.346667pt;}
.y24{bottom:244.826667pt;}
.y67{bottom:245.786667pt;}
.yf2{bottom:247.546667pt;}
.y95{bottom:248.026667pt;}
.y176{bottom:249.306667pt;}
.y123{bottom:250.586667pt;}
.yd9{bottom:250.746667pt;}
.y101{bottom:252.346667pt;}
.y51{bottom:255.706667pt;}
.yaa{bottom:260.826667pt;}
.y191{bottom:262.746667pt;}
.y23{bottom:263.226667pt;}
.y13f{bottom:263.866667pt;}
.y66{bottom:264.186667pt;}
.y94{bottom:266.426667pt;}
.y175{bottom:267.706667pt;}
.y122{bottom:268.986667pt;}
.yd8{bottom:269.146667pt;}
.y151{bottom:272.986667pt;}
.yf1{bottom:279.226667pt;}
.y190{bottom:281.146667pt;}
.y13e{bottom:282.266667pt;}
.y50{bottom:282.586667pt;}
.y100{bottom:284.026667pt;}
.y93{bottom:284.826667pt;}
.y174{bottom:286.106667pt;}
.y121{bottom:287.386667pt;}
.ya9{bottom:292.506667pt;}
.y22{bottom:295.066667pt;}
.yf0{bottom:297.626667pt;}
.y13d{bottom:300.666667pt;}
.y65{bottom:300.986667pt;}
.yff{bottom:302.426667pt;}
.y92{bottom:303.226667pt;}
.y150{bottom:304.666667pt;}
.y120{bottom:305.786667pt;}
.ya8{bottom:310.906667pt;}
.y18f{bottom:312.986667pt;}
.y21{bottom:313.466667pt;}
.yef{bottom:316.026667pt;}
.y173{bottom:317.786667pt;}
.y13c{bottom:319.066667pt;}
.yc0{bottom:319.386667pt;}
.yfe{bottom:320.826667pt;}
.y91{bottom:321.626667pt;}
.y4f{bottom:327.546667pt;}
.ya7{bottom:329.306667pt;}
.y18e{bottom:331.386667pt;}
.y20{bottom:331.866667pt;}
.y64{bottom:332.666667pt;}
.yee{bottom:334.426667pt;}
.y172{bottom:336.186667pt;}
.y14f{bottom:336.346667pt;}
.y11f{bottom:337.466667pt;}
.ybf{bottom:337.786667pt;}
.yfd{bottom:339.226667pt;}
.y90{bottom:340.026667pt;}
.y4e{bottom:345.946667pt;}
.ya6{bottom:347.706667pt;}
.y18d{bottom:349.786667pt;}
.y1f{bottom:350.266667pt;}
.y63{bottom:351.066667pt;}
.yed{bottom:352.826667pt;}
.y171{bottom:354.586667pt;}
.y14e{bottom:354.746667pt;}
.y11e{bottom:355.866667pt;}
.ybe{bottom:356.186667pt;}
.yfc{bottom:357.626667pt;}
.y8f{bottom:358.426667pt;}
.y4d{bottom:364.346667pt;}
.ya5{bottom:366.106667pt;}
.y1e{bottom:368.666667pt;}
.y62{bottom:369.466667pt;}
.yec{bottom:371.226667pt;}
.y170{bottom:372.986667pt;}
.y11d{bottom:374.266667pt;}
.ybd{bottom:374.586667pt;}
.yfb{bottom:376.026667pt;}
.y8e{bottom:376.826667pt;}
.y18c{bottom:381.466667pt;}
.y4c{bottom:382.786667pt;}
.ya4{bottom:384.546667pt;}
.y14d{bottom:386.626667pt;}
.y1d{bottom:387.106667pt;}
.y61{bottom:387.906667pt;}
.y11c{bottom:392.706667pt;}
.yd7{bottom:393.026667pt;}
.yfa{bottom:394.466667pt;}
.y18b{bottom:399.906667pt;}
.y4b{bottom:401.186667pt;}
.ya3{bottom:402.946667pt;}
.y16f{bottom:404.866667pt;}
.y1c{bottom:405.346667pt;}
.y60{bottom:406.306667pt;}
.y8d{bottom:408.546667pt;}
.y11b{bottom:411.106667pt;}
.yd6{bottom:411.426667pt;}
.y14c{bottom:418.306667pt;}
.y4a{bottom:419.586667pt;}
.yf9{bottom:419.746667pt;}
.yeb{bottom:421.346667pt;}
.y16e{bottom:423.266667pt;}
.y13b{bottom:424.546667pt;}
.y5f{bottom:424.706667pt;}
.y8c{bottom:426.946667pt;}
.y11a{bottom:429.506667pt;}
.yd5{bottom:429.826667pt;}
.y1b{bottom:432.386667pt;}
.ya2{bottom:434.626667pt;}
.y49{bottom:437.986667pt;}
.yea{bottom:439.746667pt;}
.y16d{bottom:441.666667pt;}
.y13a{bottom:442.946667pt;}
.y5e{bottom:443.106667pt;}
.y8b{bottom:445.346667pt;}
.y119{bottom:447.906667pt;}
.y14b{bottom:449.986667pt;}
.ya1{bottom:453.026667pt;}
.y48{bottom:456.386667pt;}
.ye9{bottom:458.146667pt;}
.y16c{bottom:460.066667pt;}
.y139{bottom:461.346667pt;}
.ybc{bottom:461.506667pt;}
.y8a{bottom:463.746667pt;}
.y18a{bottom:468.386667pt;}
.ya0{bottom:471.426667pt;}
.y47{bottom:474.786667pt;}
.ye8{bottom:476.546667pt;}
.y118{bottom:479.746667pt;}
.ybb{bottom:479.906667pt;}
.y14a{bottom:481.826667pt;}
.y89{bottom:482.146667pt;}
.y1a{bottom:484.866667pt;}
.y9f{bottom:489.826667pt;}
.y16b{bottom:491.746667pt;}
.y46{bottom:493.186667pt;}
.ye7{bottom:494.946667pt;}
.y117{bottom:498.146667pt;}
.yba{bottom:498.306667pt;}
.y149{bottom:500.226667pt;}
.y88{bottom:500.546667pt;}
.y19{bottom:501.826667pt;}
.y9e{bottom:508.226667pt;}
.y16a{bottom:510.146667pt;}
.y45{bottom:511.586667pt;}
.ye6{bottom:513.346667pt;}
.y116{bottom:516.546667pt;}
.yd4{bottom:516.706667pt;}
.y189{bottom:518.626667pt;}
.y87{bottom:518.946667pt;}
.y9d{bottom:526.626667pt;}
.y169{bottom:528.546667pt;}
.y44{bottom:529.986667pt;}
.yf8{bottom:531.746667pt;}
.y148{bottom:531.906667pt;}
.y18{bottom:534.626667pt;}
.y115{bottom:534.946667pt;}
.yd3{bottom:535.106667pt;}
.y188{bottom:537.026667pt;}
.y86{bottom:537.346667pt;}
.y9c{bottom:545.026667pt;}
.y5d{bottom:548.386667pt;}
.yf7{bottom:550.146667pt;}
.y17{bottom:551.586667pt;}
.y114{bottom:553.346667pt;}
.yd2{bottom:553.506667pt;}
.y168{bottom:560.226667pt;}
.y43{bottom:561.826667pt;}
.ye5{bottom:563.426667pt;}
.y147{bottom:563.586667pt;}
.y5c{bottom:566.786667pt;}
.y16{bottom:568.546667pt;}
.y187{bottom:568.706667pt;}
.y85{bottom:569.026667pt;}
.y113{bottom:571.746667pt;}
.y9b{bottom:571.906667pt;}
.yf6{bottom:577.026667pt;}
.y167{bottom:578.626667pt;}
.y42{bottom:580.226667pt;}
.ye4{bottom:581.826667pt;}
.y146{bottom:581.986667pt;}
.y138{bottom:585.026667pt;}
.y5b{bottom:585.186667pt;}
.y15{bottom:585.346667pt;}
.y186{bottom:587.106667pt;}
.y84{bottom:587.426667pt;}
.y112{bottom:590.146667pt;}
.y41{bottom:598.653333pt;}
.ye3{bottom:600.253333pt;}
.y145{bottom:600.413333pt;}
.y14{bottom:602.173333pt;}
.y137{bottom:603.453333pt;}
.yb9{bottom:603.613333pt;}
.y185{bottom:605.533333pt;}
.y83{bottom:605.853333pt;}
.y111{bottom:608.573333pt;}
.y166{bottom:610.493333pt;}
.y40{bottom:617.053333pt;}
.ye2{bottom:618.653333pt;}
.y13{bottom:619.133333pt;}
.y136{bottom:621.853333pt;}
.yb8{bottom:622.013333pt;}
.y82{bottom:624.253333pt;}
.y110{bottom:626.973333pt;}
.y165{bottom:628.893333pt;}
.y144{bottom:632.093333pt;}
.y3f{bottom:635.453333pt;}
.y12{bottom:635.933333pt;}
.y184{bottom:637.213333pt;}
.y135{bottom:640.253333pt;}
.yb7{bottom:640.413333pt;}
.y81{bottom:642.653333pt;}
.y10f{bottom:645.373333pt;}
.y142{bottom:645.533333pt;}
.y164{bottom:647.293333pt;}
.ye1{bottom:650.493333pt;}
.y11{bottom:652.893333pt;}
.y3e{bottom:653.853333pt;}
.y183{bottom:655.613333pt;}
.y134{bottom:658.653333pt;}
.yd1{bottom:658.813333pt;}
.y80{bottom:661.053333pt;}
.y10e{bottom:663.773333pt;}
.y143{bottom:663.933333pt;}
.ye0{bottom:668.893333pt;}
.y10{bottom:669.693333pt;}
.yb6{bottom:672.093333pt;}
.y3d{bottom:672.253333pt;}
.y133{bottom:677.053333pt;}
.yd0{bottom:677.213333pt;}
.y163{bottom:678.973333pt;}
.y7f{bottom:679.453333pt;}
.y10d{bottom:682.173333pt;}
.yf{bottom:686.653333pt;}
.ydf{bottom:687.293333pt;}
.y3c{bottom:690.493333pt;}
.y132{bottom:695.453333pt;}
.ycf{bottom:695.613333pt;}
.y162{bottom:697.373333pt;}
.y10c{bottom:700.573333pt;}
.ye{bottom:703.453333pt;}
.yde{bottom:705.693333pt;}
.y5a{bottom:708.893333pt;}
.y7e{bottom:711.293333pt;}
.y131{bottom:713.853333pt;}
.yce{bottom:714.013333pt;}
.y161{bottom:715.773333pt;}
.y10b{bottom:718.973333pt;}
.yd{bottom:720.253333pt;}
.y3b{bottom:722.333333pt;}
.ydd{bottom:724.093333pt;}
.yb5{bottom:727.293333pt;}
.y7d{bottom:729.693333pt;}
.y130{bottom:732.253333pt;}
.y160{bottom:734.173333pt;}
.yc{bottom:737.213333pt;}
.y3a{bottom:740.733333pt;}
.yb4{bottom:745.693333pt;}
.y7c{bottom:748.093333pt;}
.y10a{bottom:750.653333pt;}
.ydc{bottom:750.813333pt;}
.yb{bottom:754.013333pt;}
.y182{bottom:755.933333pt;}
.y39{bottom:759.133333pt;}
.y12f{bottom:763.933333pt;}
.yb3{bottom:764.093333pt;}
.y15f{bottom:765.853333pt;}
.y7b{bottom:766.493333pt;}
.y109{bottom:769.053333pt;}
.ya{bottom:770.973333pt;}
.y181{bottom:774.333333pt;}
.y38{bottom:777.533333pt;}
.y12e{bottom:782.333333pt;}
.ycd{bottom:782.493333pt;}
.y15e{bottom:784.253333pt;}
.y7a{bottom:784.893333pt;}
.y9{bottom:787.773333pt;}
.y180{bottom:792.733333pt;}
.y108{bottom:794.173333pt;}
.y37{bottom:795.933333pt;}
.y12d{bottom:800.733333pt;}
.ycc{bottom:800.893333pt;}
.y15d{bottom:802.653333pt;}
.y79{bottom:803.293333pt;}
.y8{bottom:812.933333pt;}
.y36{bottom:814.373333pt;}
.y12c{bottom:819.173333pt;}
.ycb{bottom:819.333333pt;}
.y15c{bottom:821.093333pt;}
.y17f{bottom:824.453333pt;}
.y35{bottom:832.773333pt;}
.y78{bottom:835.013333pt;}
.y12b{bottom:837.573333pt;}
.yca{bottom:837.733333pt;}
.y34{bottom:851.173333pt;}
.y15b{bottom:852.933333pt;}
.y77{bottom:853.413333pt;}
.y7{bottom:855.333333pt;}
.y17e{bottom:856.133333pt;}
.y12a{bottom:862.853333pt;}
.y33{bottom:869.573333pt;}
.y15a{bottom:871.333333pt;}
.y76{bottom:871.813333pt;}
.y17d{bottom:874.533333pt;}
.y59{bottom:882.853333pt;}
.y32{bottom:887.973333pt;}
.y159{bottom:889.733333pt;}
.y75{bottom:890.213333pt;}
.y17c{bottom:892.933333pt;}
.y6{bottom:897.253333pt;}
.y58{bottom:901.253333pt;}
.yc9{bottom:906.373333pt;}
.y74{bottom:908.613333pt;}
.y158{bottom:916.453333pt;}
.y31{bottom:919.653333pt;}
.y5{bottom:922.533333pt;}
.yc8{bottom:924.773333pt;}
.y73{bottom:927.013333pt;}
.y30{bottom:938.053333pt;}
.yc7{bottom:943.173333pt;}
.y72{bottom:945.413333pt;}
.y2f{bottom:956.453333pt;}
.yc6{bottom:961.573333pt;}
.y71{bottom:963.813333pt;}
.y4{bottom:966.213333pt;}
.y2e{bottom:974.853333pt;}
.y70{bottom:982.213333pt;}
.y2d{bottom:993.253333pt;}
.y3{bottom:1006.693333pt;}
.y6f{bottom:1009.093333pt;}
.y2c{bottom:1011.653333pt;}
.y1{bottom:1062.880000pt;}
.h4{height:41.658750pt;}
.h5{height:42.578750pt;}
.h8{height:45.156250pt;}
.h2{height:46.281250pt;}
.h7{height:48.768750pt;}
.h6{height:52.832812pt;}
.h3{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.031988pt;}
.x3{left:138.106655pt;}
.x9{left:144.026655pt;}
.x4{left:218.746655pt;}
.x7{left:264.226655pt;}
.x6{left:308.386655pt;}
.x1{left:347.266655pt;}
.x5{left:356.706655pt;}
.x8{left:367.106655pt;}
.xb{left:389.506655pt;}
.x2{left:393.186655pt;}
}




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