
    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_abf5bda72cb5fc4b85333c26.woff')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_d7fe4365927407362a4cf3c5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a7e9a128649b832e039fad29.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c5a4a74134a89f4bfc21122a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d9e28026d2cb58da7c2d198c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_773d52dde74cfa1ba0090bfe.woff')format("woff");}.ff6{font-family:ff6;line-height:0.920410;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_d4faacdd47b8329bd20dd507.woff')format("woff");}.ff7{font-family:ff7;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-72.000000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.288000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.lsc{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.720000px;}
.ls6{letter-spacing:4.320000px;}
.ls4{letter-spacing:10.080000px;}
.ls5{letter-spacing:12.240000px;}
.ls8{letter-spacing:194.376000px;}
.ls3{letter-spacing:494.100000px;}
.ls9{letter-spacing:662.556000px;}
.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;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._1a{margin-left:-14.400000px;}
._22{margin-left:-5.400000px;}
._b{margin-left:-3.744000px;}
._a{margin-left:-2.066400px;}
._1{margin-left:-1.014720px;}
._0{width:1.434240px;}
._c{width:2.668800px;}
._d{width:3.707520px;}
._f{width:5.111760px;}
._8{width:6.962880px;}
._7{width:8.070720px;}
._4{width:9.720000px;}
._3{width:11.070720px;}
._9{width:12.168000px;}
._11{width:13.752000px;}
._12{width:14.916000px;}
._13{width:16.416000px;}
._1e{width:17.851680px;}
._e{width:19.712160px;}
._14{width:21.171360px;}
._1b{width:22.172640px;}
._1f{width:23.331360px;}
._28{width:24.410400px;}
._18{width:25.516800px;}
._5{width:26.856000px;}
._6{width:28.080000px;}
._1d{width:30.024000px;}
._1c{width:31.176000px;}
._23{width:32.520000px;}
._16{width:34.063200px;}
._19{width:35.179680px;}
._29{width:41.472000px;}
._2a{width:42.480000px;}
._27{width:44.768160px;}
._24{width:50.328000px;}
._25{width:63.000000px;}
._26{width:64.152000px;}
._20{width:153.728160px;}
._21{width:176.376000px;}
._17{width:194.376000px;}
._15{width:197.976000px;}
._2{width:321.356160px;}
._10{width:322.518720px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(38,38,38);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y121{bottom:4.140000px;}
.y12a{bottom:4.500000px;}
.y5{bottom:12.420000px;}
.y122{bottom:14.400000px;}
.y131{bottom:14.580000px;}
.y120{bottom:24.840000px;}
.y129{bottom:25.200000px;}
.y12f{bottom:26.640000px;}
.y125{bottom:35.100000px;}
.y140{bottom:35.460000px;}
.y12d{bottom:45.540000px;}
.y128{bottom:45.900000px;}
.y3{bottom:47.880000px;}
.y124{bottom:55.800000px;}
.y12e{bottom:65.340000px;}
.y12c{bottom:66.240000px;}
.y127{bottom:66.600000px;}
.y2{bottom:83.520000px;}
.y126{bottom:87.300000px;}
.y136{bottom:95.940000px;}
.y87{bottom:103.500000px;}
.yf8{bottom:104.040000px;}
.y171{bottom:104.760000px;}
.y13d{bottom:108.000000px;}
.yc5{bottom:109.080000px;}
.y155{bottom:110.880000px;}
.y3b{bottom:113.040000px;}
.ydf{bottom:113.220000px;}
.y60{bottom:114.840000px;}
.y135{bottom:116.685000px;}
.y13f{bottom:117.045000px;}
.yad{bottom:121.860000px;}
.y170{bottom:125.460000px;}
.yc4{bottom:126.360000px;}
.yf7{bottom:132.156000px;}
.y86{bottom:134.496000px;}
.y134{bottom:137.385000px;}
.y13e{bottom:137.745000px;}
.y154{bottom:141.876000px;}
.yc3{bottom:143.676000px;}
.yde{bottom:144.216000px;}
.y5f{bottom:146.016000px;}
.y16f{bottom:146.196000px;}
.y13c{bottom:146.745000px;}
.yac{bottom:152.850000px;}
.y3a{bottom:157.350000px;}
.y133{bottom:158.085000px;}
.yc2{bottom:160.950000px;}
.yf6{bottom:163.290000px;}
.y12b{bottom:163.830000px;}
.y85{bottom:165.630000px;}
.y16e{bottom:166.890000px;}
.y13b{bottom:167.445000px;}
.y153{bottom:173.010000px;}
.y39{bottom:174.270000px;}
.ydd{bottom:175.350000px;}
.y5e{bottom:176.970000px;}
.yc1{bottom:178.230000px;}
.yab{bottom:183.990000px;}
.y84{bottom:186.510000px;}
.y16d{bottom:187.590000px;}
.y13a{bottom:188.145000px;}
.y38{bottom:191.550000px;}
.yf5{bottom:194.250000px;}
.yaa{bottom:203.970000px;}
.yc0{bottom:206.310000px;}
.y83{bottom:206.490000px;}
.y5d{bottom:208.110000px;}
.y16c{bottom:208.290000px;}
.y37{bottom:208.830000px;}
.y139{bottom:208.845000px;}
.ya9{bottom:221.250000px;}
.y82{bottom:223.590000px;}
.yf4{bottom:225.390000px;}
.y36{bottom:226.110000px;}
.y16b{bottom:228.990000px;}
.y138{bottom:229.545000px;}
.y152{bottom:235.110000px;}
.ybf{bottom:237.450000px;}
.ya8{bottom:238.530000px;}
.y5c{bottom:239.070000px;}
.y81{bottom:240.870000px;}
.y35{bottom:243.570000px;}
.y16a{bottom:249.690000px;}
.y137{bottom:250.245000px;}
.ya7{bottom:255.810000px;}
.yf3{bottom:256.350000px;}
.y80{bottom:258.150000px;}
.y34{bottom:260.850000px;}
.y151{bottom:266.070000px;}
.ybe{bottom:268.410000px;}
.y5b{bottom:270.210000px;}
.y169{bottom:270.390000px;}
.ya6{bottom:273.090000px;}
.y7f{bottom:275.430000px;}
.y33{bottom:278.130000px;}
.y32{bottom:283.350000px;}
.yf2{bottom:287.310000px;}
.ya5{bottom:290.190000px;}
.y168{bottom:291.090000px;}
.y123{bottom:291.450000px;}
.y7e{bottom:292.710000px;}
.y150{bottom:297.210000px;}
.ybd{bottom:299.550000px;}
.y5a{bottom:301.170000px;}
.y31{bottom:304.410000px;}
.ya4{bottom:307.470000px;}
.y7d{bottom:309.990000px;}
.y167{bottom:311.790000px;}
.y112{bottom:318.450000px;}
.y30{bottom:322.410000px;}
.ya3{bottom:324.750000px;}
.y14f{bottom:328.170000px;}
.y2f{bottom:329.250000px;}
.ybc{bottom:330.510000px;}
.y59{bottom:332.310000px;}
.y166{bottom:332.490000px;}
.y7c{bottom:338.070000px;}
.ya2{bottom:342.030000px;}
.y2e{bottom:342.390000px;}
.y111{bottom:349.410000px;}
.y165{bottom:353.190000px;}
.ya1{bottom:359.310000px;}
.y2d{bottom:359.670000px;}
.ybb{bottom:361.650000px;}
.y58{bottom:363.270000px;}
.y7b{bottom:369.210000px;}
.y164{bottom:373.890000px;}
.yf1{bottom:376.590000px;}
.y2b{bottom:377.490000px;}
.y14e{bottom:379.290000px;}
.y110{bottom:380.550000px;}
.y2c{bottom:384.375000px;}
.ya0{bottom:387.435000px;}
.yba{bottom:392.655000px;}
.yf0{bottom:393.735000px;}
.y57{bottom:394.455000px;}
.y163{bottom:394.635000px;}
.y14d{bottom:396.615000px;}
.y2a{bottom:398.235000px;}
.y7a{bottom:400.215000px;}
.yef{bottom:411.015000px;}
.y10f{bottom:411.555000px;}
.y14c{bottom:413.895000px;}
.y162{bottom:415.335000px;}
.y9f{bottom:418.575000px;}
.y11f{bottom:418.935000px;}
.yb9{bottom:423.615000px;}
.y56{bottom:425.415000px;}
.y14b{bottom:431.175000px;}
.y79{bottom:431.355000px;}
.y29{bottom:436.035000px;}
.yee{bottom:439.275000px;}
.y10e{bottom:442.695000px;}
.y14a{bottom:448.455000px;}
.y9e{bottom:449.535000px;}
.yb8{bottom:454.755000px;}
.y55{bottom:456.555000px;}
.y28{bottom:456.735000px;}
.y149{bottom:465.735000px;}
.yed{bottom:470.235000px;}
.y10d{bottom:473.655000px;}
.y27{bottom:477.435000px;}
.y9d{bottom:480.675000px;}
.y148{bottom:482.835000px;}
.y78{bottom:483.015000px;}
.yb7{bottom:485.715000px;}
.y54{bottom:487.515000px;}
.y26{bottom:497.775000px;}
.y11e{bottom:497.955000px;}
.y161{bottom:498.135000px;}
.y147{bottom:500.115000px;}
.yec{bottom:501.375000px;}
.y10c{bottom:504.795000px;}
.y9c{bottom:511.635000px;}
.y77{bottom:514.335000px;}
.yb6{bottom:516.855000px;}
.y146{bottom:517.395000px;}
.y53{bottom:518.655000px;}
.y25{bottom:518.835000px;}
.y11d{bottom:528.915000px;}
.yeb{bottom:532.335000px;}
.y145{bottom:534.675000px;}
.y10b{bottom:535.755000px;}
.ydc{bottom:537.015000px;}
.y24{bottom:539.535000px;}
.y9b{bottom:542.775000px;}
.y76{bottom:545.475000px;}
.yb5{bottom:547.815000px;}
.y52{bottom:549.615000px;}
.ydb{bottom:554.295000px;}
.y15e{bottom:556.275000px;}
.y11c{bottom:560.055000px;}
.y23{bottom:560.235000px;}
.yea{bottom:563.475000px;}
.y10a{bottom:566.895000px;}
.y144{bottom:569.955000px;}
.yda{bottom:571.395000px;}
.y9a{bottom:573.735000px;}
.y75{bottom:576.435000px;}
.y15d{bottom:576.975000px;}
.yb4{bottom:578.955000px;}
.y51{bottom:580.755000px;}
.y22{bottom:580.935000px;}
.yd9{bottom:588.675000px;}
.y11b{bottom:591.015000px;}
.ye9{bottom:594.435000px;}
.y15c{bottom:597.675000px;}
.y109{bottom:597.855000px;}
.y143{bottom:600.735000px;}
.y21{bottom:601.455000px;}
.y99{bottom:604.875000px;}
.yd8{bottom:605.955000px;}
.y74{bottom:607.575000px;}
.yb3{bottom:609.915000px;}
.y50{bottom:611.715000px;}
.y11a{bottom:621.975000px;}
.y20{bottom:622.155000px;}
.yd7{bottom:623.235000px;}
.ye8{bottom:625.575000px;}
.y108{bottom:628.995000px;}
.y142{bottom:631.875000px;}
.y98{bottom:635.865000px;}
.y73{bottom:638.565000px;}
.yd6{bottom:640.545000px;}
.yb2{bottom:641.085000px;}
.y4f{bottom:642.705000px;}
.y1f{bottom:642.885000px;}
.y141{bottom:652.785000px;}
.y119{bottom:653.145000px;}
.ye7{bottom:656.565000px;}
.yd5{bottom:657.825000px;}
.y107{bottom:659.985000px;}
.y1e{bottom:663.585000px;}
.y97{bottom:667.005000px;}
.y72{bottom:669.705000px;}
.yb1{bottom:672.045000px;}
.y4e{bottom:673.845000px;}
.y118{bottom:684.105000px;}
.y1d{bottom:684.285000px;}
.yd4{bottom:685.905000px;}
.ye6{bottom:687.705000px;}
.y106{bottom:691.125000px;}
.y96{bottom:697.965000px;}
.y71{bottom:700.665000px;}
.yb0{bottom:700.845000px;}
.y4d{bottom:704.805000px;}
.y1c{bottom:704.985000px;}
.y117{bottom:715.245000px;}
.yd3{bottom:717.045000px;}
.y95{bottom:718.125000px;}
.ye5{bottom:718.665000px;}
.y105{bottom:722.085000px;}
.y1b{bottom:725.685000px;}
.y70{bottom:731.805000px;}
.y94{bottom:735.405000px;}
.y4c{bottom:735.945000px;}
.y116{bottom:746.205000px;}
.y1a{bottom:746.385000px;}
.yd2{bottom:748.005000px;}
.ye4{bottom:749.805000px;}
.y93{bottom:752.685000px;}
.y104{bottom:752.865000px;}
.y15b{bottom:753.225000px;}
.y6f{bottom:762.765000px;}
.y4b{bottom:766.905000px;}
.y19{bottom:767.085000px;}
.y92{bottom:769.785000px;}
.y115{bottom:777.345000px;}
.yd1{bottom:778.965000px;}
.y132{bottom:780.585000px;}
.ye3{bottom:780.765000px;}
.y103{bottom:784.185000px;}
.y91{bottom:787.065000px;}
.y18{bottom:787.785000px;}
.y6e{bottom:793.905000px;}
.y4a{bottom:797.685000px;}
.y90{bottom:804.345000px;}
.y114{bottom:808.305000px;}
.y17{bottom:808.485000px;}
.yd0{bottom:810.105000px;}
.ye2{bottom:811.905000px;}
.y102{bottom:815.325000px;}
.y8f{bottom:821.625000px;}
.y6d{bottom:824.865000px;}
.y49{bottom:829.005000px;}
.y16{bottom:829.185000px;}
.y8e{bottom:838.905000px;}
.y113{bottom:839.445000px;}
.yaf{bottom:839.625000px;}
.ycf{bottom:841.065000px;}
.ye1{bottom:842.865000px;}
.y101{bottom:846.285000px;}
.y15{bottom:849.885000px;}
.y6c{bottom:856.005000px;}
.y8d{bottom:856.185000px;}
.y48{bottom:860.145000px;}
.y15a{bottom:866.445000px;}
.yae{bottom:870.405000px;}
.y14{bottom:870.585000px;}
.yce{bottom:872.205000px;}
.y8c{bottom:873.285000px;}
.ye0{bottom:874.005000px;}
.y100{bottom:877.425000px;}
.y160{bottom:880.845000px;}
.y159{bottom:883.725000px;}
.y47{bottom:891.150000px;}
.y13{bottom:891.330000px;}
.y6b{bottom:894.030000px;}
.y158{bottom:901.050000px;}
.y15f{bottom:901.410000px;}
.y8b{bottom:901.590000px;}
.y4{bottom:903.210000px;}
.yff{bottom:908.430000px;}
.y6a{bottom:911.310000px;}
.y46{bottom:912.030000px;}
.y157{bottom:918.330000px;}
.y11{bottom:922.290000px;}
.y69{bottom:928.590000px;}
.y12{bottom:929.130000px;}
.y8a{bottom:932.550000px;}
.y45{bottom:932.730000px;}
.ycd{bottom:934.350000px;}
.y156{bottom:935.430000px;}
.yfe{bottom:939.570000px;}
.yf{bottom:943.170000px;}
.y68{bottom:945.870000px;}
.y10{bottom:950.010000px;}
.y44{bottom:953.430000px;}
.y67{bottom:963.150000px;}
.ye{bottom:963.510000px;}
.y89{bottom:963.690000px;}
.ycc{bottom:965.310000px;}
.yd{bottom:969.450000px;}
.yfd{bottom:970.530000px;}
.y43{bottom:974.130000px;}
.y66{bottom:980.250000px;}
.yc{bottom:984.210000px;}
.y88{bottom:994.650000px;}
.y42{bottom:994.830000px;}
.ycb{bottom:996.450000px;}
.y65{bottom:997.530000px;}
.yfc{bottom:1001.670000px;}
.yb{bottom:1004.910000px;}
.y41{bottom:1015.530000px;}
.ya{bottom:1025.610000px;}
.y64{bottom:1025.790000px;}
.yca{bottom:1027.410000px;}
.yfb{bottom:1032.630000px;}
.y40{bottom:1036.230000px;}
.y9{bottom:1046.310000px;}
.yfa{bottom:1052.790000px;}
.y63{bottom:1056.750000px;}
.y3f{bottom:1056.930000px;}
.yc9{bottom:1058.550000px;}
.y8{bottom:1067.550000px;}
.yf9{bottom:1070.070000px;}
.y130{bottom:1070.970000px;}
.y3e{bottom:1077.630000px;}
.yc8{bottom:1087.350000px;}
.y62{bottom:1087.890000px;}
.y7{bottom:1091.670000px;}
.y3d{bottom:1098.330000px;}
.yc7{bottom:1104.450000px;}
.y6{bottom:1115.790000px;}
.y61{bottom:1118.850000px;}
.y3c{bottom:1119.030000px;}
.yc6{bottom:1121.730000px;}
.y1{bottom:1139.370000px;}
.h4{height:29.160000px;}
.ha{height:38.158594px;}
.h8{height:47.344922px;}
.h7{height:48.616875px;}
.h9{height:58.651172px;}
.hc{height:59.400000px;}
.h3{height:60.226875px;}
.hb{height:64.546875px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.h6{height:84.898125px;}
.h10{height:100.800000px;}
.he{height:121.500000px;}
.hd{height:121.536000px;}
.hf{height:284.430000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:39.960000px;}
.w7{width:134.856000px;}
.w5{width:144.216000px;}
.w6{width:387.075000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:1.080000px;}
.x1e{left:8.460000px;}
.x20{left:12.960000px;}
.x19{left:14.040000px;}
.x1c{left:21.414000px;}
.x15{left:24.114000px;}
.x1d{left:26.094000px;}
.x1a{left:30.240000px;}
.x14{left:31.854000px;}
.x21{left:33.834000px;}
.x1f{left:36.894000px;}
.x22{left:39.594000px;}
.x17{left:79.380000px;}
.x2{left:127.655987px;}
.xd{left:131.435973px;}
.x10{left:132.515987px;}
.xf{left:133.775987px;}
.xe{left:137.555987px;}
.x4{left:140.795987px;}
.x7{left:155.549987px;}
.x12{left:180.749987px;}
.x11{left:231.149987px;}
.x16{left:279.075000px;}
.x13{left:297.794987px;}
.xc{left:343.694987px;}
.x5{left:404.534987px;}
.xb{left:434.624987px;}
.x6{left:467.924987px;}
.x8{left:478.544987px;}
.xa{left:575.609987px;}
.x18{left:669.930000px;}
.x9{left:802.079973px;}
.x1{left:808.019987px;}
.x3{left:830.700000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-64.000000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls6{letter-spacing:3.840000pt;}
.ls4{letter-spacing:8.960000pt;}
.ls5{letter-spacing:10.880000pt;}
.ls8{letter-spacing:172.778667pt;}
.ls3{letter-spacing:439.200000pt;}
.ls9{letter-spacing:588.938667pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._1a{margin-left:-12.800000pt;}
._22{margin-left:-4.800000pt;}
._b{margin-left:-3.328000pt;}
._a{margin-left:-1.836800pt;}
._1{margin-left:-0.901973pt;}
._0{width:1.274880pt;}
._c{width:2.372267pt;}
._d{width:3.295573pt;}
._f{width:4.543787pt;}
._8{width:6.189227pt;}
._7{width:7.173973pt;}
._4{width:8.640000pt;}
._3{width:9.840640pt;}
._9{width:10.816000pt;}
._11{width:12.224000pt;}
._12{width:13.258667pt;}
._13{width:14.592000pt;}
._1e{width:15.868160pt;}
._e{width:17.521920pt;}
._14{width:18.818987pt;}
._1b{width:19.709013pt;}
._1f{width:20.738987pt;}
._28{width:21.698133pt;}
._18{width:22.681600pt;}
._5{width:23.872000pt;}
._6{width:24.960000pt;}
._1d{width:26.688000pt;}
._1c{width:27.712000pt;}
._23{width:28.906667pt;}
._16{width:30.278400pt;}
._19{width:31.270827pt;}
._29{width:36.864000pt;}
._2a{width:37.760000pt;}
._27{width:39.793920pt;}
._24{width:44.736000pt;}
._25{width:56.000000pt;}
._26{width:57.024000pt;}
._20{width:136.647253pt;}
._21{width:156.778667pt;}
._17{width:172.778667pt;}
._15{width:175.978667pt;}
._2{width:285.649920pt;}
._10{width:286.683307pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y121{bottom:3.680000pt;}
.y12a{bottom:4.000000pt;}
.y5{bottom:11.040000pt;}
.y122{bottom:12.800000pt;}
.y131{bottom:12.960000pt;}
.y120{bottom:22.080000pt;}
.y129{bottom:22.400000pt;}
.y12f{bottom:23.680000pt;}
.y125{bottom:31.200000pt;}
.y140{bottom:31.520000pt;}
.y12d{bottom:40.480000pt;}
.y128{bottom:40.800000pt;}
.y3{bottom:42.560000pt;}
.y124{bottom:49.600000pt;}
.y12e{bottom:58.080000pt;}
.y12c{bottom:58.880000pt;}
.y127{bottom:59.200000pt;}
.y2{bottom:74.240000pt;}
.y126{bottom:77.600000pt;}
.y136{bottom:85.280000pt;}
.y87{bottom:92.000000pt;}
.yf8{bottom:92.480000pt;}
.y171{bottom:93.120000pt;}
.y13d{bottom:96.000000pt;}
.yc5{bottom:96.960000pt;}
.y155{bottom:98.560000pt;}
.y3b{bottom:100.480000pt;}
.ydf{bottom:100.640000pt;}
.y60{bottom:102.080000pt;}
.y135{bottom:103.720000pt;}
.y13f{bottom:104.040000pt;}
.yad{bottom:108.320000pt;}
.y170{bottom:111.520000pt;}
.yc4{bottom:112.320000pt;}
.yf7{bottom:117.472000pt;}
.y86{bottom:119.552000pt;}
.y134{bottom:122.120000pt;}
.y13e{bottom:122.440000pt;}
.y154{bottom:126.112000pt;}
.yc3{bottom:127.712000pt;}
.yde{bottom:128.192000pt;}
.y5f{bottom:129.792000pt;}
.y16f{bottom:129.952000pt;}
.y13c{bottom:130.440000pt;}
.yac{bottom:135.866667pt;}
.y3a{bottom:139.866667pt;}
.y133{bottom:140.520000pt;}
.yc2{bottom:143.066667pt;}
.yf6{bottom:145.146667pt;}
.y12b{bottom:145.626667pt;}
.y85{bottom:147.226667pt;}
.y16e{bottom:148.346667pt;}
.y13b{bottom:148.840000pt;}
.y153{bottom:153.786667pt;}
.y39{bottom:154.906667pt;}
.ydd{bottom:155.866667pt;}
.y5e{bottom:157.306667pt;}
.yc1{bottom:158.426667pt;}
.yab{bottom:163.546667pt;}
.y84{bottom:165.786667pt;}
.y16d{bottom:166.746667pt;}
.y13a{bottom:167.240000pt;}
.y38{bottom:170.266667pt;}
.yf5{bottom:172.666667pt;}
.yaa{bottom:181.306667pt;}
.yc0{bottom:183.386667pt;}
.y83{bottom:183.546667pt;}
.y5d{bottom:184.986667pt;}
.y16c{bottom:185.146667pt;}
.y37{bottom:185.626667pt;}
.y139{bottom:185.640000pt;}
.ya9{bottom:196.666667pt;}
.y82{bottom:198.746667pt;}
.yf4{bottom:200.346667pt;}
.y36{bottom:200.986667pt;}
.y16b{bottom:203.546667pt;}
.y138{bottom:204.040000pt;}
.y152{bottom:208.986667pt;}
.ybf{bottom:211.066667pt;}
.ya8{bottom:212.026667pt;}
.y5c{bottom:212.506667pt;}
.y81{bottom:214.106667pt;}
.y35{bottom:216.506667pt;}
.y16a{bottom:221.946667pt;}
.y137{bottom:222.440000pt;}
.ya7{bottom:227.386667pt;}
.yf3{bottom:227.866667pt;}
.y80{bottom:229.466667pt;}
.y34{bottom:231.866667pt;}
.y151{bottom:236.506667pt;}
.ybe{bottom:238.586667pt;}
.y5b{bottom:240.186667pt;}
.y169{bottom:240.346667pt;}
.ya6{bottom:242.746667pt;}
.y7f{bottom:244.826667pt;}
.y33{bottom:247.226667pt;}
.y32{bottom:251.866667pt;}
.yf2{bottom:255.386667pt;}
.ya5{bottom:257.946667pt;}
.y168{bottom:258.746667pt;}
.y123{bottom:259.066667pt;}
.y7e{bottom:260.186667pt;}
.y150{bottom:264.186667pt;}
.ybd{bottom:266.266667pt;}
.y5a{bottom:267.706667pt;}
.y31{bottom:270.586667pt;}
.ya4{bottom:273.306667pt;}
.y7d{bottom:275.546667pt;}
.y167{bottom:277.146667pt;}
.y112{bottom:283.066667pt;}
.y30{bottom:286.586667pt;}
.ya3{bottom:288.666667pt;}
.y14f{bottom:291.706667pt;}
.y2f{bottom:292.666667pt;}
.ybc{bottom:293.786667pt;}
.y59{bottom:295.386667pt;}
.y166{bottom:295.546667pt;}
.y7c{bottom:300.506667pt;}
.ya2{bottom:304.026667pt;}
.y2e{bottom:304.346667pt;}
.y111{bottom:310.586667pt;}
.y165{bottom:313.946667pt;}
.ya1{bottom:319.386667pt;}
.y2d{bottom:319.706667pt;}
.ybb{bottom:321.466667pt;}
.y58{bottom:322.906667pt;}
.y7b{bottom:328.186667pt;}
.y164{bottom:332.346667pt;}
.yf1{bottom:334.746667pt;}
.y2b{bottom:335.546667pt;}
.y14e{bottom:337.146667pt;}
.y110{bottom:338.266667pt;}
.y2c{bottom:341.666667pt;}
.ya0{bottom:344.386667pt;}
.yba{bottom:349.026667pt;}
.yf0{bottom:349.986667pt;}
.y57{bottom:350.626667pt;}
.y163{bottom:350.786667pt;}
.y14d{bottom:352.546667pt;}
.y2a{bottom:353.986667pt;}
.y7a{bottom:355.746667pt;}
.yef{bottom:365.346667pt;}
.y10f{bottom:365.826667pt;}
.y14c{bottom:367.906667pt;}
.y162{bottom:369.186667pt;}
.y9f{bottom:372.066667pt;}
.y11f{bottom:372.386667pt;}
.yb9{bottom:376.546667pt;}
.y56{bottom:378.146667pt;}
.y14b{bottom:383.266667pt;}
.y79{bottom:383.426667pt;}
.y29{bottom:387.586667pt;}
.yee{bottom:390.466667pt;}
.y10e{bottom:393.506667pt;}
.y14a{bottom:398.626667pt;}
.y9e{bottom:399.586667pt;}
.yb8{bottom:404.226667pt;}
.y55{bottom:405.826667pt;}
.y28{bottom:405.986667pt;}
.y149{bottom:413.986667pt;}
.yed{bottom:417.986667pt;}
.y10d{bottom:421.026667pt;}
.y27{bottom:424.386667pt;}
.y9d{bottom:427.266667pt;}
.y148{bottom:429.186667pt;}
.y78{bottom:429.346667pt;}
.yb7{bottom:431.746667pt;}
.y54{bottom:433.346667pt;}
.y26{bottom:442.466667pt;}
.y11e{bottom:442.626667pt;}
.y161{bottom:442.786667pt;}
.y147{bottom:444.546667pt;}
.yec{bottom:445.666667pt;}
.y10c{bottom:448.706667pt;}
.y9c{bottom:454.786667pt;}
.y77{bottom:457.186667pt;}
.yb6{bottom:459.426667pt;}
.y146{bottom:459.906667pt;}
.y53{bottom:461.026667pt;}
.y25{bottom:461.186667pt;}
.y11d{bottom:470.146667pt;}
.yeb{bottom:473.186667pt;}
.y145{bottom:475.266667pt;}
.y10b{bottom:476.226667pt;}
.ydc{bottom:477.346667pt;}
.y24{bottom:479.586667pt;}
.y9b{bottom:482.466667pt;}
.y76{bottom:484.866667pt;}
.yb5{bottom:486.946667pt;}
.y52{bottom:488.546667pt;}
.ydb{bottom:492.706667pt;}
.y15e{bottom:494.466667pt;}
.y11c{bottom:497.826667pt;}
.y23{bottom:497.986667pt;}
.yea{bottom:500.866667pt;}
.y10a{bottom:503.906667pt;}
.y144{bottom:506.626667pt;}
.yda{bottom:507.906667pt;}
.y9a{bottom:509.986667pt;}
.y75{bottom:512.386667pt;}
.y15d{bottom:512.866667pt;}
.yb4{bottom:514.626667pt;}
.y51{bottom:516.226667pt;}
.y22{bottom:516.386667pt;}
.yd9{bottom:523.266667pt;}
.y11b{bottom:525.346667pt;}
.ye9{bottom:528.386667pt;}
.y15c{bottom:531.266667pt;}
.y109{bottom:531.426667pt;}
.y143{bottom:533.986667pt;}
.y21{bottom:534.626667pt;}
.y99{bottom:537.666667pt;}
.yd8{bottom:538.626667pt;}
.y74{bottom:540.066667pt;}
.yb3{bottom:542.146667pt;}
.y50{bottom:543.746667pt;}
.y11a{bottom:552.866667pt;}
.y20{bottom:553.026667pt;}
.yd7{bottom:553.986667pt;}
.ye8{bottom:556.066667pt;}
.y108{bottom:559.106667pt;}
.y142{bottom:561.666667pt;}
.y98{bottom:565.213333pt;}
.y73{bottom:567.613333pt;}
.yd6{bottom:569.373333pt;}
.yb2{bottom:569.853333pt;}
.y4f{bottom:571.293333pt;}
.y1f{bottom:571.453333pt;}
.y141{bottom:580.253333pt;}
.y119{bottom:580.573333pt;}
.ye7{bottom:583.613333pt;}
.yd5{bottom:584.733333pt;}
.y107{bottom:586.653333pt;}
.y1e{bottom:589.853333pt;}
.y97{bottom:592.893333pt;}
.y72{bottom:595.293333pt;}
.yb1{bottom:597.373333pt;}
.y4e{bottom:598.973333pt;}
.y118{bottom:608.093333pt;}
.y1d{bottom:608.253333pt;}
.yd4{bottom:609.693333pt;}
.ye6{bottom:611.293333pt;}
.y106{bottom:614.333333pt;}
.y96{bottom:620.413333pt;}
.y71{bottom:622.813333pt;}
.yb0{bottom:622.973333pt;}
.y4d{bottom:626.493333pt;}
.y1c{bottom:626.653333pt;}
.y117{bottom:635.773333pt;}
.yd3{bottom:637.373333pt;}
.y95{bottom:638.333333pt;}
.ye5{bottom:638.813333pt;}
.y105{bottom:641.853333pt;}
.y1b{bottom:645.053333pt;}
.y70{bottom:650.493333pt;}
.y94{bottom:653.693333pt;}
.y4c{bottom:654.173333pt;}
.y116{bottom:663.293333pt;}
.y1a{bottom:663.453333pt;}
.yd2{bottom:664.893333pt;}
.ye4{bottom:666.493333pt;}
.y93{bottom:669.053333pt;}
.y104{bottom:669.213333pt;}
.y15b{bottom:669.533333pt;}
.y6f{bottom:678.013333pt;}
.y4b{bottom:681.693333pt;}
.y19{bottom:681.853333pt;}
.y92{bottom:684.253333pt;}
.y115{bottom:690.973333pt;}
.yd1{bottom:692.413333pt;}
.y132{bottom:693.853333pt;}
.ye3{bottom:694.013333pt;}
.y103{bottom:697.053333pt;}
.y91{bottom:699.613333pt;}
.y18{bottom:700.253333pt;}
.y6e{bottom:705.693333pt;}
.y4a{bottom:709.053333pt;}
.y90{bottom:714.973333pt;}
.y114{bottom:718.493333pt;}
.y17{bottom:718.653333pt;}
.yd0{bottom:720.093333pt;}
.ye2{bottom:721.693333pt;}
.y102{bottom:724.733333pt;}
.y8f{bottom:730.333333pt;}
.y6d{bottom:733.213333pt;}
.y49{bottom:736.893333pt;}
.y16{bottom:737.053333pt;}
.y8e{bottom:745.693333pt;}
.y113{bottom:746.173333pt;}
.yaf{bottom:746.333333pt;}
.ycf{bottom:747.613333pt;}
.ye1{bottom:749.213333pt;}
.y101{bottom:752.253333pt;}
.y15{bottom:755.453333pt;}
.y6c{bottom:760.893333pt;}
.y8d{bottom:761.053333pt;}
.y48{bottom:764.573333pt;}
.y15a{bottom:770.173333pt;}
.yae{bottom:773.693333pt;}
.y14{bottom:773.853333pt;}
.yce{bottom:775.293333pt;}
.y8c{bottom:776.253333pt;}
.ye0{bottom:776.893333pt;}
.y100{bottom:779.933333pt;}
.y160{bottom:782.973333pt;}
.y159{bottom:785.533333pt;}
.y47{bottom:792.133333pt;}
.y13{bottom:792.293333pt;}
.y6b{bottom:794.693333pt;}
.y158{bottom:800.933333pt;}
.y15f{bottom:801.253333pt;}
.y8b{bottom:801.413333pt;}
.y4{bottom:802.853333pt;}
.yff{bottom:807.493333pt;}
.y6a{bottom:810.053333pt;}
.y46{bottom:810.693333pt;}
.y157{bottom:816.293333pt;}
.y11{bottom:819.813333pt;}
.y69{bottom:825.413333pt;}
.y12{bottom:825.893333pt;}
.y8a{bottom:828.933333pt;}
.y45{bottom:829.093333pt;}
.ycd{bottom:830.533333pt;}
.y156{bottom:831.493333pt;}
.yfe{bottom:835.173333pt;}
.yf{bottom:838.373333pt;}
.y68{bottom:840.773333pt;}
.y10{bottom:844.453333pt;}
.y44{bottom:847.493333pt;}
.y67{bottom:856.133333pt;}
.ye{bottom:856.453333pt;}
.y89{bottom:856.613333pt;}
.ycc{bottom:858.053333pt;}
.yd{bottom:861.733333pt;}
.yfd{bottom:862.693333pt;}
.y43{bottom:865.893333pt;}
.y66{bottom:871.333333pt;}
.yc{bottom:874.853333pt;}
.y88{bottom:884.133333pt;}
.y42{bottom:884.293333pt;}
.ycb{bottom:885.733333pt;}
.y65{bottom:886.693333pt;}
.yfc{bottom:890.373333pt;}
.yb{bottom:893.253333pt;}
.y41{bottom:902.693333pt;}
.ya{bottom:911.653333pt;}
.y64{bottom:911.813333pt;}
.yca{bottom:913.253333pt;}
.yfb{bottom:917.893333pt;}
.y40{bottom:921.093333pt;}
.y9{bottom:930.053333pt;}
.yfa{bottom:935.813333pt;}
.y63{bottom:939.333333pt;}
.y3f{bottom:939.493333pt;}
.yc9{bottom:940.933333pt;}
.y8{bottom:948.933333pt;}
.yf9{bottom:951.173333pt;}
.y130{bottom:951.973333pt;}
.y3e{bottom:957.893333pt;}
.yc8{bottom:966.533333pt;}
.y62{bottom:967.013333pt;}
.y7{bottom:970.373333pt;}
.y3d{bottom:976.293333pt;}
.yc7{bottom:981.733333pt;}
.y6{bottom:991.813333pt;}
.y61{bottom:994.533333pt;}
.y3c{bottom:994.693333pt;}
.yc6{bottom:997.093333pt;}
.y1{bottom:1012.773333pt;}
.h4{height:25.920000pt;}
.ha{height:33.918750pt;}
.h8{height:42.084375pt;}
.h7{height:43.215000pt;}
.h9{height:52.134375pt;}
.hc{height:52.800000pt;}
.h3{height:53.535000pt;}
.hb{height:57.375000pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.h6{height:75.465000pt;}
.h10{height:89.600000pt;}
.he{height:108.000000pt;}
.hd{height:108.032000pt;}
.hf{height:252.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:35.520000pt;}
.w7{width:119.872000pt;}
.w5{width:128.192000pt;}
.w6{width:344.066667pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:0.960000pt;}
.x1e{left:7.520000pt;}
.x20{left:11.520000pt;}
.x19{left:12.480000pt;}
.x1c{left:19.034667pt;}
.x15{left:21.434667pt;}
.x1d{left:23.194667pt;}
.x1a{left:26.880000pt;}
.x14{left:28.314667pt;}
.x21{left:30.074667pt;}
.x1f{left:32.794667pt;}
.x22{left:35.194667pt;}
.x17{left:70.560000pt;}
.x2{left:113.471988pt;}
.xd{left:116.831976pt;}
.x10{left:117.791988pt;}
.xf{left:118.911988pt;}
.xe{left:122.271988pt;}
.x4{left:125.151988pt;}
.x7{left:138.266655pt;}
.x12{left:160.666655pt;}
.x11{left:205.466655pt;}
.x16{left:248.066667pt;}
.x13{left:264.706655pt;}
.xc{left:305.506655pt;}
.x5{left:359.586655pt;}
.xb{left:386.333322pt;}
.x6{left:415.933322pt;}
.x8{left:425.373322pt;}
.xa{left:511.653322pt;}
.x18{left:595.493333pt;}
.x9{left:712.959976pt;}
.x1{left:718.239988pt;}
.x3{left:738.400000pt;}
}




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