
    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_ac2f189199d7565f201ca210.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_aac2febcddb78e661d54a5ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_9627ffd611f09d4f3756ae1a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_42dfa89c4ec2d2125cdbacb9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ac320aa02d362f5f520397ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e41800cef1105d888b022ebc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_87f7b151ba815e6e7fd6ea8b.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_f9ee7dbd1db1a10daddf0d85.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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:ffb;src:url('chunks/assets/font_3aee3f2a0c8781ddd5347a19.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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:ffc;src:url('chunks/assets/font_4a8bb5b3d22e09a24f200fd5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.v3{vertical-align:27.360000px;}
.lsc{letter-spacing:-0.450600px;}
.ls1{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.192000px;}
.lsa{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.269400px;}
.ls8{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.ls6{letter-spacing:17.460000px;}
.ls5{letter-spacing:54.840000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws0{word-spacing:-71.712000px;}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws6{word-spacing:-12.329400px;}
.ws7{word-spacing:-11.609400px;}
.ws3{word-spacing:0.000000px;}
._25{margin-left:-8.868000px;}
._26{margin-left:-7.632000px;}
._0{margin-left:-6.624000px;}
._10{margin-left:-5.280000px;}
._3{margin-left:-4.032000px;}
._7{margin-left:-2.220000px;}
._1{margin-left:-1.152000px;}
._2{width:1.164000px;}
._9{width:2.304000px;}
._a{width:3.588000px;}
._d{width:4.980000px;}
._b{width:6.600000px;}
._f{width:7.800000px;}
._1b{width:9.576000px;}
._4{width:10.728000px;}
._8{width:11.856000px;}
._c{width:12.948000px;}
._16{width:14.196000px;}
._1f{width:15.900000px;}
._23{width:16.968000px;}
._11{width:19.008000px;}
._17{width:20.364000px;}
._24{width:21.672000px;}
._20{width:23.184000px;}
._e{width:24.408000px;}
._1d{width:25.632000px;}
._1e{width:26.784000px;}
._15{width:27.912000px;}
._14{width:29.304000px;}
._1c{width:30.888000px;}
._2a{width:32.028000px;}
._29{width:33.048000px;}
._13{width:34.920000px;}
._12{width:36.144000px;}
._2c{width:37.512000px;}
._21{width:39.096000px;}
._22{width:40.584000px;}
._2d{width:42.504000px;}
._5{width:45.216000px;}
._6{width:46.656000px;}
._1a{width:47.796000px;}
._19{width:48.816000px;}
._28{width:49.824000px;}
._18{width:51.120000px;}
._27{width:52.344000px;}
._2b{width:310.248000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y89{bottom:6.300000px;}
.y69{bottom:7.020000px;}
.yd2{bottom:7.065000px;}
.y6b{bottom:7.200000px;}
.y56{bottom:8.100000px;}
.ye6{bottom:14.220000px;}
.ye7{bottom:14.400000px;}
.y8b{bottom:14.940000px;}
.y7a{bottom:16.920000px;}
.y81{bottom:17.100000px;}
.y8d{bottom:17.460000px;}
.y8f{bottom:17.640000px;}
.y5e{bottom:20.700000px;}
.y5a{bottom:21.060000px;}
.y60{bottom:21.105000px;}
.y58{bottom:21.240000px;}
.y91{bottom:21.600000px;}
.yd4{bottom:30.780000px;}
.yeb{bottom:45.390000px;}
.y2{bottom:55.980000px;}
.y1{bottom:77.976000px;}
.y27{bottom:111.276000px;}
.yb7{bottom:116.676000px;}
.yd9{bottom:117.936000px;}
.ya0{bottom:121.716000px;}
.y131{bottom:122.616000px;}
.y54{bottom:124.956000px;}
.y7c{bottom:125.136000px;}
.y4b{bottom:128.916000px;}
.yfa{bottom:132.336000px;}
.yb6{bottom:141.336000px;}
.y26{bottom:142.416000px;}
.y130{bottom:146.556000px;}
.yd8{bottom:149.076000px;}
.y9f{bottom:152.670000px;}
.y53{bottom:156.090000px;}
.y7b{bottom:159.510000px;}
.y4a{bottom:159.870000px;}
.yf9{bottom:163.290000px;}
.yb5{bottom:165.810000px;}
.y10b{bottom:166.170000px;}
.y12f{bottom:170.310000px;}
.y25{bottom:173.370000px;}
.yd7{bottom:180.030000px;}
.y9e{bottom:183.810000px;}
.y52{bottom:187.050000px;}
.y10a{bottom:189.930000px;}
.yb4{bottom:190.290000px;}
.y49{bottom:191.010000px;}
.y79{bottom:194.070000px;}
.yf8{bottom:194.430000px;}
.y24{bottom:204.510000px;}
.yd6{bottom:211.170000px;}
.y109{bottom:213.690000px;}
.y9d{bottom:214.770000px;}
.y12e{bottom:217.830000px;}
.y51{bottom:218.190000px;}
.y48{bottom:221.970000px;}
.yf7{bottom:225.390000px;}
.y78{bottom:228.450000px;}
.yb3{bottom:229.170000px;}
.y23{bottom:235.470000px;}
.y108{bottom:237.630000px;}
.y12d{bottom:241.770000px;}
.yd5{bottom:242.130000px;}
.y9c{bottom:245.910000px;}
.y50{bottom:249.150000px;}
.y47{bottom:253.110000px;}
.yf6{bottom:256.530000px;}
.yd3{bottom:259.770000px;}
.yb2{bottom:260.310000px;}
.y107{bottom:261.390000px;}
.y12c{bottom:265.530000px;}
.y22{bottom:266.610000px;}
.y77{bottom:267.330000px;}
.y9b{bottom:276.870000px;}
.y4f{bottom:280.110000px;}
.y46{bottom:284.070000px;}
.y106{bottom:285.150000px;}
.yf5{bottom:287.490000px;}
.y12b{bottom:289.290000px;}
.yb1{bottom:291.270000px;}
.y21{bottom:297.570000px;}
.y76{bottom:298.290000px;}
.y9a{bottom:308.010000px;}
.y105{bottom:308.910000px;}
.y4e{bottom:312.510000px;}
.y12a{bottom:313.050000px;}
.y45{bottom:315.210000px;}
.yf4{bottom:318.630000px;}
.yb0{bottom:322.410000px;}
.y20{bottom:328.710000px;}
.y75{bottom:329.430000px;}
.yd1{bottom:332.670000px;}
.y104{bottom:332.850000px;}
.y129{bottom:337.035000px;}
.y99{bottom:339.015000px;}
.y4d{bottom:344.955000px;}
.y44{bottom:346.215000px;}
.y74{bottom:346.935000px;}
.yf3{bottom:349.635000px;}
.yaf{bottom:353.415000px;}
.y103{bottom:356.655000px;}
.yd0{bottom:357.195000px;}
.y1f{bottom:359.715000px;}
.y128{bottom:360.795000px;}
.y98{bottom:370.155000px;}
.y73{bottom:371.415000px;}
.y4c{bottom:375.915000px;}
.y43{bottom:377.355000px;}
.y102{bottom:380.415000px;}
.yf2{bottom:380.775000px;}
.ycf{bottom:381.675000px;}
.yae{bottom:384.555000px;}
.y1e{bottom:390.855000px;}
.y72{bottom:396.075000px;}
.y97{bottom:401.115000px;}
.y101{bottom:404.175000px;}
.y42{bottom:408.315000px;}
.yf1{bottom:411.735000px;}
.yad{bottom:415.515000px;}
.y96{bottom:418.575000px;}
.y71{bottom:420.555000px;}
.y1d{bottom:421.815000px;}
.y100{bottom:428.115000px;}
.y127{bottom:432.255000px;}
.y41{bottom:439.455000px;}
.yf0{bottom:442.875000px;}
.y70{bottom:445.035000px;}
.yac{bottom:446.655000px;}
.yce{bottom:451.695000px;}
.yff{bottom:451.875000px;}
.y1c{bottom:452.955000px;}
.y126{bottom:456.015000px;}
.y95{bottom:456.375000px;}
.y6f{bottom:469.695000px;}
.y40{bottom:470.415000px;}
.yef{bottom:473.835000px;}
.yfe{bottom:475.635000px;}
.yab{bottom:477.615000px;}
.y125{bottom:479.775000px;}
.ycd{bottom:482.655000px;}
.y1b{bottom:483.915000px;}
.y6e{bottom:494.175000px;}
.yfd{bottom:499.395000px;}
.y3f{bottom:501.555000px;}
.y124{bottom:503.535000px;}
.yee{bottom:504.975000px;}
.yaa{bottom:508.755000px;}
.ycc{bottom:513.795000px;}
.y1a{bottom:515.055000px;}
.y6d{bottom:518.835000px;}
.yfc{bottom:523.155000px;}
.y123{bottom:527.295000px;}
.y94{bottom:531.975000px;}
.y3e{bottom:532.515000px;}
.yed{bottom:535.935000px;}
.ya9{bottom:539.715000px;}
.y6c{bottom:543.315000px;}
.ycb{bottom:544.755000px;}
.y19{bottom:546.015000px;}
.yfb{bottom:547.095000px;}
.y122{bottom:551.235000px;}
.y3d{bottom:563.655000px;}
.yec{bottom:567.075000px;}
.y6a{bottom:567.795000px;}
.y93{bottom:569.775000px;}
.ya8{bottom:570.855000px;}
.y121{bottom:574.995000px;}
.yca{bottom:575.895000px;}
.y18{bottom:577.155000px;}
.yea{bottom:584.535000px;}
.y68{bottom:592.455000px;}
.y3c{bottom:594.615000px;}
.y120{bottom:598.755000px;}
.ya7{bottom:601.815000px;}
.yc9{bottom:606.885000px;}
.y92{bottom:607.605000px;}
.y17{bottom:608.145000px;}
.ya6{bottom:619.305000px;}
.y11f{bottom:622.545000px;}
.y3b{bottom:625.785000px;}
.y67{bottom:631.365000px;}
.yc8{bottom:638.025000px;}
.y16{bottom:639.285000px;}
.ya5{bottom:643.965000px;}
.y90{bottom:645.405000px;}
.y11e{bottom:646.485000px;}
.ye9{bottom:647.385000px;}
.y3a{bottom:656.745000px;}
.y66{bottom:662.325000px;}
.ya4{bottom:668.445000px;}
.yc7{bottom:668.985000px;}
.y15{bottom:670.245000px;}
.ye8{bottom:679.245000px;}
.y8e{bottom:683.205000px;}
.y39{bottom:687.885000px;}
.ya3{bottom:692.925000px;}
.y65{bottom:693.465000px;}
.y11d{bottom:694.005000px;}
.yc6{bottom:700.125000px;}
.y14{bottom:701.385000px;}
.y64{bottom:710.925000px;}
.y8c{bottom:717.045000px;}
.ya2{bottom:717.585000px;}
.y11c{bottom:717.765000px;}
.y38{bottom:718.845000px;}
.yc5{bottom:731.085000px;}
.y13{bottom:732.345000px;}
.y11b{bottom:741.705000px;}
.ya1{bottom:742.065000px;}
.ye5{bottom:742.785000px;}
.y63{bottom:748.185000px;}
.y37{bottom:749.985000px;}
.y8a{bottom:750.705000px;}
.yc4{bottom:762.225000px;}
.y12{bottom:763.485000px;}
.y11a{bottom:765.465000px;}
.y36{bottom:780.945000px;}
.y88{bottom:781.845000px;}
.y62{bottom:785.625000px;}
.ye4{bottom:788.865000px;}
.y119{bottom:789.225000px;}
.yc3{bottom:793.185000px;}
.y11{bottom:794.445000px;}
.y35{bottom:812.085000px;}
.y118{bottom:812.985000px;}
.y87{bottom:818.745000px;}
.ye3{bottom:820.005000px;}
.y61{bottom:822.885000px;}
.yc2{bottom:824.325000px;}
.y10{bottom:825.585000px;}
.y117{bottom:836.925000px;}
.y34{bottom:843.045000px;}
.y86{bottom:849.705000px;}
.ye2{bottom:850.965000px;}
.yc1{bottom:855.285000px;}
.yf{bottom:856.545000px;}
.y5f{bottom:860.325000px;}
.y116{bottom:860.685000px;}
.y33{bottom:874.230000px;}
.y85{bottom:880.890000px;}
.ye1{bottom:882.150000px;}
.y115{bottom:884.490000px;}
.yc0{bottom:886.470000px;}
.ye{bottom:887.550000px;}
.y5d{bottom:897.630000px;}
.y84{bottom:898.350000px;}
.y32{bottom:905.190000px;}
.y114{bottom:908.250000px;}
.ye0{bottom:913.110000px;}
.ybf{bottom:917.430000px;}
.yd{bottom:918.690000px;}
.y113{bottom:932.190000px;}
.y83{bottom:932.730000px;}
.y5c{bottom:934.530000px;}
.y31{bottom:936.330000px;}
.ydf{bottom:944.250000px;}
.ybe{bottom:948.570000px;}
.yc{bottom:949.650000px;}
.y112{bottom:955.950000px;}
.yde{bottom:961.710000px;}
.y82{bottom:967.110000px;}
.y30{bottom:967.290000px;}
.y5b{bottom:971.790000px;}
.ybd{bottom:979.530000px;}
.y111{bottom:979.710000px;}
.yb{bottom:980.790000px;}
.y2f{bottom:998.430000px;}
.y80{bottom:1001.490000px;}
.y110{bottom:1003.470000px;}
.y59{bottom:1009.230000px;}
.ydd{bottom:1009.950000px;}
.ybc{bottom:1010.670000px;}
.ya{bottom:1011.750000px;}
.y10f{bottom:1027.230000px;}
.y2e{bottom:1029.390000px;}
.ydc{bottom:1034.610000px;}
.y7f{bottom:1036.050000px;}
.ybb{bottom:1041.630000px;}
.y9{bottom:1042.890000px;}
.y57{bottom:1046.490000px;}
.y10e{bottom:1051.170000px;}
.ydb{bottom:1059.090000px;}
.y2d{bottom:1060.350000px;}
.y7e{bottom:1070.430000px;}
.yba{bottom:1072.590000px;}
.y8{bottom:1073.850000px;}
.y10d{bottom:1074.930000px;}
.yda{bottom:1083.750000px;}
.y55{bottom:1083.930000px;}
.yb9{bottom:1090.230000px;}
.y2c{bottom:1091.490000px;}
.y7{bottom:1097.790000px;}
.y10c{bottom:1098.690000px;}
.y7d{bottom:1104.810000px;}
.yb8{bottom:1114.710000px;}
.y6{bottom:1121.550000px;}
.y2b{bottom:1122.450000px;}
.y2a{bottom:1144.440000px;}
.y5{bottom:1145.340000px;}
.y29{bottom:1168.380000px;}
.y4{bottom:1169.100000px;}
.y28{bottom:1192.140000px;}
.y3{bottom:1193.040000px;}
.h15{height:21.780000px;}
.h8{height:23.580000px;}
.h11{height:23.760000px;}
.hf{height:23.796000px;}
.h10{height:23.940000px;}
.h16{height:30.420000px;}
.h1d{height:30.960000px;}
.h1e{height:31.140000px;}
.h17{height:32.940000px;}
.h18{height:33.120000px;}
.h12{height:33.660000px;}
.h13{height:33.696000px;}
.h14{height:33.840000px;}
.hd{height:36.180000px;}
.hc{height:36.540000px;}
.he{height:36.576000px;}
.ha{height:36.720000px;}
.h19{height:37.080000px;}
.h1a{height:37.116000px;}
.hb{height:46.251562px;}
.h9{height:46.736719px;}
.h1b{height:47.520000px;}
.h5{height:50.273438px;}
.h3{height:50.800781px;}
.h6{height:52.417969px;}
.h7{height:54.246094px;}
.h4{height:54.773438px;}
.h1c{height:61.043203px;}
.h1f{height:62.136000px;}
.h2{height:62.402344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:107.856000px;}
.w12{width:108.000000px;}
.w18{width:111.420000px;}
.w19{width:111.456000px;}
.w1b{width:111.600000px;}
.w1a{width:111.636000px;}
.w17{width:111.816000px;}
.w13{width:112.356000px;}
.w10{width:113.040000px;}
.w14{width:113.076000px;}
.w16{width:114.120000px;}
.w20{width:115.200000px;}
.w15{width:117.540000px;}
.wd{width:129.780000px;}
.w1e{width:132.876000px;}
.w9{width:134.100000px;}
.w1c{width:134.820000px;}
.w1d{width:136.116000px;}
.wb{width:150.330000px;}
.w1f{width:153.570000px;}
.w6{width:155.160000px;}
.w3{width:165.240000px;}
.wa{width:170.310000px;}
.wf{width:194.430000px;}
.wc{width:218.730000px;}
.w8{width:225.570000px;}
.w5{width:239.430000px;}
.w7{width:293.475000px;}
.w4{width:313.635000px;}
.we{width:349.635000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.740000px;}
.x1f{left:16.245000px;}
.x3c{left:24.660000px;}
.x3b{left:33.120000px;}
.x37{left:35.280000px;}
.x21{left:40.140000px;}
.x39{left:46.260000px;}
.x38{left:47.745000px;}
.x3a{left:49.854000px;}
.x1d{left:58.494000px;}
.x22{left:59.574000px;}
.x14{left:61.605000px;}
.x12{left:65.154000px;}
.x16{left:82.305000px;}
.x24{left:97.065000px;}
.x1b{left:98.325000px;}
.x19{left:102.465000px;}
.x2{left:108.035987px;}
.x18{left:116.865000px;}
.x23{left:121.905000px;}
.x10{left:135.035987px;}
.x1a{left:138.285000px;}
.x17{left:142.425000px;}
.x3d{left:150.509987px;}
.x11{left:162.029987px;}
.xe{left:179.309987px;}
.xa{left:194.969987px;}
.x2a{left:222.690000px;}
.x29{left:239.430000px;}
.x26{left:243.570000px;}
.x9{left:245.549987px;}
.x1e{left:264.630000px;}
.x13{left:274.710000px;}
.x1c{left:295.274987px;}
.x2f{left:298.334987px;}
.xc{left:309.494987px;}
.x2b{left:331.275000px;}
.x3{left:332.354987px;}
.x30{left:336.135000px;}
.xf{left:347.834987px;}
.xb{left:357.014987px;}
.xd{left:363.494987px;}
.x34{left:381.135000px;}
.x27{left:414.615000px;}
.x1{left:432.074987px;}
.x2c{left:439.995000px;}
.x8{left:446.474987px;}
.x31{left:448.275000px;}
.x35{left:514.905000px;}
.x7{left:545.504987px;}
.x2d{left:553.065000px;}
.x20{left:558.825000px;}
.x32{left:560.445000px;}
.x28{left:565.665000px;}
.x6{left:576.464987px;}
.x15{left:589.065000px;}
.x5{left:592.484987px;}
.x4{left:620.564987px;}
.x2e{left:666.870000px;}
.x36{left:669.210000px;}
.x33{left:672.810000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.v3{vertical-align:24.320000pt;}
.lsc{letter-spacing:-0.400533pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.170667pt;}
.lsa{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.239467pt;}
.ls8{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls6{letter-spacing:15.520000pt;}
.ls5{letter-spacing:48.746667pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-63.744000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws6{word-spacing:-10.959467pt;}
.ws7{word-spacing:-10.319467pt;}
.ws3{word-spacing:0.000000pt;}
._25{margin-left:-7.882667pt;}
._26{margin-left:-6.784000pt;}
._0{margin-left:-5.888000pt;}
._10{margin-left:-4.693333pt;}
._3{margin-left:-3.584000pt;}
._7{margin-left:-1.973333pt;}
._1{margin-left:-1.024000pt;}
._2{width:1.034667pt;}
._9{width:2.048000pt;}
._a{width:3.189333pt;}
._d{width:4.426667pt;}
._b{width:5.866667pt;}
._f{width:6.933333pt;}
._1b{width:8.512000pt;}
._4{width:9.536000pt;}
._8{width:10.538667pt;}
._c{width:11.509333pt;}
._16{width:12.618667pt;}
._1f{width:14.133333pt;}
._23{width:15.082667pt;}
._11{width:16.896000pt;}
._17{width:18.101333pt;}
._24{width:19.264000pt;}
._20{width:20.608000pt;}
._e{width:21.696000pt;}
._1d{width:22.784000pt;}
._1e{width:23.808000pt;}
._15{width:24.810667pt;}
._14{width:26.048000pt;}
._1c{width:27.456000pt;}
._2a{width:28.469333pt;}
._29{width:29.376000pt;}
._13{width:31.040000pt;}
._12{width:32.128000pt;}
._2c{width:33.344000pt;}
._21{width:34.752000pt;}
._22{width:36.074667pt;}
._2d{width:37.781333pt;}
._5{width:40.192000pt;}
._6{width:41.472000pt;}
._1a{width:42.485333pt;}
._19{width:43.392000pt;}
._28{width:44.288000pt;}
._18{width:45.440000pt;}
._27{width:46.528000pt;}
._2b{width:275.776000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:5.600000pt;}
.y69{bottom:6.240000pt;}
.yd2{bottom:6.280000pt;}
.y6b{bottom:6.400000pt;}
.y56{bottom:7.200000pt;}
.ye6{bottom:12.640000pt;}
.ye7{bottom:12.800000pt;}
.y8b{bottom:13.280000pt;}
.y7a{bottom:15.040000pt;}
.y81{bottom:15.200000pt;}
.y8d{bottom:15.520000pt;}
.y8f{bottom:15.680000pt;}
.y5e{bottom:18.400000pt;}
.y5a{bottom:18.720000pt;}
.y60{bottom:18.760000pt;}
.y58{bottom:18.880000pt;}
.y91{bottom:19.200000pt;}
.yd4{bottom:27.360000pt;}
.yeb{bottom:40.346667pt;}
.y2{bottom:49.760000pt;}
.y1{bottom:69.312000pt;}
.y27{bottom:98.912000pt;}
.yb7{bottom:103.712000pt;}
.yd9{bottom:104.832000pt;}
.ya0{bottom:108.192000pt;}
.y131{bottom:108.992000pt;}
.y54{bottom:111.072000pt;}
.y7c{bottom:111.232000pt;}
.y4b{bottom:114.592000pt;}
.yfa{bottom:117.632000pt;}
.yb6{bottom:125.632000pt;}
.y26{bottom:126.592000pt;}
.y130{bottom:130.272000pt;}
.yd8{bottom:132.512000pt;}
.y9f{bottom:135.706667pt;}
.y53{bottom:138.746667pt;}
.y7b{bottom:141.786667pt;}
.y4a{bottom:142.106667pt;}
.yf9{bottom:145.146667pt;}
.yb5{bottom:147.386667pt;}
.y10b{bottom:147.706667pt;}
.y12f{bottom:151.386667pt;}
.y25{bottom:154.106667pt;}
.yd7{bottom:160.026667pt;}
.y9e{bottom:163.386667pt;}
.y52{bottom:166.266667pt;}
.y10a{bottom:168.826667pt;}
.yb4{bottom:169.146667pt;}
.y49{bottom:169.786667pt;}
.y79{bottom:172.506667pt;}
.yf8{bottom:172.826667pt;}
.y24{bottom:181.786667pt;}
.yd6{bottom:187.706667pt;}
.y109{bottom:189.946667pt;}
.y9d{bottom:190.906667pt;}
.y12e{bottom:193.626667pt;}
.y51{bottom:193.946667pt;}
.y48{bottom:197.306667pt;}
.yf7{bottom:200.346667pt;}
.y78{bottom:203.066667pt;}
.yb3{bottom:203.706667pt;}
.y23{bottom:209.306667pt;}
.y108{bottom:211.226667pt;}
.y12d{bottom:214.906667pt;}
.yd5{bottom:215.226667pt;}
.y9c{bottom:218.586667pt;}
.y50{bottom:221.466667pt;}
.y47{bottom:224.986667pt;}
.yf6{bottom:228.026667pt;}
.yd3{bottom:230.906667pt;}
.yb2{bottom:231.386667pt;}
.y107{bottom:232.346667pt;}
.y12c{bottom:236.026667pt;}
.y22{bottom:236.986667pt;}
.y77{bottom:237.626667pt;}
.y9b{bottom:246.106667pt;}
.y4f{bottom:248.986667pt;}
.y46{bottom:252.506667pt;}
.y106{bottom:253.466667pt;}
.yf5{bottom:255.546667pt;}
.y12b{bottom:257.146667pt;}
.yb1{bottom:258.906667pt;}
.y21{bottom:264.506667pt;}
.y76{bottom:265.146667pt;}
.y9a{bottom:273.786667pt;}
.y105{bottom:274.586667pt;}
.y4e{bottom:277.786667pt;}
.y12a{bottom:278.266667pt;}
.y45{bottom:280.186667pt;}
.yf4{bottom:283.226667pt;}
.yb0{bottom:286.586667pt;}
.y20{bottom:292.186667pt;}
.y75{bottom:292.826667pt;}
.yd1{bottom:295.706667pt;}
.y104{bottom:295.866667pt;}
.y129{bottom:299.586667pt;}
.y99{bottom:301.346667pt;}
.y4d{bottom:306.626667pt;}
.y44{bottom:307.746667pt;}
.y74{bottom:308.386667pt;}
.yf3{bottom:310.786667pt;}
.yaf{bottom:314.146667pt;}
.y103{bottom:317.026667pt;}
.yd0{bottom:317.506667pt;}
.y1f{bottom:319.746667pt;}
.y128{bottom:320.706667pt;}
.y98{bottom:329.026667pt;}
.y73{bottom:330.146667pt;}
.y4c{bottom:334.146667pt;}
.y43{bottom:335.426667pt;}
.y102{bottom:338.146667pt;}
.yf2{bottom:338.466667pt;}
.ycf{bottom:339.266667pt;}
.yae{bottom:341.826667pt;}
.y1e{bottom:347.426667pt;}
.y72{bottom:352.066667pt;}
.y97{bottom:356.546667pt;}
.y101{bottom:359.266667pt;}
.y42{bottom:362.946667pt;}
.yf1{bottom:365.986667pt;}
.yad{bottom:369.346667pt;}
.y96{bottom:372.066667pt;}
.y71{bottom:373.826667pt;}
.y1d{bottom:374.946667pt;}
.y100{bottom:380.546667pt;}
.y127{bottom:384.226667pt;}
.y41{bottom:390.626667pt;}
.yf0{bottom:393.666667pt;}
.y70{bottom:395.586667pt;}
.yac{bottom:397.026667pt;}
.yce{bottom:401.506667pt;}
.yff{bottom:401.666667pt;}
.y1c{bottom:402.626667pt;}
.y126{bottom:405.346667pt;}
.y95{bottom:405.666667pt;}
.y6f{bottom:417.506667pt;}
.y40{bottom:418.146667pt;}
.yef{bottom:421.186667pt;}
.yfe{bottom:422.786667pt;}
.yab{bottom:424.546667pt;}
.y125{bottom:426.466667pt;}
.ycd{bottom:429.026667pt;}
.y1b{bottom:430.146667pt;}
.y6e{bottom:439.266667pt;}
.yfd{bottom:443.906667pt;}
.y3f{bottom:445.826667pt;}
.y124{bottom:447.586667pt;}
.yee{bottom:448.866667pt;}
.yaa{bottom:452.226667pt;}
.ycc{bottom:456.706667pt;}
.y1a{bottom:457.826667pt;}
.y6d{bottom:461.186667pt;}
.yfc{bottom:465.026667pt;}
.y123{bottom:468.706667pt;}
.y94{bottom:472.866667pt;}
.y3e{bottom:473.346667pt;}
.yed{bottom:476.386667pt;}
.ya9{bottom:479.746667pt;}
.y6c{bottom:482.946667pt;}
.ycb{bottom:484.226667pt;}
.y19{bottom:485.346667pt;}
.yfb{bottom:486.306667pt;}
.y122{bottom:489.986667pt;}
.y3d{bottom:501.026667pt;}
.yec{bottom:504.066667pt;}
.y6a{bottom:504.706667pt;}
.y93{bottom:506.466667pt;}
.ya8{bottom:507.426667pt;}
.y121{bottom:511.106667pt;}
.yca{bottom:511.906667pt;}
.y18{bottom:513.026667pt;}
.yea{bottom:519.586667pt;}
.y68{bottom:526.626667pt;}
.y3c{bottom:528.546667pt;}
.y120{bottom:532.226667pt;}
.ya7{bottom:534.946667pt;}
.yc9{bottom:539.453333pt;}
.y92{bottom:540.093333pt;}
.y17{bottom:540.573333pt;}
.ya6{bottom:550.493333pt;}
.y11f{bottom:553.373333pt;}
.y3b{bottom:556.253333pt;}
.y67{bottom:561.213333pt;}
.yc8{bottom:567.133333pt;}
.y16{bottom:568.253333pt;}
.ya5{bottom:572.413333pt;}
.y90{bottom:573.693333pt;}
.y11e{bottom:574.653333pt;}
.ye9{bottom:575.453333pt;}
.y3a{bottom:583.773333pt;}
.y66{bottom:588.733333pt;}
.ya4{bottom:594.173333pt;}
.yc7{bottom:594.653333pt;}
.y15{bottom:595.773333pt;}
.ye8{bottom:603.773333pt;}
.y8e{bottom:607.293333pt;}
.y39{bottom:611.453333pt;}
.ya3{bottom:615.933333pt;}
.y65{bottom:616.413333pt;}
.y11d{bottom:616.893333pt;}
.yc6{bottom:622.333333pt;}
.y14{bottom:623.453333pt;}
.y64{bottom:631.933333pt;}
.y8c{bottom:637.373333pt;}
.ya2{bottom:637.853333pt;}
.y11c{bottom:638.013333pt;}
.y38{bottom:638.973333pt;}
.yc5{bottom:649.853333pt;}
.y13{bottom:650.973333pt;}
.y11b{bottom:659.293333pt;}
.ya1{bottom:659.613333pt;}
.ye5{bottom:660.253333pt;}
.y63{bottom:665.053333pt;}
.y37{bottom:666.653333pt;}
.y8a{bottom:667.293333pt;}
.yc4{bottom:677.533333pt;}
.y12{bottom:678.653333pt;}
.y11a{bottom:680.413333pt;}
.y36{bottom:694.173333pt;}
.y88{bottom:694.973333pt;}
.y62{bottom:698.333333pt;}
.ye4{bottom:701.213333pt;}
.y119{bottom:701.533333pt;}
.yc3{bottom:705.053333pt;}
.y11{bottom:706.173333pt;}
.y35{bottom:721.853333pt;}
.y118{bottom:722.653333pt;}
.y87{bottom:727.773333pt;}
.ye3{bottom:728.893333pt;}
.y61{bottom:731.453333pt;}
.yc2{bottom:732.733333pt;}
.y10{bottom:733.853333pt;}
.y117{bottom:743.933333pt;}
.y34{bottom:749.373333pt;}
.y86{bottom:755.293333pt;}
.ye2{bottom:756.413333pt;}
.yc1{bottom:760.253333pt;}
.yf{bottom:761.373333pt;}
.y5f{bottom:764.733333pt;}
.y116{bottom:765.053333pt;}
.y33{bottom:777.093333pt;}
.y85{bottom:783.013333pt;}
.ye1{bottom:784.133333pt;}
.y115{bottom:786.213333pt;}
.yc0{bottom:787.973333pt;}
.ye{bottom:788.933333pt;}
.y5d{bottom:797.893333pt;}
.y84{bottom:798.533333pt;}
.y32{bottom:804.613333pt;}
.y114{bottom:807.333333pt;}
.ye0{bottom:811.653333pt;}
.ybf{bottom:815.493333pt;}
.yd{bottom:816.613333pt;}
.y113{bottom:828.613333pt;}
.y83{bottom:829.093333pt;}
.y5c{bottom:830.693333pt;}
.y31{bottom:832.293333pt;}
.ydf{bottom:839.333333pt;}
.ybe{bottom:843.173333pt;}
.yc{bottom:844.133333pt;}
.y112{bottom:849.733333pt;}
.yde{bottom:854.853333pt;}
.y82{bottom:859.653333pt;}
.y30{bottom:859.813333pt;}
.y5b{bottom:863.813333pt;}
.ybd{bottom:870.693333pt;}
.y111{bottom:870.853333pt;}
.yb{bottom:871.813333pt;}
.y2f{bottom:887.493333pt;}
.y80{bottom:890.213333pt;}
.y110{bottom:891.973333pt;}
.y59{bottom:897.093333pt;}
.ydd{bottom:897.733333pt;}
.ybc{bottom:898.373333pt;}
.ya{bottom:899.333333pt;}
.y10f{bottom:913.093333pt;}
.y2e{bottom:915.013333pt;}
.ydc{bottom:919.653333pt;}
.y7f{bottom:920.933333pt;}
.ybb{bottom:925.893333pt;}
.y9{bottom:927.013333pt;}
.y57{bottom:930.213333pt;}
.y10e{bottom:934.373333pt;}
.ydb{bottom:941.413333pt;}
.y2d{bottom:942.533333pt;}
.y7e{bottom:951.493333pt;}
.yba{bottom:953.413333pt;}
.y8{bottom:954.533333pt;}
.y10d{bottom:955.493333pt;}
.yda{bottom:963.333333pt;}
.y55{bottom:963.493333pt;}
.yb9{bottom:969.093333pt;}
.y2c{bottom:970.213333pt;}
.y7{bottom:975.813333pt;}
.y10c{bottom:976.613333pt;}
.y7d{bottom:982.053333pt;}
.yb8{bottom:990.853333pt;}
.y6{bottom:996.933333pt;}
.y2b{bottom:997.733333pt;}
.y2a{bottom:1017.280000pt;}
.y5{bottom:1018.080000pt;}
.y29{bottom:1038.560000pt;}
.y4{bottom:1039.200000pt;}
.y28{bottom:1059.680000pt;}
.y3{bottom:1060.480000pt;}
.h15{height:19.360000pt;}
.h8{height:20.960000pt;}
.h11{height:21.120000pt;}
.hf{height:21.152000pt;}
.h10{height:21.280000pt;}
.h16{height:27.040000pt;}
.h1d{height:27.520000pt;}
.h1e{height:27.680000pt;}
.h17{height:29.280000pt;}
.h18{height:29.440000pt;}
.h12{height:29.920000pt;}
.h13{height:29.952000pt;}
.h14{height:30.080000pt;}
.hd{height:32.160000pt;}
.hc{height:32.480000pt;}
.he{height:32.512000pt;}
.ha{height:32.640000pt;}
.h19{height:32.960000pt;}
.h1a{height:32.992000pt;}
.hb{height:41.112500pt;}
.h9{height:41.543750pt;}
.h1b{height:42.240000pt;}
.h5{height:44.687500pt;}
.h3{height:45.156250pt;}
.h6{height:46.593750pt;}
.h7{height:48.218750pt;}
.h4{height:48.687500pt;}
.h1c{height:54.260625pt;}
.h1f{height:55.232000pt;}
.h2{height:55.468750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:95.872000pt;}
.w12{width:96.000000pt;}
.w18{width:99.040000pt;}
.w19{width:99.072000pt;}
.w1b{width:99.200000pt;}
.w1a{width:99.232000pt;}
.w17{width:99.392000pt;}
.w13{width:99.872000pt;}
.w10{width:100.480000pt;}
.w14{width:100.512000pt;}
.w16{width:101.440000pt;}
.w20{width:102.400000pt;}
.w15{width:104.480000pt;}
.wd{width:115.360000pt;}
.w1e{width:118.112000pt;}
.w9{width:119.200000pt;}
.w1c{width:119.840000pt;}
.w1d{width:120.992000pt;}
.wb{width:133.626667pt;}
.w1f{width:136.506667pt;}
.w6{width:137.920000pt;}
.w3{width:146.880000pt;}
.wa{width:151.386667pt;}
.wf{width:172.826667pt;}
.wc{width:194.426667pt;}
.w8{width:200.506667pt;}
.w5{width:212.826667pt;}
.w7{width:260.866667pt;}
.w4{width:278.786667pt;}
.we{width:310.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.880000pt;}
.x1f{left:14.440000pt;}
.x3c{left:21.920000pt;}
.x3b{left:29.440000pt;}
.x37{left:31.360000pt;}
.x21{left:35.680000pt;}
.x39{left:41.120000pt;}
.x38{left:42.440000pt;}
.x3a{left:44.314667pt;}
.x1d{left:51.994667pt;}
.x22{left:52.954667pt;}
.x14{left:54.760000pt;}
.x12{left:57.914667pt;}
.x16{left:73.160000pt;}
.x24{left:86.280000pt;}
.x1b{left:87.400000pt;}
.x19{left:91.080000pt;}
.x2{left:96.031988pt;}
.x18{left:103.880000pt;}
.x23{left:108.360000pt;}
.x10{left:120.031988pt;}
.x1a{left:122.920000pt;}
.x17{left:126.600000pt;}
.x3d{left:133.786655pt;}
.x11{left:144.026655pt;}
.xe{left:159.386655pt;}
.xa{left:173.306655pt;}
.x2a{left:197.946667pt;}
.x29{left:212.826667pt;}
.x26{left:216.506667pt;}
.x9{left:218.266655pt;}
.x1e{left:235.226667pt;}
.x13{left:244.186667pt;}
.x1c{left:262.466655pt;}
.x2f{left:265.186655pt;}
.xc{left:275.106655pt;}
.x2b{left:294.466667pt;}
.x3{left:295.426655pt;}
.x30{left:298.786667pt;}
.xf{left:309.186655pt;}
.xb{left:317.346655pt;}
.xd{left:323.106655pt;}
.x34{left:338.786667pt;}
.x27{left:368.546667pt;}
.x1{left:384.066655pt;}
.x2c{left:391.106667pt;}
.x8{left:396.866655pt;}
.x31{left:398.466667pt;}
.x35{left:457.693333pt;}
.x7{left:484.893322pt;}
.x2d{left:491.613333pt;}
.x20{left:496.733333pt;}
.x32{left:498.173333pt;}
.x28{left:502.813333pt;}
.x6{left:512.413322pt;}
.x15{left:523.613333pt;}
.x5{left:526.653322pt;}
.x4{left:551.613322pt;}
.x2e{left:592.773333pt;}
.x36{left:594.853333pt;}
.x33{left:598.053333pt;}
}




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