
    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_72d497c2eb1a024390621903.woff')format("woff");}.ff1{font-family:ff1;line-height:1.123047;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_e3e03af538dcb6af42f2750e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_4b6bda02ac9aedae2041c7b7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090820;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_b8c327195112a0643c21cae7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7d85347be8dd97d14495d698.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_2321c066de9b8eb0acc195ac.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088867;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2b22955ee62397c85179e56e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.088867;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls6{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.153360px;}
.lsa{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.305400px;}
.ls8{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.900000px;}
.ls15{letter-spacing:2.340000px;}
.lse{letter-spacing:2.880000px;}
.ls2{letter-spacing:6.480000px;}
.ls14{letter-spacing:8.100000px;}
.ls11{letter-spacing:25.380000px;}
.lsd{letter-spacing:199.440000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-36.000000px;}
.ws9{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.wse{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.580000px;}
.wsd{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.482000px;}
.ws0{word-spacing:-13.140000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._1c{margin-left:-5.036400px;}
._6{margin-left:-3.645360px;}
._5{margin-left:-2.629440px;}
._1{margin-left:-1.188000px;}
._0{width:1.056000px;}
._4{width:2.201280px;}
._f{width:3.291120px;}
._3{width:4.305360px;}
._2{width:5.357040px;}
._7{width:6.573600px;}
._12{width:7.816320px;}
._b{width:9.190320px;}
._15{width:10.664640px;}
._a{width:11.911920px;}
._10{width:13.314240px;}
._11{width:14.630400px;}
._25{width:16.015920px;}
._14{width:17.835360px;}
._1d{width:18.878400px;}
._e{width:19.938240px;}
._18{width:21.395520px;}
._d{width:23.240400px;}
._c{width:24.303840px;}
._16{width:26.098560px;}
._17{width:27.290880px;}
._9{width:28.510560px;}
._8{width:29.521440px;}
._1e{width:33.301440px;}
._1a{width:34.378560px;}
._1b{width:35.637120px;}
._1f{width:37.293120px;}
._20{width:39.011040px;}
._19{width:40.472640px;}
._2a{width:42.634560px;}
._26{width:46.314000px;}
._27{width:47.625840px;}
._21{width:51.333840px;}
._2c{width:78.478800px;}
._2b{width:79.721280px;}
._28{width:180.494880px;}
._29{width:181.713840px;}
._13{width:199.440000px;}
._23{width:308.294640px;}
._22{width:309.795840px;}
._24{width:493.920000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.760000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:2.880000px;}
.y9d{bottom:3.060000px;}
.y84{bottom:3.240000px;}
.y8d{bottom:3.600000px;}
.ya4{bottom:18.360000px;}
.y98{bottom:18.540000px;}
.ya6{bottom:18.585000px;}
.y83{bottom:20.520000px;}
.y8c{bottom:22.710000px;}
.y8b{bottom:23.970000px;}
.ya3{bottom:33.840000px;}
.y97{bottom:34.020000px;}
.y9c{bottom:34.050000px;}
.y82{bottom:37.620000px;}
.y86{bottom:37.800000px;}
.y96{bottom:49.500000px;}
.y9b{bottom:49.530000px;}
.y85{bottom:54.900000px;}
.y8a{bottom:55.080000px;}
.y95{bottom:64.980000px;}
.y9a{bottom:65.190000px;}
.y93{bottom:65.880000px;}
.y89{bottom:72.180000px;}
.y92{bottom:81.360000px;}
.y33{bottom:184.500000px;}
.ybe{bottom:213.120000px;}
.y31{bottom:213.480000px;}
.y60{bottom:214.740000px;}
.y119{bottom:215.100000px;}
.yb2{bottom:216.540000px;}
.yeb{bottom:217.800000px;}
.y30{bottom:226.650000px;}
.y7e{bottom:232.050000px;}
.y118{bottom:232.410000px;}
.y5f{bottom:233.850000px;}
.yea{bottom:235.110000px;}
.yb1{bottom:235.650000px;}
.y117{bottom:249.510000px;}
.y7d{bottom:251.130000px;}
.y2f{bottom:252.030000px;}
.ye9{bottom:252.390000px;}
.y5e{bottom:252.750000px;}
.y88{bottom:253.470000px;}
.yb0{bottom:254.550000px;}
.y116{bottom:266.790000px;}
.ye8{bottom:269.670000px;}
.y7c{bottom:270.030000px;}
.y2e{bottom:270.930000px;}
.y5d{bottom:271.830000px;}
.yaf{bottom:273.630000px;}
.y115{bottom:284.070000px;}
.ye7{bottom:286.950000px;}
.y7b{bottom:289.110000px;}
.y2d{bottom:290.010000px;}
.y5c{bottom:290.730000px;}
.yae{bottom:292.530000px;}
.y114{bottom:301.350000px;}
.ye6{bottom:304.050000px;}
.y7a{bottom:308.010000px;}
.y2c{bottom:308.910000px;}
.y5b{bottom:309.810000px;}
.yad{bottom:311.610000px;}
.y113{bottom:318.630000px;}
.ye5{bottom:321.330000px;}
.y79{bottom:326.910000px;}
.y2b{bottom:327.810000px;}
.y5a{bottom:328.710000px;}
.yac{bottom:330.510000px;}
.y112{bottom:335.910000px;}
.ye4{bottom:338.610000px;}
.y87{bottom:340.410000px;}
.y78{bottom:345.990000px;}
.y2a{bottom:346.170000px;}
.y59{bottom:347.610000px;}
.yab{bottom:349.410000px;}
.y111{bottom:353.010000px;}
.ye3{bottom:355.890000px;}
.y29{bottom:361.290000px;}
.y77{bottom:364.890000px;}
.y58{bottom:366.690000px;}
.yaa{bottom:368.490000px;}
.y110{bottom:370.290000px;}
.ye2{bottom:373.170000px;}
.y28{bottom:375.690000px;}
.y76{bottom:383.970000px;}
.y57{bottom:385.590000px;}
.ya9{bottom:387.390000px;}
.y10f{bottom:387.570000px;}
.ye1{bottom:390.270000px;}
.y27{bottom:392.970000px;}
.y75{bottom:402.870000px;}
.y56{bottom:404.670000px;}
.ya8{bottom:406.470000px;}
.ye0{bottom:407.550000px;}
.y26{bottom:408.270000px;}
.y10e{bottom:409.350000px;}
.y25{bottom:417.090000px;}
.y74{bottom:421.770000px;}
.y55{bottom:423.570000px;}
.ydf{bottom:424.830000px;}
.ya7{bottom:425.730000px;}
.y10d{bottom:426.630000px;}
.y24{bottom:434.370000px;}
.y73{bottom:440.850000px;}
.yde{bottom:442.110000px;}
.y54{bottom:442.470000px;}
.y10c{bottom:443.910000px;}
.ya5{bottom:444.630000px;}
.y23{bottom:451.650000px;}
.ydd{bottom:459.435000px;}
.y72{bottom:459.795000px;}
.y10b{bottom:461.055000px;}
.y53{bottom:461.595000px;}
.y81{bottom:464.295000px;}
.y22{bottom:468.975000px;}
.ya2{bottom:476.535000px;}
.ydc{bottom:476.715000px;}
.y10a{bottom:478.335000px;}
.y71{bottom:478.875000px;}
.y52{bottom:480.495000px;}
.y21{bottom:486.255000px;}
.ydb{bottom:493.815000px;}
.y109{bottom:495.615000px;}
.y70{bottom:497.775000px;}
.y51{bottom:499.575000px;}
.y20{bottom:503.355000px;}
.yda{bottom:511.095000px;}
.y108{bottom:512.895000px;}
.y6f{bottom:516.675000px;}
.y50{bottom:518.475000px;}
.y1f{bottom:520.635000px;}
.y80{bottom:521.535000px;}
.ya1{bottom:523.875000px;}
.yd9{bottom:528.375000px;}
.y107{bottom:530.175000px;}
.y6e{bottom:535.755000px;}
.y4f{bottom:537.375000px;}
.y1e{bottom:537.915000px;}
.y7f{bottom:538.815000px;}
.ya0{bottom:540.075000px;}
.yd8{bottom:545.655000px;}
.y106{bottom:547.275000px;}
.y6d{bottom:554.655000px;}
.y1d{bottom:555.195000px;}
.y9f{bottom:556.275000px;}
.y4e{bottom:556.455000px;}
.yd7{bottom:562.935000px;}
.y105{bottom:564.555000px;}
.y1c{bottom:572.835000px;}
.y6c{bottom:573.735000px;}
.y4d{bottom:575.355000px;}
.yd6{bottom:580.215000px;}
.y104{bottom:581.835000px;}
.y9e{bottom:588.135000px;}
.y1b{bottom:591.015000px;}
.y6b{bottom:592.635000px;}
.y4c{bottom:594.435000px;}
.yd5{bottom:597.315000px;}
.y103{bottom:599.115000px;}
.y1a{bottom:606.675000px;}
.y6a{bottom:611.535000px;}
.y4b{bottom:613.335000px;}
.yd4{bottom:614.595000px;}
.y102{bottom:616.395000px;}
.y19{bottom:622.875000px;}
.y69{bottom:630.615000px;}
.yd3{bottom:631.875000px;}
.y4a{bottom:632.235000px;}
.y101{bottom:633.675000px;}
.y18{bottom:641.775000px;}
.yd2{bottom:649.155000px;}
.y68{bottom:649.515000px;}
.y100{bottom:650.775000px;}
.y49{bottom:651.315000px;}
.y17{bottom:664.635000px;}
.y99{bottom:666.435000px;}
.yff{bottom:668.055000px;}
.y67{bottom:668.595000px;}
.y48{bottom:670.215000px;}
.y16{bottom:675.615000px;}
.yd1{bottom:683.715000px;}
.yfe{bottom:685.335000px;}
.y66{bottom:687.495000px;}
.y47{bottom:689.325000px;}
.y15{bottom:695.625000px;}
.yd0{bottom:700.845000px;}
.yfd{bottom:702.645000px;}
.y65{bottom:706.425000px;}
.y14{bottom:707.325000px;}
.y46{bottom:708.225000px;}
.ycf{bottom:718.125000px;}
.yfc{bottom:719.925000px;}
.y64{bottom:725.505000px;}
.y13{bottom:725.865000px;}
.y45{bottom:727.125000px;}
.yce{bottom:735.405000px;}
.yfb{bottom:737.205000px;}
.y12{bottom:743.145000px;}
.y63{bottom:744.405000px;}
.y44{bottom:746.205000px;}
.y91{bottom:746.385000px;}
.ycd{bottom:752.685000px;}
.yfa{bottom:754.305000px;}
.y11{bottom:762.045000px;}
.y62{bottom:763.485000px;}
.y43{bottom:765.105000px;}
.ycc{bottom:769.965000px;}
.yf9{bottom:771.585000px;}
.y10{bottom:780.225000px;}
.ybd{bottom:782.385000px;}
.y61{bottom:782.745000px;}
.y42{bottom:784.185000px;}
.ycb{bottom:787.065000px;}
.yf8{bottom:788.865000px;}
.yf{bottom:796.425000px;}
.ybc{bottom:801.465000px;}
.y41{bottom:803.085000px;}
.yca{bottom:804.345000px;}
.yf7{bottom:806.145000px;}
.ye{bottom:815.685000px;}
.ybb{bottom:820.365000px;}
.yc9{bottom:821.625000px;}
.y40{bottom:822.165000px;}
.yf6{bottom:823.425000px;}
.y94{bottom:824.865000px;}
.yd{bottom:836.385000px;}
.yc8{bottom:838.905000px;}
.yba{bottom:839.265000px;}
.yf5{bottom:840.705000px;}
.y3f{bottom:841.065000px;}
.y90{bottom:845.745000px;}
.yc7{bottom:856.185000px;}
.yc{bottom:856.905000px;}
.yf4{bottom:857.805000px;}
.yb9{bottom:858.345000px;}
.y3e{bottom:859.965000px;}
.y8f{bottom:863.025000px;}
.yc6{bottom:873.465000px;}
.yf3{bottom:875.085000px;}
.yb{bottom:875.805000px;}
.yb8{bottom:877.245000px;}
.y3d{bottom:879.045000px;}
.y8e{bottom:880.305000px;}
.yc5{bottom:890.565000px;}
.yf2{bottom:892.365000px;}
.ya{bottom:894.885000px;}
.yb7{bottom:896.325000px;}
.y3c{bottom:897.945000px;}
.yc4{bottom:907.845000px;}
.yf1{bottom:909.645000px;}
.y9{bottom:913.785000px;}
.yb6{bottom:915.225000px;}
.y3b{bottom:917.025000px;}
.yc3{bottom:925.170000px;}
.yf0{bottom:926.970000px;}
.y8{bottom:932.730000px;}
.yb5{bottom:934.170000px;}
.y3a{bottom:935.970000px;}
.yc2{bottom:942.450000px;}
.yef{bottom:944.070000px;}
.y7{bottom:951.090000px;}
.yb4{bottom:953.250000px;}
.y39{bottom:954.870000px;}
.yc1{bottom:959.730000px;}
.yee{bottom:961.350000px;}
.y6{bottom:966.570000px;}
.yb3{bottom:972.510000px;}
.y38{bottom:973.950000px;}
.yc0{bottom:977.010000px;}
.yed{bottom:978.630000px;}
.y5{bottom:982.050000px;}
.y37{bottom:992.850000px;}
.ybf{bottom:994.650000px;}
.yec{bottom:995.910000px;}
.y4{bottom:997.530000px;}
.y36{bottom:1011.930000px;}
.y3{bottom:1013.190000px;}
.y2{bottom:1028.670000px;}
.y32{bottom:1029.210000px;}
.y34{bottom:1041.270000px;}
.y1{bottom:1044.150000px;}
.he{height:15.480000px;}
.hb{height:20.790000px;}
.hd{height:30.410156px;}
.h1a{height:31.140000px;}
.h1c{height:31.176000px;}
.h8{height:32.273438px;}
.h14{height:38.016000px;}
.h9{height:41.383125px;}
.hc{height:43.246406px;}
.h1b{height:46.440000px;}
.h2{height:48.410156px;}
.h10{height:51.660000px;}
.h12{height:51.840000px;}
.h16{height:52.114922px;}
.h15{height:52.290000px;}
.ha{height:53.573906px;}
.h7{height:54.900000px;}
.hf{height:57.765937px;}
.h4{height:57.960000px;}
.h6{height:59.383125px;}
.h5{height:63.000000px;}
.h3{height:64.546875px;}
.h11{height:68.976000px;}
.h18{height:77.580000px;}
.h19{height:77.796000px;}
.h13{height:86.220000px;}
.h17{height:93.960000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:6.120000px;}
.w10{width:41.076000px;}
.w5{width:52.380000px;}
.we{width:63.180000px;}
.w9{width:72.900000px;}
.w6{width:84.240000px;}
.wd{width:84.276000px;}
.wf{width:94.860000px;}
.w8{width:104.796000px;}
.wb{width:105.696000px;}
.w4{width:115.596000px;}
.w7{width:116.316000px;}
.wc{width:136.656000px;}
.wa{width:201.270000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:2.340000px;}
.x1e{left:3.780000px;}
.x3d{left:4.860000px;}
.x22{left:6.480000px;}
.x2b{left:8.490000px;}
.x3e{left:9.900000px;}
.x32{left:11.160000px;}
.x29{left:13.140000px;}
.x28{left:14.400000px;}
.x25{left:16.410000px;}
.x21{left:18.180000px;}
.x3a{left:19.800000px;}
.x2f{left:21.420000px;}
.x1f{left:22.500000px;}
.x34{left:23.580000px;}
.x1d{left:24.840000px;}
.x2c{left:26.820000px;}
.x2a{left:28.800000px;}
.x26{left:30.630000px;}
.x2e{left:32.760000px;}
.x23{left:34.020000px;}
.x33{left:35.640000px;}
.x30{left:38.550000px;}
.x31{left:40.710000px;}
.x11{left:180.749987px;}
.x1c{left:181.830000px;}
.x17{left:186.869987px;}
.xd{left:188.489987px;}
.x36{left:192.630000px;}
.x14{left:201.989987px;}
.x35{left:207.569987px;}
.x41{left:209.189987px;}
.xc{left:210.449987px;}
.x10{left:216.749987px;}
.x40{left:228.809987px;}
.x13{left:233.849987px;}
.xe{left:238.709987px;}
.x9{left:248.969987px;}
.x37{left:266.250000px;}
.x1{left:290.369987px;}
.xf{left:299.054987px;}
.x3{left:310.574987px;}
.x6{left:324.254987px;}
.x1b{left:339.914987px;}
.x4{left:351.794987px;}
.x7{left:358.994987px;}
.xa{left:369.074987px;}
.x18{left:379.334987px;}
.x19{left:390.134987px;}
.x15{left:393.374987px;}
.x3f{left:395.714987px;}
.x16{left:396.794987px;}
.x20{left:404.535000px;}
.x3b{left:415.155000px;}
.x2{left:416.414987px;}
.x1a{left:422.534987px;}
.x5{left:430.094987px;}
.xb{left:437.114987px;}
.x8{left:446.474987px;}
.x12{left:462.494987px;}
.x38{left:468.255000px;}
.x24{left:489.495000px;}
.x39{left:574.665000px;}
.x27{left:606.525000px;}
.x3c{left:670.245000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.136320pt;}
.lsa{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.271467pt;}
.ls8{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls15{letter-spacing:2.080000pt;}
.lse{letter-spacing:2.560000pt;}
.ls2{letter-spacing:5.760000pt;}
.ls14{letter-spacing:7.200000pt;}
.ls11{letter-spacing:22.560000pt;}
.lsd{letter-spacing:177.280000pt;}
.ws7{word-spacing:-32.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.984000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._1c{margin-left:-4.476800pt;}
._6{margin-left:-3.240320pt;}
._5{margin-left:-2.337280pt;}
._1{margin-left:-1.056000pt;}
._0{width:0.938667pt;}
._4{width:1.956693pt;}
._f{width:2.925440pt;}
._3{width:3.826987pt;}
._2{width:4.761813pt;}
._7{width:5.843200pt;}
._12{width:6.947840pt;}
._b{width:8.169173pt;}
._15{width:9.479680pt;}
._a{width:10.588373pt;}
._10{width:11.834880pt;}
._11{width:13.004800pt;}
._25{width:14.236373pt;}
._14{width:15.853653pt;}
._1d{width:16.780800pt;}
._e{width:17.722880pt;}
._18{width:19.018240pt;}
._d{width:20.658133pt;}
._c{width:21.603413pt;}
._16{width:23.198720pt;}
._17{width:24.258560pt;}
._9{width:25.342720pt;}
._8{width:26.241280pt;}
._1e{width:29.601280pt;}
._1a{width:30.558720pt;}
._1b{width:31.677440pt;}
._1f{width:33.149440pt;}
._20{width:34.676480pt;}
._19{width:35.975680pt;}
._2a{width:37.897387pt;}
._26{width:41.168000pt;}
._27{width:42.334080pt;}
._21{width:45.630080pt;}
._2c{width:69.758933pt;}
._2b{width:70.863360pt;}
._28{width:160.439893pt;}
._29{width:161.523413pt;}
._13{width:177.280000pt;}
._23{width:274.039680pt;}
._22{width:275.374080pt;}
._24{width:439.040000pt;}
.fs6{font-size:21.120000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:2.560000pt;}
.y9d{bottom:2.720000pt;}
.y84{bottom:2.880000pt;}
.y8d{bottom:3.200000pt;}
.ya4{bottom:16.320000pt;}
.y98{bottom:16.480000pt;}
.ya6{bottom:16.520000pt;}
.y83{bottom:18.240000pt;}
.y8c{bottom:20.186667pt;}
.y8b{bottom:21.306667pt;}
.ya3{bottom:30.080000pt;}
.y97{bottom:30.240000pt;}
.y9c{bottom:30.266667pt;}
.y82{bottom:33.440000pt;}
.y86{bottom:33.600000pt;}
.y96{bottom:44.000000pt;}
.y9b{bottom:44.026667pt;}
.y85{bottom:48.800000pt;}
.y8a{bottom:48.960000pt;}
.y95{bottom:57.760000pt;}
.y9a{bottom:57.946667pt;}
.y93{bottom:58.560000pt;}
.y89{bottom:64.160000pt;}
.y92{bottom:72.320000pt;}
.y33{bottom:164.000000pt;}
.ybe{bottom:189.440000pt;}
.y31{bottom:189.760000pt;}
.y60{bottom:190.880000pt;}
.y119{bottom:191.200000pt;}
.yb2{bottom:192.480000pt;}
.yeb{bottom:193.600000pt;}
.y30{bottom:201.466667pt;}
.y7e{bottom:206.266667pt;}
.y118{bottom:206.586667pt;}
.y5f{bottom:207.866667pt;}
.yea{bottom:208.986667pt;}
.yb1{bottom:209.466667pt;}
.y117{bottom:221.786667pt;}
.y7d{bottom:223.226667pt;}
.y2f{bottom:224.026667pt;}
.ye9{bottom:224.346667pt;}
.y5e{bottom:224.666667pt;}
.y88{bottom:225.306667pt;}
.yb0{bottom:226.266667pt;}
.y116{bottom:237.146667pt;}
.ye8{bottom:239.706667pt;}
.y7c{bottom:240.026667pt;}
.y2e{bottom:240.826667pt;}
.y5d{bottom:241.626667pt;}
.yaf{bottom:243.226667pt;}
.y115{bottom:252.506667pt;}
.ye7{bottom:255.066667pt;}
.y7b{bottom:256.986667pt;}
.y2d{bottom:257.786667pt;}
.y5c{bottom:258.426667pt;}
.yae{bottom:260.026667pt;}
.y114{bottom:267.866667pt;}
.ye6{bottom:270.266667pt;}
.y7a{bottom:273.786667pt;}
.y2c{bottom:274.586667pt;}
.y5b{bottom:275.386667pt;}
.yad{bottom:276.986667pt;}
.y113{bottom:283.226667pt;}
.ye5{bottom:285.626667pt;}
.y79{bottom:290.586667pt;}
.y2b{bottom:291.386667pt;}
.y5a{bottom:292.186667pt;}
.yac{bottom:293.786667pt;}
.y112{bottom:298.586667pt;}
.ye4{bottom:300.986667pt;}
.y87{bottom:302.586667pt;}
.y78{bottom:307.546667pt;}
.y2a{bottom:307.706667pt;}
.y59{bottom:308.986667pt;}
.yab{bottom:310.586667pt;}
.y111{bottom:313.786667pt;}
.ye3{bottom:316.346667pt;}
.y29{bottom:321.146667pt;}
.y77{bottom:324.346667pt;}
.y58{bottom:325.946667pt;}
.yaa{bottom:327.546667pt;}
.y110{bottom:329.146667pt;}
.ye2{bottom:331.706667pt;}
.y28{bottom:333.946667pt;}
.y76{bottom:341.306667pt;}
.y57{bottom:342.746667pt;}
.ya9{bottom:344.346667pt;}
.y10f{bottom:344.506667pt;}
.ye1{bottom:346.906667pt;}
.y27{bottom:349.306667pt;}
.y75{bottom:358.106667pt;}
.y56{bottom:359.706667pt;}
.ya8{bottom:361.306667pt;}
.ye0{bottom:362.266667pt;}
.y26{bottom:362.906667pt;}
.y10e{bottom:363.866667pt;}
.y25{bottom:370.746667pt;}
.y74{bottom:374.906667pt;}
.y55{bottom:376.506667pt;}
.ydf{bottom:377.626667pt;}
.ya7{bottom:378.426667pt;}
.y10d{bottom:379.226667pt;}
.y24{bottom:386.106667pt;}
.y73{bottom:391.866667pt;}
.yde{bottom:392.986667pt;}
.y54{bottom:393.306667pt;}
.y10c{bottom:394.586667pt;}
.ya5{bottom:395.226667pt;}
.y23{bottom:401.466667pt;}
.ydd{bottom:408.386667pt;}
.y72{bottom:408.706667pt;}
.y10b{bottom:409.826667pt;}
.y53{bottom:410.306667pt;}
.y81{bottom:412.706667pt;}
.y22{bottom:416.866667pt;}
.ya2{bottom:423.586667pt;}
.ydc{bottom:423.746667pt;}
.y10a{bottom:425.186667pt;}
.y71{bottom:425.666667pt;}
.y52{bottom:427.106667pt;}
.y21{bottom:432.226667pt;}
.ydb{bottom:438.946667pt;}
.y109{bottom:440.546667pt;}
.y70{bottom:442.466667pt;}
.y51{bottom:444.066667pt;}
.y20{bottom:447.426667pt;}
.yda{bottom:454.306667pt;}
.y108{bottom:455.906667pt;}
.y6f{bottom:459.266667pt;}
.y50{bottom:460.866667pt;}
.y1f{bottom:462.786667pt;}
.y80{bottom:463.586667pt;}
.ya1{bottom:465.666667pt;}
.yd9{bottom:469.666667pt;}
.y107{bottom:471.266667pt;}
.y6e{bottom:476.226667pt;}
.y4f{bottom:477.666667pt;}
.y1e{bottom:478.146667pt;}
.y7f{bottom:478.946667pt;}
.ya0{bottom:480.066667pt;}
.yd8{bottom:485.026667pt;}
.y106{bottom:486.466667pt;}
.y6d{bottom:493.026667pt;}
.y1d{bottom:493.506667pt;}
.y9f{bottom:494.466667pt;}
.y4e{bottom:494.626667pt;}
.yd7{bottom:500.386667pt;}
.y105{bottom:501.826667pt;}
.y1c{bottom:509.186667pt;}
.y6c{bottom:509.986667pt;}
.y4d{bottom:511.426667pt;}
.yd6{bottom:515.746667pt;}
.y104{bottom:517.186667pt;}
.y9e{bottom:522.786667pt;}
.y1b{bottom:525.346667pt;}
.y6b{bottom:526.786667pt;}
.y4c{bottom:528.386667pt;}
.yd5{bottom:530.946667pt;}
.y103{bottom:532.546667pt;}
.y1a{bottom:539.266667pt;}
.y6a{bottom:543.586667pt;}
.y4b{bottom:545.186667pt;}
.yd4{bottom:546.306667pt;}
.y102{bottom:547.906667pt;}
.y19{bottom:553.666667pt;}
.y69{bottom:560.546667pt;}
.yd3{bottom:561.666667pt;}
.y4a{bottom:561.986667pt;}
.y101{bottom:563.266667pt;}
.y18{bottom:570.466667pt;}
.yd2{bottom:577.026667pt;}
.y68{bottom:577.346667pt;}
.y100{bottom:578.466667pt;}
.y49{bottom:578.946667pt;}
.y17{bottom:590.786667pt;}
.y99{bottom:592.386667pt;}
.yff{bottom:593.826667pt;}
.y67{bottom:594.306667pt;}
.y48{bottom:595.746667pt;}
.y16{bottom:600.546667pt;}
.yd1{bottom:607.746667pt;}
.yfe{bottom:609.186667pt;}
.y66{bottom:611.106667pt;}
.y47{bottom:612.733333pt;}
.y15{bottom:618.333333pt;}
.yd0{bottom:622.973333pt;}
.yfd{bottom:624.573333pt;}
.y65{bottom:627.933333pt;}
.y14{bottom:628.733333pt;}
.y46{bottom:629.533333pt;}
.ycf{bottom:638.333333pt;}
.yfc{bottom:639.933333pt;}
.y64{bottom:644.893333pt;}
.y13{bottom:645.213333pt;}
.y45{bottom:646.333333pt;}
.yce{bottom:653.693333pt;}
.yfb{bottom:655.293333pt;}
.y12{bottom:660.573333pt;}
.y63{bottom:661.693333pt;}
.y44{bottom:663.293333pt;}
.y91{bottom:663.453333pt;}
.ycd{bottom:669.053333pt;}
.yfa{bottom:670.493333pt;}
.y11{bottom:677.373333pt;}
.y62{bottom:678.653333pt;}
.y43{bottom:680.093333pt;}
.ycc{bottom:684.413333pt;}
.yf9{bottom:685.853333pt;}
.y10{bottom:693.533333pt;}
.ybd{bottom:695.453333pt;}
.y61{bottom:695.773333pt;}
.y42{bottom:697.053333pt;}
.ycb{bottom:699.613333pt;}
.yf8{bottom:701.213333pt;}
.yf{bottom:707.933333pt;}
.ybc{bottom:712.413333pt;}
.y41{bottom:713.853333pt;}
.yca{bottom:714.973333pt;}
.yf7{bottom:716.573333pt;}
.ye{bottom:725.053333pt;}
.ybb{bottom:729.213333pt;}
.yc9{bottom:730.333333pt;}
.y40{bottom:730.813333pt;}
.yf6{bottom:731.933333pt;}
.y94{bottom:733.213333pt;}
.yd{bottom:743.453333pt;}
.yc8{bottom:745.693333pt;}
.yba{bottom:746.013333pt;}
.yf5{bottom:747.293333pt;}
.y3f{bottom:747.613333pt;}
.y90{bottom:751.773333pt;}
.yc7{bottom:761.053333pt;}
.yc{bottom:761.693333pt;}
.yf4{bottom:762.493333pt;}
.yb9{bottom:762.973333pt;}
.y3e{bottom:764.413333pt;}
.y8f{bottom:767.133333pt;}
.yc6{bottom:776.413333pt;}
.yf3{bottom:777.853333pt;}
.yb{bottom:778.493333pt;}
.yb8{bottom:779.773333pt;}
.y3d{bottom:781.373333pt;}
.y8e{bottom:782.493333pt;}
.yc5{bottom:791.613333pt;}
.yf2{bottom:793.213333pt;}
.ya{bottom:795.453333pt;}
.yb7{bottom:796.733333pt;}
.y3c{bottom:798.173333pt;}
.yc4{bottom:806.973333pt;}
.yf1{bottom:808.573333pt;}
.y9{bottom:812.253333pt;}
.yb6{bottom:813.533333pt;}
.y3b{bottom:815.133333pt;}
.yc3{bottom:822.373333pt;}
.yf0{bottom:823.973333pt;}
.y8{bottom:829.093333pt;}
.yb5{bottom:830.373333pt;}
.y3a{bottom:831.973333pt;}
.yc2{bottom:837.733333pt;}
.yef{bottom:839.173333pt;}
.y7{bottom:845.413333pt;}
.yb4{bottom:847.333333pt;}
.y39{bottom:848.773333pt;}
.yc1{bottom:853.093333pt;}
.yee{bottom:854.533333pt;}
.y6{bottom:859.173333pt;}
.yb3{bottom:864.453333pt;}
.y38{bottom:865.733333pt;}
.yc0{bottom:868.453333pt;}
.yed{bottom:869.893333pt;}
.y5{bottom:872.933333pt;}
.y37{bottom:882.533333pt;}
.ybf{bottom:884.133333pt;}
.yec{bottom:885.253333pt;}
.y4{bottom:886.693333pt;}
.y36{bottom:899.493333pt;}
.y3{bottom:900.613333pt;}
.y2{bottom:914.373333pt;}
.y32{bottom:914.853333pt;}
.y34{bottom:925.573333pt;}
.y1{bottom:928.133333pt;}
.he{height:13.760000pt;}
.hb{height:18.480000pt;}
.hd{height:27.031250pt;}
.h1a{height:27.680000pt;}
.h1c{height:27.712000pt;}
.h8{height:28.687500pt;}
.h14{height:33.792000pt;}
.h9{height:36.785000pt;}
.hc{height:38.441250pt;}
.h1b{height:41.280000pt;}
.h2{height:43.031250pt;}
.h10{height:45.920000pt;}
.h12{height:46.080000pt;}
.h16{height:46.324375pt;}
.h15{height:46.480000pt;}
.ha{height:47.621250pt;}
.h7{height:48.800000pt;}
.hf{height:51.347500pt;}
.h4{height:51.520000pt;}
.h6{height:52.785000pt;}
.h5{height:56.000000pt;}
.h3{height:57.375000pt;}
.h11{height:61.312000pt;}
.h18{height:68.960000pt;}
.h19{height:69.152000pt;}
.h13{height:76.640000pt;}
.h17{height:83.520000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:5.440000pt;}
.w10{width:36.512000pt;}
.w5{width:46.560000pt;}
.we{width:56.160000pt;}
.w9{width:64.800000pt;}
.w6{width:74.880000pt;}
.wd{width:74.912000pt;}
.wf{width:84.320000pt;}
.w8{width:93.152000pt;}
.wb{width:93.952000pt;}
.w4{width:102.752000pt;}
.w7{width:103.392000pt;}
.wc{width:121.472000pt;}
.wa{width:178.906667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:2.080000pt;}
.x1e{left:3.360000pt;}
.x3d{left:4.320000pt;}
.x22{left:5.760000pt;}
.x2b{left:7.546667pt;}
.x3e{left:8.800000pt;}
.x32{left:9.920000pt;}
.x29{left:11.680000pt;}
.x28{left:12.800000pt;}
.x25{left:14.586667pt;}
.x21{left:16.160000pt;}
.x3a{left:17.600000pt;}
.x2f{left:19.040000pt;}
.x1f{left:20.000000pt;}
.x34{left:20.960000pt;}
.x1d{left:22.080000pt;}
.x2c{left:23.840000pt;}
.x2a{left:25.600000pt;}
.x26{left:27.226667pt;}
.x2e{left:29.120000pt;}
.x23{left:30.240000pt;}
.x33{left:31.680000pt;}
.x30{left:34.266667pt;}
.x31{left:36.186667pt;}
.x11{left:160.666655pt;}
.x1c{left:161.626667pt;}
.x17{left:166.106655pt;}
.xd{left:167.546655pt;}
.x36{left:171.226667pt;}
.x14{left:179.546655pt;}
.x35{left:184.506655pt;}
.x41{left:185.946655pt;}
.xc{left:187.066655pt;}
.x10{left:192.666655pt;}
.x40{left:203.386655pt;}
.x13{left:207.866655pt;}
.xe{left:212.186655pt;}
.x9{left:221.306655pt;}
.x37{left:236.666667pt;}
.x1{left:258.106655pt;}
.xf{left:265.826655pt;}
.x3{left:276.066655pt;}
.x6{left:288.226655pt;}
.x1b{left:302.146655pt;}
.x4{left:312.706655pt;}
.x7{left:319.106655pt;}
.xa{left:328.066655pt;}
.x18{left:337.186655pt;}
.x19{left:346.786655pt;}
.x15{left:349.666655pt;}
.x3f{left:351.746655pt;}
.x16{left:352.706655pt;}
.x20{left:359.586667pt;}
.x3b{left:369.026667pt;}
.x2{left:370.146655pt;}
.x1a{left:375.586655pt;}
.x5{left:382.306655pt;}
.xb{left:388.546655pt;}
.x8{left:396.866655pt;}
.x12{left:411.106655pt;}
.x38{left:416.226667pt;}
.x24{left:435.106667pt;}
.x39{left:510.813333pt;}
.x27{left:539.133333pt;}
.x3c{left:595.773333pt;}
}




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