
    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_7c3a12f3ad61f1f1d294cfb0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_d3b18034186de30653d1e2db.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5f61283ebe35e45384ef39a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_147bdf84ce919abe41b31d3b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_b4fbc2367a441e199cc440ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_8168d854f7938733b1ceb416.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.800000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.lse{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.045360px;}
.ls0{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:3.780000px;}
.lsc{letter-spacing:4.500000px;}
.ls11{letter-spacing:16.506720px;}
.ls4{letter-spacing:37.386720px;}
.ls2{letter-spacing:41.868000px;}
.ls9{letter-spacing:46.026720px;}
.lsa{letter-spacing:55.386720px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws4{word-spacing:-54.000000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.105360px;}
.ws2{word-spacing:-12.060000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-1.122480px;}
._0{width:1.135440px;}
._4{width:2.163360px;}
._a{width:3.810480px;}
._18{width:4.978800px;}
._7{width:6.554880px;}
._6{width:8.246880px;}
._b{width:9.681120px;}
._1f{width:10.816560px;}
._21{width:12.191040px;}
._15{width:13.924080px;}
._8{width:16.126560px;}
._9{width:18.047520px;}
._20{width:19.123200px;}
._1b{width:20.676960px;}
._c{width:21.931920px;}
._22{width:23.945760px;}
._d{width:25.310400px;}
._10{width:27.216000px;}
._f{width:28.404000px;}
._1d{width:29.581200px;}
._1a{width:31.194720px;}
._13{width:32.832000px;}
._14{width:34.179840px;}
._1e{width:35.198640px;}
._19{width:36.334080px;}
._24{width:37.593120px;}
._32{width:38.616000px;}
._29{width:39.635040px;}
._28{width:40.696560px;}
._2c{width:41.698320px;}
._2d{width:42.959280px;}
._23{width:44.820000px;}
._17{width:46.792080px;}
._16{width:47.980800px;}
._33{width:51.094800px;}
._e{width:52.648560px;}
._1c{width:53.748720px;}
._26{width:54.871680px;}
._27{width:56.293920px;}
._30{width:62.628480px;}
._31{width:68.664240px;}
._25{width:70.130160px;}
._12{width:71.604000px;}
._2a{width:78.524640px;}
._11{width:84.510000px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._2b{width:691.546800px;}
._2f{width:908.595600px;}
._5{width:921.078240px;}
._2e{width:1659.480000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.520000px;}
.y37{bottom:3.060000px;}
.y16{bottom:3.240000px;}
.y101{bottom:3.420000px;}
.y143{bottom:4.860000px;}
.y30{bottom:5.940000px;}
.y4{bottom:8.316000px;}
.ya1{bottom:9.540000px;}
.y9{bottom:14.040000px;}
.y13a{bottom:16.200000px;}
.y5{bottom:16.236000px;}
.ya2{bottom:16.380000px;}
.y36{bottom:18.540000px;}
.y142{bottom:18.720000px;}
.y2e{bottom:19.440000px;}
.y139{bottom:30.060000px;}
.y141{bottom:32.580000px;}
.y35{bottom:34.020000px;}
.y7{bottom:35.460000px;}
.y2d{bottom:35.820000px;}
.y138{bottom:43.920000px;}
.y140{bottom:46.260000px;}
.y34{bottom:49.500000px;}
.y2c{bottom:51.480000px;}
.y3{bottom:58.140000px;}
.y13f{bottom:60.120000px;}
.y33{bottom:65.160000px;}
.y2b{bottom:66.960000px;}
.y13e{bottom:73.980000px;}
.y32{bottom:80.640000px;}
.y2a{bottom:82.470000px;}
.y13d{bottom:87.660000px;}
.y29{bottom:97.950000px;}
.y38{bottom:106.245000px;}
.y135{bottom:111.636000px;}
.yed{bottom:111.816000px;}
.yff{bottom:113.076000px;}
.y28{bottom:113.430000px;}
.y78{bottom:123.156000px;}
.y9c{bottom:123.876000px;}
.y40{bottom:127.836000px;}
.yec{bottom:128.916000px;}
.y27{bottom:129.090000px;}
.y25{bottom:137.565000px;}
.y77{bottom:140.256000px;}
.y9b{bottom:141.156000px;}
.y3f{bottom:145.116000px;}
.y134{bottom:146.196000px;}
.y24{bottom:154.845000px;}
.y76{bottom:157.530000px;}
.y9a{bottom:158.430000px;}
.y3e{bottom:162.390000px;}
.y133{bottom:163.470000px;}
.y23{bottom:172.125000px;}
.y75{bottom:174.810000px;}
.y99{bottom:175.710000px;}
.y3d{bottom:179.670000px;}
.y132{bottom:180.570000px;}
.y22{bottom:189.405000px;}
.y74{bottom:192.090000px;}
.y98{bottom:192.990000px;}
.y3c{bottom:196.770000px;}
.y131{bottom:197.850000px;}
.y21{bottom:206.505000px;}
.y73{bottom:209.370000px;}
.y97{bottom:210.090000px;}
.y3b{bottom:214.050000px;}
.y130{bottom:215.130000px;}
.y20{bottom:223.785000px;}
.y72{bottom:226.650000px;}
.y96{bottom:227.370000px;}
.y3a{bottom:231.330000px;}
.y12f{bottom:232.410000px;}
.y1f{bottom:241.065000px;}
.y71{bottom:243.750000px;}
.y95{bottom:244.650000px;}
.y39{bottom:248.250000px;}
.y12e{bottom:249.690000px;}
.y1e{bottom:258.345000px;}
.y70{bottom:261.030000px;}
.y17{bottom:261.570000px;}
.y94{bottom:261.930000px;}
.y12d{bottom:266.970000px;}
.y1d{bottom:275.625000px;}
.y6f{bottom:278.310000px;}
.y93{bottom:279.210000px;}
.y12c{bottom:284.070000px;}
.y1c{bottom:292.905000px;}
.y6e{bottom:295.590000px;}
.y92{bottom:296.490000px;}
.y12b{bottom:301.350000px;}
.y1b{bottom:310.035000px;}
.y6d{bottom:312.870000px;}
.y91{bottom:313.590000px;}
.y12a{bottom:318.675000px;}
.y1a{bottom:327.315000px;}
.y6c{bottom:330.195000px;}
.y90{bottom:330.915000px;}
.y129{bottom:335.955000px;}
.y19{bottom:344.595000px;}
.y6b{bottom:347.295000px;}
.y8f{bottom:348.195000px;}
.y128{bottom:353.235000px;}
.y18{bottom:361.875000px;}
.y6a{bottom:364.575000px;}
.y8e{bottom:365.475000px;}
.y127{bottom:370.335000px;}
.y31{bottom:381.135000px;}
.y69{bottom:381.855000px;}
.y8d{bottom:382.755000px;}
.yd7{bottom:383.475000px;}
.y126{bottom:387.615000px;}
.yd6{bottom:394.995000px;}
.y68{bottom:399.135000px;}
.y8c{bottom:399.855000px;}
.y125{bottom:404.895000px;}
.yd5{bottom:411.555000px;}
.y67{bottom:416.415000px;}
.y8b{bottom:417.135000px;}
.y124{bottom:422.175000px;}
.yc5{bottom:426.135000px;}
.yd4{bottom:428.835000px;}
.y66{bottom:433.695000px;}
.y8a{bottom:434.415000px;}
.y123{bottom:439.455000px;}
.yc4{bottom:443.415000px;}
.y65{bottom:450.795000px;}
.y89{bottom:451.695000px;}
.yeb{bottom:453.315000px;}
.yfe{bottom:454.395000px;}
.y122{bottom:456.735000px;}
.yd3{bottom:460.515000px;}
.yc3{bottom:460.875000px;}
.y64{bottom:468.075000px;}
.y88{bottom:468.975000px;}
.yea{bottom:470.595000px;}
.yfd{bottom:471.675000px;}
.y121{bottom:473.835000px;}
.y2f{bottom:475.095000px;}
.yd2{bottom:477.975000px;}
.yc2{bottom:478.155000px;}
.y63{bottom:485.355000px;}
.y87{bottom:486.255000px;}
.yfc{bottom:486.435000px;}
.ye9{bottom:487.875000px;}
.y120{bottom:491.115000px;}
.yc1{bottom:495.435000px;}
.y26{bottom:495.795000px;}
.yfb{bottom:500.835000px;}
.y62{bottom:502.635000px;}
.y86{bottom:503.355000px;}
.y11f{bottom:508.395000px;}
.yd1{bottom:512.715000px;}
.yc0{bottom:512.895000px;}
.yfa{bottom:515.415000px;}
.ye8{bottom:519.735000px;}
.y61{bottom:519.915000px;}
.y85{bottom:520.635000px;}
.y11e{bottom:525.675000px;}
.yf9{bottom:529.995000px;}
.ybf{bottom:530.175000px;}
.ye7{bottom:534.315000px;}
.y60{bottom:537.015000px;}
.y84{bottom:537.915000px;}
.y11d{bottom:542.955000px;}
.yf8{bottom:544.575000px;}
.yd0{bottom:547.635000px;}
.ybe{bottom:547.815000px;}
.ye6{bottom:548.895000px;}
.y5f{bottom:554.295000px;}
.y83{bottom:555.195000px;}
.y11c{bottom:560.235000px;}
.yf7{bottom:562.395000px;}
.ye5{bottom:563.475000px;}
.ycf{bottom:564.915000px;}
.ybd{bottom:565.275000px;}
.y5e{bottom:571.605000px;}
.y82{bottom:572.505000px;}
.y11b{bottom:577.365000px;}
.ye4{bottom:578.085000px;}
.yf6{bottom:579.705000px;}
.yce{bottom:582.225000px;}
.ybc{bottom:582.765000px;}
.y5d{bottom:589.065000px;}
.y81{bottom:589.785000px;}
.ye3{bottom:594.645000px;}
.ycd{bottom:599.685000px;}
.ybb{bottom:600.045000px;}
.ye2{bottom:606.165000px;}
.y5c{bottom:606.345000px;}
.y80{bottom:606.885000px;}
.y13c{bottom:611.385000px;}
.y11a{bottom:611.925000px;}
.ycc{bottom:616.965000px;}
.yba{bottom:617.325000px;}
.ye1{bottom:623.445000px;}
.y5b{bottom:623.625000px;}
.y7f{bottom:624.165000px;}
.y119{bottom:629.205000px;}
.ycb{bottom:634.425000px;}
.yb9{bottom:634.785000px;}
.y15{bottom:638.205000px;}
.y5a{bottom:640.905000px;}
.y7e{bottom:641.445000px;}
.y118{bottom:646.485000px;}
.yca{bottom:651.885000px;}
.yb8{bottom:652.065000px;}
.y59{bottom:658.185000px;}
.y7d{bottom:658.725000px;}
.y117{bottom:663.585000px;}
.yc9{bottom:669.345000px;}
.yb7{bottom:669.525000px;}
.y14{bottom:672.765000px;}
.y58{bottom:675.645000px;}
.y7c{bottom:676.005000px;}
.y116{bottom:680.865000px;}
.yb6{bottom:686.805000px;}
.y13{bottom:692.565000px;}
.y57{bottom:692.925000px;}
.y7b{bottom:693.285000px;}
.y115{bottom:698.145000px;}
.yc8{bottom:704.085000px;}
.yb5{bottom:704.265000px;}
.y56{bottom:710.205000px;}
.y7a{bottom:710.385000px;}
.y13b{bottom:711.105000px;}
.y114{bottom:715.425000px;}
.y12{bottom:721.005000px;}
.yc7{bottom:721.365000px;}
.yb4{bottom:721.545000px;}
.y137{bottom:725.685000px;}
.y55{bottom:727.485000px;}
.y79{bottom:727.665000px;}
.y113{bottom:732.705000px;}
.y11{bottom:738.285000px;}
.yc6{bottom:738.825000px;}
.yb3{bottom:739.005000px;}
.y54{bottom:744.945000px;}
.y112{bottom:749.985000px;}
.y10{bottom:756.105000px;}
.yb2{bottom:756.285000px;}
.y53{bottom:762.225000px;}
.y111{bottom:767.085000px;}
.yb1{bottom:772.845000px;}
.yf{bottom:777.165000px;}
.y52{bottom:779.505000px;}
.y136{bottom:781.665000px;}
.y110{bottom:784.365000px;}
.yb0{bottom:784.905000px;}
.y51{bottom:796.605000px;}
.yaf{bottom:799.485000px;}
.y10f{bottom:801.645000px;}
.ye{bottom:808.125000px;}
.y50{bottom:813.885000px;}
.yae{bottom:814.065000px;}
.y10e{bottom:818.925000px;}
.yad{bottom:828.510000px;}
.y4f{bottom:831.210000px;}
.y10d{bottom:836.250000px;}
.yd{bottom:839.310000px;}
.yac{bottom:843.090000px;}
.y4e{bottom:848.490000px;}
.y10c{bottom:853.530000px;}
.yab{bottom:857.670000px;}
.y4d{bottom:865.770000px;}
.yc{bottom:870.270000px;}
.y10b{bottom:870.630000px;}
.yaa{bottom:872.250000px;}
.y4c{bottom:883.050000px;}
.ya9{bottom:886.830000px;}
.y10a{bottom:887.910000px;}
.y4b{bottom:900.150000px;}
.yb{bottom:901.410000px;}
.y109{bottom:905.190000px;}
.ya8{bottom:915.810000px;}
.y4a{bottom:917.430000px;}
.y108{bottom:922.470000px;}
.ya{bottom:930.210000px;}
.ya7{bottom:930.390000px;}
.yf5{bottom:933.630000px;}
.y49{bottom:934.710000px;}
.y107{bottom:939.750000px;}
.ya6{bottom:944.970000px;}
.y8{bottom:945.510000px;}
.ye0{bottom:946.230000px;}
.yf4{bottom:950.910000px;}
.y48{bottom:951.990000px;}
.y106{bottom:957.030000px;}
.ydf{bottom:957.750000px;}
.ya5{bottom:959.550000px;}
.yf3{bottom:968.190000px;}
.y47{bottom:969.270000px;}
.ya4{bottom:974.130000px;}
.yde{bottom:975.030000px;}
.yf2{bottom:982.950000px;}
.y46{bottom:986.550000px;}
.ya3{bottom:988.710000px;}
.y105{bottom:988.890000px;}
.ydd{bottom:989.790000px;}
.yf1{bottom:997.530000px;}
.ya0{bottom:1003.110000px;}
.y104{bottom:1003.470000px;}
.y45{bottom:1003.650000px;}
.ydc{bottom:1004.370000px;}
.yf0{bottom:1012.110000px;}
.y103{bottom:1018.050000px;}
.ydb{bottom:1018.950000px;}
.y44{bottom:1020.930000px;}
.yef{bottom:1026.510000px;}
.y102{bottom:1032.630000px;}
.y9f{bottom:1033.530000px;}
.y43{bottom:1038.210000px;}
.yee{bottom:1041.090000px;}
.y9e{bottom:1044.330000px;}
.y100{bottom:1047.210000px;}
.yda{bottom:1048.110000px;}
.y42{bottom:1055.490000px;}
.y9d{bottom:1058.190000px;}
.yd9{bottom:1064.670000px;}
.y41{bottom:1072.800000px;}
.yd8{bottom:1075.500000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h1f{height:13.680000px;}
.h21{height:13.716000px;}
.h20{height:13.860000px;}
.h22{height:13.896000px;}
.h23{height:14.760000px;}
.hd{height:17.280000px;}
.h13{height:19.980000px;}
.h1d{height:25.400391px;}
.h3{height:27.576000px;}
.h1e{height:27.720000px;}
.h1c{height:34.036523px;}
.h5{height:34.884492px;}
.h17{height:38.100586px;}
.h15{height:39.049805px;}
.h6{height:39.336328px;}
.h11{height:39.999023px;}
.he{height:42.164648px;}
.h4{height:43.215117px;}
.h18{height:43.506914px;}
.h1a{height:43.681992px;}
.h12{height:44.265586px;}
.h1b{height:44.836523px;}
.h2{height:45.024258px;}
.h19{height:45.316055px;}
.h8{height:47.901094px;}
.h9{height:49.906406px;}
.h1{height:50.800781px;}
.hb{height:53.224453px;}
.h24{height:55.080000px;}
.ha{height:76.201172px;}
.hc{height:78.099609px;}
.h14{height:93.240000px;}
.h25{height:99.000000px;}
.h16{height:118.836000px;}
.h10{height:141.696000px;}
.h7{height:153.930000px;}
.hf{height:375.915000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.w12{width:81.900000px;}
.wa{width:98.460000px;}
.wc{width:105.480000px;}
.w8{width:121.896000px;}
.w9{width:128.916000px;}
.wb{width:138.816000px;}
.w7{width:143.640000px;}
.w10{width:161.280000px;}
.wf{width:161.310000px;}
.wd{width:178.740000px;}
.we{width:178.770000px;}
.w6{width:220.170000px;}
.w13{width:307.515000px;}
.w11{width:390.135000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.480000px;}
.x3{left:8.460000px;}
.x23{left:12.780000px;}
.x1b{left:16.020000px;}
.x3d{left:17.460000px;}
.x1c{left:18.720000px;}
.x11{left:19.980000px;}
.x2d{left:22.680000px;}
.x20{left:23.760000px;}
.x21{left:25.200000px;}
.x15{left:27.360000px;}
.x25{left:30.240000px;}
.x26{left:31.320000px;}
.x27{left:32.580000px;}
.x13{left:34.065000px;}
.x14{left:35.865000px;}
.x36{left:40.170000px;}
.x1e{left:41.400000px;}
.x2e{left:43.200000px;}
.x6{left:45.540000px;}
.x29{left:49.140000px;}
.x2b{left:52.740000px;}
.x2{left:53.999986px;}
.x2c{left:58.860000px;}
.x1{left:60.659986px;}
.x28{left:64.440000px;}
.x16{left:65.519986px;}
.x3a{left:67.314000px;}
.x2a{left:69.300000px;}
.x3e{left:73.974000px;}
.x34{left:75.954000px;}
.x3f{left:78.705000px;}
.x38{left:82.614000px;}
.x44{left:85.320000px;}
.x17{left:88.199986px;}
.x4{left:100.836000px;}
.x5{left:108.035986px;}
.x42{left:110.520000px;}
.x43{left:112.140000px;}
.x9{left:134.675986px;}
.xd{left:171.749986px;}
.x1a{left:244.650000px;}
.x39{left:253.289986px;}
.x35{left:279.930000px;}
.x19{left:281.369986px;}
.x3b{left:297.435000px;}
.x1d{left:367.275000px;}
.xe{left:371.414986px;}
.x32{left:383.294986px;}
.xa{left:388.154986px;}
.xc{left:392.834986px;}
.x8{left:459.074986px;}
.x31{left:461.954986px;}
.xb{left:464.294986px;}
.xf{left:465.374986px;}
.x18{left:478.334986px;}
.x2f{left:479.804986px;}
.x33{left:486.104986px;}
.x1f{left:496.905000px;}
.x41{left:498.165000px;}
.x30{left:506.804986px;}
.x40{left:526.604986px;}
.x45{left:580.785000px;}
.x22{left:596.265000px;}
.x3c{left:621.465000px;}
.x37{left:639.105000px;}
.x10{left:642.345000px;}
.x24{left:735.810000px;}
.x7{left:812.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.600000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls0{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:3.360000pt;}
.lsc{letter-spacing:4.000000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls4{letter-spacing:33.232640pt;}
.ls2{letter-spacing:37.216000pt;}
.ls9{letter-spacing:40.912640pt;}
.lsa{letter-spacing:49.232640pt;}
.ws7{word-spacing:-53.120000pt;}
.ws4{word-spacing:-48.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.760320pt;}
.ws2{word-spacing:-10.720000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-0.997760pt;}
._0{width:1.009280pt;}
._4{width:1.922987pt;}
._a{width:3.387093pt;}
._18{width:4.425600pt;}
._7{width:5.826560pt;}
._6{width:7.330560pt;}
._b{width:8.605440pt;}
._1f{width:9.614720pt;}
._21{width:10.836480pt;}
._15{width:12.376960pt;}
._8{width:14.334720pt;}
._9{width:16.042240pt;}
._20{width:16.998400pt;}
._1b{width:18.379520pt;}
._c{width:19.495040pt;}
._22{width:21.285120pt;}
._d{width:22.498133pt;}
._10{width:24.192000pt;}
._f{width:25.248000pt;}
._1d{width:26.294400pt;}
._1a{width:27.728640pt;}
._13{width:29.184000pt;}
._14{width:30.382080pt;}
._1e{width:31.287680pt;}
._19{width:32.296960pt;}
._24{width:33.416107pt;}
._32{width:34.325333pt;}
._29{width:35.231147pt;}
._28{width:36.174720pt;}
._2c{width:37.065173pt;}
._2d{width:38.186027pt;}
._23{width:39.840000pt;}
._17{width:41.592960pt;}
._16{width:42.649600pt;}
._33{width:45.417600pt;}
._e{width:46.798720pt;}
._1c{width:47.776640pt;}
._26{width:48.774827pt;}
._27{width:50.039040pt;}
._30{width:55.669760pt;}
._31{width:61.034880pt;}
._25{width:62.337920pt;}
._12{width:63.648000pt;}
._2a{width:69.799680pt;}
._11{width:75.120000pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._2b{width:614.708267pt;}
._2f{width:807.640533pt;}
._5{width:818.736213pt;}
._2e{width:1475.093333pt;}
.fs3{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.240000pt;}
.y37{bottom:2.720000pt;}
.y16{bottom:2.880000pt;}
.y101{bottom:3.040000pt;}
.y143{bottom:4.320000pt;}
.y30{bottom:5.280000pt;}
.y4{bottom:7.392000pt;}
.ya1{bottom:8.480000pt;}
.y9{bottom:12.480000pt;}
.y13a{bottom:14.400000pt;}
.y5{bottom:14.432000pt;}
.ya2{bottom:14.560000pt;}
.y36{bottom:16.480000pt;}
.y142{bottom:16.640000pt;}
.y2e{bottom:17.280000pt;}
.y139{bottom:26.720000pt;}
.y141{bottom:28.960000pt;}
.y35{bottom:30.240000pt;}
.y7{bottom:31.520000pt;}
.y2d{bottom:31.840000pt;}
.y138{bottom:39.040000pt;}
.y140{bottom:41.120000pt;}
.y34{bottom:44.000000pt;}
.y2c{bottom:45.760000pt;}
.y3{bottom:51.680000pt;}
.y13f{bottom:53.440000pt;}
.y33{bottom:57.920000pt;}
.y2b{bottom:59.520000pt;}
.y13e{bottom:65.760000pt;}
.y32{bottom:71.680000pt;}
.y2a{bottom:73.306667pt;}
.y13d{bottom:77.920000pt;}
.y29{bottom:87.066667pt;}
.y38{bottom:94.440000pt;}
.y135{bottom:99.232000pt;}
.yed{bottom:99.392000pt;}
.yff{bottom:100.512000pt;}
.y28{bottom:100.826667pt;}
.y78{bottom:109.472000pt;}
.y9c{bottom:110.112000pt;}
.y40{bottom:113.632000pt;}
.yec{bottom:114.592000pt;}
.y27{bottom:114.746667pt;}
.y25{bottom:122.280000pt;}
.y77{bottom:124.672000pt;}
.y9b{bottom:125.472000pt;}
.y3f{bottom:128.992000pt;}
.y134{bottom:129.952000pt;}
.y24{bottom:137.640000pt;}
.y76{bottom:140.026667pt;}
.y9a{bottom:140.826667pt;}
.y3e{bottom:144.346667pt;}
.y133{bottom:145.306667pt;}
.y23{bottom:153.000000pt;}
.y75{bottom:155.386667pt;}
.y99{bottom:156.186667pt;}
.y3d{bottom:159.706667pt;}
.y132{bottom:160.506667pt;}
.y22{bottom:168.360000pt;}
.y74{bottom:170.746667pt;}
.y98{bottom:171.546667pt;}
.y3c{bottom:174.906667pt;}
.y131{bottom:175.866667pt;}
.y21{bottom:183.560000pt;}
.y73{bottom:186.106667pt;}
.y97{bottom:186.746667pt;}
.y3b{bottom:190.266667pt;}
.y130{bottom:191.226667pt;}
.y20{bottom:198.920000pt;}
.y72{bottom:201.466667pt;}
.y96{bottom:202.106667pt;}
.y3a{bottom:205.626667pt;}
.y12f{bottom:206.586667pt;}
.y1f{bottom:214.280000pt;}
.y71{bottom:216.666667pt;}
.y95{bottom:217.466667pt;}
.y39{bottom:220.666667pt;}
.y12e{bottom:221.946667pt;}
.y1e{bottom:229.640000pt;}
.y70{bottom:232.026667pt;}
.y17{bottom:232.506667pt;}
.y94{bottom:232.826667pt;}
.y12d{bottom:237.306667pt;}
.y1d{bottom:245.000000pt;}
.y6f{bottom:247.386667pt;}
.y93{bottom:248.186667pt;}
.y12c{bottom:252.506667pt;}
.y1c{bottom:260.360000pt;}
.y6e{bottom:262.746667pt;}
.y92{bottom:263.546667pt;}
.y12b{bottom:267.866667pt;}
.y1b{bottom:275.586667pt;}
.y6d{bottom:278.106667pt;}
.y91{bottom:278.746667pt;}
.y12a{bottom:283.266667pt;}
.y1a{bottom:290.946667pt;}
.y6c{bottom:293.506667pt;}
.y90{bottom:294.146667pt;}
.y129{bottom:298.626667pt;}
.y19{bottom:306.306667pt;}
.y6b{bottom:308.706667pt;}
.y8f{bottom:309.506667pt;}
.y128{bottom:313.986667pt;}
.y18{bottom:321.666667pt;}
.y6a{bottom:324.066667pt;}
.y8e{bottom:324.866667pt;}
.y127{bottom:329.186667pt;}
.y31{bottom:338.786667pt;}
.y69{bottom:339.426667pt;}
.y8d{bottom:340.226667pt;}
.yd7{bottom:340.866667pt;}
.y126{bottom:344.546667pt;}
.yd6{bottom:351.106667pt;}
.y68{bottom:354.786667pt;}
.y8c{bottom:355.426667pt;}
.y125{bottom:359.906667pt;}
.yd5{bottom:365.826667pt;}
.y67{bottom:370.146667pt;}
.y8b{bottom:370.786667pt;}
.y124{bottom:375.266667pt;}
.yc5{bottom:378.786667pt;}
.yd4{bottom:381.186667pt;}
.y66{bottom:385.506667pt;}
.y8a{bottom:386.146667pt;}
.y123{bottom:390.626667pt;}
.yc4{bottom:394.146667pt;}
.y65{bottom:400.706667pt;}
.y89{bottom:401.506667pt;}
.yeb{bottom:402.946667pt;}
.yfe{bottom:403.906667pt;}
.y122{bottom:405.986667pt;}
.yd3{bottom:409.346667pt;}
.yc3{bottom:409.666667pt;}
.y64{bottom:416.066667pt;}
.y88{bottom:416.866667pt;}
.yea{bottom:418.306667pt;}
.yfd{bottom:419.266667pt;}
.y121{bottom:421.186667pt;}
.y2f{bottom:422.306667pt;}
.yd2{bottom:424.866667pt;}
.yc2{bottom:425.026667pt;}
.y63{bottom:431.426667pt;}
.y87{bottom:432.226667pt;}
.yfc{bottom:432.386667pt;}
.ye9{bottom:433.666667pt;}
.y120{bottom:436.546667pt;}
.yc1{bottom:440.386667pt;}
.y26{bottom:440.706667pt;}
.yfb{bottom:445.186667pt;}
.y62{bottom:446.786667pt;}
.y86{bottom:447.426667pt;}
.y11f{bottom:451.906667pt;}
.yd1{bottom:455.746667pt;}
.yc0{bottom:455.906667pt;}
.yfa{bottom:458.146667pt;}
.ye8{bottom:461.986667pt;}
.y61{bottom:462.146667pt;}
.y85{bottom:462.786667pt;}
.y11e{bottom:467.266667pt;}
.yf9{bottom:471.106667pt;}
.ybf{bottom:471.266667pt;}
.ye7{bottom:474.946667pt;}
.y60{bottom:477.346667pt;}
.y84{bottom:478.146667pt;}
.y11d{bottom:482.626667pt;}
.yf8{bottom:484.066667pt;}
.yd0{bottom:486.786667pt;}
.ybe{bottom:486.946667pt;}
.ye6{bottom:487.906667pt;}
.y5f{bottom:492.706667pt;}
.y83{bottom:493.506667pt;}
.y11c{bottom:497.986667pt;}
.yf7{bottom:499.906667pt;}
.ye5{bottom:500.866667pt;}
.ycf{bottom:502.146667pt;}
.ybd{bottom:502.466667pt;}
.y5e{bottom:508.093333pt;}
.y82{bottom:508.893333pt;}
.y11b{bottom:513.213333pt;}
.ye4{bottom:513.853333pt;}
.yf6{bottom:515.293333pt;}
.yce{bottom:517.533333pt;}
.ybc{bottom:518.013333pt;}
.y5d{bottom:523.613333pt;}
.y81{bottom:524.253333pt;}
.ye3{bottom:528.573333pt;}
.ycd{bottom:533.053333pt;}
.ybb{bottom:533.373333pt;}
.ye2{bottom:538.813333pt;}
.y5c{bottom:538.973333pt;}
.y80{bottom:539.453333pt;}
.y13c{bottom:543.453333pt;}
.y11a{bottom:543.933333pt;}
.ycc{bottom:548.413333pt;}
.yba{bottom:548.733333pt;}
.ye1{bottom:554.173333pt;}
.y5b{bottom:554.333333pt;}
.y7f{bottom:554.813333pt;}
.y119{bottom:559.293333pt;}
.ycb{bottom:563.933333pt;}
.yb9{bottom:564.253333pt;}
.y15{bottom:567.293333pt;}
.y5a{bottom:569.693333pt;}
.y7e{bottom:570.173333pt;}
.y118{bottom:574.653333pt;}
.yca{bottom:579.453333pt;}
.yb8{bottom:579.613333pt;}
.y59{bottom:585.053333pt;}
.y7d{bottom:585.533333pt;}
.y117{bottom:589.853333pt;}
.yc9{bottom:594.973333pt;}
.yb7{bottom:595.133333pt;}
.y14{bottom:598.013333pt;}
.y58{bottom:600.573333pt;}
.y7c{bottom:600.893333pt;}
.y116{bottom:605.213333pt;}
.yb6{bottom:610.493333pt;}
.y13{bottom:615.613333pt;}
.y57{bottom:615.933333pt;}
.y7b{bottom:616.253333pt;}
.y115{bottom:620.573333pt;}
.yc8{bottom:625.853333pt;}
.yb5{bottom:626.013333pt;}
.y56{bottom:631.293333pt;}
.y7a{bottom:631.453333pt;}
.y13b{bottom:632.093333pt;}
.y114{bottom:635.933333pt;}
.y12{bottom:640.893333pt;}
.yc7{bottom:641.213333pt;}
.yb4{bottom:641.373333pt;}
.y137{bottom:645.053333pt;}
.y55{bottom:646.653333pt;}
.y79{bottom:646.813333pt;}
.y113{bottom:651.293333pt;}
.y11{bottom:656.253333pt;}
.yc6{bottom:656.733333pt;}
.yb3{bottom:656.893333pt;}
.y54{bottom:662.173333pt;}
.y112{bottom:666.653333pt;}
.y10{bottom:672.093333pt;}
.yb2{bottom:672.253333pt;}
.y53{bottom:677.533333pt;}
.y111{bottom:681.853333pt;}
.yb1{bottom:686.973333pt;}
.yf{bottom:690.813333pt;}
.y52{bottom:692.893333pt;}
.y136{bottom:694.813333pt;}
.y110{bottom:697.213333pt;}
.yb0{bottom:697.693333pt;}
.y51{bottom:708.093333pt;}
.yaf{bottom:710.653333pt;}
.y10f{bottom:712.573333pt;}
.ye{bottom:718.333333pt;}
.y50{bottom:723.453333pt;}
.yae{bottom:723.613333pt;}
.y10e{bottom:727.933333pt;}
.yad{bottom:736.453333pt;}
.y4f{bottom:738.853333pt;}
.y10d{bottom:743.333333pt;}
.yd{bottom:746.053333pt;}
.yac{bottom:749.413333pt;}
.y4e{bottom:754.213333pt;}
.y10c{bottom:758.693333pt;}
.yab{bottom:762.373333pt;}
.y4d{bottom:769.573333pt;}
.yc{bottom:773.573333pt;}
.y10b{bottom:773.893333pt;}
.yaa{bottom:775.333333pt;}
.y4c{bottom:784.933333pt;}
.ya9{bottom:788.293333pt;}
.y10a{bottom:789.253333pt;}
.y4b{bottom:800.133333pt;}
.yb{bottom:801.253333pt;}
.y109{bottom:804.613333pt;}
.ya8{bottom:814.053333pt;}
.y4a{bottom:815.493333pt;}
.y108{bottom:819.973333pt;}
.ya{bottom:826.853333pt;}
.ya7{bottom:827.013333pt;}
.yf5{bottom:829.893333pt;}
.y49{bottom:830.853333pt;}
.y107{bottom:835.333333pt;}
.ya6{bottom:839.973333pt;}
.y8{bottom:840.453333pt;}
.ye0{bottom:841.093333pt;}
.yf4{bottom:845.253333pt;}
.y48{bottom:846.213333pt;}
.y106{bottom:850.693333pt;}
.ydf{bottom:851.333333pt;}
.ya5{bottom:852.933333pt;}
.yf3{bottom:860.613333pt;}
.y47{bottom:861.573333pt;}
.ya4{bottom:865.893333pt;}
.yde{bottom:866.693333pt;}
.yf2{bottom:873.733333pt;}
.y46{bottom:876.933333pt;}
.ya3{bottom:878.853333pt;}
.y105{bottom:879.013333pt;}
.ydd{bottom:879.813333pt;}
.yf1{bottom:886.693333pt;}
.ya0{bottom:891.653333pt;}
.y104{bottom:891.973333pt;}
.y45{bottom:892.133333pt;}
.ydc{bottom:892.773333pt;}
.yf0{bottom:899.653333pt;}
.y103{bottom:904.933333pt;}
.ydb{bottom:905.733333pt;}
.y44{bottom:907.493333pt;}
.yef{bottom:912.453333pt;}
.y102{bottom:917.893333pt;}
.y9f{bottom:918.693333pt;}
.y43{bottom:922.853333pt;}
.yee{bottom:925.413333pt;}
.y9e{bottom:928.293333pt;}
.y100{bottom:930.853333pt;}
.yda{bottom:931.653333pt;}
.y42{bottom:938.213333pt;}
.y9d{bottom:940.613333pt;}
.yd9{bottom:946.373333pt;}
.y41{bottom:953.600000pt;}
.yd8{bottom:956.000000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h1f{height:12.160000pt;}
.h21{height:12.192000pt;}
.h20{height:12.320000pt;}
.h22{height:12.352000pt;}
.h23{height:13.120000pt;}
.hd{height:15.360000pt;}
.h13{height:17.760000pt;}
.h1d{height:22.578125pt;}
.h3{height:24.512000pt;}
.h1e{height:24.640000pt;}
.h1c{height:30.254687pt;}
.h5{height:31.008437pt;}
.h17{height:33.867188pt;}
.h15{height:34.710938pt;}
.h6{height:34.965625pt;}
.h11{height:35.554688pt;}
.he{height:37.479688pt;}
.h4{height:38.413438pt;}
.h18{height:38.672812pt;}
.h1a{height:38.828437pt;}
.h12{height:39.347188pt;}
.h1b{height:39.854687pt;}
.h2{height:40.021563pt;}
.h19{height:40.280938pt;}
.h8{height:42.578750pt;}
.h9{height:44.361250pt;}
.h1{height:45.156250pt;}
.hb{height:47.310625pt;}
.h24{height:48.960000pt;}
.ha{height:67.734375pt;}
.hc{height:69.421875pt;}
.h14{height:82.880000pt;}
.h25{height:88.000000pt;}
.h16{height:105.632000pt;}
.h10{height:125.952000pt;}
.h7{height:136.826667pt;}
.hf{height:334.146667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.w12{width:72.800000pt;}
.wa{width:87.520000pt;}
.wc{width:93.760000pt;}
.w8{width:108.352000pt;}
.w9{width:114.592000pt;}
.wb{width:123.392000pt;}
.w7{width:127.680000pt;}
.w10{width:143.360000pt;}
.wf{width:143.386667pt;}
.wd{width:158.880000pt;}
.we{width:158.906667pt;}
.w6{width:195.706667pt;}
.w13{width:273.346667pt;}
.w11{width:346.786667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.760000pt;}
.x3{left:7.520000pt;}
.x23{left:11.360000pt;}
.x1b{left:14.240000pt;}
.x3d{left:15.520000pt;}
.x1c{left:16.640000pt;}
.x11{left:17.760000pt;}
.x2d{left:20.160000pt;}
.x20{left:21.120000pt;}
.x21{left:22.400000pt;}
.x15{left:24.320000pt;}
.x25{left:26.880000pt;}
.x26{left:27.840000pt;}
.x27{left:28.960000pt;}
.x13{left:30.280000pt;}
.x14{left:31.880000pt;}
.x36{left:35.706667pt;}
.x1e{left:36.800000pt;}
.x2e{left:38.400000pt;}
.x6{left:40.480000pt;}
.x29{left:43.680000pt;}
.x2b{left:46.880000pt;}
.x2{left:47.999988pt;}
.x2c{left:52.320000pt;}
.x1{left:53.919988pt;}
.x28{left:57.280000pt;}
.x16{left:58.239988pt;}
.x3a{left:59.834667pt;}
.x2a{left:61.600000pt;}
.x3e{left:65.754667pt;}
.x34{left:67.514667pt;}
.x3f{left:69.960000pt;}
.x38{left:73.434667pt;}
.x44{left:75.840000pt;}
.x17{left:78.399988pt;}
.x4{left:89.632000pt;}
.x5{left:96.031988pt;}
.x42{left:98.240000pt;}
.x43{left:99.680000pt;}
.x9{left:119.711988pt;}
.xd{left:152.666655pt;}
.x1a{left:217.466667pt;}
.x39{left:225.146655pt;}
.x35{left:248.826667pt;}
.x19{left:250.106655pt;}
.x3b{left:264.386667pt;}
.x1d{left:326.466667pt;}
.xe{left:330.146655pt;}
.x32{left:340.706655pt;}
.xa{left:345.026655pt;}
.xc{left:349.186655pt;}
.x8{left:408.066655pt;}
.x31{left:410.626655pt;}
.xb{left:412.706655pt;}
.xf{left:413.666655pt;}
.x18{left:425.186655pt;}
.x2f{left:426.493321pt;}
.x33{left:432.093321pt;}
.x1f{left:441.693333pt;}
.x41{left:442.813333pt;}
.x30{left:450.493321pt;}
.x40{left:468.093321pt;}
.x45{left:516.253333pt;}
.x22{left:530.013333pt;}
.x3c{left:552.413333pt;}
.x37{left:568.093333pt;}
.x10{left:570.973333pt;}
.x24{left:654.053333pt;}
.x7{left:722.213333pt;}
}




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