
    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_cf4c46486d2402de86f11fd1.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_52945f7043e864a48fd47350.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_eb4ddd8f962669c99dab1623.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_580b2e41fcc7b8e3d83d51f2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_de73bb81027ca9fcccc22e6f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d5ace5bff676a3b68a6378f9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_20edff5a10ab81bb54f11201.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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;}
.m1{transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,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);}
.m2{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:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.lsd{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.103800px;}
.lsb{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.087840px;}
.lsa{letter-spacing:0.126000px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:1.080000px;}
.ls1{letter-spacing:62.550000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,102,153),0 0.015em rgb(0,102,153),0.015em 0 rgb(0,102,153),0 -0.015em  rgb(0,102,153);}
.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,102,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.000000px;}
.ws8{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.640000px;}
.wsf{word-spacing:-17.568000px;}
.wsd{word-spacing:-15.210000px;}
.wsa{word-spacing:-13.626000px;}
.wsc{word-spacing:-13.482000px;}
.ws9{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.356000px;}
.ws6{word-spacing:-12.150000px;}
.ws4{word-spacing:-11.970000px;}
.ws5{word-spacing:-11.866200px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-4.320000px;}
._17{margin-left:-3.288960px;}
._5{margin-left:-2.191680px;}
._0{margin-left:-1.022040px;}
._1{width:1.006560px;}
._4{width:2.558040px;}
._3{width:3.720000px;}
._10{width:4.776000px;}
._b{width:6.552000px;}
._a{width:7.560000px;}
._15{width:8.713440px;}
._9{width:9.936000px;}
._8{width:11.376000px;}
._c{width:12.504000px;}
._11{width:14.088000px;}
._d{width:15.912000px;}
._18{width:16.992000px;}
._6{width:19.296000px;}
._14{width:20.304000px;}
._7{width:21.744000px;}
._19{width:22.752000px;}
._f{width:23.976000px;}
._e{width:25.200000px;}
._13{width:26.640000px;}
._12{width:32.088000px;}
._25{width:33.432000px;}
._27{width:36.312000px;}
._26{width:37.344000px;}
._1e{width:45.144000px;}
._1f{width:46.296000px;}
._2{width:62.922000px;}
._24{width:80.856000px;}
._1d{width:82.872000px;}
._1a{width:153.144000px;}
._1b{width:241.320000px;}
._28{width:301.464000px;}
._1c{width:315.864000px;}
._23{width:330.984000px;}
._20{width:344.664000px;}
._21{width:345.768000px;}
._22{width:1001.496000px;}
._29{width:2570.544000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,153);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.880000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs5{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.420000px;}
.ya{bottom:5.670000px;}
.y7{bottom:7.920000px;}
.y71{bottom:10.710000px;}
.yae{bottom:10.800000px;}
.yb0{bottom:10.980000px;}
.y74{bottom:11.070000px;}
.y72{bottom:22.410000px;}
.y94{bottom:22.770000px;}
.y9{bottom:22.950000px;}
.y8a{bottom:23.040000px;}
.y85{bottom:23.130000px;}
.y5{bottom:25.110000px;}
.y6{bottom:33.030000px;}
.y70{bottom:34.020000px;}
.yac{bottom:34.380000px;}
.y82{bottom:34.740000px;}
.y98{bottom:35.460000px;}
.y8{bottom:40.140000px;}
.y4{bottom:42.390000px;}
.y9a{bottom:47.160000px;}
.y81{bottom:58.050000px;}
.y97{bottom:58.770000px;}
.y9e{bottom:58.800000px;}
.ya1{bottom:59.130000px;}
.yd{bottom:60.480000px;}
.yc{bottom:97.740000px;}
.y48{bottom:128.250000px;}
.yb6{bottom:128.700000px;}
.y91{bottom:136.170000px;}
.yd0{bottom:138.600000px;}
.y2a{bottom:143.730000px;}
.y6c{bottom:148.320000px;}
.y5a{bottom:148.950000px;}
.yb5{bottom:156.330000px;}
.y47{bottom:159.300000px;}
.y90{bottom:167.220000px;}
.yb4{bottom:169.290000px;}
.ycf{bottom:169.560000px;}
.y29{bottom:174.780000px;}
.y6b{bottom:179.370000px;}
.y59{bottom:179.910000px;}
.y46{bottom:190.260000px;}
.yb3{bottom:193.320000px;}
.y8f{bottom:198.270000px;}
.yce{bottom:200.610000px;}
.y28{bottom:205.830000px;}
.y58{bottom:210.960000px;}
.y6a{bottom:215.010000px;}
.yb2{bottom:217.440000px;}
.y45{bottom:221.310000px;}
.y8e{bottom:229.320000px;}
.ycd{bottom:231.660000px;}
.y27{bottom:236.880000px;}
.yb1{bottom:241.470000px;}
.y57{bottom:242.010000px;}
.y69{bottom:251.820000px;}
.yd4{bottom:252.180000px;}
.y44{bottom:252.360000px;}
.y8d{bottom:260.400000px;}
.ycc{bottom:262.740000px;}
.yaf{bottom:265.530000px;}
.y26{bottom:267.960000px;}
.y56{bottom:273.090000px;}
.yd3{bottom:283.260000px;}
.y43{bottom:283.440000px;}
.y8c{bottom:286.860000px;}
.yab{bottom:289.560000px;}
.y68{bottom:289.650000px;}
.ycb{bottom:293.790000px;}
.y89{bottom:298.380000px;}
.y25{bottom:299.010000px;}
.y55{bottom:304.140000px;}
.yad{bottom:313.590000px;}
.y67{bottom:313.950000px;}
.y42{bottom:314.490000px;}
.y8b{bottom:322.410000px;}
.yca{bottom:324.840000px;}
.y24{bottom:330.060000px;}
.y54{bottom:335.190000px;}
.y66{bottom:345.000000px;}
.y41{bottom:345.540000px;}
.y87{bottom:346.440000px;}
.yc9{bottom:355.890000px;}
.y23{bottom:361.110000px;}
.y53{bottom:366.240000px;}
.y88{bottom:370.470000px;}
.yaa{bottom:374.070000px;}
.y65{bottom:376.050000px;}
.y40{bottom:376.590000px;}
.yc8{bottom:386.940000px;}
.y22{bottom:391.980000px;}
.y84{bottom:394.500000px;}
.y52{bottom:397.290000px;}
.ya9{bottom:403.860000px;}
.y64{bottom:407.100000px;}
.y3f{bottom:407.640000px;}
.yc7{bottom:417.990000px;}
.y86{bottom:418.530000px;}
.y21{bottom:423.210000px;}
.y51{bottom:428.340000px;}
.ya8{bottom:434.910000px;}
.y63{bottom:438.150000px;}
.y3e{bottom:438.690000px;}
.y80{bottom:442.650000px;}
.yc6{bottom:449.040000px;}
.y20{bottom:454.260000px;}
.y50{bottom:459.390000px;}
.ya7{bottom:465.960000px;}
.y83{bottom:466.680000px;}
.y62{bottom:469.110000px;}
.yd2{bottom:469.560000px;}
.y3d{bottom:469.740000px;}
.yc5{bottom:480.090000px;}
.y1f{bottom:485.310000px;}
.y4f{bottom:490.440000px;}
.ya6{bottom:497.010000px;}
.y61{bottom:500.160000px;}
.y3c{bottom:500.790000px;}
.yc4{bottom:511.140000px;}
.y1e{bottom:516.360000px;}
.y4e{bottom:521.490000px;}
.y5c{bottom:526.080000px;}
.y7f{bottom:527.160000px;}
.ya5{bottom:528.060000px;}
.y60{bottom:531.210000px;}
.y3b{bottom:531.840000px;}
.yc3{bottom:546.780000px;}
.y4d{bottom:552.540000px;}
.y1d{bottom:554.160000px;}
.ya4{bottom:554.520000px;}
.y7e{bottom:555.600000px;}
.y5f{bottom:562.260000px;}
.yd1{bottom:562.710000px;}
.y3a{bottom:562.890000px;}
.ya0{bottom:566.040000px;}
.y1c{bottom:578.460000px;}
.y4c{bottom:583.590000px;}
.y7d{bottom:585.390000px;}
.y9d{bottom:590.070000px;}
.y5e{bottom:593.310000px;}
.y39{bottom:593.940000px;}
.ya3{bottom:614.100000px;}
.y4b{bottom:614.640000px;}
.y1b{bottom:616.260000px;}
.y7c{bottom:616.440000px;}
.y5d{bottom:624.540000px;}
.y38{bottom:624.810000px;}
.y5b{bottom:624.990000px;}
.ya2{bottom:638.160000px;}
.y1a{bottom:640.590000px;}
.y4a{bottom:645.720000px;}
.y7b{bottom:647.520000px;}
.y37{bottom:656.070000px;}
.y9f{bottom:662.190000px;}
.yc1{bottom:676.770000px;}
.y19{bottom:678.390000px;}
.y7a{bottom:678.570000px;}
.y49{bottom:681.360000px;}
.y96{bottom:686.220000px;}
.y36{bottom:687.120000px;}
.y18{bottom:702.600000px;}
.yc0{bottom:707.820000px;}
.y79{bottom:709.620000px;}
.y9c{bottom:710.250000px;}
.y35{bottom:718.170000px;}
.y17{bottom:733.650000px;}
.y9b{bottom:734.280000px;}
.ybf{bottom:738.870000px;}
.y78{bottom:740.670000px;}
.y34{bottom:749.220000px;}
.y99{bottom:758.310000px;}
.y16{bottom:764.700000px;}
.y77{bottom:767.130000px;}
.ybe{bottom:769.920000px;}
.y33{bottom:780.270000px;}
.y93{bottom:782.430000px;}
.y76{bottom:788.190000px;}
.y15{bottom:795.750000px;}
.y75{bottom:799.710000px;}
.ybd{bottom:800.970000px;}
.yc2{bottom:805.560000px;}
.y95{bottom:806.460000px;}
.y32{bottom:811.320000px;}
.y73{bottom:823.740000px;}
.y14{bottom:826.800000px;}
.ybc{bottom:832.020000px;}
.y31{bottom:842.370000px;}
.y92{bottom:843.630000px;}
.y6f{bottom:847.860000px;}
.y13{bottom:860.010000px;}
.ybb{bottom:863.070000px;}
.y30{bottom:873.420000px;}
.yba{bottom:894.120000px;}
.y12{bottom:896.190000px;}
.y2f{bottom:904.470000px;}
.y6e{bottom:908.340000px;}
.yb9{bottom:925.170000px;}
.y11{bottom:932.460000px;}
.y2e{bottom:935.520000px;}
.y6d{bottom:936.780000px;}
.yb8{bottom:956.220000px;}
.y2d{bottom:966.570000px;}
.y10{bottom:968.640000px;}
.yb7{bottom:991.860000px;}
.y2c{bottom:997.620000px;}
.yf{bottom:1002.750000px;}
.y2b{bottom:1028.700000px;}
.ye{bottom:1031.310000px;}
.yb{bottom:1045.260000px;}
.y3{bottom:1072.260000px;}
.y1{bottom:1128.420000px;}
.h2{height:17.190000px;}
.h15{height:23.220000px;}
.h1c{height:23.250000px;}
.h12{height:23.310000px;}
.h1b{height:23.340000px;}
.h10{height:46.530000px;}
.ha{height:46.991602px;}
.h17{height:47.250000px;}
.h16{height:47.340000px;}
.h13{height:52.998047px;}
.h11{height:54.421875px;}
.h4{height:56.160000px;}
.h3{height:59.004492px;}
.hc{height:64.546875px;}
.hf{height:64.657617px;}
.h6{height:65.526152px;}
.he{height:66.394687px;}
.h14{height:70.560000px;}
.h7{height:70.664062px;}
.hb{height:72.562500px;}
.h9{height:73.991602px;}
.h5{height:77.505120px;}
.h8{height:84.535312px;}
.h18{height:95.400000px;}
.h19{height:95.430000px;}
.hd{height:96.870938px;}
.h1a{height:119.460000px;}
.h1{height:1188.000000px;}
.h0{height:1188.180000px;}
.w15{width:61.380000px;}
.w26{width:65.430000px;}
.w24{width:65.700000px;}
.w1b{width:68.970000px;}
.w23{width:69.690000px;}
.w1a{width:70.020000px;}
.w27{width:76.350000px;}
.w25{width:76.680000px;}
.w28{width:80.460000px;}
.w1c{width:85.050000px;}
.w13{width:85.860000px;}
.w4{width:86.430000px;}
.w7{width:90.090000px;}
.w12{width:93.330000px;}
.w1e{width:93.420000px;}
.wf{width:96.780000px;}
.w1d{width:98.190000px;}
.w11{width:101.100000px;}
.w10{width:105.210000px;}
.w6{width:118.830000px;}
.w14{width:129.630000px;}
.w20{width:136.110000px;}
.w17{width:139.800000px;}
.w21{width:142.830000px;}
.w19{width:149.790000px;}
.w18{width:155.880000px;}
.w22{width:157.530000px;}
.wb{width:161.310000px;}
.wa{width:161.370000px;}
.w9{width:161.400000px;}
.we{width:180.000000px;}
.wc{width:191.820000px;}
.w16{width:192.330000px;}
.wd{width:207.030000px;}
.w3{width:208.920000px;}
.w1f{width:247.530000px;}
.w5{width:469.830000px;}
.w2{width:556.260000px;}
.w1{width:918.000000px;}
.w8{width:918.179986px;}
.w0{width:918.180000px;}
.x0{left:0.000000px;}
.x38{left:4.860000px;}
.x2a{left:7.770000px;}
.x8{left:13.320000px;}
.x64{left:17.640000px;}
.x53{left:19.260000px;}
.x3f{left:23.130000px;}
.x7{left:25.110000px;}
.x3c{left:28.260000px;}
.x65{left:31.410000px;}
.x51{left:32.580000px;}
.x39{left:34.200000px;}
.x41{left:36.570000px;}
.x40{left:38.730000px;}
.x42{left:39.990000px;}
.x3b{left:41.160000px;}
.x4{left:43.110000px;}
.xa{left:45.000000px;}
.x3{left:46.440000px;}
.x2b{left:49.950000px;}
.x2d{left:51.660000px;}
.x25{left:52.950000px;}
.x28{left:55.530000px;}
.x27{left:57.240000px;}
.x54{left:59.670000px;}
.x4b{left:62.010000px;}
.x36{left:63.900000px;}
.x2e{left:68.850000px;}
.x4d{left:70.020000px;}
.x4f{left:71.100000px;}
.x2c{left:72.270000px;}
.x1{left:76.500000px;}
.x34{left:78.390000px;}
.x24{left:80.670000px;}
.x55{left:81.810000px;}
.x14{left:85.049986px;}
.x12{left:89.459986px;}
.x32{left:95.970000px;}
.x10{left:97.379986px;}
.x22{left:112.499986px;}
.x5e{left:116.010000px;}
.x31{left:120.150000px;}
.x21{left:122.579986px;}
.x48{left:128.249986px;}
.x5c{left:131.579986px;}
.x5d{left:133.019986px;}
.x23{left:135.270000px;}
.x49{left:139.080000px;}
.x6{left:148.680000px;}
.x56{left:150.509986px;}
.x57{left:152.129986px;}
.x5{left:162.930000px;}
.xd{left:204.149986px;}
.x6f{left:223.499986px;}
.x70{left:225.119986px;}
.x52{left:237.990000px;}
.x3e{left:250.590000px;}
.x76{left:264.719986px;}
.x26{left:297.390000px;}
.x33{left:312.780000px;}
.x6d{left:320.519986px;}
.x6e{left:321.869986px;}
.x68{left:325.379986px;}
.x69{left:326.999986px;}
.x4a{left:332.130000px;}
.x58{left:338.969986px;}
.x59{left:340.049986px;}
.x78{left:352.829986px;}
.x6a{left:358.859986px;}
.x1a{left:362.459986px;}
.x5f{left:364.260000px;}
.x77{left:376.589986px;}
.x20{left:377.759986px;}
.x66{left:382.619986px;}
.x13{left:386.489986px;}
.x2f{left:391.079986px;}
.x67{left:392.429986px;}
.x1d{left:397.739986px;}
.x50{left:402.960000px;}
.x45{left:405.569986px;}
.x30{left:409.169986px;}
.x3a{left:418.710000px;}
.x43{left:420.689986px;}
.x44{left:422.759986px;}
.x71{left:424.379986px;}
.x11{left:425.939986px;}
.x72{left:427.109986px;}
.x6b{left:429.269986px;}
.x6c{left:431.879986px;}
.x61{left:434.670000px;}
.x75{left:451.589986px;}
.xc{left:455.369986px;}
.xf{left:459.149986px;}
.x4c{left:472.740000px;}
.x17{left:479.399986px;}
.x18{left:481.469986px;}
.x5a{left:498.749986px;}
.x5b{left:499.919986px;}
.x60{left:501.090000px;}
.x73{left:506.039986px;}
.x74{left:508.739986px;}
.x35{left:520.530000px;}
.x1b{left:554.909986px;}
.x1c{left:558.869986px;}
.x62{left:578.490000px;}
.x3d{left:614.670000px;}
.x29{left:621.600000px;}
.x4e{left:629.430000px;}
.x2{left:632.760000px;}
.x19{left:635.099986px;}
.x15{left:644.909986px;}
.x16{left:646.619986px;}
.x46{left:690.089986px;}
.x47{left:691.709986px;}
.x37{left:701.250000px;}
.x63{left:721.710000px;}
.xe{left:726.209986px;}
.x9{left:751.590000px;}
.x1e{left:774.809986px;}
.x1f{left:776.249986px;}
.xb{left:833.039986px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.092267pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.078080pt;}
.lsa{letter-spacing:0.112000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.960000pt;}
.ls1{letter-spacing:55.600000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws8{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.680000pt;}
.wsf{word-spacing:-15.616000pt;}
.wsd{word-spacing:-13.520000pt;}
.wsa{word-spacing:-12.112000pt;}
.wsc{word-spacing:-11.984000pt;}
.ws9{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.872000pt;}
.ws6{word-spacing:-10.800000pt;}
.ws4{word-spacing:-10.640000pt;}
.ws5{word-spacing:-10.547733pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-3.840000pt;}
._17{margin-left:-2.923520pt;}
._5{margin-left:-1.948160pt;}
._0{margin-left:-0.908480pt;}
._1{width:0.894720pt;}
._4{width:2.273813pt;}
._3{width:3.306667pt;}
._10{width:4.245333pt;}
._b{width:5.824000pt;}
._a{width:6.720000pt;}
._15{width:7.745280pt;}
._9{width:8.832000pt;}
._8{width:10.112000pt;}
._c{width:11.114667pt;}
._11{width:12.522667pt;}
._d{width:14.144000pt;}
._18{width:15.104000pt;}
._6{width:17.152000pt;}
._14{width:18.048000pt;}
._7{width:19.328000pt;}
._19{width:20.224000pt;}
._f{width:21.312000pt;}
._e{width:22.400000pt;}
._13{width:23.680000pt;}
._12{width:28.522667pt;}
._25{width:29.717333pt;}
._27{width:32.277333pt;}
._26{width:33.194667pt;}
._1e{width:40.128000pt;}
._1f{width:41.152000pt;}
._2{width:55.930667pt;}
._24{width:71.872000pt;}
._1d{width:73.664000pt;}
._1a{width:136.128000pt;}
._1b{width:214.506667pt;}
._28{width:267.968000pt;}
._1c{width:280.768000pt;}
._23{width:294.208000pt;}
._20{width:306.368000pt;}
._21{width:307.349333pt;}
._22{width:890.218667pt;}
._29{width:2284.928000pt;}
.fs4{font-size:42.560000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs5{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.040000pt;}
.ya{bottom:5.040000pt;}
.y7{bottom:7.040000pt;}
.y71{bottom:9.520000pt;}
.yae{bottom:9.600000pt;}
.yb0{bottom:9.760000pt;}
.y74{bottom:9.840000pt;}
.y72{bottom:19.920000pt;}
.y94{bottom:20.240000pt;}
.y9{bottom:20.400000pt;}
.y8a{bottom:20.480000pt;}
.y85{bottom:20.560000pt;}
.y5{bottom:22.320000pt;}
.y6{bottom:29.360000pt;}
.y70{bottom:30.240000pt;}
.yac{bottom:30.560000pt;}
.y82{bottom:30.880000pt;}
.y98{bottom:31.520000pt;}
.y8{bottom:35.680000pt;}
.y4{bottom:37.680000pt;}
.y9a{bottom:41.920000pt;}
.y81{bottom:51.600000pt;}
.y97{bottom:52.240000pt;}
.y9e{bottom:52.266667pt;}
.ya1{bottom:52.560000pt;}
.yd{bottom:53.760000pt;}
.yc{bottom:86.880000pt;}
.y48{bottom:114.000000pt;}
.yb6{bottom:114.400000pt;}
.y91{bottom:121.040000pt;}
.yd0{bottom:123.200000pt;}
.y2a{bottom:127.760000pt;}
.y6c{bottom:131.840000pt;}
.y5a{bottom:132.400000pt;}
.yb5{bottom:138.960000pt;}
.y47{bottom:141.600000pt;}
.y90{bottom:148.640000pt;}
.yb4{bottom:150.480000pt;}
.ycf{bottom:150.720000pt;}
.y29{bottom:155.360000pt;}
.y6b{bottom:159.440000pt;}
.y59{bottom:159.920000pt;}
.y46{bottom:169.120000pt;}
.yb3{bottom:171.840000pt;}
.y8f{bottom:176.240000pt;}
.yce{bottom:178.320000pt;}
.y28{bottom:182.960000pt;}
.y58{bottom:187.520000pt;}
.y6a{bottom:191.120000pt;}
.yb2{bottom:193.280000pt;}
.y45{bottom:196.720000pt;}
.y8e{bottom:203.840000pt;}
.ycd{bottom:205.920000pt;}
.y27{bottom:210.560000pt;}
.yb1{bottom:214.640000pt;}
.y57{bottom:215.120000pt;}
.y69{bottom:223.840000pt;}
.yd4{bottom:224.160000pt;}
.y44{bottom:224.320000pt;}
.y8d{bottom:231.466667pt;}
.ycc{bottom:233.546667pt;}
.yaf{bottom:236.026667pt;}
.y26{bottom:238.186667pt;}
.y56{bottom:242.746667pt;}
.yd3{bottom:251.786667pt;}
.y43{bottom:251.946667pt;}
.y8c{bottom:254.986667pt;}
.yab{bottom:257.386667pt;}
.y68{bottom:257.466667pt;}
.ycb{bottom:261.146667pt;}
.y89{bottom:265.226667pt;}
.y25{bottom:265.786667pt;}
.y55{bottom:270.346667pt;}
.yad{bottom:278.746667pt;}
.y67{bottom:279.066667pt;}
.y42{bottom:279.546667pt;}
.y8b{bottom:286.586667pt;}
.yca{bottom:288.746667pt;}
.y24{bottom:293.386667pt;}
.y54{bottom:297.946667pt;}
.y66{bottom:306.666667pt;}
.y41{bottom:307.146667pt;}
.y87{bottom:307.946667pt;}
.yc9{bottom:316.346667pt;}
.y23{bottom:320.986667pt;}
.y53{bottom:325.546667pt;}
.y88{bottom:329.306667pt;}
.yaa{bottom:332.506667pt;}
.y65{bottom:334.266667pt;}
.y40{bottom:334.746667pt;}
.yc8{bottom:343.946667pt;}
.y22{bottom:348.426667pt;}
.y84{bottom:350.666667pt;}
.y52{bottom:353.146667pt;}
.ya9{bottom:358.986667pt;}
.y64{bottom:361.866667pt;}
.y3f{bottom:362.346667pt;}
.yc7{bottom:371.546667pt;}
.y86{bottom:372.026667pt;}
.y21{bottom:376.186667pt;}
.y51{bottom:380.746667pt;}
.ya8{bottom:386.586667pt;}
.y63{bottom:389.466667pt;}
.y3e{bottom:389.946667pt;}
.y80{bottom:393.466667pt;}
.yc6{bottom:399.146667pt;}
.y20{bottom:403.786667pt;}
.y50{bottom:408.346667pt;}
.ya7{bottom:414.186667pt;}
.y83{bottom:414.826667pt;}
.y62{bottom:416.986667pt;}
.yd2{bottom:417.386667pt;}
.y3d{bottom:417.546667pt;}
.yc5{bottom:426.746667pt;}
.y1f{bottom:431.386667pt;}
.y4f{bottom:435.946667pt;}
.ya6{bottom:441.786667pt;}
.y61{bottom:444.586667pt;}
.y3c{bottom:445.146667pt;}
.yc4{bottom:454.346667pt;}
.y1e{bottom:458.986667pt;}
.y4e{bottom:463.546667pt;}
.y5c{bottom:467.626667pt;}
.y7f{bottom:468.586667pt;}
.ya5{bottom:469.386667pt;}
.y60{bottom:472.186667pt;}
.y3b{bottom:472.746667pt;}
.yc3{bottom:486.026667pt;}
.y4d{bottom:491.146667pt;}
.y1d{bottom:492.586667pt;}
.ya4{bottom:492.906667pt;}
.y7e{bottom:493.866667pt;}
.y5f{bottom:499.786667pt;}
.yd1{bottom:500.186667pt;}
.y3a{bottom:500.346667pt;}
.ya0{bottom:503.146667pt;}
.y1c{bottom:514.186667pt;}
.y4c{bottom:518.746667pt;}
.y7d{bottom:520.346667pt;}
.y9d{bottom:524.506667pt;}
.y5e{bottom:527.386667pt;}
.y39{bottom:527.946667pt;}
.ya3{bottom:545.866667pt;}
.y4b{bottom:546.346667pt;}
.y1b{bottom:547.786667pt;}
.y7c{bottom:547.946667pt;}
.y5d{bottom:555.146667pt;}
.y38{bottom:555.386667pt;}
.y5b{bottom:555.546667pt;}
.ya2{bottom:567.253333pt;}
.y1a{bottom:569.413333pt;}
.y4a{bottom:573.973333pt;}
.y7b{bottom:575.573333pt;}
.y37{bottom:583.173333pt;}
.y9f{bottom:588.613333pt;}
.yc1{bottom:601.573333pt;}
.y19{bottom:603.013333pt;}
.y7a{bottom:603.173333pt;}
.y49{bottom:605.653333pt;}
.y96{bottom:609.973333pt;}
.y36{bottom:610.773333pt;}
.y18{bottom:624.533333pt;}
.yc0{bottom:629.173333pt;}
.y79{bottom:630.773333pt;}
.y9c{bottom:631.333333pt;}
.y35{bottom:638.373333pt;}
.y17{bottom:652.133333pt;}
.y9b{bottom:652.693333pt;}
.ybf{bottom:656.773333pt;}
.y78{bottom:658.373333pt;}
.y34{bottom:665.973333pt;}
.y99{bottom:674.053333pt;}
.y16{bottom:679.733333pt;}
.y77{bottom:681.893333pt;}
.ybe{bottom:684.373333pt;}
.y33{bottom:693.573333pt;}
.y93{bottom:695.493333pt;}
.y76{bottom:700.613333pt;}
.y15{bottom:707.333333pt;}
.y75{bottom:710.853333pt;}
.ybd{bottom:711.973333pt;}
.yc2{bottom:716.053333pt;}
.y95{bottom:716.853333pt;}
.y32{bottom:721.173333pt;}
.y73{bottom:732.213333pt;}
.y14{bottom:734.933333pt;}
.ybc{bottom:739.573333pt;}
.y31{bottom:748.773333pt;}
.y92{bottom:749.893333pt;}
.y6f{bottom:753.653333pt;}
.y13{bottom:764.453333pt;}
.ybb{bottom:767.173333pt;}
.y30{bottom:776.373333pt;}
.yba{bottom:794.773333pt;}
.y12{bottom:796.613333pt;}
.y2f{bottom:803.973333pt;}
.y6e{bottom:807.413333pt;}
.yb9{bottom:822.373333pt;}
.y11{bottom:828.853333pt;}
.y2e{bottom:831.573333pt;}
.y6d{bottom:832.693333pt;}
.yb8{bottom:849.973333pt;}
.y2d{bottom:859.173333pt;}
.y10{bottom:861.013333pt;}
.yb7{bottom:881.653333pt;}
.y2c{bottom:886.773333pt;}
.yf{bottom:891.333333pt;}
.y2b{bottom:914.400000pt;}
.ye{bottom:916.720000pt;}
.yb{bottom:929.120000pt;}
.y3{bottom:953.120000pt;}
.y1{bottom:1003.040000pt;}
.h2{height:15.280000pt;}
.h15{height:20.640000pt;}
.h1c{height:20.666667pt;}
.h12{height:20.720000pt;}
.h1b{height:20.746667pt;}
.h10{height:41.360000pt;}
.ha{height:41.770312pt;}
.h17{height:42.000000pt;}
.h16{height:42.080000pt;}
.h13{height:47.109375pt;}
.h11{height:48.375000pt;}
.h4{height:49.920000pt;}
.h3{height:52.448437pt;}
.hc{height:57.375000pt;}
.hf{height:57.473437pt;}
.h6{height:58.245469pt;}
.he{height:59.017500pt;}
.h14{height:62.720000pt;}
.h7{height:62.812500pt;}
.hb{height:64.500000pt;}
.h9{height:65.770312pt;}
.h5{height:68.893440pt;}
.h8{height:75.142500pt;}
.h18{height:84.800000pt;}
.h19{height:84.826667pt;}
.hd{height:86.107500pt;}
.h1a{height:106.186667pt;}
.h1{height:1056.000000pt;}
.h0{height:1056.160000pt;}
.w15{width:54.560000pt;}
.w26{width:58.160000pt;}
.w24{width:58.400000pt;}
.w1b{width:61.306667pt;}
.w23{width:61.946667pt;}
.w1a{width:62.240000pt;}
.w27{width:67.866667pt;}
.w25{width:68.160000pt;}
.w28{width:71.520000pt;}
.w1c{width:75.600000pt;}
.w13{width:76.320000pt;}
.w4{width:76.826667pt;}
.w7{width:80.080000pt;}
.w12{width:82.960000pt;}
.w1e{width:83.040000pt;}
.wf{width:86.026667pt;}
.w1d{width:87.280000pt;}
.w11{width:89.866667pt;}
.w10{width:93.520000pt;}
.w6{width:105.626667pt;}
.w14{width:115.226667pt;}
.w20{width:120.986667pt;}
.w17{width:124.266667pt;}
.w21{width:126.960000pt;}
.w19{width:133.146667pt;}
.w18{width:138.560000pt;}
.w22{width:140.026667pt;}
.wb{width:143.386667pt;}
.wa{width:143.440000pt;}
.w9{width:143.466667pt;}
.we{width:160.000000pt;}
.wc{width:170.506667pt;}
.w16{width:170.960000pt;}
.wd{width:184.026667pt;}
.w3{width:185.706667pt;}
.w1f{width:220.026667pt;}
.w5{width:417.626667pt;}
.w2{width:494.453333pt;}
.w1{width:816.000000pt;}
.w8{width:816.159988pt;}
.w0{width:816.160000pt;}
.x0{left:0.000000pt;}
.x38{left:4.320000pt;}
.x2a{left:6.906667pt;}
.x8{left:11.840000pt;}
.x64{left:15.680000pt;}
.x53{left:17.120000pt;}
.x3f{left:20.560000pt;}
.x7{left:22.320000pt;}
.x3c{left:25.120000pt;}
.x65{left:27.920000pt;}
.x51{left:28.960000pt;}
.x39{left:30.400000pt;}
.x41{left:32.506667pt;}
.x40{left:34.426667pt;}
.x42{left:35.546667pt;}
.x3b{left:36.586667pt;}
.x4{left:38.320000pt;}
.xa{left:40.000000pt;}
.x3{left:41.280000pt;}
.x2b{left:44.400000pt;}
.x2d{left:45.920000pt;}
.x25{left:47.066667pt;}
.x28{left:49.360000pt;}
.x27{left:50.880000pt;}
.x54{left:53.040000pt;}
.x4b{left:55.120000pt;}
.x36{left:56.800000pt;}
.x2e{left:61.200000pt;}
.x4d{left:62.240000pt;}
.x4f{left:63.200000pt;}
.x2c{left:64.240000pt;}
.x1{left:68.000000pt;}
.x34{left:69.680000pt;}
.x24{left:71.706667pt;}
.x55{left:72.720000pt;}
.x14{left:75.599988pt;}
.x12{left:79.519988pt;}
.x32{left:85.306667pt;}
.x10{left:86.559988pt;}
.x22{left:99.999988pt;}
.x5e{left:103.120000pt;}
.x31{left:106.800000pt;}
.x21{left:108.959988pt;}
.x48{left:113.999988pt;}
.x5c{left:116.959988pt;}
.x5d{left:118.239988pt;}
.x23{left:120.240000pt;}
.x49{left:123.626667pt;}
.x6{left:132.160000pt;}
.x56{left:133.786655pt;}
.x57{left:135.226655pt;}
.x5{left:144.826667pt;}
.xd{left:181.466655pt;}
.x6f{left:198.666655pt;}
.x70{left:200.106655pt;}
.x52{left:211.546667pt;}
.x3e{left:222.746667pt;}
.x76{left:235.306655pt;}
.x26{left:264.346667pt;}
.x33{left:278.026667pt;}
.x6d{left:284.906655pt;}
.x6e{left:286.106655pt;}
.x68{left:289.226655pt;}
.x69{left:290.666655pt;}
.x4a{left:295.226667pt;}
.x58{left:301.306655pt;}
.x59{left:302.266655pt;}
.x78{left:313.626655pt;}
.x6a{left:318.986655pt;}
.x1a{left:322.186655pt;}
.x5f{left:323.786667pt;}
.x77{left:334.746655pt;}
.x20{left:335.786655pt;}
.x66{left:340.106655pt;}
.x13{left:343.546655pt;}
.x2f{left:347.626655pt;}
.x67{left:348.826655pt;}
.x1d{left:353.546655pt;}
.x50{left:358.186667pt;}
.x45{left:360.506655pt;}
.x30{left:363.706655pt;}
.x3a{left:372.186667pt;}
.x43{left:373.946655pt;}
.x44{left:375.786655pt;}
.x71{left:377.226655pt;}
.x11{left:378.613321pt;}
.x72{left:379.653321pt;}
.x6b{left:381.573321pt;}
.x6c{left:383.893321pt;}
.x61{left:386.373333pt;}
.x75{left:401.413321pt;}
.xc{left:404.773321pt;}
.xf{left:408.133321pt;}
.x4c{left:420.213333pt;}
.x17{left:426.133321pt;}
.x18{left:427.973321pt;}
.x5a{left:443.333321pt;}
.x5b{left:444.373321pt;}
.x60{left:445.413333pt;}
.x73{left:449.813321pt;}
.x74{left:452.213321pt;}
.x35{left:462.693333pt;}
.x1b{left:493.253321pt;}
.x1c{left:496.773321pt;}
.x62{left:514.213333pt;}
.x3d{left:546.373333pt;}
.x29{left:552.533333pt;}
.x4e{left:559.493333pt;}
.x2{left:562.453333pt;}
.x19{left:564.533321pt;}
.x15{left:573.253321pt;}
.x16{left:574.773321pt;}
.x46{left:613.413321pt;}
.x47{left:614.853321pt;}
.x37{left:623.333333pt;}
.x63{left:641.520000pt;}
.xe{left:645.519988pt;}
.x9{left:668.080000pt;}
.x1e{left:688.719988pt;}
.x1f{left:689.999988pt;}
.xb{left:740.479988pt;}
}




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