
    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_d4f86643e98d261cd0bdca19.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999512;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_b07f0b4c9d51cd4dcf8c25fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.999512;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_0a5f666699156dab2300f16b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_1e1ffcc07d34fde5bb8e1995.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_5e7f2e7069d212dafe6c682f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999512;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_e712f0fe5b36b7ea5fc23ef1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999512;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_70714e8f971d9019d2572c5b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999512;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8574ce430cd1e0b0b755e5d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999512;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c75406af750c263c33123bee.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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:ffa;src:url('chunks/assets/font_8fb9b2a3a6d23a8ba5cdec5b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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:ffb;src:url('chunks/assets/font_1e9f34642ba0783c40a85b5e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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:ffc;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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);}
.v4{vertical-align:-72.600000px;}
.v2{vertical-align:-36.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:32.400000px;}
.v1{vertical-align:36.000000px;}
.ls12{letter-spacing:-0.594000px;}
.ls20{letter-spacing:-0.365400px;}
.ls1e{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.252000px;}
.ls26{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.065400px;}
.ls1d{letter-spacing:-0.036000px;}
.ls17{letter-spacing:-0.000006px;}
.ls3{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.039600px;}
.ls4{letter-spacing:0.043920px;}
.lsf{letter-spacing:0.047664px;}
.ls1b{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.250200px;}
.ls1a{letter-spacing:0.252000px;}
.ls18{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.362880px;}
.lsb{letter-spacing:14.256000px;}
.ls22{letter-spacing:20.073600px;}
.lse{letter-spacing:21.385728px;}
.lsa{letter-spacing:21.456000px;}
.lsd{letter-spacing:22.176000px;}
.ls2{letter-spacing:25.063920px;}
.ls1{letter-spacing:25.383600px;}
.ls16{letter-spacing:32.832000px;}
.ls1f{letter-spacing:34.992000px;}
.ls19{letter-spacing:37.872000px;}
.ls21{letter-spacing:39.312000px;}
.ls9{letter-spacing:44.352000px;}
.ls6{letter-spacing:47.109600px;}
.ls7{letter-spacing:47.160000px;}
.ls14{letter-spacing:97.509600px;}
.ls13{letter-spacing:97.560000px;}
.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;}
}
.ws16{word-spacing:-44.496000px;}
.ws0{word-spacing:-39.601440px;}
.ws2{word-spacing:-24.769440px;}
.ws9{word-spacing:-22.277664px;}
.ws3a{word-spacing:-22.248000px;}
.ws34{word-spacing:-22.068000px;}
.wsd{word-spacing:-21.641760px;}
.ws6{word-spacing:-21.628800px;}
.ws4{word-spacing:-21.600000px;}
.ws8{word-spacing:-21.312000px;}
.ws3{word-spacing:-16.493184px;}
.ws1{word-spacing:-16.463520px;}
.ws3b{word-spacing:-1.862160px;}
.ws3c{word-spacing:-1.695552px;}
.ws11{word-spacing:-1.344960px;}
.ws21{word-spacing:-1.044000px;}
.ws19{word-spacing:-1.008000px;}
.ws31{word-spacing:-0.936000px;}
.ws13{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.828000px;}
.ws33{word-spacing:-0.792000px;}
.ws1c{word-spacing:-0.756000px;}
.ws36{word-spacing:-0.744000px;}
.ws14{word-spacing:-0.720000px;}
.ws20{word-spacing:-0.684000px;}
.wse{word-spacing:-0.669600px;}
.ws27{word-spacing:-0.576000px;}
.ws15{word-spacing:-0.396000px;}
.ws38{word-spacing:-0.360000px;}
.ws26{word-spacing:-0.300000px;}
.ws2c{word-spacing:-0.225504px;}
.ws25{word-spacing:-0.180000px;}
.ws2a{word-spacing:-0.141264px;}
.ws23{word-spacing:-0.096000px;}
.ws30{word-spacing:-0.072000px;}
.ws2e{word-spacing:-0.024000px;}
.ws5{word-spacing:0.000000px;}
.ws1a{word-spacing:0.072000px;}
.ws1f{word-spacing:0.108000px;}
.ws2d{word-spacing:0.144000px;}
.ws35{word-spacing:0.288000px;}
.ws29{word-spacing:0.372023px;}
.ws22{word-spacing:0.468000px;}
.ws28{word-spacing:0.492000px;}
.ws1e{word-spacing:0.504000px;}
.ws18{word-spacing:0.792000px;}
.wsf{word-spacing:0.804960px;}
.ws24{word-spacing:0.828000px;}
.ws7{word-spacing:0.840000px;}
.ws32{word-spacing:0.864000px;}
.ws1d{word-spacing:0.972023px;}
.ws12{word-spacing:1.053360px;}
.wsc{word-spacing:1.122120px;}
.ws1b{word-spacing:1.404000px;}
.ws37{word-spacing:1.548000px;}
.ws2b{word-spacing:1.566504px;}
.ws10{word-spacing:1.686960px;}
.ws2f{word-spacing:1.836000px;}
.ws39{word-spacing:2.016000px;}
.wsa{word-spacing:7.200000px;}
.wsb{word-spacing:7.920000px;}
._e{margin-left:-1339.065360px;}
._10{margin-left:-12.200160px;}
._4{margin-left:-9.337200px;}
._1{margin-left:-7.497360px;}
._6{margin-left:-5.919840px;}
._9{margin-left:-4.916016px;}
._2{margin-left:-3.652560px;}
._7{margin-left:-2.160000px;}
._3{margin-left:-1.082160px;}
._0{width:1.153440px;}
._b{width:2.316000px;}
._d{width:3.996000px;}
._12{width:18.070560px;}
._a{width:20.995920px;}
._11{width:22.572000px;}
._5{width:23.680080px;}
._f{width:27.046320px;}
._15{width:30.414720px;}
._8{width:35.496000px;}
._c{width:48.816000px;}
._13{width:1781.832000px;}
._14{width:1941.606240px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(104,104,104);}
.fs6{font-size:48.240000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:79.920000px;}
.fs3{font-size:80.064000px;}
.fs9{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs1{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fs0{font-size:192.240000px;}
.fs7{font-size:216.000000px;}
.fsa{font-size:216.144000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:13.428000px;}
.y51{bottom:30.132000px;}
.y30{bottom:36.648000px;}
.y84{bottom:40.392000px;}
.y68{bottom:41.976000px;}
.y91{bottom:44.388000px;}
.y44{bottom:49.284000px;}
.y19{bottom:62.028000px;}
.y50{bottom:62.532000px;}
.ya7{bottom:64.080000px;}
.y3a{bottom:65.628000px;}
.y2f{bottom:69.048000px;}
.y73{bottom:72.972000px;}
.y90{bottom:76.788000px;}
.y83{bottom:93.492000px;}
.y39{bottom:94.428000px;}
.ya6{bottom:96.480000px;}
.y77{bottom:96.660000px;}
.y43{bottom:97.884000px;}
.y2e{bottom:101.484000px;}
.y6c{bottom:104.724000px;}
.y8f{bottom:109.188000px;}
.y18{bottom:110.664000px;}
.y67{bottom:115.776000px;}
.y76{bottom:118.260000px;}
.y6a{bottom:128.736000px;}
.ya5{bottom:128.880000px;}
.y6e{bottom:132.228000px;}
.y2d{bottom:133.884000px;}
.ya0{bottom:137.484000px;}
.y82{bottom:146.592000px;}
.y42{bottom:150.990000px;}
.y17{bottom:159.270000px;}
.ya4{bottom:161.310000px;}
.y2c{bottom:166.290000px;}
.y9f{bottom:169.890000px;}
.y75{bottom:183.060000px;}
.y5b{bottom:189.285000px;}
.y66{bottom:189.615000px;}
.ya3{bottom:193.710000px;}
.y81{bottom:195.225000px;}
.y2b{bottom:198.690000px;}
.y9e{bottom:202.290000px;}
.y41{bottom:204.090000px;}
.y4d{bottom:205.275000px;}
.y16{bottom:207.870000px;}
.y9a{bottom:213.945000px;}
.y74{bottom:215.460000px;}
.ya{bottom:222.195000px;}
.y62{bottom:224.715000px;}
.ya2{bottom:226.110000px;}
.y2a{bottom:231.090000px;}
.y9d{bottom:234.720000px;}
.y38{bottom:236.415000px;}
.y4c{bottom:237.675000px;}
.y5a{bottom:239.685000px;}
.y99{bottom:246.390000px;}
.y80{bottom:248.325000px;}
.y48{bottom:252.720000px;}
.y9{bottom:254.595000px;}
.y15{bottom:256.500000px;}
.y40{bottom:257.220000px;}
.ya1{bottom:258.510000px;}
.y72{bottom:259.050000px;}
.y37{bottom:265.215000px;}
.y9c{bottom:267.120000px;}
.y4b{bottom:270.075000px;}
.y61{bottom:277.815000px;}
.y98{bottom:278.790000px;}
.y8{bottom:287.025000px;}
.y59{bottom:290.490000px;}
.y71{bottom:291.450000px;}
.y9b{bottom:299.520000px;}
.y14{bottom:300.240000px;}
.y29{bottom:300.420000px;}
.y7f{bottom:301.425000px;}
.y47{bottom:305.820000px;}
.y3f{bottom:310.320000px;}
.y97{bottom:311.190000px;}
.y20{bottom:318.420000px;}
.y70{bottom:323.850000px;}
.y78{bottom:329.145000px;}
.y60{bottom:330.945000px;}
.y28{bottom:332.820000px;}
.y58{bottom:340.890000px;}
.y96{bottom:348.915000px;}
.y1f{bottom:350.850000px;}
.y7e{bottom:354.570000px;}
.y6f{bottom:356.295000px;}
.y46{bottom:358.920000px;}
.y3e{bottom:363.420000px;}
.y27{bottom:365.220000px;}
.y8e{bottom:368.745000px;}
.y36{bottom:375.045000px;}
.y5f{bottom:379.545000px;}
.y95{bottom:381.315000px;}
.y1e{bottom:383.250000px;}
.y7{bottom:386.745000px;}
.y57{bottom:391.290000px;}
.y26{bottom:397.620000px;}
.y8d{bottom:401.145000px;}
.y13{bottom:401.940000px;}
.y7d{bottom:403.170000px;}
.ya8{bottom:405.750000px;}
.y4f{bottom:407.010000px;}
.y45{bottom:412.050000px;}
.y94{bottom:413.715000px;}
.y3d{bottom:416.550000px;}
.y1d{bottom:420.510000px;}
.y6{bottom:422.745000px;}
.y35{bottom:428.145000px;}
.y25{bottom:430.020000px;}
.y5e{bottom:432.645000px;}
.y8c{bottom:433.545000px;}
.y12{bottom:439.230000px;}
.y4e{bottom:439.410000px;}
.y56{bottom:441.690000px;}
.y93{bottom:446.145000px;}
.y5{bottom:449.745000px;}
.y7c{bottom:456.270000px;}
.y24{bottom:462.450000px;}
.y3c{bottom:465.150000px;}
.y8b{bottom:465.945000px;}
.y1c{bottom:469.110000px;}
.y55{bottom:474.120000px;}
.y92{bottom:478.545000px;}
.y34{bottom:481.245000px;}
.y11{bottom:482.970000px;}
.y5d{bottom:485.745000px;}
.y4{bottom:485.790000px;}
.y7b{bottom:509.370000px;}
.y3b{bottom:513.750000px;}
.y1b{bottom:517.755000px;}
.y54{bottom:524.160000px;}
.y33{bottom:534.390000px;}
.y65{bottom:536.190000px;}
.y23{bottom:536.250000px;}
.y5c{bottom:538.890000px;}
.y8a{bottom:542.550000px;}
.y10{bottom:552.270000px;}
.y53{bottom:556.920000px;}
.y4a{bottom:557.535000px;}
.y7a{bottom:558.000000px;}
.y87{bottom:560.340000px;}
.y3{bottom:562.470000px;}
.y22{bottom:568.650000px;}
.y89{bottom:576.570000px;}
.yf{bottom:584.670000px;}
.y32{bottom:587.490000px;}
.y49{bottom:589.935000px;}
.y86{bottom:592.740000px;}
.yab{bottom:599.325000px;}
.y21{bottom:601.050000px;}
.y6b{bottom:601.635000px;}
.y52{bottom:607.320000px;}
.y6d{bottom:608.010000px;}
.y64{bottom:609.990000px;}
.y88{bottom:610.635000px;}
.y63{bottom:610.890000px;}
.y79{bottom:611.100000px;}
.ye{bottom:617.115000px;}
.y31{bottom:618.480000px;}
.y2{bottom:620.070000px;}
.y85{bottom:625.140000px;}
.yaa{bottom:635.325000px;}
.y69{bottom:636.735000px;}
.ya9{bottom:671.325000px;}
.yd{bottom:675.690000px;}
.y1{bottom:677.700000px;}
.yc{bottom:734.190000px;}
.yb{bottom:783.570000px;}
.h8{height:50.312812px;}
.h5{height:60.759492px;}
.h13{height:71.613281px;}
.h7{height:82.107422px;}
.h6{height:82.216898px;}
.hb{height:87.138281px;}
.h9{height:91.412930px;}
.hd{height:95.245664px;}
.h3{height:96.759492px;}
.h4{height:97.048969px;}
.h10{height:107.419922px;}
.h11{height:107.563148px;}
.he{height:112.640625px;}
.hf{height:112.790813px;}
.h14{height:125.406562px;}
.h15{height:125.556750px;}
.h2{height:146.151211px;}
.ha{height:164.214844px;}
.h12{height:164.324320px;}
.hc{height:200.500313px;}
.h1{height:810.000000px;}
.h0{height:810.180000px;}
.w1{width:1440.000000px;}
.w2{width:1440.359979px;}
.w0{width:1440.360000px;}
.x0{left:0.000000px;}
.x2d{left:22.679979px;}
.x37{left:38.915979px;}
.x39{left:42.515979px;}
.x6{left:56.339979px;}
.x2{left:57.419979px;}
.x38{left:63.395979px;}
.x1{left:65.303979px;}
.x32{left:67.607979px;}
.x40{left:72.935979px;}
.x29{left:74.015979px;}
.x27{left:78.047979px;}
.x3f{left:80.315979px;}
.x2c{left:81.431979px;}
.x2f{left:84.059979px;}
.x2a{left:87.155979px;}
.x28{left:108.359979px;}
.x3{left:109.547979px;}
.xc{left:124.811979px;}
.x4{left:130.787979px;}
.x41{left:139.535979px;}
.x9{left:145.943979px;}
.x13{left:147.275979px;}
.xb{left:148.751979px;}
.x25{left:162.539979px;}
.x1e{left:164.159979px;}
.x23{left:166.859979px;}
.x14{left:167.969979px;}
.x22{left:176.729979px;}
.xa{left:180.719979px;}
.x4f{left:196.559979px;}
.x21{left:198.329979px;}
.x1f{left:199.799979px;}
.x20{left:207.329979px;}
.x26{left:218.009979px;}
.x24{left:235.079979px;}
.x7{left:267.689979px;}
.x8{left:272.369979px;}
.x35{left:308.954979px;}
.x34{left:314.894979px;}
.x33{left:338.144979px;}
.x36{left:365.324979px;}
.x15{left:462.389979px;}
.xd{left:476.249979px;}
.xe{left:484.889979px;}
.x16{left:506.129979px;}
.x44{left:521.069979px;}
.x43{left:523.049979px;}
.x47{left:526.289979px;}
.x42{left:528.839979px;}
.x46{left:532.259979px;}
.x45{left:545.939979px;}
.x50{left:612.464979px;}
.x1b{left:732.629979px;}
.x51{left:737.069979px;}
.x30{left:754.769979px;}
.x17{left:764.849979px;}
.x1c{left:766.469979px;}
.xf{left:775.154979px;}
.x10{left:777.854979px;}
.x18{left:827.489979px;}
.x31{left:849.449979px;}
.x5{left:865.259979px;}
.x3b{left:903.929979px;}
.x3d{left:910.229979px;}
.x3c{left:921.029979px;}
.x2e{left:930.704979px;}
.x3a{left:932.729979px;}
.x2b{left:962.279979px;}
.x3e{left:975.389979px;}
.x4d{left:991.364979px;}
.x48{left:992.804979px;}
.x4c{left:1001.804979px;}
.x4b{left:1010.444979px;}
.x4a{left:1012.064979px;}
.x49{left:1016.924979px;}
.x1d{left:1074.134979px;}
.x4e{left:1099.409979px;}
.x1a{left:1108.949979px;}
.x11{left:1111.289979px;}
.x19{left:1124.249979px;}
.x12{left:1140.989979px;}
@media print{
.v4{vertical-align:-64.533333pt;}
.v2{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:28.800000pt;}
.v1{vertical-align:32.000000pt;}
.ls12{letter-spacing:-0.528000pt;}
.ls20{letter-spacing:-0.324800pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.224000pt;}
.ls26{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.058133pt;}
.ls1d{letter-spacing:-0.032000pt;}
.ls17{letter-spacing:-0.000005pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.035200pt;}
.ls4{letter-spacing:0.039040pt;}
.lsf{letter-spacing:0.042368pt;}
.ls1b{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.222400pt;}
.ls1a{letter-spacing:0.224000pt;}
.ls18{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.322560pt;}
.lsb{letter-spacing:12.672000pt;}
.ls22{letter-spacing:17.843200pt;}
.lse{letter-spacing:19.009536pt;}
.lsa{letter-spacing:19.072000pt;}
.lsd{letter-spacing:19.712000pt;}
.ls2{letter-spacing:22.279040pt;}
.ls1{letter-spacing:22.563200pt;}
.ls16{letter-spacing:29.184000pt;}
.ls1f{letter-spacing:31.104000pt;}
.ls19{letter-spacing:33.664000pt;}
.ls21{letter-spacing:34.944000pt;}
.ls9{letter-spacing:39.424000pt;}
.ls6{letter-spacing:41.875200pt;}
.ls7{letter-spacing:41.920000pt;}
.ls14{letter-spacing:86.675200pt;}
.ls13{letter-spacing:86.720000pt;}
.ws16{word-spacing:-39.552000pt;}
.ws0{word-spacing:-35.201280pt;}
.ws2{word-spacing:-22.017280pt;}
.ws9{word-spacing:-19.802368pt;}
.ws3a{word-spacing:-19.776000pt;}
.ws34{word-spacing:-19.616000pt;}
.wsd{word-spacing:-19.237120pt;}
.ws6{word-spacing:-19.225600pt;}
.ws4{word-spacing:-19.200000pt;}
.ws8{word-spacing:-18.944000pt;}
.ws3{word-spacing:-14.660608pt;}
.ws1{word-spacing:-14.634240pt;}
.ws3b{word-spacing:-1.655253pt;}
.ws3c{word-spacing:-1.507157pt;}
.ws11{word-spacing:-1.195520pt;}
.ws21{word-spacing:-0.928000pt;}
.ws19{word-spacing:-0.896000pt;}
.ws31{word-spacing:-0.832000pt;}
.ws13{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.736000pt;}
.ws33{word-spacing:-0.704000pt;}
.ws1c{word-spacing:-0.672000pt;}
.ws36{word-spacing:-0.661333pt;}
.ws14{word-spacing:-0.640000pt;}
.ws20{word-spacing:-0.608000pt;}
.wse{word-spacing:-0.595200pt;}
.ws27{word-spacing:-0.512000pt;}
.ws15{word-spacing:-0.352000pt;}
.ws38{word-spacing:-0.320000pt;}
.ws26{word-spacing:-0.266667pt;}
.ws2c{word-spacing:-0.200448pt;}
.ws25{word-spacing:-0.160000pt;}
.ws2a{word-spacing:-0.125568pt;}
.ws23{word-spacing:-0.085333pt;}
.ws30{word-spacing:-0.064000pt;}
.ws2e{word-spacing:-0.021333pt;}
.ws5{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.064000pt;}
.ws1f{word-spacing:0.096000pt;}
.ws2d{word-spacing:0.128000pt;}
.ws35{word-spacing:0.256000pt;}
.ws29{word-spacing:0.330687pt;}
.ws22{word-spacing:0.416000pt;}
.ws28{word-spacing:0.437333pt;}
.ws1e{word-spacing:0.448000pt;}
.ws18{word-spacing:0.704000pt;}
.wsf{word-spacing:0.715520pt;}
.ws24{word-spacing:0.736000pt;}
.ws7{word-spacing:0.746667pt;}
.ws32{word-spacing:0.768000pt;}
.ws1d{word-spacing:0.864020pt;}
.ws12{word-spacing:0.936320pt;}
.wsc{word-spacing:0.997440pt;}
.ws1b{word-spacing:1.248000pt;}
.ws37{word-spacing:1.376000pt;}
.ws2b{word-spacing:1.392448pt;}
.ws10{word-spacing:1.499520pt;}
.ws2f{word-spacing:1.632000pt;}
.ws39{word-spacing:1.792000pt;}
.wsa{word-spacing:6.400000pt;}
.wsb{word-spacing:7.040000pt;}
._e{margin-left:-1190.280320pt;}
._10{margin-left:-10.844587pt;}
._4{margin-left:-8.299733pt;}
._1{margin-left:-6.664320pt;}
._6{margin-left:-5.262080pt;}
._9{margin-left:-4.369792pt;}
._2{margin-left:-3.246720pt;}
._7{margin-left:-1.920000pt;}
._3{margin-left:-0.961920pt;}
._0{width:1.025280pt;}
._b{width:2.058667pt;}
._d{width:3.552000pt;}
._12{width:16.062720pt;}
._a{width:18.663040pt;}
._11{width:20.064000pt;}
._5{width:21.048960pt;}
._f{width:24.041173pt;}
._15{width:27.035307pt;}
._8{width:31.552000pt;}
._c{width:43.392000pt;}
._13{width:1583.850667pt;}
._14{width:1725.872213pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:71.040000pt;}
.fs3{font-size:71.168000pt;}
.fs9{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs1{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fs0{font-size:170.880000pt;}
.fs7{font-size:192.000000pt;}
.fsa{font-size:192.128000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:11.936000pt;}
.y51{bottom:26.784000pt;}
.y30{bottom:32.576000pt;}
.y84{bottom:35.904000pt;}
.y68{bottom:37.312000pt;}
.y91{bottom:39.456000pt;}
.y44{bottom:43.808000pt;}
.y19{bottom:55.136000pt;}
.y50{bottom:55.584000pt;}
.ya7{bottom:56.960000pt;}
.y3a{bottom:58.336000pt;}
.y2f{bottom:61.376000pt;}
.y73{bottom:64.864000pt;}
.y90{bottom:68.256000pt;}
.y83{bottom:83.104000pt;}
.y39{bottom:83.936000pt;}
.ya6{bottom:85.760000pt;}
.y77{bottom:85.920000pt;}
.y43{bottom:87.008000pt;}
.y2e{bottom:90.208000pt;}
.y6c{bottom:93.088000pt;}
.y8f{bottom:97.056000pt;}
.y18{bottom:98.368000pt;}
.y67{bottom:102.912000pt;}
.y76{bottom:105.120000pt;}
.y6a{bottom:114.432000pt;}
.ya5{bottom:114.560000pt;}
.y6e{bottom:117.536000pt;}
.y2d{bottom:119.008000pt;}
.ya0{bottom:122.208000pt;}
.y82{bottom:130.304000pt;}
.y42{bottom:134.213333pt;}
.y17{bottom:141.573333pt;}
.ya4{bottom:143.386667pt;}
.y2c{bottom:147.813333pt;}
.y9f{bottom:151.013333pt;}
.y75{bottom:162.720000pt;}
.y5b{bottom:168.253333pt;}
.y66{bottom:168.546667pt;}
.ya3{bottom:172.186667pt;}
.y81{bottom:173.533333pt;}
.y2b{bottom:176.613333pt;}
.y9e{bottom:179.813333pt;}
.y41{bottom:181.413333pt;}
.y4d{bottom:182.466667pt;}
.y16{bottom:184.773333pt;}
.y9a{bottom:190.173333pt;}
.y74{bottom:191.520000pt;}
.ya{bottom:197.506667pt;}
.y62{bottom:199.746667pt;}
.ya2{bottom:200.986667pt;}
.y2a{bottom:205.413333pt;}
.y9d{bottom:208.640000pt;}
.y38{bottom:210.146667pt;}
.y4c{bottom:211.266667pt;}
.y5a{bottom:213.053333pt;}
.y99{bottom:219.013333pt;}
.y80{bottom:220.733333pt;}
.y48{bottom:224.640000pt;}
.y9{bottom:226.306667pt;}
.y15{bottom:228.000000pt;}
.y40{bottom:228.640000pt;}
.ya1{bottom:229.786667pt;}
.y72{bottom:230.266667pt;}
.y37{bottom:235.746667pt;}
.y9c{bottom:237.440000pt;}
.y4b{bottom:240.066667pt;}
.y61{bottom:246.946667pt;}
.y98{bottom:247.813333pt;}
.y8{bottom:255.133333pt;}
.y59{bottom:258.213333pt;}
.y71{bottom:259.066667pt;}
.y9b{bottom:266.240000pt;}
.y14{bottom:266.880000pt;}
.y29{bottom:267.040000pt;}
.y7f{bottom:267.933333pt;}
.y47{bottom:271.840000pt;}
.y3f{bottom:275.840000pt;}
.y97{bottom:276.613333pt;}
.y20{bottom:283.040000pt;}
.y70{bottom:287.866667pt;}
.y78{bottom:292.573333pt;}
.y60{bottom:294.173333pt;}
.y28{bottom:295.840000pt;}
.y58{bottom:303.013333pt;}
.y96{bottom:310.146667pt;}
.y1f{bottom:311.866667pt;}
.y7e{bottom:315.173333pt;}
.y6f{bottom:316.706667pt;}
.y46{bottom:319.040000pt;}
.y3e{bottom:323.040000pt;}
.y27{bottom:324.640000pt;}
.y8e{bottom:327.773333pt;}
.y36{bottom:333.373333pt;}
.y5f{bottom:337.373333pt;}
.y95{bottom:338.946667pt;}
.y1e{bottom:340.666667pt;}
.y7{bottom:343.773333pt;}
.y57{bottom:347.813333pt;}
.y26{bottom:353.440000pt;}
.y8d{bottom:356.573333pt;}
.y13{bottom:357.280000pt;}
.y7d{bottom:358.373333pt;}
.ya8{bottom:360.666667pt;}
.y4f{bottom:361.786667pt;}
.y45{bottom:366.266667pt;}
.y94{bottom:367.746667pt;}
.y3d{bottom:370.266667pt;}
.y1d{bottom:373.786667pt;}
.y6{bottom:375.773333pt;}
.y35{bottom:380.573333pt;}
.y25{bottom:382.240000pt;}
.y5e{bottom:384.573333pt;}
.y8c{bottom:385.373333pt;}
.y12{bottom:390.426667pt;}
.y4e{bottom:390.586667pt;}
.y56{bottom:392.613333pt;}
.y93{bottom:396.573333pt;}
.y5{bottom:399.773333pt;}
.y7c{bottom:405.573333pt;}
.y24{bottom:411.066667pt;}
.y3c{bottom:413.466667pt;}
.y8b{bottom:414.173333pt;}
.y1c{bottom:416.986667pt;}
.y55{bottom:421.440000pt;}
.y92{bottom:425.373333pt;}
.y34{bottom:427.773333pt;}
.y11{bottom:429.306667pt;}
.y5d{bottom:431.773333pt;}
.y4{bottom:431.813333pt;}
.y7b{bottom:452.773333pt;}
.y3b{bottom:456.666667pt;}
.y1b{bottom:460.226667pt;}
.y54{bottom:465.920000pt;}
.y33{bottom:475.013333pt;}
.y65{bottom:476.613333pt;}
.y23{bottom:476.666667pt;}
.y5c{bottom:479.013333pt;}
.y8a{bottom:482.266667pt;}
.y10{bottom:490.906667pt;}
.y53{bottom:495.040000pt;}
.y4a{bottom:495.586667pt;}
.y7a{bottom:496.000000pt;}
.y87{bottom:498.080000pt;}
.y3{bottom:499.973333pt;}
.y22{bottom:505.466667pt;}
.y89{bottom:512.506667pt;}
.yf{bottom:519.706667pt;}
.y32{bottom:522.213333pt;}
.y49{bottom:524.386667pt;}
.y86{bottom:526.880000pt;}
.yab{bottom:532.733333pt;}
.y21{bottom:534.266667pt;}
.y6b{bottom:534.786667pt;}
.y52{bottom:539.840000pt;}
.y6d{bottom:540.453333pt;}
.y64{bottom:542.213333pt;}
.y88{bottom:542.786667pt;}
.y63{bottom:543.013333pt;}
.y79{bottom:543.200000pt;}
.ye{bottom:548.546667pt;}
.y31{bottom:549.760000pt;}
.y2{bottom:551.173333pt;}
.y85{bottom:555.680000pt;}
.yaa{bottom:564.733333pt;}
.y69{bottom:565.986667pt;}
.ya9{bottom:596.733333pt;}
.yd{bottom:600.613333pt;}
.y1{bottom:602.400000pt;}
.yc{bottom:652.613333pt;}
.yb{bottom:696.506667pt;}
.h8{height:44.722500pt;}
.h5{height:54.008437pt;}
.h13{height:63.656250pt;}
.h7{height:72.984375pt;}
.h6{height:73.081688pt;}
.hb{height:77.456250pt;}
.h9{height:81.255937pt;}
.hd{height:84.662813pt;}
.h3{height:86.008437pt;}
.h4{height:86.265750pt;}
.h10{height:95.484375pt;}
.h11{height:95.611688pt;}
.he{height:100.125000pt;}
.hf{height:100.258500pt;}
.h14{height:111.472500pt;}
.h15{height:111.606000pt;}
.h2{height:129.912187pt;}
.ha{height:145.968750pt;}
.h12{height:146.066062pt;}
.hc{height:178.222500pt;}
.h1{height:720.000000pt;}
.h0{height:720.160000pt;}
.w1{width:1280.000000pt;}
.w2{width:1280.319981pt;}
.w0{width:1280.320000pt;}
.x0{left:0.000000pt;}
.x2d{left:20.159981pt;}
.x37{left:34.591981pt;}
.x39{left:37.791981pt;}
.x6{left:50.079981pt;}
.x2{left:51.039981pt;}
.x38{left:56.351981pt;}
.x1{left:58.047981pt;}
.x32{left:60.095981pt;}
.x40{left:64.831981pt;}
.x29{left:65.791981pt;}
.x27{left:69.375981pt;}
.x3f{left:71.391981pt;}
.x2c{left:72.383981pt;}
.x2f{left:74.719981pt;}
.x2a{left:77.471981pt;}
.x28{left:96.319981pt;}
.x3{left:97.375981pt;}
.xc{left:110.943981pt;}
.x4{left:116.255981pt;}
.x41{left:124.031981pt;}
.x9{left:129.727981pt;}
.x13{left:130.911981pt;}
.xb{left:132.223981pt;}
.x25{left:144.479981pt;}
.x1e{left:145.919981pt;}
.x23{left:148.319981pt;}
.x14{left:149.306648pt;}
.x22{left:157.093314pt;}
.xa{left:160.639981pt;}
.x4f{left:174.719981pt;}
.x21{left:176.293314pt;}
.x1f{left:177.599981pt;}
.x20{left:184.293314pt;}
.x26{left:193.786648pt;}
.x24{left:208.959981pt;}
.x7{left:237.946648pt;}
.x8{left:242.106648pt;}
.x35{left:274.626648pt;}
.x34{left:279.906648pt;}
.x33{left:300.573314pt;}
.x36{left:324.733314pt;}
.x15{left:411.013314pt;}
.xd{left:423.333314pt;}
.xe{left:431.013314pt;}
.x16{left:449.893314pt;}
.x44{left:463.173314pt;}
.x43{left:464.933314pt;}
.x47{left:467.813314pt;}
.x42{left:470.079981pt;}
.x46{left:473.119981pt;}
.x45{left:485.279981pt;}
.x50{left:544.413314pt;}
.x1b{left:651.226648pt;}
.x51{left:655.173314pt;}
.x30{left:670.906648pt;}
.x17{left:679.866648pt;}
.x1c{left:681.306648pt;}
.xf{left:689.026648pt;}
.x10{left:691.426648pt;}
.x18{left:735.546648pt;}
.x31{left:755.066648pt;}
.x5{left:769.119981pt;}
.x3b{left:803.493314pt;}
.x3d{left:809.093314pt;}
.x3c{left:818.693314pt;}
.x2e{left:827.293314pt;}
.x3a{left:829.093314pt;}
.x2b{left:855.359981pt;}
.x3e{left:867.013314pt;}
.x4d{left:881.213314pt;}
.x48{left:882.493314pt;}
.x4c{left:890.493314pt;}
.x4b{left:898.173314pt;}
.x4a{left:899.613314pt;}
.x49{left:903.933314pt;}
.x1d{left:954.786648pt;}
.x4e{left:977.253314pt;}
.x1a{left:985.733314pt;}
.x11{left:987.813314pt;}
.x19{left:999.333314pt;}
.x12{left:1014.213314pt;}
}




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