
    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_ead707f4e49ac9db80c2a5c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_0cee67f5c8fcf6427e870116.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_b5f2bfeb0129f723b9762f52.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_cd500ae2f8a376547226554f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_0dfef3ce3009da4a46e6be21.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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:-18.973476px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls1e{letter-spacing:-0.522000px;}
.ls2d{letter-spacing:-0.396000px;}
.ls26{letter-spacing:-0.360496px;}
.ls6{letter-spacing:-0.348600px;}
.lsf{letter-spacing:-0.342000px;}
.ls19{letter-spacing:-0.324000px;}
.ls12{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.252000px;}
.ls2e{letter-spacing:-0.227682px;}
.ls32{letter-spacing:-0.216600px;}
.ls28{letter-spacing:-0.198000px;}
.ls34{letter-spacing:-0.174000px;}
.lsd{letter-spacing:-0.166800px;}
.ls22{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.126000px;}
.ls31{letter-spacing:-0.092400px;}
.ls10{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.018000px;}
.ls33{letter-spacing:0.020880px;}
.ls4{letter-spacing:0.036000px;}
.ls21{letter-spacing:0.037947px;}
.ls0{letter-spacing:0.070800px;}
.ls1b{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.126000px;}
.ls1c{letter-spacing:0.132814px;}
.ls18{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.151788px;}
.ls17{letter-spacing:0.162000px;}
.ls14{letter-spacing:0.198000px;}
.ls2f{letter-spacing:0.202800px;}
.ls24{letter-spacing:0.216000px;}
.lse{letter-spacing:0.229200px;}
.ls25{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.269280px;}
.ls1d{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.300960px;}
.ls7{letter-spacing:0.301200px;}
.ls2c{letter-spacing:0.305400px;}
.lsa{letter-spacing:0.306000px;}
.ls2a{letter-spacing:0.324000px;}
.ls23{letter-spacing:0.378000px;}
.ls11{letter-spacing:0.450000px;}
.ls13{letter-spacing:0.594000px;}
.ls16{letter-spacing:0.666000px;}
.lsc{letter-spacing:0.756000px;}
.ls2b{letter-spacing:0.796886px;}
.ls8{letter-spacing:0.918000px;}
.ls27{letter-spacing:1.044000px;}
.ls3{letter-spacing:2.412000px;}
.ls20{letter-spacing:3.618000px;}
.ls30{letter-spacing:4.625280px;}
.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;}
}
.wsf{word-spacing:-17.967882px;}
.ws11{word-spacing:-17.816094px;}
.ws9{word-spacing:-17.496000px;}
.ws3{word-spacing:-17.208000px;}
.ws12{word-spacing:-17.172000px;}
.wsb{word-spacing:-17.100000px;}
.wse{word-spacing:-17.046000px;}
.ws10{word-spacing:-17.010000px;}
.ws6{word-spacing:-16.938000px;}
.ws16{word-spacing:-16.920000px;}
.wsc{word-spacing:-16.902000px;}
.ws8{word-spacing:-16.866000px;}
.ws4{word-spacing:-16.776000px;}
.ws14{word-spacing:-16.758000px;}
.ws15{word-spacing:-16.704000px;}
.ws13{word-spacing:-16.650000px;}
.wsa{word-spacing:-16.632000px;}
.wsd{word-spacing:-16.578000px;}
.ws7{word-spacing:-16.560000px;}
.ws19{word-spacing:-15.915711px;}
.ws1{word-spacing:-15.400320px;}
.ws18{word-spacing:-15.006720px;}
.ws5{word-spacing:-12.002640px;}
.ws0{word-spacing:-11.820840px;}
.ws17{word-spacing:-4.870491px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-5.737224px;}
._f{margin-left:-4.536000px;}
._7{margin-left:-3.294000px;}
._c{margin-left:-2.160000px;}
._1{margin-left:-1.109520px;}
._0{width:1.004160px;}
._4{width:2.749680px;}
._3{width:4.382640px;}
._b{width:5.440320px;}
._2{width:6.560640px;}
._8{width:7.750800px;}
._9{width:9.288000px;}
._a{width:10.692000px;}
._5{width:12.204720px;}
._6{width:13.251360px;}
._11{width:15.007440px;}
._10{width:18.360000px;}
._14{width:20.484000px;}
._15{width:21.800524px;}
._12{width:53.514000px;}
._13{width:56.294304px;}
._17{width:57.348000px;}
._16{width:59.766450px;}
._d{width:157.429440px;}
._e{width:360.250560px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs7{font-size:37.946952px;}
.fs0{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:50.848916px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:56.920429px;}
.fs1{font-size:66.240000px;}
.yac{bottom:-15.270000px;}
.y0{bottom:0.000000px;}
.y4{bottom:77.616000px;}
.y3{bottom:92.016000px;}
.y78{bottom:130.536000px;}
.ya9{bottom:139.176000px;}
.y61{bottom:144.036000px;}
.y8c{bottom:144.756000px;}
.ya4{bottom:148.176000px;}
.ya8{bottom:153.570000px;}
.y38{bottom:153.930000px;}
.y77{bottom:154.830000px;}
.ya7{bottom:168.150000px;}
.y60{bottom:168.330000px;}
.y8b{bottom:169.230000px;}
.ya3{bottom:172.650000px;}
.y37{bottom:178.410000px;}
.y76{bottom:179.310000px;}
.ya6{bottom:182.550000px;}
.y5f{bottom:192.810000px;}
.y8a{bottom:193.710000px;}
.ya2{bottom:197.130000px;}
.ya5{bottom:201.630000px;}
.y36{bottom:202.890000px;}
.y75{bottom:203.790000px;}
.yaa{bottom:215.490000px;}
.y5e{bottom:217.290000px;}
.y89{bottom:218.190000px;}
.ya1{bottom:221.430000px;}
.y62{bottom:221.790000px;}
.y35{bottom:227.190000px;}
.y74{bottom:228.270000px;}
.y5d{bottom:241.770000px;}
.y88{bottom:242.490000px;}
.ya0{bottom:245.910000px;}
.yab{bottom:249.840000px;}
.y34{bottom:251.670000px;}
.y73{bottom:252.750000px;}
.y5c{bottom:266.250000px;}
.y87{bottom:266.970000px;}
.y9f{bottom:270.390000px;}
.y33{bottom:276.150000px;}
.y72{bottom:277.050000px;}
.y5b{bottom:290.550000px;}
.y86{bottom:291.450000px;}
.y9e{bottom:294.870000px;}
.y63{bottom:295.050000px;}
.y31{bottom:300.630000px;}
.y71{bottom:301.530000px;}
.y32{bottom:305.130000px;}
.y5a{bottom:315.030000px;}
.y85{bottom:315.930000px;}
.y9d{bottom:319.350000px;}
.y30{bottom:324.930000px;}
.y70{bottom:326.010000px;}
.y59{bottom:339.555000px;}
.y84{bottom:340.455000px;}
.y9c{bottom:343.695000px;}
.y2f{bottom:349.455000px;}
.y6f{bottom:350.535000px;}
.y58{bottom:364.035000px;}
.y83{bottom:364.755000px;}
.y9b{bottom:368.175000px;}
.y2e{bottom:373.935000px;}
.y6e{bottom:375.015000px;}
.y57{bottom:388.515000px;}
.y82{bottom:389.235000px;}
.y9a{bottom:392.655000px;}
.y2d{bottom:398.415000px;}
.y6d{bottom:399.315000px;}
.y56{bottom:412.815000px;}
.y81{bottom:413.715000px;}
.y99{bottom:417.135000px;}
.y2b{bottom:422.895000px;}
.y6c{bottom:423.795000px;}
.y2c{bottom:427.395000px;}
.y55{bottom:437.295000px;}
.y80{bottom:438.195000px;}
.y98{bottom:441.615000px;}
.y2a{bottom:447.195000px;}
.y6b{bottom:448.275000px;}
.y54{bottom:461.775000px;}
.y7f{bottom:462.675000px;}
.y97{bottom:465.915000px;}
.y29{bottom:471.675000px;}
.y6a{bottom:472.755000px;}
.y53{bottom:486.255000px;}
.y7e{bottom:486.975000px;}
.y96{bottom:490.395000px;}
.y28{bottom:496.155000px;}
.y68{bottom:497.235000px;}
.y69{bottom:501.735000px;}
.y52{bottom:510.555000px;}
.y7d{bottom:511.455000px;}
.y95{bottom:514.875000px;}
.y27{bottom:520.635000px;}
.y67{bottom:521.535000px;}
.y51{bottom:535.035000px;}
.y7c{bottom:535.935000px;}
.y94{bottom:539.355000px;}
.y26{bottom:545.115000px;}
.y66{bottom:546.015000px;}
.y50{bottom:559.515000px;}
.y7b{bottom:560.415000px;}
.y93{bottom:563.655000px;}
.y25{bottom:569.415000px;}
.y65{bottom:570.495000px;}
.y4f{bottom:583.995000px;}
.y7a{bottom:584.895000px;}
.y92{bottom:588.135000px;}
.y64{bottom:592.095000px;}
.y24{bottom:593.895000px;}
.y79{bottom:606.525000px;}
.y4e{bottom:608.505000px;}
.y91{bottom:612.645000px;}
.y23{bottom:618.405000px;}
.yd2{bottom:627.045000px;}
.y4d{bottom:632.805000px;}
.y90{bottom:637.125000px;}
.yd1{bottom:641.445000px;}
.y22{bottom:642.885000px;}
.yd0{bottom:656.025000px;}
.y4c{bottom:657.285000px;}
.y8e{bottom:661.605000px;}
.y8f{bottom:666.105000px;}
.y21{bottom:667.365000px;}
.ycf{bottom:670.425000px;}
.yce{bottom:674.925000px;}
.y4b{bottom:681.765000px;}
.y8d{bottom:683.205000px;}
.ycd{bottom:685.005000px;}
.y20{bottom:691.665000px;}
.ycc{bottom:699.405000px;}
.y4a{bottom:706.245000px;}
.ycb{bottom:713.985000px;}
.y1f{bottom:715.065000px;}
.yca{bottom:728.385000px;}
.y49{bottom:730.725000px;}
.y1e{bottom:736.845000px;}
.yc9{bottom:742.965000px;}
.yc8{bottom:747.465000px;}
.y48{bottom:755.025000px;}
.yc7{bottom:757.365000px;}
.y1d{bottom:759.705000px;}
.yc6{bottom:771.945000px;}
.y1c{bottom:775.725000px;}
.y47{bottom:779.505000px;}
.yc5{bottom:786.345000px;}
.y1b{bottom:790.125000px;}
.yc4{bottom:800.745000px;}
.y46{bottom:803.985000px;}
.y1a{bottom:804.705000px;}
.yc3{bottom:815.325000px;}
.y19{bottom:819.105000px;}
.y45{bottom:828.465000px;}
.yc2{bottom:829.725000px;}
.y18{bottom:833.685000px;}
.yc1{bottom:834.225000px;}
.yc0{bottom:844.305000px;}
.y17{bottom:848.085000px;}
.y44{bottom:852.945000px;}
.y16{bottom:862.710000px;}
.ybf{bottom:867.750000px;}
.y15{bottom:877.110000px;}
.y43{bottom:877.290000px;}
.ybe{bottom:882.330000px;}
.y14{bottom:891.690000px;}
.ybd{bottom:896.730000px;}
.y42{bottom:901.770000px;}
.y13{bottom:906.090000px;}
.ybc{bottom:911.310000px;}
.y12{bottom:920.670000px;}
.ybb{bottom:925.710000px;}
.y41{bottom:926.250000px;}
.yba{bottom:930.210000px;}
.y11{bottom:935.070000px;}
.y10{bottom:949.650000px;}
.y40{bottom:950.730000px;}
.yb9{bottom:956.670000px;}
.yf{bottom:964.050000px;}
.yb8{bottom:971.250000px;}
.y3f{bottom:975.210000px;}
.ye{bottom:978.630000px;}
.yb7{bottom:985.650000px;}
.yd{bottom:993.030000px;}
.y3e{bottom:999.510000px;}
.yb6{bottom:1000.230000px;}
.yc{bottom:1007.430000px;}
.yb5{bottom:1014.630000px;}
.yb{bottom:1022.010000px;}
.y3d{bottom:1023.990000px;}
.yb4{bottom:1029.210000px;}
.ya{bottom:1036.410000px;}
.yb3{bottom:1043.610000px;}
.y3c{bottom:1048.470000px;}
.y9{bottom:1050.990000px;}
.yb2{bottom:1058.190000px;}
.y8{bottom:1065.570000px;}
.yb1{bottom:1072.590000px;}
.y3b{bottom:1072.950000px;}
.y7{bottom:1081.950000px;}
.yb0{bottom:1087.170000px;}
.yaf{bottom:1091.670000px;}
.y3a{bottom:1097.250000px;}
.y6{bottom:1099.050000px;}
.yae{bottom:1101.570000px;}
.y5{bottom:1118.850000px;}
.yad{bottom:1119.930000px;}
.y39{bottom:1121.730000px;}
.y2{bottom:1181.880000px;}
.y1{bottom:1199.160000px;}
.h11{height:0.045044px;}
.h10{height:24.747188px;}
.hd{height:29.460938px;}
.h2{height:31.817813px;}
.ha{height:36.886641px;}
.h4{height:39.477656px;}
.h7{height:41.291016px;}
.h9{height:41.612687px;}
.h6{height:44.191406px;}
.he{height:46.581366px;}
.hb{height:47.460938px;}
.h8{height:49.583118px;}
.hf{height:50.027721px;}
.h5{height:50.650312px;}
.h3{height:68.084282px;}
.hc{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.600000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x87{left:10.791000px;}
.x2{left:127.656000px;}
.x1{left:130.536000px;}
.x85{left:131.796000px;}
.x28{left:141.876000px;}
.x1a{left:146.736000px;}
.x1b{left:151.410000px;}
.x34{left:158.430000px;}
.xe{left:166.350000px;}
.x7{left:170.130000px;}
.x32{left:174.810000px;}
.x25{left:180.030000px;}
.x39{left:181.650000px;}
.x5a{left:189.030000px;}
.x12{left:198.570000px;}
.x2e{left:209.550000px;}
.x89{left:223.950000px;}
.x1e{left:225.007500px;}
.xf{left:226.290000px;}
.x1c{left:228.787500px;}
.x1f{left:229.890000px;}
.x1d{left:233.670000px;}
.x65{left:236.010000px;}
.x68{left:238.530000px;}
.x13{left:244.515000px;}
.x16{left:247.035000px;}
.x81{left:248.655000px;}
.x56{left:250.995000px;}
.x7b{left:253.515000px;}
.x40{left:256.755000px;}
.x3a{left:259.095000px;}
.x53{left:262.515000px;}
.x7d{left:268.275000px;}
.x14{left:270.075000px;}
.x70{left:273.855000px;}
.x63{left:277.455000px;}
.x48{left:284.295000px;}
.x73{left:292.935000px;}
.x5d{left:297.255000px;}
.x44{left:299.055000px;}
.x3f{left:305.355000px;}
.x4c{left:309.135000px;}
.x83{left:314.355000px;}
.x10{left:315.435000px;}
.x3{left:316.875000px;}
.x5e{left:318.135000px;}
.x41{left:319.755000px;}
.x7a{left:321.735000px;}
.x6d{left:328.935000px;}
.x69{left:331.275000px;}
.x46{left:333.795000px;}
.x4a{left:338.655000px;}
.x17{left:339.915000px;}
.x5c{left:342.435000px;}
.x86{left:343.695000px;}
.x3c{left:349.995000px;}
.x2a{left:352.155000px;}
.x35{left:360.075000px;}
.x4{left:361.875000px;}
.x75{left:364.035000px;}
.x76{left:368.175000px;}
.x77{left:373.935000px;}
.x6e{left:375.555000px;}
.x15{left:378.255000px;}
.x22{left:380.055000px;}
.x58{left:383.835000px;}
.x36{left:384.915000px;}
.x11{left:386.895000px;}
.x3b{left:389.775000px;}
.x7e{left:402.765000px;}
.x74{left:407.445000px;}
.x5b{left:410.145000px;}
.x23{left:413.925000px;}
.x78{left:418.065000px;}
.x6a{left:420.765000px;}
.x6{left:424.905000px;}
.x54{left:431.925000px;}
.x50{left:433.905000px;}
.x6b{left:434.985000px;}
.x7f{left:437.325000px;}
.x33{left:441.105000px;}
.x5{left:446.505000px;}
.x5f{left:452.085000px;}
.x2b{left:455.145000px;}
.x2c{left:464.505000px;}
.x79{left:466.125000px;}
.x7c{left:467.385000px;}
.x8{left:470.625000px;}
.x47{left:472.785000px;}
.x57{left:489.345000px;}
.x66{left:492.405000px;}
.x6f{left:502.665000px;}
.x59{left:512.025000px;}
.x4e{left:515.625000px;}
.x9{left:523.365000px;}
.x4b{left:527.145000px;}
.x6c{left:531.105000px;}
.x84{left:533.985000px;}
.x42{left:539.205000px;}
.x43{left:554.145000px;}
.x64{left:561.705000px;}
.x4d{left:563.010000px;}
.x8a{left:570.390000px;}
.x8b{left:574.170000px;}
.x82{left:575.790000px;}
.x18{left:581.730000px;}
.x30{left:587.467500px;}
.x8c{left:588.750000px;}
.x31{left:592.350000px;}
.x37{left:596.130000px;}
.x52{left:599.190000px;}
.xa{left:601.867500px;}
.xb{left:606.750000px;}
.xc{left:609.607500px;}
.xd{left:614.490000px;}
.x2d{left:622.770000px;}
.x20{left:626.347500px;}
.x67{left:628.710000px;}
.x21{left:631.230000px;}
.x51{left:635.910000px;}
.x72{left:640.230000px;}
.x3e{left:642.390000px;}
.x60{left:645.270000px;}
.x38{left:648.150000px;}
.x29{left:655.170000px;}
.x4f{left:664.170000px;}
.x2f{left:666.510000px;}
.x3d{left:667.770000px;}
.x61{left:669.930000px;}
.x45{left:671.010000px;}
.x62{left:674.070000px;}
.x55{left:681.090000px;}
.x71{left:687.030000px;}
.x49{left:689.190000px;}
.x24{left:711.330000px;}
.x26{left:726.660000px;}
.x80{left:730.260000px;}
.x19{left:734.040000px;}
.x27{left:760.500000px;}
.x88{left:765.540000px;}
@media print{
.v2{vertical-align:-16.865312pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls1e{letter-spacing:-0.464000pt;}
.ls2d{letter-spacing:-0.352000pt;}
.ls26{letter-spacing:-0.320441pt;}
.ls6{letter-spacing:-0.309867pt;}
.lsf{letter-spacing:-0.304000pt;}
.ls19{letter-spacing:-0.288000pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.224000pt;}
.ls2e{letter-spacing:-0.202384pt;}
.ls32{letter-spacing:-0.192533pt;}
.ls28{letter-spacing:-0.176000pt;}
.ls34{letter-spacing:-0.154667pt;}
.lsd{letter-spacing:-0.148267pt;}
.ls22{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.112000pt;}
.ls31{letter-spacing:-0.082133pt;}
.ls10{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.016000pt;}
.ls33{letter-spacing:0.018560pt;}
.ls4{letter-spacing:0.032000pt;}
.ls21{letter-spacing:0.033731pt;}
.ls0{letter-spacing:0.062933pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.112000pt;}
.ls1c{letter-spacing:0.118057pt;}
.ls18{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.134922pt;}
.ls17{letter-spacing:0.144000pt;}
.ls14{letter-spacing:0.176000pt;}
.ls2f{letter-spacing:0.180267pt;}
.ls24{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.203733pt;}
.ls25{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.239360pt;}
.ls1d{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.267520pt;}
.ls7{letter-spacing:0.267733pt;}
.ls2c{letter-spacing:0.271467pt;}
.lsa{letter-spacing:0.272000pt;}
.ls2a{letter-spacing:0.288000pt;}
.ls23{letter-spacing:0.336000pt;}
.ls11{letter-spacing:0.400000pt;}
.ls13{letter-spacing:0.528000pt;}
.ls16{letter-spacing:0.592000pt;}
.lsc{letter-spacing:0.672000pt;}
.ls2b{letter-spacing:0.708343pt;}
.ls8{letter-spacing:0.816000pt;}
.ls27{letter-spacing:0.928000pt;}
.ls3{letter-spacing:2.144000pt;}
.ls20{letter-spacing:3.216000pt;}
.ls30{letter-spacing:4.111360pt;}
.wsf{word-spacing:-15.971451pt;}
.ws11{word-spacing:-15.836528pt;}
.ws9{word-spacing:-15.552000pt;}
.ws3{word-spacing:-15.296000pt;}
.ws12{word-spacing:-15.264000pt;}
.wsb{word-spacing:-15.200000pt;}
.wse{word-spacing:-15.152000pt;}
.ws10{word-spacing:-15.120000pt;}
.ws6{word-spacing:-15.056000pt;}
.ws16{word-spacing:-15.040000pt;}
.wsc{word-spacing:-15.024000pt;}
.ws8{word-spacing:-14.992000pt;}
.ws4{word-spacing:-14.912000pt;}
.ws14{word-spacing:-14.896000pt;}
.ws15{word-spacing:-14.848000pt;}
.ws13{word-spacing:-14.800000pt;}
.wsa{word-spacing:-14.784000pt;}
.wsd{word-spacing:-14.736000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.147298pt;}
.ws1{word-spacing:-13.689173pt;}
.ws18{word-spacing:-13.339307pt;}
.ws5{word-spacing:-10.669013pt;}
.ws0{word-spacing:-10.507413pt;}
.ws17{word-spacing:-4.329326pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-5.099755pt;}
._f{margin-left:-4.032000pt;}
._7{margin-left:-2.928000pt;}
._c{margin-left:-1.920000pt;}
._1{margin-left:-0.986240pt;}
._0{width:0.892587pt;}
._4{width:2.444160pt;}
._3{width:3.895680pt;}
._b{width:4.835840pt;}
._2{width:5.831680pt;}
._8{width:6.889600pt;}
._9{width:8.256000pt;}
._a{width:9.504000pt;}
._5{width:10.848640pt;}
._6{width:11.778987pt;}
._11{width:13.339947pt;}
._10{width:16.320000pt;}
._14{width:18.208000pt;}
._15{width:19.378244pt;}
._12{width:47.568000pt;}
._13{width:50.039381pt;}
._17{width:50.976000pt;}
._16{width:53.125733pt;}
._d{width:139.937280pt;}
._e{width:320.222720pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs7{font-size:33.730624pt;}
.fs0{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:45.199037pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:50.595937pt;}
.fs1{font-size:58.880000pt;}
.yac{bottom:-13.573333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:68.992000pt;}
.y3{bottom:81.792000pt;}
.y78{bottom:116.032000pt;}
.ya9{bottom:123.712000pt;}
.y61{bottom:128.032000pt;}
.y8c{bottom:128.672000pt;}
.ya4{bottom:131.712000pt;}
.ya8{bottom:136.506667pt;}
.y38{bottom:136.826667pt;}
.y77{bottom:137.626667pt;}
.ya7{bottom:149.466667pt;}
.y60{bottom:149.626667pt;}
.y8b{bottom:150.426667pt;}
.ya3{bottom:153.466667pt;}
.y37{bottom:158.586667pt;}
.y76{bottom:159.386667pt;}
.ya6{bottom:162.266667pt;}
.y5f{bottom:171.386667pt;}
.y8a{bottom:172.186667pt;}
.ya2{bottom:175.226667pt;}
.ya5{bottom:179.226667pt;}
.y36{bottom:180.346667pt;}
.y75{bottom:181.146667pt;}
.yaa{bottom:191.546667pt;}
.y5e{bottom:193.146667pt;}
.y89{bottom:193.946667pt;}
.ya1{bottom:196.826667pt;}
.y62{bottom:197.146667pt;}
.y35{bottom:201.946667pt;}
.y74{bottom:202.906667pt;}
.y5d{bottom:214.906667pt;}
.y88{bottom:215.546667pt;}
.ya0{bottom:218.586667pt;}
.yab{bottom:222.080000pt;}
.y34{bottom:223.706667pt;}
.y73{bottom:224.666667pt;}
.y5c{bottom:236.666667pt;}
.y87{bottom:237.306667pt;}
.y9f{bottom:240.346667pt;}
.y33{bottom:245.466667pt;}
.y72{bottom:246.266667pt;}
.y5b{bottom:258.266667pt;}
.y86{bottom:259.066667pt;}
.y9e{bottom:262.106667pt;}
.y63{bottom:262.266667pt;}
.y31{bottom:267.226667pt;}
.y71{bottom:268.026667pt;}
.y32{bottom:271.226667pt;}
.y5a{bottom:280.026667pt;}
.y85{bottom:280.826667pt;}
.y9d{bottom:283.866667pt;}
.y30{bottom:288.826667pt;}
.y70{bottom:289.786667pt;}
.y59{bottom:301.826667pt;}
.y84{bottom:302.626667pt;}
.y9c{bottom:305.506667pt;}
.y2f{bottom:310.626667pt;}
.y6f{bottom:311.586667pt;}
.y58{bottom:323.586667pt;}
.y83{bottom:324.226667pt;}
.y9b{bottom:327.266667pt;}
.y2e{bottom:332.386667pt;}
.y6e{bottom:333.346667pt;}
.y57{bottom:345.346667pt;}
.y82{bottom:345.986667pt;}
.y9a{bottom:349.026667pt;}
.y2d{bottom:354.146667pt;}
.y6d{bottom:354.946667pt;}
.y56{bottom:366.946667pt;}
.y81{bottom:367.746667pt;}
.y99{bottom:370.786667pt;}
.y2b{bottom:375.906667pt;}
.y6c{bottom:376.706667pt;}
.y2c{bottom:379.906667pt;}
.y55{bottom:388.706667pt;}
.y80{bottom:389.506667pt;}
.y98{bottom:392.546667pt;}
.y2a{bottom:397.506667pt;}
.y6b{bottom:398.466667pt;}
.y54{bottom:410.466667pt;}
.y7f{bottom:411.266667pt;}
.y97{bottom:414.146667pt;}
.y29{bottom:419.266667pt;}
.y6a{bottom:420.226667pt;}
.y53{bottom:432.226667pt;}
.y7e{bottom:432.866667pt;}
.y96{bottom:435.906667pt;}
.y28{bottom:441.026667pt;}
.y68{bottom:441.986667pt;}
.y69{bottom:445.986667pt;}
.y52{bottom:453.826667pt;}
.y7d{bottom:454.626667pt;}
.y95{bottom:457.666667pt;}
.y27{bottom:462.786667pt;}
.y67{bottom:463.586667pt;}
.y51{bottom:475.586667pt;}
.y7c{bottom:476.386667pt;}
.y94{bottom:479.426667pt;}
.y26{bottom:484.546667pt;}
.y66{bottom:485.346667pt;}
.y50{bottom:497.346667pt;}
.y7b{bottom:498.146667pt;}
.y93{bottom:501.026667pt;}
.y25{bottom:506.146667pt;}
.y65{bottom:507.106667pt;}
.y4f{bottom:519.106667pt;}
.y7a{bottom:519.906667pt;}
.y92{bottom:522.786667pt;}
.y64{bottom:526.306667pt;}
.y24{bottom:527.906667pt;}
.y79{bottom:539.133333pt;}
.y4e{bottom:540.893333pt;}
.y91{bottom:544.573333pt;}
.y23{bottom:549.693333pt;}
.yd2{bottom:557.373333pt;}
.y4d{bottom:562.493333pt;}
.y90{bottom:566.333333pt;}
.yd1{bottom:570.173333pt;}
.y22{bottom:571.453333pt;}
.yd0{bottom:583.133333pt;}
.y4c{bottom:584.253333pt;}
.y8e{bottom:588.093333pt;}
.y8f{bottom:592.093333pt;}
.y21{bottom:593.213333pt;}
.ycf{bottom:595.933333pt;}
.yce{bottom:599.933333pt;}
.y4b{bottom:606.013333pt;}
.y8d{bottom:607.293333pt;}
.ycd{bottom:608.893333pt;}
.y20{bottom:614.813333pt;}
.ycc{bottom:621.693333pt;}
.y4a{bottom:627.773333pt;}
.ycb{bottom:634.653333pt;}
.y1f{bottom:635.613333pt;}
.yca{bottom:647.453333pt;}
.y49{bottom:649.533333pt;}
.y1e{bottom:654.973333pt;}
.yc9{bottom:660.413333pt;}
.yc8{bottom:664.413333pt;}
.y48{bottom:671.133333pt;}
.yc7{bottom:673.213333pt;}
.y1d{bottom:675.293333pt;}
.yc6{bottom:686.173333pt;}
.y1c{bottom:689.533333pt;}
.y47{bottom:692.893333pt;}
.yc5{bottom:698.973333pt;}
.y1b{bottom:702.333333pt;}
.yc4{bottom:711.773333pt;}
.y46{bottom:714.653333pt;}
.y1a{bottom:715.293333pt;}
.yc3{bottom:724.733333pt;}
.y19{bottom:728.093333pt;}
.y45{bottom:736.413333pt;}
.yc2{bottom:737.533333pt;}
.y18{bottom:741.053333pt;}
.yc1{bottom:741.533333pt;}
.yc0{bottom:750.493333pt;}
.y17{bottom:753.853333pt;}
.y44{bottom:758.173333pt;}
.y16{bottom:766.853333pt;}
.ybf{bottom:771.333333pt;}
.y15{bottom:779.653333pt;}
.y43{bottom:779.813333pt;}
.ybe{bottom:784.293333pt;}
.y14{bottom:792.613333pt;}
.ybd{bottom:797.093333pt;}
.y42{bottom:801.573333pt;}
.y13{bottom:805.413333pt;}
.ybc{bottom:810.053333pt;}
.y12{bottom:818.373333pt;}
.ybb{bottom:822.853333pt;}
.y41{bottom:823.333333pt;}
.yba{bottom:826.853333pt;}
.y11{bottom:831.173333pt;}
.y10{bottom:844.133333pt;}
.y40{bottom:845.093333pt;}
.yb9{bottom:850.373333pt;}
.yf{bottom:856.933333pt;}
.yb8{bottom:863.333333pt;}
.y3f{bottom:866.853333pt;}
.ye{bottom:869.893333pt;}
.yb7{bottom:876.133333pt;}
.yd{bottom:882.693333pt;}
.y3e{bottom:888.453333pt;}
.yb6{bottom:889.093333pt;}
.yc{bottom:895.493333pt;}
.yb5{bottom:901.893333pt;}
.yb{bottom:908.453333pt;}
.y3d{bottom:910.213333pt;}
.yb4{bottom:914.853333pt;}
.ya{bottom:921.253333pt;}
.yb3{bottom:927.653333pt;}
.y3c{bottom:931.973333pt;}
.y9{bottom:934.213333pt;}
.yb2{bottom:940.613333pt;}
.y8{bottom:947.173333pt;}
.yb1{bottom:953.413333pt;}
.y3b{bottom:953.733333pt;}
.y7{bottom:961.733333pt;}
.yb0{bottom:966.373333pt;}
.yaf{bottom:970.373333pt;}
.y3a{bottom:975.333333pt;}
.y6{bottom:976.933333pt;}
.yae{bottom:979.173333pt;}
.y5{bottom:994.533333pt;}
.yad{bottom:995.493333pt;}
.y39{bottom:997.093333pt;}
.y2{bottom:1050.560000pt;}
.y1{bottom:1065.920000pt;}
.h11{height:0.040039pt;}
.h10{height:21.997500pt;}
.hd{height:26.187500pt;}
.h2{height:28.282500pt;}
.ha{height:32.788125pt;}
.h4{height:35.091250pt;}
.h7{height:36.703125pt;}
.h9{height:36.989055pt;}
.h6{height:39.281250pt;}
.he{height:41.405659pt;}
.hb{height:42.187500pt;}
.h8{height:44.073883pt;}
.hf{height:44.469085pt;}
.h5{height:45.022500pt;}
.h3{height:60.519362pt;}
.hc{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:19.200000pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x87{left:9.592000pt;}
.x2{left:113.472000pt;}
.x1{left:116.032000pt;}
.x85{left:117.152000pt;}
.x28{left:126.112000pt;}
.x1a{left:130.432000pt;}
.x1b{left:134.586667pt;}
.x34{left:140.826667pt;}
.xe{left:147.866667pt;}
.x7{left:151.226667pt;}
.x32{left:155.386667pt;}
.x25{left:160.026667pt;}
.x39{left:161.466667pt;}
.x5a{left:168.026667pt;}
.x12{left:176.506667pt;}
.x2e{left:186.266667pt;}
.x89{left:199.066667pt;}
.x1e{left:200.006667pt;}
.xf{left:201.146667pt;}
.x1c{left:203.366667pt;}
.x1f{left:204.346667pt;}
.x1d{left:207.706667pt;}
.x65{left:209.786667pt;}
.x68{left:212.026667pt;}
.x13{left:217.346667pt;}
.x16{left:219.586667pt;}
.x81{left:221.026667pt;}
.x56{left:223.106667pt;}
.x7b{left:225.346667pt;}
.x40{left:228.226667pt;}
.x3a{left:230.306667pt;}
.x53{left:233.346667pt;}
.x7d{left:238.466667pt;}
.x14{left:240.066667pt;}
.x70{left:243.426667pt;}
.x63{left:246.626667pt;}
.x48{left:252.706667pt;}
.x73{left:260.386667pt;}
.x5d{left:264.226667pt;}
.x44{left:265.826667pt;}
.x3f{left:271.426667pt;}
.x4c{left:274.786667pt;}
.x83{left:279.426667pt;}
.x10{left:280.386667pt;}
.x3{left:281.666667pt;}
.x5e{left:282.786667pt;}
.x41{left:284.226667pt;}
.x7a{left:285.986667pt;}
.x6d{left:292.386667pt;}
.x69{left:294.466667pt;}
.x46{left:296.706667pt;}
.x4a{left:301.026667pt;}
.x17{left:302.146667pt;}
.x5c{left:304.386667pt;}
.x86{left:305.506667pt;}
.x3c{left:311.106667pt;}
.x2a{left:313.026667pt;}
.x35{left:320.066667pt;}
.x4{left:321.666667pt;}
.x75{left:323.586667pt;}
.x76{left:327.266667pt;}
.x77{left:332.386667pt;}
.x6e{left:333.826667pt;}
.x15{left:336.226667pt;}
.x22{left:337.826667pt;}
.x58{left:341.186667pt;}
.x36{left:342.146667pt;}
.x11{left:343.906667pt;}
.x3b{left:346.466667pt;}
.x7e{left:358.013333pt;}
.x74{left:362.173333pt;}
.x5b{left:364.573333pt;}
.x23{left:367.933333pt;}
.x78{left:371.613333pt;}
.x6a{left:374.013333pt;}
.x6{left:377.693333pt;}
.x54{left:383.933333pt;}
.x50{left:385.693333pt;}
.x6b{left:386.653333pt;}
.x7f{left:388.733333pt;}
.x33{left:392.093333pt;}
.x5{left:396.893333pt;}
.x5f{left:401.853333pt;}
.x2b{left:404.573333pt;}
.x2c{left:412.893333pt;}
.x79{left:414.333333pt;}
.x7c{left:415.453333pt;}
.x8{left:418.333333pt;}
.x47{left:420.253333pt;}
.x57{left:434.973333pt;}
.x66{left:437.693333pt;}
.x6f{left:446.813333pt;}
.x59{left:455.133333pt;}
.x4e{left:458.333333pt;}
.x9{left:465.213333pt;}
.x4b{left:468.573333pt;}
.x6c{left:472.093333pt;}
.x84{left:474.653333pt;}
.x42{left:479.293333pt;}
.x43{left:492.573333pt;}
.x64{left:499.293333pt;}
.x4d{left:500.453333pt;}
.x8a{left:507.013333pt;}
.x8b{left:510.373333pt;}
.x82{left:511.813333pt;}
.x18{left:517.093333pt;}
.x30{left:522.193333pt;}
.x8c{left:523.333333pt;}
.x31{left:526.533333pt;}
.x37{left:529.893333pt;}
.x52{left:532.613333pt;}
.xa{left:534.993333pt;}
.xb{left:539.333333pt;}
.xc{left:541.873333pt;}
.xd{left:546.213333pt;}
.x2d{left:553.573333pt;}
.x20{left:556.753333pt;}
.x67{left:558.853333pt;}
.x21{left:561.093333pt;}
.x51{left:565.253333pt;}
.x72{left:569.093333pt;}
.x3e{left:571.013333pt;}
.x60{left:573.573333pt;}
.x38{left:576.133333pt;}
.x29{left:582.373333pt;}
.x4f{left:590.373333pt;}
.x2f{left:592.453333pt;}
.x3d{left:593.573333pt;}
.x61{left:595.493333pt;}
.x45{left:596.453333pt;}
.x62{left:599.173333pt;}
.x55{left:605.413333pt;}
.x71{left:610.693333pt;}
.x49{left:612.613333pt;}
.x24{left:632.293333pt;}
.x26{left:645.920000pt;}
.x80{left:649.120000pt;}
.x19{left:652.480000pt;}
.x27{left:676.000000pt;}
.x88{left:680.480000pt;}
}




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