
    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_a05226d7d1c9b2b326f5ca95.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_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f6b31d108e50206d927bb492.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_146d68bc29b9a0afaf33dc3e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_90f3ff77dd016423dc8fc58b.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-0.522000px;}
.ls6{letter-spacing:-0.348600px;}
.ls15{letter-spacing:-0.342000px;}
.lsa{letter-spacing:-0.324000px;}
.lsb{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.252000px;}
.ls11{letter-spacing:-0.166800px;}
.ls24{letter-spacing:-0.162000px;}
.lsf{letter-spacing:-0.126000px;}
.lsd{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.054000px;}
.lsc{letter-spacing:-0.036000px;}
.ls1a{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.036000px;}
.ls2d{letter-spacing:0.037947px;}
.ls0{letter-spacing:0.070560px;}
.ls5{letter-spacing:0.070800px;}
.ls9{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.126000px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.149760px;}
.ls16{letter-spacing:0.150000px;}
.ls2b{letter-spacing:0.156000px;}
.ls19{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.198000px;}
.ls2e{letter-spacing:0.208708px;}
.ls12{letter-spacing:0.229200px;}
.ls1d{letter-spacing:0.252000px;}
.ls23{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.324000px;}
.ls1f{letter-spacing:0.378000px;}
.ls18{letter-spacing:0.396000px;}
.ls14{letter-spacing:0.450000px;}
.ls20{letter-spacing:0.468000px;}
.ls2a{letter-spacing:0.594000px;}
.ls2c{letter-spacing:0.666000px;}
.ls21{letter-spacing:0.756000px;}
.ls30{letter-spacing:0.796886px;}
.ls29{letter-spacing:0.828000px;}
.ls1e{letter-spacing:0.846000px;}
.lse{letter-spacing:0.918000px;}
.ls2f{letter-spacing:0.967647px;}
.ls26{letter-spacing:0.972000px;}
.ls1c{letter-spacing:2.538000px;}
.ls28{letter-spacing:3.258000px;}
.ls17{letter-spacing:4.340880px;}
.ls22{letter-spacing:4.698000px;}
.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;}
}
.ws18{word-spacing:-17.874000px;}
.ws10{word-spacing:-17.816094px;}
.ws1a{word-spacing:-17.730000px;}
.ws1b{word-spacing:-17.496000px;}
.ws19{word-spacing:-17.352000px;}
.ws11{word-spacing:-17.298000px;}
.ws16{word-spacing:-17.280000px;}
.ws15{word-spacing:-17.154000px;}
.ws2{word-spacing:-17.100000px;}
.ws13{word-spacing:-17.064000px;}
.ws3{word-spacing:-17.046000px;}
.wsd{word-spacing:-17.028000px;}
.wsc{word-spacing:-17.010000px;}
.ws4{word-spacing:-16.938000px;}
.ws1c{word-spacing:-16.920000px;}
.ws1{word-spacing:-16.902000px;}
.ws12{word-spacing:-16.884000px;}
.ws7{word-spacing:-16.866000px;}
.ws14{word-spacing:-16.848000px;}
.ws8{word-spacing:-16.830000px;}
.ws9{word-spacing:-16.776000px;}
.wsb{word-spacing:-16.650000px;}
.wsf{word-spacing:-16.632000px;}
.ws6{word-spacing:-16.578000px;}
.wse{word-spacing:-16.560000px;}
.ws17{word-spacing:-15.822000px;}
.ws0{word-spacing:-12.169440px;}
.wsa{word-spacing:-12.002640px;}
.ws5{word-spacing:0.000000px;}
._12{margin-left:-5.275479px;}
._9{margin-left:-4.051238px;}
._5{margin-left:-2.473795px;}
._2{margin-left:-1.109375px;}
._0{width:1.004426px;}
._4{width:2.942399px;}
._6{width:4.486224px;}
._c{width:5.529547px;}
._3{width:6.560447px;}
._d{width:7.933127px;}
._8{width:9.937199px;}
._f{width:10.959602px;}
._13{width:12.128398px;}
._7{width:13.844976px;}
._e{width:15.369024px;}
._b{width:18.705574px;}
._a{width:19.920006px;}
._14{width:21.281994px;}
._1c{width:23.106006px;}
._19{width:31.824000px;}
._1a{width:36.882000px;}
._1b{width:38.016000px;}
._16{width:67.122000px;}
._17{width:68.256000px;}
._18{width:101.046000px;}
._15{width:129.978000px;}
._11{width:178.750560px;}
._10{width:190.099509px;}
._1{width:1122.826028px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs4{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:56.920429px;}
.fs1{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y85{bottom:10.785000px;}
.y70{bottom:10.800000px;}
.y76{bottom:10.965000px;}
.ya0{bottom:10.971000px;}
.y6d{bottom:10.980000px;}
.y84{bottom:35.265000px;}
.y6f{bottom:35.280000px;}
.y8e{bottom:35.325000px;}
.y82{bottom:35.445000px;}
.y6c{bottom:35.460000px;}
.y7c{bottom:35.490000px;}
.y9c{bottom:59.745000px;}
.y9f{bottom:59.925000px;}
.y9a{bottom:59.970000px;}
.y61{bottom:87.516000px;}
.ycb{bottom:92.736000px;}
.y5a{bottom:94.176000px;}
.y3{bottom:98.676000px;}
.y60{bottom:102.096000px;}
.y2{bottom:113.076000px;}
.y6a{bottom:115.056000px;}
.y5f{bottom:116.496000px;}
.yca{bottom:117.036000px;}
.y9e{bottom:117.045000px;}
.y59{bottom:118.656000px;}
.y5e{bottom:131.076000px;}
.y5d{bottom:135.576000px;}
.y69{bottom:139.536000px;}
.yc9{bottom:141.516000px;}
.y2d{bottom:142.056000px;}
.y58{bottom:143.136000px;}
.y67{bottom:145.476000px;}
.y5c{bottom:147.636000px;}
.y2c{bottom:156.630000px;}
.y66{bottom:160.050000px;}
.y68{bottom:164.010000px;}
.yc8{bottom:165.990000px;}
.y57{bottom:167.430000px;}
.y2b{bottom:171.030000px;}
.y65{bottom:174.450000px;}
.y2a{bottom:175.530000px;}
.y87{bottom:178.245000px;}
.y64{bottom:178.950000px;}
.yc7{bottom:190.470000px;}
.y63{bottom:191.010000px;}
.y9d{bottom:191.205000px;}
.y56{bottom:191.910000px;}
.yc6{bottom:214.950000px;}
.y55{bottom:216.390000px;}
.y86{bottom:227.925000px;}
.yc5{bottom:239.250000px;}
.y54{bottom:240.870000px;}
.y9b{bottom:240.885000px;}
.y83{bottom:253.125000px;}
.y29{bottom:255.270000px;}
.yc4{bottom:263.730000px;}
.y53{bottom:265.350000px;}
.y28{bottom:279.750000px;}
.yc3{bottom:288.210000px;}
.y52{bottom:289.650000px;}
.y81{bottom:302.625000px;}
.y27{bottom:304.230000px;}
.yc2{bottom:312.690000px;}
.y51{bottom:314.130000px;}
.y99{bottom:314.865000px;}
.y26{bottom:328.710000px;}
.yc1{bottom:337.170000px;}
.y50{bottom:338.655000px;}
.y80{bottom:352.335000px;}
.y25{bottom:353.055000px;}
.yc0{bottom:361.515000px;}
.y4f{bottom:363.135000px;}
.y24{bottom:377.535000px;}
.ybf{bottom:385.995000px;}
.y4e{bottom:387.615000px;}
.y98{bottom:389.055000px;}
.y23{bottom:402.015000px;}
.ybe{bottom:410.475000px;}
.y4d{bottom:411.915000px;}
.y22{bottom:426.495000px;}
.y7f{bottom:427.215000px;}
.ybd{bottom:434.955000px;}
.y4c{bottom:436.395000px;}
.y97{bottom:438.735000px;}
.y21{bottom:450.975000px;}
.ybc{bottom:459.435000px;}
.y4b{bottom:460.875000px;}
.y20{bottom:475.275000px;}
.y7e{bottom:476.895000px;}
.ybb{bottom:483.735000px;}
.y4a{bottom:485.355000px;}
.y96{bottom:488.235000px;}
.y1f{bottom:499.755000px;}
.yba{bottom:508.215000px;}
.y49{bottom:509.655000px;}
.y5b{bottom:514.155000px;}
.y1e{bottom:524.235000px;}
.y7d{bottom:526.395000px;}
.yb9{bottom:532.695000px;}
.y48{bottom:534.135000px;}
.y95{bottom:537.915000px;}
.y1d{bottom:548.715000px;}
.yb8{bottom:557.175000px;}
.y47{bottom:558.615000px;}
.y94{bottom:563.115000px;}
.y1b{bottom:573.195000px;}
.y7b{bottom:576.075000px;}
.y1c{bottom:577.695000px;}
.yb7{bottom:581.655000px;}
.y46{bottom:583.095000px;}
.yb6{bottom:605.985000px;}
.y45{bottom:607.605000px;}
.y93{bottom:612.825000px;}
.y1a{bottom:622.005000px;}
.y7a{bottom:625.785000px;}
.yb5{bottom:630.465000px;}
.y44{bottom:631.905000px;}
.yb4{bottom:654.945000px;}
.y43{bottom:656.385000px;}
.y92{bottom:662.505000px;}
.y79{bottom:675.465000px;}
.yb3{bottom:679.425000px;}
.y42{bottom:680.865000px;}
.y19{bottom:695.085000px;}
.yb2{bottom:703.725000px;}
.y41{bottom:705.345000px;}
.y91{bottom:712.005000px;}
.y18{bottom:724.065000px;}
.y78{bottom:724.965000px;}
.yb1{bottom:728.205000px;}
.y40{bottom:729.825000px;}
.y90{bottom:737.220000px;}
.y17{bottom:738.645000px;}
.y77{bottom:750.165000px;}
.yb0{bottom:752.685000px;}
.y16{bottom:753.045000px;}
.y3f{bottom:754.125000px;}
.y15{bottom:767.625000px;}
.y75{bottom:775.380000px;}
.yaf{bottom:777.165000px;}
.y3e{bottom:778.605000px;}
.y14{bottom:782.025000px;}
.y8f{bottom:786.885000px;}
.y13{bottom:796.605000px;}
.y74{bottom:800.565000px;}
.yae{bottom:801.645000px;}
.y3d{bottom:803.085000px;}
.y12{bottom:811.005000px;}
.y11{bottom:825.585000px;}
.y73{bottom:825.765000px;}
.yad{bottom:825.945000px;}
.y3c{bottom:827.565000px;}
.y8d{bottom:836.565000px;}
.y10{bottom:839.985000px;}
.yac{bottom:850.425000px;}
.y3b{bottom:852.045000px;}
.yf{bottom:854.565000px;}
.ye{bottom:869.010000px;}
.yab{bottom:874.950000px;}
.y72{bottom:875.490000px;}
.y3a{bottom:876.390000px;}
.yd{bottom:883.590000px;}
.y8c{bottom:886.290000px;}
.yc{bottom:897.990000px;}
.yaa{bottom:899.430000px;}
.y71{bottom:900.690000px;}
.y39{bottom:900.870000px;}
.yb{bottom:912.390000px;}
.ya9{bottom:923.910000px;}
.y38{bottom:925.350000px;}
.ya{bottom:926.970000px;}
.y8b{bottom:935.790000px;}
.ya8{bottom:948.210000px;}
.y37{bottom:949.830000px;}
.y6e{bottom:950.370000px;}
.y9{bottom:955.950000px;}
.ya7{bottom:972.690000px;}
.y36{bottom:974.310000px;}
.y8a{bottom:985.470000px;}
.y8{bottom:994.830000px;}
.ya6{bottom:997.170000px;}
.y35{bottom:998.610000px;}
.y6b{bottom:999.870000px;}
.y7{bottom:1009.410000px;}
.y89{bottom:1010.670000px;}
.ya5{bottom:1021.650000px;}
.y34{bottom:1023.090000px;}
.y6{bottom:1038.390000px;}
.ya4{bottom:1046.130000px;}
.y33{bottom:1047.570000px;}
.y62{bottom:1052.070000px;}
.y88{bottom:1060.350000px;}
.ya3{bottom:1070.430000px;}
.y32{bottom:1072.050000px;}
.ya2{bottom:1094.910000px;}
.y31{bottom:1096.350000px;}
.y5{bottom:1102.650000px;}
.ya1{bottom:1109.130000px;}
.y30{bottom:1120.830000px;}
.y4{bottom:1122.450000px;}
.y2f{bottom:1145.340000px;}
.y2e{bottom:1163.520000px;}
.y1{bottom:1180.980000px;}
.h15{height:24.285000px;}
.hf{height:24.465000px;}
.h11{height:24.480000px;}
.h9{height:24.747188px;}
.h8{height:29.460938px;}
.ha{height:31.817813px;}
.h3{height:39.477656px;}
.h5{height:41.291016px;}
.h6{height:44.191406px;}
.hb{height:46.581366px;}
.he{height:48.765000px;}
.h12{height:48.780000px;}
.h16{height:48.802500px;}
.hd{height:48.945000px;}
.h18{height:48.955500px;}
.h17{height:48.960000px;}
.h14{height:48.981000px;}
.h10{height:48.982500px;}
.h13{height:48.990000px;}
.h2{height:50.229844px;}
.h4{height:50.650312px;}
.h1a{height:73.245000px;}
.h1b{height:73.431000px;}
.h19{height:73.461000px;}
.h1{height:1263.000000px;}
.hc{height:1263.044910px;}
.h7{height:1263.045000px;}
.h0{height:1263.060000px;}
.wf{width:40.860000px;}
.we{width:42.660000px;}
.w3{width:49.851000px;}
.wb{width:51.111000px;}
.w7{width:66.060000px;}
.w6{width:66.960000px;}
.w10{width:70.236000px;}
.wd{width:72.741000px;}
.w5{width:74.541000px;}
.w8{width:77.616000px;}
.wa{width:94.881000px;}
.wc{width:95.565000px;}
.w4{width:102.045000px;}
.w11{width:114.105000px;}
.w9{width:129.045000px;}
.w12{width:136.281000px;}
.w13{width:136.282500px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.731000px;}
.x16{left:113.265000px;}
.x1{left:127.656000px;}
.x2{left:132.516000px;}
.x20{left:136.485000px;}
.x8{left:152.670000px;}
.x18{left:163.845000px;}
.x6{left:170.130000px;}
.xd{left:172.627500px;}
.x7{left:174.450000px;}
.xe{left:177.510000px;}
.x1f{left:180.030000px;}
.x21{left:188.325000px;}
.x29{left:196.770000px;}
.x6d{left:205.590000px;}
.x72{left:211.530000px;}
.xc{left:215.490000px;}
.x14{left:218.190000px;}
.x31{left:223.410000px;}
.x2a{left:233.130000px;}
.x56{left:235.650000px;}
.x6a{left:246.270000px;}
.x51{left:247.710000px;}
.x5b{left:250.590000px;}
.x5d{left:258.690000px;}
.x4d{left:261.930000px;}
.x19{left:266.625000px;}
.x3b{left:272.910000px;}
.x9{left:281.730000px;}
.x22{left:284.625000px;}
.x68{left:289.650000px;}
.x70{left:294.870000px;}
.x40{left:302.655000px;}
.x3e{left:303.915000px;}
.x5f{left:309.135000px;}
.x3d{left:310.755000px;}
.x38{left:311.835000px;}
.xa{left:313.995000px;}
.x45{left:315.075000px;}
.x3f{left:319.575000px;}
.x3{left:325.335000px;}
.x2f{left:340.455000px;}
.x1a{left:342.075000px;}
.xf{left:343.695000px;}
.x2e{left:345.675000px;}
.x2b{left:348.735000px;}
.x5e{left:351.255000px;}
.x58{left:354.855000px;}
.x23{left:358.095000px;}
.x4{left:366.555000px;}
.x62{left:368.895000px;}
.x6b{left:370.695000px;}
.x2c{left:373.035000px;}
.x32{left:375.555000px;}
.x33{left:381.675000px;}
.x27{left:391.035000px;}
.x43{left:393.735000px;}
.x52{left:398.235000px;}
.x24{left:401.475000px;}
.x1b{left:409.935000px;}
.x28{left:423.255000px;}
.x5{left:424.875000px;}
.x4e{left:425.955000px;}
.x39{left:430.455000px;}
.x66{left:435.855000px;}
.x73{left:438.735000px;}
.x25{left:443.055000px;}
.x41{left:444.135000px;}
.x15{left:446.655000px;}
.x64{left:465.015000px;}
.x49{left:472.755000px;}
.x1c{left:476.715000px;}
.x53{left:481.575000px;}
.x6e{left:490.575000px;}
.x34{left:494.175000px;}
.x5c{left:497.775000px;}
.x35{left:502.485000px;}
.x57{left:506.805000px;}
.x63{left:510.765000px;}
.x26{left:514.020000px;}
.x59{left:516.525000px;}
.x74{left:520.305000px;}
.x6c{left:521.565000px;}
.x36{left:524.625000px;}
.x46{left:535.245000px;}
.x54{left:536.685000px;}
.x55{left:540.825000px;}
.x47{left:543.705000px;}
.x67{left:546.765000px;}
.x4a{left:551.805000px;}
.x1d{left:555.060000px;}
.x6f{left:556.665000px;}
.x48{left:558.465000px;}
.x44{left:562.245000px;}
.x60{left:575.385000px;}
.x30{left:583.845000px;}
.x12{left:595.365000px;}
.x3c{left:596.445000px;}
.x71{left:609.585000px;}
.x4b{left:611.205000px;}
.x61{left:614.085000px;}
.x4c{left:615.345000px;}
.x37{left:617.145000px;}
.x10{left:623.602500px;}
.x5a{left:626.685000px;}
.x11{left:628.485000px;}
.x50{left:632.265000px;}
.x75{left:634.425000px;}
.x76{left:642.705000px;}
.x77{left:650.265000px;}
.x4f{left:664.845000px;}
.x2d{left:666.645000px;}
.x3a{left:668.985000px;}
.x13{left:683.925000px;}
.x1e{left:685.020000px;}
.x69{left:688.605000px;}
.xb{left:695.085000px;}
.x42{left:701.745000px;}
.x65{left:702.870000px;}
.x78{left:719.070000px;}
.x79{left:727.530000px;}
.x7a{left:742.290000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-0.464000pt;}
.ls6{letter-spacing:-0.309867pt;}
.ls15{letter-spacing:-0.304000pt;}
.lsa{letter-spacing:-0.288000pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.224000pt;}
.ls11{letter-spacing:-0.148267pt;}
.ls24{letter-spacing:-0.144000pt;}
.lsf{letter-spacing:-0.112000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:-0.032000pt;}
.ls1a{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.032000pt;}
.ls2d{letter-spacing:0.033731pt;}
.ls0{letter-spacing:0.062720pt;}
.ls5{letter-spacing:0.062933pt;}
.ls9{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.112000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133120pt;}
.ls16{letter-spacing:0.133333pt;}
.ls2b{letter-spacing:0.138667pt;}
.ls19{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.176000pt;}
.ls2e{letter-spacing:0.185518pt;}
.ls12{letter-spacing:0.203733pt;}
.ls1d{letter-spacing:0.224000pt;}
.ls23{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.288000pt;}
.ls1f{letter-spacing:0.336000pt;}
.ls18{letter-spacing:0.352000pt;}
.ls14{letter-spacing:0.400000pt;}
.ls20{letter-spacing:0.416000pt;}
.ls2a{letter-spacing:0.528000pt;}
.ls2c{letter-spacing:0.592000pt;}
.ls21{letter-spacing:0.672000pt;}
.ls30{letter-spacing:0.708343pt;}
.ls29{letter-spacing:0.736000pt;}
.ls1e{letter-spacing:0.752000pt;}
.lse{letter-spacing:0.816000pt;}
.ls2f{letter-spacing:0.860131pt;}
.ls26{letter-spacing:0.864000pt;}
.ls1c{letter-spacing:2.256000pt;}
.ls28{letter-spacing:2.896000pt;}
.ls17{letter-spacing:3.858560pt;}
.ls22{letter-spacing:4.176000pt;}
.ws18{word-spacing:-15.888000pt;}
.ws10{word-spacing:-15.836528pt;}
.ws1a{word-spacing:-15.760000pt;}
.ws1b{word-spacing:-15.552000pt;}
.ws19{word-spacing:-15.424000pt;}
.ws11{word-spacing:-15.376000pt;}
.ws16{word-spacing:-15.360000pt;}
.ws15{word-spacing:-15.248000pt;}
.ws2{word-spacing:-15.200000pt;}
.ws13{word-spacing:-15.168000pt;}
.ws3{word-spacing:-15.152000pt;}
.wsd{word-spacing:-15.136000pt;}
.wsc{word-spacing:-15.120000pt;}
.ws4{word-spacing:-15.056000pt;}
.ws1c{word-spacing:-15.040000pt;}
.ws1{word-spacing:-15.024000pt;}
.ws12{word-spacing:-15.008000pt;}
.ws7{word-spacing:-14.992000pt;}
.ws14{word-spacing:-14.976000pt;}
.ws8{word-spacing:-14.960000pt;}
.ws9{word-spacing:-14.912000pt;}
.wsb{word-spacing:-14.800000pt;}
.wsf{word-spacing:-14.784000pt;}
.ws6{word-spacing:-14.736000pt;}
.wse{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.064000pt;}
.ws0{word-spacing:-10.817280pt;}
.wsa{word-spacing:-10.669013pt;}
.ws5{word-spacing:0.000000pt;}
._12{margin-left:-4.689315pt;}
._9{margin-left:-3.601101pt;}
._5{margin-left:-2.198929pt;}
._2{margin-left:-0.986111pt;}
._0{width:0.892823pt;}
._4{width:2.615466pt;}
._6{width:3.987754pt;}
._c{width:4.915153pt;}
._3{width:5.831508pt;}
._d{width:7.051668pt;}
._8{width:8.833066pt;}
._f{width:9.741869pt;}
._13{width:10.780798pt;}
._7{width:12.306646pt;}
._e{width:13.661354pt;}
._b{width:16.627177pt;}
._a{width:17.706672pt;}
._14{width:18.917328pt;}
._1c{width:20.538672pt;}
._19{width:28.288000pt;}
._1a{width:32.784000pt;}
._1b{width:33.792000pt;}
._16{width:59.664000pt;}
._17{width:60.672000pt;}
._18{width:89.818667pt;}
._15{width:115.536000pt;}
._11{width:158.889387pt;}
._10{width:168.977342pt;}
._1{width:998.067581pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:50.595937pt;}
.fs1{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:9.586667pt;}
.y70{bottom:9.600000pt;}
.y76{bottom:9.746667pt;}
.ya0{bottom:9.752000pt;}
.y6d{bottom:9.760000pt;}
.y84{bottom:31.346667pt;}
.y6f{bottom:31.360000pt;}
.y8e{bottom:31.400000pt;}
.y82{bottom:31.506667pt;}
.y6c{bottom:31.520000pt;}
.y7c{bottom:31.546667pt;}
.y9c{bottom:53.106667pt;}
.y9f{bottom:53.266667pt;}
.y9a{bottom:53.306667pt;}
.y61{bottom:77.792000pt;}
.ycb{bottom:82.432000pt;}
.y5a{bottom:83.712000pt;}
.y3{bottom:87.712000pt;}
.y60{bottom:90.752000pt;}
.y2{bottom:100.512000pt;}
.y6a{bottom:102.272000pt;}
.y5f{bottom:103.552000pt;}
.yca{bottom:104.032000pt;}
.y9e{bottom:104.040000pt;}
.y59{bottom:105.472000pt;}
.y5e{bottom:116.512000pt;}
.y5d{bottom:120.512000pt;}
.y69{bottom:124.032000pt;}
.yc9{bottom:125.792000pt;}
.y2d{bottom:126.272000pt;}
.y58{bottom:127.232000pt;}
.y67{bottom:129.312000pt;}
.y5c{bottom:131.232000pt;}
.y2c{bottom:139.226667pt;}
.y66{bottom:142.266667pt;}
.y68{bottom:145.786667pt;}
.yc8{bottom:147.546667pt;}
.y57{bottom:148.826667pt;}
.y2b{bottom:152.026667pt;}
.y65{bottom:155.066667pt;}
.y2a{bottom:156.026667pt;}
.y87{bottom:158.440000pt;}
.y64{bottom:159.066667pt;}
.yc7{bottom:169.306667pt;}
.y63{bottom:169.786667pt;}
.y9d{bottom:169.960000pt;}
.y56{bottom:170.586667pt;}
.yc6{bottom:191.066667pt;}
.y55{bottom:192.346667pt;}
.y86{bottom:202.600000pt;}
.yc5{bottom:212.666667pt;}
.y54{bottom:214.106667pt;}
.y9b{bottom:214.120000pt;}
.y83{bottom:225.000000pt;}
.y29{bottom:226.906667pt;}
.yc4{bottom:234.426667pt;}
.y53{bottom:235.866667pt;}
.y28{bottom:248.666667pt;}
.yc3{bottom:256.186667pt;}
.y52{bottom:257.466667pt;}
.y81{bottom:269.000000pt;}
.y27{bottom:270.426667pt;}
.yc2{bottom:277.946667pt;}
.y51{bottom:279.226667pt;}
.y99{bottom:279.880000pt;}
.y26{bottom:292.186667pt;}
.yc1{bottom:299.706667pt;}
.y50{bottom:301.026667pt;}
.y80{bottom:313.186667pt;}
.y25{bottom:313.826667pt;}
.yc0{bottom:321.346667pt;}
.y4f{bottom:322.786667pt;}
.y24{bottom:335.586667pt;}
.ybf{bottom:343.106667pt;}
.y4e{bottom:344.546667pt;}
.y98{bottom:345.826667pt;}
.y23{bottom:357.346667pt;}
.ybe{bottom:364.866667pt;}
.y4d{bottom:366.146667pt;}
.y22{bottom:379.106667pt;}
.y7f{bottom:379.746667pt;}
.ybd{bottom:386.626667pt;}
.y4c{bottom:387.906667pt;}
.y97{bottom:389.986667pt;}
.y21{bottom:400.866667pt;}
.ybc{bottom:408.386667pt;}
.y4b{bottom:409.666667pt;}
.y20{bottom:422.466667pt;}
.y7e{bottom:423.906667pt;}
.ybb{bottom:429.986667pt;}
.y4a{bottom:431.426667pt;}
.y96{bottom:433.986667pt;}
.y1f{bottom:444.226667pt;}
.yba{bottom:451.746667pt;}
.y49{bottom:453.026667pt;}
.y5b{bottom:457.026667pt;}
.y1e{bottom:465.986667pt;}
.y7d{bottom:467.906667pt;}
.yb9{bottom:473.506667pt;}
.y48{bottom:474.786667pt;}
.y95{bottom:478.146667pt;}
.y1d{bottom:487.746667pt;}
.yb8{bottom:495.266667pt;}
.y47{bottom:496.546667pt;}
.y94{bottom:500.546667pt;}
.y1b{bottom:509.506667pt;}
.y7b{bottom:512.066667pt;}
.y1c{bottom:513.506667pt;}
.yb7{bottom:517.026667pt;}
.y46{bottom:518.306667pt;}
.yb6{bottom:538.653333pt;}
.y45{bottom:540.093333pt;}
.y93{bottom:544.733333pt;}
.y1a{bottom:552.893333pt;}
.y7a{bottom:556.253333pt;}
.yb5{bottom:560.413333pt;}
.y44{bottom:561.693333pt;}
.yb4{bottom:582.173333pt;}
.y43{bottom:583.453333pt;}
.y92{bottom:588.893333pt;}
.y79{bottom:600.413333pt;}
.yb3{bottom:603.933333pt;}
.y42{bottom:605.213333pt;}
.y19{bottom:617.853333pt;}
.yb2{bottom:625.533333pt;}
.y41{bottom:626.973333pt;}
.y91{bottom:632.893333pt;}
.y18{bottom:643.613333pt;}
.y78{bottom:644.413333pt;}
.yb1{bottom:647.293333pt;}
.y40{bottom:648.733333pt;}
.y90{bottom:655.306667pt;}
.y17{bottom:656.573333pt;}
.y77{bottom:666.813333pt;}
.yb0{bottom:669.053333pt;}
.y16{bottom:669.373333pt;}
.y3f{bottom:670.333333pt;}
.y15{bottom:682.333333pt;}
.y75{bottom:689.226667pt;}
.yaf{bottom:690.813333pt;}
.y3e{bottom:692.093333pt;}
.y14{bottom:695.133333pt;}
.y8f{bottom:699.453333pt;}
.y13{bottom:708.093333pt;}
.y74{bottom:711.613333pt;}
.yae{bottom:712.573333pt;}
.y3d{bottom:713.853333pt;}
.y12{bottom:720.893333pt;}
.y11{bottom:733.853333pt;}
.y73{bottom:734.013333pt;}
.yad{bottom:734.173333pt;}
.y3c{bottom:735.613333pt;}
.y8d{bottom:743.613333pt;}
.y10{bottom:746.653333pt;}
.yac{bottom:755.933333pt;}
.y3b{bottom:757.373333pt;}
.yf{bottom:759.613333pt;}
.ye{bottom:772.453333pt;}
.yab{bottom:777.733333pt;}
.y72{bottom:778.213333pt;}
.y3a{bottom:779.013333pt;}
.yd{bottom:785.413333pt;}
.y8c{bottom:787.813333pt;}
.yc{bottom:798.213333pt;}
.yaa{bottom:799.493333pt;}
.y71{bottom:800.613333pt;}
.y39{bottom:800.773333pt;}
.yb{bottom:811.013333pt;}
.ya9{bottom:821.253333pt;}
.y38{bottom:822.533333pt;}
.ya{bottom:823.973333pt;}
.y8b{bottom:831.813333pt;}
.ya8{bottom:842.853333pt;}
.y37{bottom:844.293333pt;}
.y6e{bottom:844.773333pt;}
.y9{bottom:849.733333pt;}
.ya7{bottom:864.613333pt;}
.y36{bottom:866.053333pt;}
.y8a{bottom:875.973333pt;}
.y8{bottom:884.293333pt;}
.ya6{bottom:886.373333pt;}
.y35{bottom:887.653333pt;}
.y6b{bottom:888.773333pt;}
.y7{bottom:897.253333pt;}
.y89{bottom:898.373333pt;}
.ya5{bottom:908.133333pt;}
.y34{bottom:909.413333pt;}
.y6{bottom:923.013333pt;}
.ya4{bottom:929.893333pt;}
.y33{bottom:931.173333pt;}
.y62{bottom:935.173333pt;}
.y88{bottom:942.533333pt;}
.ya3{bottom:951.493333pt;}
.y32{bottom:952.933333pt;}
.ya2{bottom:973.253333pt;}
.y31{bottom:974.533333pt;}
.y5{bottom:980.133333pt;}
.ya1{bottom:985.893333pt;}
.y30{bottom:996.293333pt;}
.y4{bottom:997.733333pt;}
.y2f{bottom:1018.080000pt;}
.y2e{bottom:1034.240000pt;}
.y1{bottom:1049.760000pt;}
.h15{height:21.586667pt;}
.hf{height:21.746667pt;}
.h11{height:21.760000pt;}
.h9{height:21.997500pt;}
.h8{height:26.187500pt;}
.ha{height:28.282500pt;}
.h3{height:35.091250pt;}
.h5{height:36.703125pt;}
.h6{height:39.281250pt;}
.hb{height:41.405659pt;}
.he{height:43.346667pt;}
.h12{height:43.360000pt;}
.h16{height:43.380000pt;}
.hd{height:43.506667pt;}
.h18{height:43.516000pt;}
.h17{height:43.520000pt;}
.h14{height:43.538667pt;}
.h10{height:43.540000pt;}
.h13{height:43.546667pt;}
.h2{height:44.648750pt;}
.h4{height:45.022500pt;}
.h1a{height:65.106667pt;}
.h1b{height:65.272000pt;}
.h19{height:65.298667pt;}
.h1{height:1122.666667pt;}
.hc{height:1122.706587pt;}
.h7{height:1122.706667pt;}
.h0{height:1122.720000pt;}
.wf{width:36.320000pt;}
.we{width:37.920000pt;}
.w3{width:44.312000pt;}
.wb{width:45.432000pt;}
.w7{width:58.720000pt;}
.w6{width:59.520000pt;}
.w10{width:62.432000pt;}
.wd{width:64.658667pt;}
.w5{width:66.258667pt;}
.w8{width:68.992000pt;}
.wa{width:84.338667pt;}
.wc{width:84.946667pt;}
.w4{width:90.706667pt;}
.w11{width:101.426667pt;}
.w9{width:114.706667pt;}
.w12{width:121.138667pt;}
.w13{width:121.140000pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.872000pt;}
.x16{left:100.680000pt;}
.x1{left:113.472000pt;}
.x2{left:117.792000pt;}
.x20{left:121.320000pt;}
.x8{left:135.706667pt;}
.x18{left:145.640000pt;}
.x6{left:151.226667pt;}
.xd{left:153.446667pt;}
.x7{left:155.066667pt;}
.xe{left:157.786667pt;}
.x1f{left:160.026667pt;}
.x21{left:167.400000pt;}
.x29{left:174.906667pt;}
.x6d{left:182.746667pt;}
.x72{left:188.026667pt;}
.xc{left:191.546667pt;}
.x14{left:193.946667pt;}
.x31{left:198.586667pt;}
.x2a{left:207.226667pt;}
.x56{left:209.466667pt;}
.x6a{left:218.906667pt;}
.x51{left:220.186667pt;}
.x5b{left:222.746667pt;}
.x5d{left:229.946667pt;}
.x4d{left:232.826667pt;}
.x19{left:237.000000pt;}
.x3b{left:242.586667pt;}
.x9{left:250.426667pt;}
.x22{left:253.000000pt;}
.x68{left:257.466667pt;}
.x70{left:262.106667pt;}
.x40{left:269.026667pt;}
.x3e{left:270.146667pt;}
.x5f{left:274.786667pt;}
.x3d{left:276.226667pt;}
.x38{left:277.186667pt;}
.xa{left:279.106667pt;}
.x45{left:280.066667pt;}
.x3f{left:284.066667pt;}
.x3{left:289.186667pt;}
.x2f{left:302.626667pt;}
.x1a{left:304.066667pt;}
.xf{left:305.506667pt;}
.x2e{left:307.266667pt;}
.x2b{left:309.986667pt;}
.x5e{left:312.226667pt;}
.x58{left:315.426667pt;}
.x23{left:318.306667pt;}
.x4{left:325.826667pt;}
.x62{left:327.906667pt;}
.x6b{left:329.506667pt;}
.x2c{left:331.586667pt;}
.x32{left:333.826667pt;}
.x33{left:339.266667pt;}
.x27{left:347.586667pt;}
.x43{left:349.986667pt;}
.x52{left:353.986667pt;}
.x24{left:356.866667pt;}
.x1b{left:364.386667pt;}
.x28{left:376.226667pt;}
.x5{left:377.666667pt;}
.x4e{left:378.626667pt;}
.x39{left:382.626667pt;}
.x66{left:387.426667pt;}
.x73{left:389.986667pt;}
.x25{left:393.826667pt;}
.x41{left:394.786667pt;}
.x15{left:397.026667pt;}
.x64{left:413.346667pt;}
.x49{left:420.226667pt;}
.x1c{left:423.746667pt;}
.x53{left:428.066667pt;}
.x6e{left:436.066667pt;}
.x34{left:439.266667pt;}
.x5c{left:442.466667pt;}
.x35{left:446.653333pt;}
.x57{left:450.493333pt;}
.x63{left:454.013333pt;}
.x26{left:456.906667pt;}
.x59{left:459.133333pt;}
.x74{left:462.493333pt;}
.x6c{left:463.613333pt;}
.x36{left:466.333333pt;}
.x46{left:475.773333pt;}
.x54{left:477.053333pt;}
.x55{left:480.733333pt;}
.x47{left:483.293333pt;}
.x67{left:486.013333pt;}
.x4a{left:490.493333pt;}
.x1d{left:493.386667pt;}
.x6f{left:494.813333pt;}
.x48{left:496.413333pt;}
.x44{left:499.773333pt;}
.x60{left:511.453333pt;}
.x30{left:518.973333pt;}
.x12{left:529.213333pt;}
.x3c{left:530.173333pt;}
.x71{left:541.853333pt;}
.x4b{left:543.293333pt;}
.x61{left:545.853333pt;}
.x4c{left:546.973333pt;}
.x37{left:548.573333pt;}
.x10{left:554.313333pt;}
.x5a{left:557.053333pt;}
.x11{left:558.653333pt;}
.x50{left:562.013333pt;}
.x75{left:563.933333pt;}
.x76{left:571.293333pt;}
.x77{left:578.013333pt;}
.x4f{left:590.973333pt;}
.x2d{left:592.573333pt;}
.x3a{left:594.653333pt;}
.x13{left:607.933333pt;}
.x1e{left:608.906667pt;}
.x69{left:612.093333pt;}
.xb{left:617.853333pt;}
.x42{left:623.773333pt;}
.x65{left:624.773333pt;}
.x78{left:639.173333pt;}
.x79{left:646.693333pt;}
.x7a{left:659.813333pt;}
}




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