
    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_6a3f189bc691d39a60055123.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_29d17243364565c5dcfd26c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8301d205e98a2a05b74a53bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_b56f0b3ee7cf36e2819d2e8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_83ac1c15e3742e4bce3cce17.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e8552b83b3eced71ba9ec346.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_674bb5b2475b856c1ef9b549.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706055;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:-72.000000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-1.440000px;}
.ls2a{letter-spacing:-0.990000px;}
.ls29{letter-spacing:-0.900000px;}
.ls18{letter-spacing:-0.354000px;}
.ls23{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.269400px;}
.ls24{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.053280px;}
.ls2{letter-spacing:-0.000001px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.029280px;}
.ls11{letter-spacing:0.053280px;}
.ls20{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.106560px;}
.ls3{letter-spacing:0.106800px;}
.ls21{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.153360px;}
.lse{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206400px;}
.ls27{letter-spacing:0.223800px;}
.ls7{letter-spacing:0.223920px;}
.ls19{letter-spacing:0.259800px;}
.ls22{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.460080px;}
.ls9{letter-spacing:0.613440px;}
.ls1d{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.873360px;}
.ls13{letter-spacing:0.900000px;}
.lsa{letter-spacing:1.180080px;}
.ls1b{letter-spacing:1.440000px;}
.ls14{letter-spacing:1.620000px;}
.lsc{letter-spacing:2.340000px;}
.ls1a{letter-spacing:2.880000px;}
.lsb{letter-spacing:3.060000px;}
.ls1f{letter-spacing:5.220000px;}
.ls25{letter-spacing:7.380000px;}
.ls15{letter-spacing:8.820000px;}
.ls26{letter-spacing:13.140000px;}
.ls1c{letter-spacing:15.840000px;}
.ls0{letter-spacing:121.680000px;}
.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;}
}
.wsb{word-spacing:-18.288000px;}
.ws10{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws4{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.146400px;}
.ws9{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.093600px;}
.ws0{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wse{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.790600px;}
.ws11{word-spacing:-11.160000px;}
.ws12{word-spacing:-11.070000px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-5.112000px;}
._11{margin-left:-4.104000px;}
._7{margin-left:-2.211120px;}
._0{margin-left:-1.008000px;}
._1{width:1.656000px;}
._4{width:2.775600px;}
._3{width:3.824640px;}
._5{width:5.205600px;}
._6{width:6.626880px;}
._9{width:8.246880px;}
._8{width:9.740880px;}
._10{width:11.448000px;}
._a{width:12.498000px;}
._b{width:13.804560px;}
._15{width:15.480000px;}
._14{width:16.926240px;}
._1b{width:19.704000px;}
._1a{width:20.808000px;}
._d{width:22.011120px;}
._c{width:23.040000px;}
._16{width:24.068880px;}
._19{width:25.560000px;}
._e{width:27.576000px;}
._f{width:29.664000px;}
._12{width:33.336000px;}
._13{width:34.827120px;}
._17{width:39.360000px;}
._2{width:197.436000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:2.865000px;}
.ybe{bottom:2.880000px;}
.yc4{bottom:3.045000px;}
.yba{bottom:3.060000px;}
.yc5{bottom:9.885000px;}
.yb7{bottom:9.900000px;}
.ybc{bottom:9.915000px;}
.yc3{bottom:16.725000px;}
.yb8{bottom:16.740000px;}
.yd0{bottom:16.770000px;}
.yc9{bottom:16.905000px;}
.yd6{bottom:16.920000px;}
.yb6{bottom:23.760000px;}
.yb4{bottom:24.120000px;}
.yb9{bottom:30.600000px;}
.y36{bottom:110.016000px;}
.y77{bottom:110.196000px;}
.y6c{bottom:115.596000px;}
.y35{bottom:127.296000px;}
.y76{bottom:131.436000px;}
.y60{bottom:144.576000px;}
.y34{bottom:144.756000px;}
.y6b{bottom:146.736000px;}
.y33{bottom:149.256000px;}
.y5f{bottom:149.796000px;}
.y75{bottom:152.130000px;}
.ye0{bottom:154.110000px;}
.yb2{bottom:155.730000px;}
.y5e{bottom:161.670000px;}
.y94{bottom:162.030000px;}
.y32{bottom:165.810000px;}
.ydf{bottom:167.970000px;}
.y74{bottom:169.410000px;}
.y6a{bottom:177.690000px;}
.y5d{bottom:178.950000px;}
.yde{bottom:181.650000px;}
.y73{bottom:186.690000px;}
.yb1{bottom:186.870000px;}
.y72{bottom:191.910000px;}
.ydd{bottom:195.330000px;}
.y5c{bottom:196.230000px;}
.y31{bottom:198.390000px;}
.y92{bottom:201.450000px;}
.y71{bottom:204.150000px;}
.ydc{bottom:207.045000px;}
.y69{bottom:208.830000px;}
.y5b{bottom:213.510000px;}
.yb0{bottom:217.830000px;}
.y91{bottom:218.730000px;}
.y30{bottom:229.530000px;}
.y5a{bottom:230.790000px;}
.ydb{bottom:235.485000px;}
.y68{bottom:239.790000px;}
.y59{bottom:248.070000px;}
.yaf{bottom:248.970000px;}
.yda{bottom:249.915000px;}
.y7c{bottom:253.290000px;}
.y2f{bottom:260.490000px;}
.y70{bottom:263.190000px;}
.y58{bottom:265.170000px;}
.y67{bottom:270.930000px;}
.y93{bottom:277.770000px;}
.yd9{bottom:278.355000px;}
.yae{bottom:279.930000px;}
.y57{bottom:282.450000px;}
.y7b{bottom:287.670000px;}
.y2e{bottom:291.630000px;}
.yd8{bottom:292.935000px;}
.y6f{bottom:294.330000px;}
.y56{bottom:299.730000px;}
.y7a{bottom:299.910000px;}
.y66{bottom:301.890000px;}
.yd7{bottom:307.515000px;}
.yad{bottom:311.070000px;}
.y55{bottom:317.010000px;}
.yd5{bottom:321.915000px;}
.y2d{bottom:322.590000px;}
.y6e{bottom:332.895000px;}
.y65{bottom:333.075000px;}
.y54{bottom:334.335000px;}
.y90{bottom:339.555000px;}
.yd4{bottom:350.355000px;}
.y53{bottom:351.615000px;}
.y2c{bottom:353.775000px;}
.y52{bottom:356.835000px;}
.yac{bottom:362.775000px;}
.y64{bottom:364.035000px;}
.yd3{bottom:364.935000px;}
.y8f{bottom:368.715000px;}
.y51{bottom:369.075000px;}
.y2b{bottom:373.755000px;}
.y8e{bottom:385.995000px;}
.y2a{bottom:391.035000px;}
.y8d{bottom:391.215000px;}
.yd2{bottom:393.195000px;}
.y63{bottom:395.175000px;}
.y8c{bottom:403.275000px;}
.yd1{bottom:407.775000px;}
.y29{bottom:408.315000px;}
.yab{bottom:415.335000px;}
.y8b{bottom:420.555000px;}
.ycf{bottom:422.355000px;}
.y28{bottom:425.595000px;}
.y50{bottom:426.135000px;}
.y8a{bottom:437.835000px;}
.y27{bottom:442.875000px;}
.y89{bottom:443.055000px;}
.yce{bottom:450.660000px;}
.y88{bottom:454.935000px;}
.y4f{bottom:457.095000px;}
.y26{bottom:459.975000px;}
.ycd{bottom:465.240000px;}
.yaa{bottom:467.175000px;}
.y87{bottom:472.215000px;}
.y25{bottom:477.255000px;}
.y86{bottom:477.435000px;}
.y4e{bottom:488.235000px;}
.y85{bottom:489.855000px;}
.ycc{bottom:493.680000px;}
.y24{bottom:494.535000px;}
.ya9{bottom:498.315000px;}
.ycb{bottom:508.260000px;}
.y23{bottom:511.815000px;}
.y4d{bottom:519.195000px;}
.yca{bottom:522.660000px;}
.y22{bottom:529.095000px;}
.ya8{bottom:529.275000px;}
.yc8{bottom:537.240000px;}
.y84{bottom:542.595000px;}
.y21{bottom:546.375000px;}
.y4c{bottom:550.335000px;}
.ya7{bottom:560.415000px;}
.y20{bottom:563.475000px;}
.yc6{bottom:565.680000px;}
.y83{bottom:573.735000px;}
.y1f{bottom:580.755000px;}
.y4b{bottom:581.295000px;}
.ya6{bottom:591.375000px;}
.yc2{bottom:593.940000px;}
.y1e{bottom:598.065000px;}
.y82{bottom:604.725000px;}
.y4a{bottom:612.465000px;}
.y1d{bottom:615.345000px;}
.yc1{bottom:622.410000px;}
.ya5{bottom:622.545000px;}
.y1c{bottom:632.625000px;}
.y81{bottom:635.865000px;}
.y49{bottom:643.425000px;}
.y1b{bottom:649.905000px;}
.yc0{bottom:650.670000px;}
.ya4{bottom:653.505000px;}
.ybf{bottom:665.250000px;}
.y1a{bottom:667.005000px;}
.y80{bottom:674.385000px;}
.y48{bottom:674.565000px;}
.ybd{bottom:679.830000px;}
.y19{bottom:684.285000px;}
.ya3{bottom:684.645000px;}
.y18{bottom:701.565000px;}
.y47{bottom:705.525000px;}
.yb3{bottom:708.090000px;}
.y79{bottom:712.365000px;}
.ya2{bottom:715.605000px;}
.y17{bottom:718.845000px;}
.ybb{bottom:722.655000px;}
.yb5{bottom:722.670000px;}
.y16{bottom:736.125000px;}
.y46{bottom:736.665000px;}
.y7f{bottom:743.505000px;}
.ya1{bottom:746.745000px;}
.y15{bottom:753.405000px;}
.y45{bottom:767.625000px;}
.y14{bottom:770.505000px;}
.y6d{bottom:774.465000px;}
.ya0{bottom:777.705000px;}
.y13{bottom:787.785000px;}
.y44{bottom:798.765000px;}
.y12{bottom:805.065000px;}
.y9f{bottom:808.845000px;}
.y11{bottom:822.345000px;}
.y43{bottom:829.725000px;}
.y9e{bottom:839.805000px;}
.y10{bottom:840.345000px;}
.y42{bottom:860.865000px;}
.yf{bottom:861.045000px;}
.y9d{bottom:870.990000px;}
.ye{bottom:881.070000px;}
.y41{bottom:891.870000px;}
.yd{bottom:898.170000px;}
.y9c{bottom:901.950000px;}
.y40{bottom:923.010000px;}
.y78{bottom:929.850000px;}
.y9b{bottom:933.090000px;}
.yc{bottom:933.450000px;}
.y3f{bottom:953.970000px;}
.yb{bottom:954.150000px;}
.y9a{bottom:964.050000px;}
.ya{bottom:974.850000px;}
.y3e{bottom:985.110000px;}
.y99{bottom:995.190000px;}
.y9{bottom:995.550000px;}
.y62{bottom:1015.710000px;}
.y3c{bottom:1016.070000px;}
.y8{bottom:1016.250000px;}
.y3d{bottom:1022.910000px;}
.y98{bottom:1026.150000px;}
.y7{bottom:1036.950000px;}
.y61{bottom:1046.850000px;}
.y3b{bottom:1047.210000px;}
.y7e{bottom:1054.050000px;}
.y97{bottom:1057.290000px;}
.y6{bottom:1057.650000px;}
.y39{bottom:1078.170000px;}
.y5{bottom:1078.350000px;}
.y3a{bottom:1085.010000px;}
.y96{bottom:1088.250000px;}
.y4{bottom:1099.050000px;}
.y38{bottom:1109.310000px;}
.y7d{bottom:1116.150000px;}
.y2{bottom:1119.750000px;}
.y3{bottom:1126.590000px;}
.y95{bottom:1140.120000px;}
.y37{bottom:1140.300000px;}
.y1{bottom:1140.480000px;}
.h18{height:13.665000px;}
.h1d{height:13.680000px;}
.h1e{height:13.701000px;}
.h14{height:13.845000px;}
.h1a{height:13.860000px;}
.h15{height:27.525000px;}
.h1b{height:27.540000px;}
.h16{height:27.561000px;}
.h19{height:27.576000px;}
.h17{height:27.705000px;}
.h1c{height:27.720000px;}
.h8{height:33.706758px;}
.h9{height:38.158594px;}
.h11{height:41.385000px;}
.h12{height:41.391000px;}
.h13{height:41.400000px;}
.hc{height:41.493516px;}
.h4{height:47.344922px;}
.h1f{height:48.616875px;}
.h7{height:50.308594px;}
.hd{height:53.573906px;}
.h10{height:55.965000px;}
.h6{height:58.621992px;}
.h5{height:58.651172px;}
.hb{height:64.546875px;}
.h2{height:70.664062px;}
.ha{height:72.562500px;}
.he{height:892.440000px;}
.hf{height:892.500000px;}
.h1{height:1263.000000px;}
.h3{height:1263.044910px;}
.h0{height:1263.060000px;}
.w12{width:28.980000px;}
.w13{width:30.780000px;}
.w11{width:31.500000px;}
.w10{width:31.701000px;}
.w18{width:33.645000px;}
.wf{width:35.265000px;}
.w1d{width:35.445000px;}
.w1f{width:36.345000px;}
.w14{width:36.360000px;}
.w1c{width:36.921000px;}
.w1e{width:39.405000px;}
.w15{width:39.960000px;}
.w17{width:41.385000px;}
.w16{width:43.056000px;}
.w1b{width:44.805000px;}
.w19{width:47.685000px;}
.w1a{width:49.665000px;}
.w6{width:67.881000px;}
.wb{width:73.282500px;}
.wc{width:76.491000px;}
.wd{width:76.500000px;}
.w8{width:80.640000px;}
.we{width:86.745000px;}
.w9{width:120.276000px;}
.w7{width:129.780000px;}
.wa{width:143.085000px;}
.w5{width:223.770000px;}
.w2{width:892.417500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w4{width:1263.000000px;}
.w3{width:1263.060000px;}
.x0{left:0.000000px;}
.x3e{left:9.345000px;}
.x3c{left:10.605000px;}
.x45{left:11.685000px;}
.x31{left:12.780000px;}
.x34{left:14.040000px;}
.x2d{left:15.465000px;}
.x2e{left:16.545000px;}
.x38{left:18.165000px;}
.x3a{left:19.620000px;}
.x51{left:20.700000px;}
.x4a{left:21.960000px;}
.x54{left:23.385000px;}
.x53{left:25.770000px;}
.x4e{left:27.000000px;}
.x33{left:29.700000px;}
.x36{left:30.765000px;}
.x5d{left:32.970000px;}
.x2b{left:37.290000px;}
.x4c{left:38.370000px;}
.x35{left:40.170000px;}
.x4b{left:42.150000px;}
.x55{left:43.230000px;}
.x52{left:47.010000px;}
.x4d{left:49.350000px;}
.x5a{left:51.870000px;}
.x59{left:53.130000px;}
.x5b{left:61.950000px;}
.x50{left:68.610000px;}
.x5c{left:81.930000px;}
.x4f{left:84.270000px;}
.x58{left:86.610000px;}
.x57{left:88.230000px;}
.x56{left:95.970000px;}
.xa{left:106.416000px;}
.x6{left:108.036000px;}
.x13{left:111.636000px;}
.xe{left:115.056000px;}
.x27{left:116.136000px;}
.x1{left:119.916000px;}
.x8{left:121.716000px;}
.x2a{left:125.820000px;}
.x28{left:246.247500px;}
.x29{left:258.510000px;}
.x1c{left:263.887500px;}
.x1d{left:270.030000px;}
.x2{left:280.335000px;}
.x26{left:282.135000px;}
.x14{left:305.872500px;}
.x15{left:312.015000px;}
.xd{left:322.455000px;}
.x11{left:323.872500px;}
.x12{left:330.015000px;}
.x7{left:342.795000px;}
.x2c{left:351.765000px;}
.x9{left:359.535000px;}
.x22{left:373.912500px;}
.xb{left:377.895000px;}
.x23{left:386.175000px;}
.x3d{left:387.945000px;}
.x1e{left:408.112500px;}
.x1f{left:414.255000px;}
.x2f{left:421.995000px;}
.xc{left:424.695000px;}
.x5{left:446.295000px;}
.x3f{left:454.215000px;}
.x40{left:483.915000px;}
.x41{left:515.415000px;}
.x20{left:523.342500px;}
.x21{left:535.605000px;}
.x18{left:541.702500px;}
.x19{left:547.845000px;}
.x30{left:553.935000px;}
.x42{left:594.615000px;}
.x3{left:601.642500px;}
.x4{left:607.785000px;}
.x24{left:622.702500px;}
.x25{left:634.965000px;}
.x32{left:636.915000px;}
.x1a{left:667.747500px;}
.x1b{left:675.150000px;}
.xf{left:678.727500px;}
.x43{left:680.700000px;}
.x10{left:684.870000px;}
.x44{left:722.820000px;}
.x16{left:752.887500px;}
.x17{left:759.030000px;}
.x46{left:807.240000px;}
.x47{left:857.640000px;}
.x37{left:904.620000px;}
.x48{left:942.450000px;}
.x39{left:980.250000px;}
.x49{left:1020.390000px;}
.x3b{left:1059.090000px;}
@media print{
.v1{vertical-align:-64.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-1.280000pt;}
.ls2a{letter-spacing:-0.880000pt;}
.ls29{letter-spacing:-0.800000pt;}
.ls18{letter-spacing:-0.314667pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.239467pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:-0.000001pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.026027pt;}
.ls11{letter-spacing:0.047360pt;}
.ls20{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.094720pt;}
.ls3{letter-spacing:0.094933pt;}
.ls21{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.136320pt;}
.lse{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183467pt;}
.ls27{letter-spacing:0.198933pt;}
.ls7{letter-spacing:0.199040pt;}
.ls19{letter-spacing:0.230933pt;}
.ls22{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.408960pt;}
.ls9{letter-spacing:0.545280pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.776320pt;}
.ls13{letter-spacing:0.800000pt;}
.lsa{letter-spacing:1.048960pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls14{letter-spacing:1.440000pt;}
.lsc{letter-spacing:2.080000pt;}
.ls1a{letter-spacing:2.560000pt;}
.lsb{letter-spacing:2.720000pt;}
.ls1f{letter-spacing:4.640000pt;}
.ls25{letter-spacing:6.560000pt;}
.ls15{letter-spacing:7.840000pt;}
.ls26{letter-spacing:11.680000pt;}
.ls1c{letter-spacing:14.080000pt;}
.ls0{letter-spacing:108.160000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws10{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.416533pt;}
.ws0{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wse{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.480533pt;}
.ws11{word-spacing:-9.920000pt;}
.ws12{word-spacing:-9.840000pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-4.544000pt;}
._11{margin-left:-3.648000pt;}
._7{margin-left:-1.965440pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.472000pt;}
._4{width:2.467200pt;}
._3{width:3.399680pt;}
._5{width:4.627200pt;}
._6{width:5.890560pt;}
._9{width:7.330560pt;}
._8{width:8.658560pt;}
._10{width:10.176000pt;}
._a{width:11.109333pt;}
._b{width:12.270720pt;}
._15{width:13.760000pt;}
._14{width:15.045547pt;}
._1b{width:17.514667pt;}
._1a{width:18.496000pt;}
._d{width:19.565440pt;}
._c{width:20.480000pt;}
._16{width:21.394560pt;}
._19{width:22.720000pt;}
._e{width:24.512000pt;}
._f{width:26.368000pt;}
._12{width:29.632000pt;}
._13{width:30.957440pt;}
._17{width:34.986667pt;}
._2{width:175.498667pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:2.546667pt;}
.ybe{bottom:2.560000pt;}
.yc4{bottom:2.706667pt;}
.yba{bottom:2.720000pt;}
.yc5{bottom:8.786667pt;}
.yb7{bottom:8.800000pt;}
.ybc{bottom:8.813333pt;}
.yc3{bottom:14.866667pt;}
.yb8{bottom:14.880000pt;}
.yd0{bottom:14.906667pt;}
.yc9{bottom:15.026667pt;}
.yd6{bottom:15.040000pt;}
.yb6{bottom:21.120000pt;}
.yb4{bottom:21.440000pt;}
.yb9{bottom:27.200000pt;}
.y36{bottom:97.792000pt;}
.y77{bottom:97.952000pt;}
.y6c{bottom:102.752000pt;}
.y35{bottom:113.152000pt;}
.y76{bottom:116.832000pt;}
.y60{bottom:128.512000pt;}
.y34{bottom:128.672000pt;}
.y6b{bottom:130.432000pt;}
.y33{bottom:132.672000pt;}
.y5f{bottom:133.152000pt;}
.y75{bottom:135.226667pt;}
.ye0{bottom:136.986667pt;}
.yb2{bottom:138.426667pt;}
.y5e{bottom:143.706667pt;}
.y94{bottom:144.026667pt;}
.y32{bottom:147.386667pt;}
.ydf{bottom:149.306667pt;}
.y74{bottom:150.586667pt;}
.y6a{bottom:157.946667pt;}
.y5d{bottom:159.066667pt;}
.yde{bottom:161.466667pt;}
.y73{bottom:165.946667pt;}
.yb1{bottom:166.106667pt;}
.y72{bottom:170.586667pt;}
.ydd{bottom:173.626667pt;}
.y5c{bottom:174.426667pt;}
.y31{bottom:176.346667pt;}
.y92{bottom:179.066667pt;}
.y71{bottom:181.466667pt;}
.ydc{bottom:184.040000pt;}
.y69{bottom:185.626667pt;}
.y5b{bottom:189.786667pt;}
.yb0{bottom:193.626667pt;}
.y91{bottom:194.426667pt;}
.y30{bottom:204.026667pt;}
.y5a{bottom:205.146667pt;}
.ydb{bottom:209.320000pt;}
.y68{bottom:213.146667pt;}
.y59{bottom:220.506667pt;}
.yaf{bottom:221.306667pt;}
.yda{bottom:222.146667pt;}
.y7c{bottom:225.146667pt;}
.y2f{bottom:231.546667pt;}
.y70{bottom:233.946667pt;}
.y58{bottom:235.706667pt;}
.y67{bottom:240.826667pt;}
.y93{bottom:246.906667pt;}
.yd9{bottom:247.426667pt;}
.yae{bottom:248.826667pt;}
.y57{bottom:251.066667pt;}
.y7b{bottom:255.706667pt;}
.y2e{bottom:259.226667pt;}
.yd8{bottom:260.386667pt;}
.y6f{bottom:261.626667pt;}
.y56{bottom:266.426667pt;}
.y7a{bottom:266.586667pt;}
.y66{bottom:268.346667pt;}
.yd7{bottom:273.346667pt;}
.yad{bottom:276.506667pt;}
.y55{bottom:281.786667pt;}
.yd5{bottom:286.146667pt;}
.y2d{bottom:286.746667pt;}
.y6e{bottom:295.906667pt;}
.y65{bottom:296.066667pt;}
.y54{bottom:297.186667pt;}
.y90{bottom:301.826667pt;}
.yd4{bottom:311.426667pt;}
.y53{bottom:312.546667pt;}
.y2c{bottom:314.466667pt;}
.y52{bottom:317.186667pt;}
.yac{bottom:322.466667pt;}
.y64{bottom:323.586667pt;}
.yd3{bottom:324.386667pt;}
.y8f{bottom:327.746667pt;}
.y51{bottom:328.066667pt;}
.y2b{bottom:332.226667pt;}
.y8e{bottom:343.106667pt;}
.y2a{bottom:347.586667pt;}
.y8d{bottom:347.746667pt;}
.yd2{bottom:349.506667pt;}
.y63{bottom:351.266667pt;}
.y8c{bottom:358.466667pt;}
.yd1{bottom:362.466667pt;}
.y29{bottom:362.946667pt;}
.yab{bottom:369.186667pt;}
.y8b{bottom:373.826667pt;}
.ycf{bottom:375.426667pt;}
.y28{bottom:378.306667pt;}
.y50{bottom:378.786667pt;}
.y8a{bottom:389.186667pt;}
.y27{bottom:393.666667pt;}
.y89{bottom:393.826667pt;}
.yce{bottom:400.586667pt;}
.y88{bottom:404.386667pt;}
.y4f{bottom:406.306667pt;}
.y26{bottom:408.866667pt;}
.ycd{bottom:413.546667pt;}
.yaa{bottom:415.266667pt;}
.y87{bottom:419.746667pt;}
.y25{bottom:424.226667pt;}
.y86{bottom:424.386667pt;}
.y4e{bottom:433.986667pt;}
.y85{bottom:435.426667pt;}
.ycc{bottom:438.826667pt;}
.y24{bottom:439.586667pt;}
.ya9{bottom:442.946667pt;}
.ycb{bottom:451.786667pt;}
.y23{bottom:454.946667pt;}
.y4d{bottom:461.506667pt;}
.yca{bottom:464.586667pt;}
.y22{bottom:470.306667pt;}
.ya8{bottom:470.466667pt;}
.yc8{bottom:477.546667pt;}
.y84{bottom:482.306667pt;}
.y21{bottom:485.666667pt;}
.y4c{bottom:489.186667pt;}
.ya7{bottom:498.146667pt;}
.y20{bottom:500.866667pt;}
.yc6{bottom:502.826667pt;}
.y83{bottom:509.986667pt;}
.y1f{bottom:516.226667pt;}
.y4b{bottom:516.706667pt;}
.ya6{bottom:525.666667pt;}
.yc2{bottom:527.946667pt;}
.y1e{bottom:531.613333pt;}
.y82{bottom:537.533333pt;}
.y4a{bottom:544.413333pt;}
.y1d{bottom:546.973333pt;}
.yc1{bottom:553.253333pt;}
.ya5{bottom:553.373333pt;}
.y1c{bottom:562.333333pt;}
.y81{bottom:565.213333pt;}
.y49{bottom:571.933333pt;}
.y1b{bottom:577.693333pt;}
.yc0{bottom:578.373333pt;}
.ya4{bottom:580.893333pt;}
.ybf{bottom:591.333333pt;}
.y1a{bottom:592.893333pt;}
.y80{bottom:599.453333pt;}
.y48{bottom:599.613333pt;}
.ybd{bottom:604.293333pt;}
.y19{bottom:608.253333pt;}
.ya3{bottom:608.573333pt;}
.y18{bottom:623.613333pt;}
.y47{bottom:627.133333pt;}
.yb3{bottom:629.413333pt;}
.y79{bottom:633.213333pt;}
.ya2{bottom:636.093333pt;}
.y17{bottom:638.973333pt;}
.ybb{bottom:642.360000pt;}
.yb5{bottom:642.373333pt;}
.y16{bottom:654.333333pt;}
.y46{bottom:654.813333pt;}
.y7f{bottom:660.893333pt;}
.ya1{bottom:663.773333pt;}
.y15{bottom:669.693333pt;}
.y45{bottom:682.333333pt;}
.y14{bottom:684.893333pt;}
.y6d{bottom:688.413333pt;}
.ya0{bottom:691.293333pt;}
.y13{bottom:700.253333pt;}
.y44{bottom:710.013333pt;}
.y12{bottom:715.613333pt;}
.y9f{bottom:718.973333pt;}
.y11{bottom:730.973333pt;}
.y43{bottom:737.533333pt;}
.y9e{bottom:746.493333pt;}
.y10{bottom:746.973333pt;}
.y42{bottom:765.213333pt;}
.yf{bottom:765.373333pt;}
.y9d{bottom:774.213333pt;}
.ye{bottom:783.173333pt;}
.y41{bottom:792.773333pt;}
.yd{bottom:798.373333pt;}
.y9c{bottom:801.733333pt;}
.y40{bottom:820.453333pt;}
.y78{bottom:826.533333pt;}
.y9b{bottom:829.413333pt;}
.yc{bottom:829.733333pt;}
.y3f{bottom:847.973333pt;}
.yb{bottom:848.133333pt;}
.y9a{bottom:856.933333pt;}
.ya{bottom:866.533333pt;}
.y3e{bottom:875.653333pt;}
.y99{bottom:884.613333pt;}
.y9{bottom:884.933333pt;}
.y62{bottom:902.853333pt;}
.y3c{bottom:903.173333pt;}
.y8{bottom:903.333333pt;}
.y3d{bottom:909.253333pt;}
.y98{bottom:912.133333pt;}
.y7{bottom:921.733333pt;}
.y61{bottom:930.533333pt;}
.y3b{bottom:930.853333pt;}
.y7e{bottom:936.933333pt;}
.y97{bottom:939.813333pt;}
.y6{bottom:940.133333pt;}
.y39{bottom:958.373333pt;}
.y5{bottom:958.533333pt;}
.y3a{bottom:964.453333pt;}
.y96{bottom:967.333333pt;}
.y4{bottom:976.933333pt;}
.y38{bottom:986.053333pt;}
.y7d{bottom:992.133333pt;}
.y2{bottom:995.333333pt;}
.y3{bottom:1001.413333pt;}
.y95{bottom:1013.440000pt;}
.y37{bottom:1013.600000pt;}
.y1{bottom:1013.760000pt;}
.h18{height:12.146667pt;}
.h1d{height:12.160000pt;}
.h1e{height:12.178667pt;}
.h14{height:12.306667pt;}
.h1a{height:12.320000pt;}
.h15{height:24.466667pt;}
.h1b{height:24.480000pt;}
.h16{height:24.498667pt;}
.h19{height:24.512000pt;}
.h17{height:24.626667pt;}
.h1c{height:24.640000pt;}
.h8{height:29.961562pt;}
.h9{height:33.918750pt;}
.h11{height:36.786667pt;}
.h12{height:36.792000pt;}
.h13{height:36.800000pt;}
.hc{height:36.883125pt;}
.h4{height:42.084375pt;}
.h1f{height:43.215000pt;}
.h7{height:44.718750pt;}
.hd{height:47.621250pt;}
.h10{height:49.746667pt;}
.h6{height:52.108438pt;}
.h5{height:52.134375pt;}
.hb{height:57.375000pt;}
.h2{height:62.812500pt;}
.ha{height:64.500000pt;}
.he{height:793.280000pt;}
.hf{height:793.333333pt;}
.h1{height:1122.666667pt;}
.h3{height:1122.706587pt;}
.h0{height:1122.720000pt;}
.w12{width:25.760000pt;}
.w13{width:27.360000pt;}
.w11{width:28.000000pt;}
.w10{width:28.178667pt;}
.w18{width:29.906667pt;}
.wf{width:31.346667pt;}
.w1d{width:31.506667pt;}
.w1f{width:32.306667pt;}
.w14{width:32.320000pt;}
.w1c{width:32.818667pt;}
.w1e{width:35.026667pt;}
.w15{width:35.520000pt;}
.w17{width:36.786667pt;}
.w16{width:38.272000pt;}
.w1b{width:39.826667pt;}
.w19{width:42.386667pt;}
.w1a{width:44.146667pt;}
.w6{width:60.338667pt;}
.wb{width:65.140000pt;}
.wc{width:67.992000pt;}
.wd{width:68.000000pt;}
.w8{width:71.680000pt;}
.we{width:77.106667pt;}
.w9{width:106.912000pt;}
.w7{width:115.360000pt;}
.wa{width:127.186667pt;}
.w5{width:198.906667pt;}
.w2{width:793.260000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w4{width:1122.666667pt;}
.w3{width:1122.720000pt;}
.x0{left:0.000000pt;}
.x3e{left:8.306667pt;}
.x3c{left:9.426667pt;}
.x45{left:10.386667pt;}
.x31{left:11.360000pt;}
.x34{left:12.480000pt;}
.x2d{left:13.746667pt;}
.x2e{left:14.706667pt;}
.x38{left:16.146667pt;}
.x3a{left:17.440000pt;}
.x51{left:18.400000pt;}
.x4a{left:19.520000pt;}
.x54{left:20.786667pt;}
.x53{left:22.906667pt;}
.x4e{left:24.000000pt;}
.x33{left:26.400000pt;}
.x36{left:27.346667pt;}
.x5d{left:29.306667pt;}
.x2b{left:33.146667pt;}
.x4c{left:34.106667pt;}
.x35{left:35.706667pt;}
.x4b{left:37.466667pt;}
.x55{left:38.426667pt;}
.x52{left:41.786667pt;}
.x4d{left:43.866667pt;}
.x5a{left:46.106667pt;}
.x59{left:47.226667pt;}
.x5b{left:55.066667pt;}
.x50{left:60.986667pt;}
.x5c{left:72.826667pt;}
.x4f{left:74.906667pt;}
.x58{left:76.986667pt;}
.x57{left:78.426667pt;}
.x56{left:85.306667pt;}
.xa{left:94.592000pt;}
.x6{left:96.032000pt;}
.x13{left:99.232000pt;}
.xe{left:102.272000pt;}
.x27{left:103.232000pt;}
.x1{left:106.592000pt;}
.x8{left:108.192000pt;}
.x2a{left:111.840000pt;}
.x28{left:218.886667pt;}
.x29{left:229.786667pt;}
.x1c{left:234.566667pt;}
.x1d{left:240.026667pt;}
.x2{left:249.186667pt;}
.x26{left:250.786667pt;}
.x14{left:271.886667pt;}
.x15{left:277.346667pt;}
.xd{left:286.626667pt;}
.x11{left:287.886667pt;}
.x12{left:293.346667pt;}
.x7{left:304.706667pt;}
.x2c{left:312.680000pt;}
.x9{left:319.586667pt;}
.x22{left:332.366667pt;}
.xb{left:335.906667pt;}
.x23{left:343.266667pt;}
.x3d{left:344.840000pt;}
.x1e{left:362.766667pt;}
.x1f{left:368.226667pt;}
.x2f{left:375.106667pt;}
.xc{left:377.506667pt;}
.x5{left:396.706667pt;}
.x3f{left:403.746667pt;}
.x40{left:430.146667pt;}
.x41{left:458.146667pt;}
.x20{left:465.193333pt;}
.x21{left:476.093333pt;}
.x18{left:481.513333pt;}
.x19{left:486.973333pt;}
.x30{left:492.386667pt;}
.x42{left:528.546667pt;}
.x3{left:534.793333pt;}
.x4{left:540.253333pt;}
.x24{left:553.513333pt;}
.x25{left:564.413333pt;}
.x32{left:566.146667pt;}
.x1a{left:593.553333pt;}
.x1b{left:600.133333pt;}
.xf{left:603.313333pt;}
.x43{left:605.066667pt;}
.x10{left:608.773333pt;}
.x44{left:642.506667pt;}
.x16{left:669.233333pt;}
.x17{left:674.693333pt;}
.x46{left:717.546667pt;}
.x47{left:762.346667pt;}
.x37{left:804.106667pt;}
.x48{left:837.733333pt;}
.x39{left:871.333333pt;}
.x49{left:907.013333pt;}
.x3b{left:941.413333pt;}
}




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