
    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_9bd604614fb1a3046e993844.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_3f6e7efcd71b2a10c594bdd3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.225098;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_fdfd48fd694602362200dcc8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_669355cd2c192d03be27d93f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.225098;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.236382,0.000000,-0.081386,0.236382,0,0);-ms-transform:matrix(0.236382,0.000000,-0.081386,0.236382,0,0);-webkit-transform:matrix(0.236382,0.000000,-0.081386,0.236382,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);}
.v1{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.172800px;}
.ls3{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.544282px;}
.ls9{letter-spacing:2.160000px;}
.ls6{letter-spacing:5.330363px;}
.ls7{letter-spacing:14.400000px;}
.lsa{letter-spacing:76.680000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8{word-spacing:-60.912000px;}
.ws9{word-spacing:-49.819095px;}
.ws25{word-spacing:-42.947496px;}
.wsb{word-spacing:-40.608000px;}
.ws20{word-spacing:-36.075896px;}
.ws14{word-spacing:-34.110720px;}
.wsa{word-spacing:-32.486400px;}
.ws33{word-spacing:-30.002328px;}
.ws1c{word-spacing:-28.656000px;}
.wsc{word-spacing:-28.368000px;}
.ws4d{word-spacing:-28.345347px;}
.ws1a{word-spacing:-28.152000px;}
.ws16{word-spacing:-27.216000px;}
.wsd{word-spacing:-26.928000px;}
.ws18{word-spacing:-26.801280px;}
.ws28{word-spacing:-25.776000px;}
.ws13{word-spacing:-25.488000px;}
.ws17{word-spacing:-24.768000px;}
.ws43{word-spacing:-24.653690px;}
.ws4c{word-spacing:-24.406970px;}
.ws2f{word-spacing:-24.336000px;}
.ws11{word-spacing:-24.048000px;}
.ws10{word-spacing:-23.328000px;}
.ws3f{word-spacing:-23.310720px;}
.ws27{word-spacing:-23.184000px;}
.ws48{word-spacing:-23.130729px;}
.ws1d{word-spacing:-22.896000px;}
.ws15{word-spacing:-22.608000px;}
.ws23{word-spacing:-22.387524px;}
.ws47{word-spacing:-21.870720px;}
.ws45{word-spacing:-21.607768px;}
.ws2a{word-spacing:-21.456000px;}
.ws46{word-spacing:-21.361049px;}
.wse{word-spacing:-21.168000px;}
.ws34{word-spacing:-20.864563px;}
.ws41{word-spacing:-20.846288px;}
.ws44{word-spacing:-20.430720px;}
.ws4f{word-spacing:-20.310206px;}
.ws4b{word-spacing:-20.197440px;}
.ws22{word-spacing:-20.160000px;}
.ws52{word-spacing:-20.084808px;}
.ws24{word-spacing:-20.016000px;}
.wsf{word-spacing:-19.728000px;}
.ws3d{word-spacing:-19.710720px;}
.ws49{word-spacing:-19.690560px;}
.ws40{word-spacing:-19.571570px;}
.ws12{word-spacing:-19.353600px;}
.ws4e{word-spacing:-19.203840px;}
.ws3e{word-spacing:-18.990720px;}
.ws2c{word-spacing:-18.576000px;}
.ws2e{word-spacing:-18.288000px;}
.ws2b{word-spacing:-18.270720px;}
.ws42{word-spacing:-17.264284px;}
.ws26{word-spacing:-17.136000px;}
.ws1e{word-spacing:-16.848000px;}
.ws19{word-spacing:-15.625440px;}
.ws38{word-spacing:-15.408000px;}
.ws4a{word-spacing:-15.120000px;}
.ws1f{word-spacing:-14.256000px;}
.ws31{word-spacing:-13.968000px;}
.ws21{word-spacing:-13.950720px;}
.ws51{word-spacing:-13.230720px;}
.ws39{word-spacing:-12.528000px;}
.ws3c{word-spacing:-11.726798px;}
.ws3b{word-spacing:-11.088000px;}
.ws3a{word-spacing:-9.648000px;}
.ws32{word-spacing:-6.768000px;}
.ws30{word-spacing:-6.750720px;}
.ws37{word-spacing:-5.328000px;}
.ws35{word-spacing:-3.888000px;}
.ws36{word-spacing:-2.448000px;}
.ws29{word-spacing:-2.430720px;}
.ws1b{word-spacing:-0.990720px;}
.ws0{word-spacing:-0.144000px;}
.ws1{word-spacing:-0.108000px;}
.ws6{word-spacing:-0.076148px;}
.ws2{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws2d{word-spacing:1.889280px;}
.ws50{word-spacing:5.489280px;}
.ws5{word-spacing:16.344000px;}
.ws4{word-spacing:17.208000px;}
.ws7{word-spacing:20.952000px;}
._a{margin-left:-10.471879px;}
._8{margin-left:-9.279251px;}
._20{margin-left:-8.108243px;}
._7{margin-left:-6.982090px;}
._9{margin-left:-5.330363px;}
._c{margin-left:-4.223572px;}
._5{margin-left:-2.736000px;}
._3{margin-left:-1.260000px;}
._2{width:1.152000px;}
._4{width:2.340000px;}
._6{width:3.816000px;}
._b{width:5.519210px;}
._12{width:6.556740px;}
._0{width:7.632000px;}
._1{width:9.216000px;}
._d{width:10.908000px;}
._1a{width:12.168000px;}
._e{width:13.608000px;}
._14{width:15.012000px;}
._f{width:16.020000px;}
._11{width:17.964000px;}
._15{width:19.836000px;}
._10{width:21.528000px;}
._13{width:23.256000px;}
._16{width:24.300000px;}
._17{width:26.172000px;}
._18{width:27.360000px;}
._19{width:28.656000px;}
._1c{width:31.212000px;}
._1b{width:32.760000px;}
._1d{width:35.640000px;}
._1e{width:39.024000px;}
._1f{width:40.392000px;}
._21{width:41.689440px;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:38.880000px;}
.fsb{font-size:47.520000px;}
.fsc{font-size:50.257708px;}
.fsa{font-size:57.600000px;}
.fs5{font-size:60.480000px;}
.fs4{font-size:63.964355px;}
.fs6{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:73.102120px;}
.fs3{font-size:76.148042px;}
.fs9{font-size:83.520000px;}
.fs8{font-size:88.331728px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:57.600000px;}
.y8a{bottom:113.040000px;}
.y3e{bottom:123.840000px;}
.y83{bottom:125.640000px;}
.y96{bottom:130.680000px;}
.y89{bottom:133.560000px;}
.y7{bottom:134.280000px;}
.ybc{bottom:135.720000px;}
.y8b{bottom:143.280000px;}
.y3d{bottom:144.360000px;}
.y82{bottom:146.520000px;}
.y95{bottom:151.560000px;}
.ybb{bottom:153.000000px;}
.y79{bottom:164.520000px;}
.y3c{bottom:165.240000px;}
.y81{bottom:167.040000px;}
.y88{bottom:171.000000px;}
.y94{bottom:172.080000px;}
.y78{bottom:185.040000px;}
.y3b{bottom:185.760000px;}
.yba{bottom:187.200000px;}
.y80{bottom:187.920000px;}
.y93{bottom:192.960000px;}
.yb9{bottom:204.480000px;}
.y77{bottom:205.920000px;}
.y3a{bottom:206.640000px;}
.y7f{bottom:208.440000px;}
.y92{bottom:213.480000px;}
.y76{bottom:226.440000px;}
.y7e{bottom:229.320000px;}
.y91{bottom:234.360000px;}
.yb8{bottom:239.040000px;}
.y75{bottom:247.320000px;}
.y39{bottom:248.040000px;}
.y66{bottom:249.840000px;}
.y90{bottom:254.880000px;}
.yb7{bottom:255.960000px;}
.y74{bottom:267.840000px;}
.y65{bottom:270.720000px;}
.y8f{bottom:275.760000px;}
.y73{bottom:288.720000px;}
.y38{bottom:289.440000px;}
.y64{bottom:291.240000px;}
.yb6{bottom:291.960000px;}
.y8e{bottom:296.280000px;}
.y72{bottom:309.240000px;}
.y37{bottom:309.960000px;}
.y63{bottom:312.120000px;}
.y8d{bottom:317.160000px;}
.y87{bottom:330.120000px;}
.y36{bottom:330.840000px;}
.y62{bottom:332.640000px;}
.yb5{bottom:343.800000px;}
.y71{bottom:350.640000px;}
.y35{bottom:351.360000px;}
.y61{bottom:353.520000px;}
.y8c{bottom:354.240000px;}
.yb4{bottom:361.080000px;}
.y86{bottom:371.520000px;}
.y34{bottom:372.240000px;}
.y60{bottom:374.040000px;}
.y70{bottom:392.040000px;}
.y33{bottom:392.760000px;}
.y5f{bottom:394.920000px;}
.yb3{bottom:395.280000px;}
.y85{bottom:412.200000px;}
.y6f{bottom:412.920000px;}
.y32{bottom:413.640000px;}
.y7d{bottom:415.440000px;}
.yb2{bottom:430.920000px;}
.y6e{bottom:433.440000px;}
.y31{bottom:434.160000px;}
.y5e{bottom:436.320000px;}
.yb1{bottom:448.200000px;}
.y6d{bottom:454.320000px;}
.y30{bottom:455.040000px;}
.y5d{bottom:456.840000px;}
.y6c{bottom:474.840000px;}
.y2f{bottom:475.560000px;}
.y5c{bottom:477.720000px;}
.yb0{bottom:482.760000px;}
.y2e{bottom:496.440000px;}
.y5b{bottom:498.240000px;}
.yaf{bottom:500.040000px;}
.y6b{bottom:516.240000px;}
.y2d{bottom:516.960000px;}
.y5a{bottom:519.120000px;}
.yae{bottom:534.600000px;}
.y6a{bottom:537.120000px;}
.y2c{bottom:537.840000px;}
.y59{bottom:539.640000px;}
.yad{bottom:551.880000px;}
.y69{bottom:557.640000px;}
.y2b{bottom:558.360000px;}
.y84{bottom:560.520000px;}
.y68{bottom:578.520000px;}
.y2a{bottom:579.240000px;}
.y58{bottom:581.040000px;}
.yac{bottom:586.440000px;}
.y29{bottom:599.760000px;}
.y57{bottom:601.920000px;}
.yab{bottom:603.720000px;}
.y67{bottom:615.960000px;}
.yaa{bottom:620.640000px;}
.y56{bottom:622.440000px;}
.y6{bottom:622.800000px;}
.y28{bottom:641.160000px;}
.y55{bottom:643.320000px;}
.y5{bottom:654.120000px;}
.ya9{bottom:655.200000px;}
.y27{bottom:662.040000px;}
.y54{bottom:663.840000px;}
.ya8{bottom:672.480000px;}
.y26{bottom:682.560000px;}
.y7c{bottom:684.720000px;}
.y25{bottom:703.440000px;}
.y53{bottom:705.240000px;}
.ya7{bottom:707.040000px;}
.y24{bottom:723.960000px;}
.ya6{bottom:724.320000px;}
.y7b{bottom:726.120000px;}
.y23{bottom:744.840000px;}
.y4{bottom:746.280000px;}
.y52{bottom:746.640000px;}
.ya5{bottom:758.880000px;}
.y22{bottom:765.360000px;}
.y51{bottom:767.520000px;}
.ya4{bottom:776.160000px;}
.y21{bottom:786.240000px;}
.y50{bottom:788.040000px;}
.y20{bottom:806.760000px;}
.y4f{bottom:808.920000px;}
.ya3{bottom:810.720000px;}
.y15{bottom:826.560000px;}
.y1f{bottom:827.640000px;}
.y4e{bottom:829.440000px;}
.y3{bottom:831.600000px;}
.yca{bottom:843.840000px;}
.y4d{bottom:850.320000px;}
.yc9{bottom:860.760000px;}
.ya2{bottom:861.840000px;}
.y14{bottom:867.960000px;}
.y1e{bottom:869.040000px;}
.y4c{bottom:870.840000px;}
.y2{bottom:873.000000px;}
.y13{bottom:888.480000px;}
.y4b{bottom:891.720000px;}
.yc8{bottom:896.760000px;}
.ya1{bottom:897.840000px;}
.y12{bottom:909.360000px;}
.y4a{bottom:912.240000px;}
.yc7{bottom:914.040000px;}
.y1{bottom:914.400000px;}
.ya0{bottom:915.120000px;}
.y11{bottom:929.880000px;}
.yc6{bottom:931.320000px;}
.y49{bottom:933.120000px;}
.y9f{bottom:949.680000px;}
.y10{bottom:950.760000px;}
.y48{bottom:953.640000px;}
.y9e{bottom:966.960000px;}
.yc5{bottom:969.120000px;}
.yf{bottom:971.280000px;}
.y1d{bottom:973.080000px;}
.y47{bottom:974.520000px;}
.y9d{bottom:984.240000px;}
.yc4{bottom:986.400000px;}
.ye{bottom:992.160000px;}
.y46{bottom:995.040000px;}
.y1c{bottom:997.200000px;}
.yc3{bottom:1003.680000px;}
.yd{bottom:1012.680000px;}
.y7a{bottom:1015.920000px;}
.y9c{bottom:1018.800000px;}
.y1b{bottom:1021.320000px;}
.yc{bottom:1033.560000px;}
.y9b{bottom:1036.080000px;}
.y45{bottom:1036.440000px;}
.yc2{bottom:1038.240000px;}
.ycc{bottom:1051.920000px;}
.yb{bottom:1054.080000px;}
.yc1{bottom:1055.520000px;}
.y44{bottom:1057.320000px;}
.y19{bottom:1067.760000px;}
.y9a{bottom:1070.280000px;}
.yc0{bottom:1072.800000px;}
.ya{bottom:1074.960000px;}
.ycb{bottom:1075.680000px;}
.y43{bottom:1077.840000px;}
.y1a{bottom:1079.640000px;}
.y99{bottom:1087.560000px;}
.ybf{bottom:1090.080000px;}
.y42{bottom:1098.720000px;}
.y18{bottom:1100.520000px;}
.y98{bottom:1104.840000px;}
.y9{bottom:1116.360000px;}
.y41{bottom:1119.240000px;}
.ybe{bottom:1124.640000px;}
.y17{bottom:1131.840000px;}
.y8{bottom:1136.880000px;}
.y97{bottom:1139.760000px;}
.y40{bottom:1140.120000px;}
.ybd{bottom:1141.560000px;}
.y3f{bottom:1227.960000px;}
.hf{height:39.088828px;}
.h8{height:53.067656px;}
.h7{height:56.124974px;}
.he{height:60.804844px;}
.h4{height:63.175781px;}
.hb{height:64.142827px;}
.h6{height:66.815445px;}
.ha{height:69.491250px;}
.h5{height:72.386719px;}
.hd{height:73.283906px;}
.hc{height:77.505916px;}
.h3{height:94.763672px;}
.h9{height:108.580078px;}
.h2{height:126.351563px;}
.h1{height:1262.250000px;}
.h0{height:1262.519990px;}
.w1{width:892.500000px;}
.w0{width:892.800018px;}
.x0{left:0.000000px;}
.x17{left:106.200000px;}
.x8{left:108.000000px;}
.x62{left:123.120000px;}
.x9{left:126.360000px;}
.x18{left:127.440000px;}
.x31{left:131.760000px;}
.x52{left:149.400000px;}
.x32{left:154.440000px;}
.x5e{left:157.680000px;}
.x1e{left:169.920000px;}
.x20{left:173.880000px;}
.x3b{left:175.320000px;}
.x36{left:178.200000px;}
.x33{left:181.440000px;}
.x2f{left:183.960000px;}
.x38{left:192.960000px;}
.x42{left:194.400000px;}
.x2{left:221.400000px;}
.x3{left:240.480000px;}
.x4d{left:243.000000px;}
.x10{left:246.600000px;}
.x60{left:257.760000px;}
.x1f{left:259.560000px;}
.x27{left:265.320000px;}
.xd{left:267.480000px;}
.x59{left:269.640000px;}
.x4c{left:271.080000px;}
.x14{left:273.240000px;}
.x29{left:280.440000px;}
.xc{left:282.600000px;}
.x2d{left:288.360000px;}
.x11{left:291.240000px;}
.x3a{left:295.200000px;}
.x4f{left:296.280000px;}
.x5{left:304.560000px;}
.x15{left:307.440000px;}
.x58{left:310.320000px;}
.x49{left:318.600000px;}
.x7{left:321.480000px;}
.x3d{left:326.880000px;}
.x43{left:333.720000px;}
.x54{left:340.200000px;}
.x5f{left:347.040000px;}
.x3f{left:349.920000px;}
.x30{left:351.000000px;}
.x50{left:355.320000px;}
.x46{left:360.360000px;}
.x56{left:374.040000px;}
.x6{left:378.000000px;}
.x3c{left:379.080000px;}
.x19{left:384.840000px;}
.x2e{left:387.360000px;}
.x28{left:394.920000px;}
.x21{left:399.960000px;}
.x4{left:410.040000px;}
.x1{left:413.280000px;}
.x1c{left:415.800000px;}
.x53{left:417.600000px;}
.x5a{left:419.760000px;}
.x44{left:426.240000px;}
.xe{left:434.880000px;}
.x1a{left:437.760000px;}
.xa{left:442.080000px;}
.xf{left:457.560000px;}
.x2b{left:460.440000px;}
.x34{left:461.520000px;}
.x24{left:463.680000px;}
.x2a{left:466.560000px;}
.x1d{left:477.000000px;}
.x5c{left:495.000000px;}
.x41{left:497.880000px;}
.x45{left:519.840000px;}
.x2c{left:534.600000px;}
.x22{left:538.200000px;}
.x40{left:550.800000px;}
.x5b{left:565.200000px;}
.x3e{left:574.920000px;}
.x61{left:579.240000px;}
.x16{left:588.240000px;}
.x12{left:592.560000px;}
.x57{left:595.800000px;}
.x4a{left:599.040000px;}
.x13{left:601.200000px;}
.x51{left:608.400000px;}
.x55{left:614.520000px;}
.x25{left:618.120000px;}
.x47{left:649.080000px;}
.x48{left:660.960000px;}
.x5d{left:690.840000px;}
.x37{left:691.920000px;}
.x23{left:694.080000px;}
.x4b{left:709.200000px;}
.x26{left:725.400000px;}
.x4e{left:733.320000px;}
.x35{left:752.400000px;}
.xb{left:759.240000px;}
.x39{left:782.640000px;}
.x1b{left:786.600000px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.153600pt;}
.ls3{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.372695pt;}
.ls9{letter-spacing:1.920000pt;}
.ls6{letter-spacing:4.738100pt;}
.ls7{letter-spacing:12.800000pt;}
.lsa{letter-spacing:68.160000pt;}
.ws8{word-spacing:-54.144000pt;}
.ws9{word-spacing:-44.283640pt;}
.ws25{word-spacing:-38.175552pt;}
.wsb{word-spacing:-36.096000pt;}
.ws20{word-spacing:-32.067463pt;}
.ws14{word-spacing:-30.320640pt;}
.wsa{word-spacing:-28.876800pt;}
.ws33{word-spacing:-26.668736pt;}
.ws1c{word-spacing:-25.472000pt;}
.wsc{word-spacing:-25.216000pt;}
.ws4d{word-spacing:-25.195864pt;}
.ws1a{word-spacing:-25.024000pt;}
.ws16{word-spacing:-24.192000pt;}
.wsd{word-spacing:-23.936000pt;}
.ws18{word-spacing:-23.823360pt;}
.ws28{word-spacing:-22.912000pt;}
.ws13{word-spacing:-22.656000pt;}
.ws17{word-spacing:-22.016000pt;}
.ws43{word-spacing:-21.914391pt;}
.ws4c{word-spacing:-21.695085pt;}
.ws2f{word-spacing:-21.632000pt;}
.ws11{word-spacing:-21.376000pt;}
.ws10{word-spacing:-20.736000pt;}
.ws3f{word-spacing:-20.720640pt;}
.ws27{word-spacing:-20.608000pt;}
.ws48{word-spacing:-20.560648pt;}
.ws1d{word-spacing:-20.352000pt;}
.ws15{word-spacing:-20.096000pt;}
.ws23{word-spacing:-19.900022pt;}
.ws47{word-spacing:-19.440640pt;}
.ws45{word-spacing:-19.206905pt;}
.ws2a{word-spacing:-19.072000pt;}
.ws46{word-spacing:-18.987599pt;}
.wse{word-spacing:-18.816000pt;}
.ws34{word-spacing:-18.546279pt;}
.ws41{word-spacing:-18.530034pt;}
.ws44{word-spacing:-18.160640pt;}
.ws4f{word-spacing:-18.053516pt;}
.ws4b{word-spacing:-17.953280pt;}
.ws22{word-spacing:-17.920000pt;}
.ws52{word-spacing:-17.853162pt;}
.ws24{word-spacing:-17.792000pt;}
.wsf{word-spacing:-17.536000pt;}
.ws3d{word-spacing:-17.520640pt;}
.ws49{word-spacing:-17.502720pt;}
.ws40{word-spacing:-17.396951pt;}
.ws12{word-spacing:-17.203200pt;}
.ws4e{word-spacing:-17.070080pt;}
.ws3e{word-spacing:-16.880640pt;}
.ws2c{word-spacing:-16.512000pt;}
.ws2e{word-spacing:-16.256000pt;}
.ws2b{word-spacing:-16.240640pt;}
.ws42{word-spacing:-15.346030pt;}
.ws26{word-spacing:-15.232000pt;}
.ws1e{word-spacing:-14.976000pt;}
.ws19{word-spacing:-13.889280pt;}
.ws38{word-spacing:-13.696000pt;}
.ws4a{word-spacing:-13.440000pt;}
.ws1f{word-spacing:-12.672000pt;}
.ws31{word-spacing:-12.416000pt;}
.ws21{word-spacing:-12.400640pt;}
.ws51{word-spacing:-11.760640pt;}
.ws39{word-spacing:-11.136000pt;}
.ws3c{word-spacing:-10.423821pt;}
.ws3b{word-spacing:-9.856000pt;}
.ws3a{word-spacing:-8.576000pt;}
.ws32{word-spacing:-6.016000pt;}
.ws30{word-spacing:-6.000640pt;}
.ws37{word-spacing:-4.736000pt;}
.ws35{word-spacing:-3.456000pt;}
.ws36{word-spacing:-2.176000pt;}
.ws29{word-spacing:-2.160640pt;}
.ws1b{word-spacing:-0.880640pt;}
.ws0{word-spacing:-0.128000pt;}
.ws1{word-spacing:-0.096000pt;}
.ws6{word-spacing:-0.067687pt;}
.ws2{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws2d{word-spacing:1.679360pt;}
.ws50{word-spacing:4.879360pt;}
.ws5{word-spacing:14.528000pt;}
.ws4{word-spacing:15.296000pt;}
.ws7{word-spacing:18.624000pt;}
._a{margin-left:-9.308337pt;}
._8{margin-left:-8.248223pt;}
._20{margin-left:-7.207328pt;}
._7{margin-left:-6.206302pt;}
._9{margin-left:-4.738100pt;}
._c{margin-left:-3.754286pt;}
._5{margin-left:-2.432000pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.024000pt;}
._4{width:2.080000pt;}
._6{width:3.392000pt;}
._b{width:4.905965pt;}
._12{width:5.828213pt;}
._0{width:6.784000pt;}
._1{width:8.192000pt;}
._d{width:9.696000pt;}
._1a{width:10.816000pt;}
._e{width:12.096000pt;}
._14{width:13.344000pt;}
._f{width:14.240000pt;}
._11{width:15.968000pt;}
._15{width:17.632000pt;}
._10{width:19.136000pt;}
._13{width:20.672000pt;}
._16{width:21.600000pt;}
._17{width:23.264000pt;}
._18{width:24.320000pt;}
._19{width:25.472000pt;}
._1c{width:27.744000pt;}
._1b{width:29.120000pt;}
._1d{width:31.680000pt;}
._1e{width:34.688000pt;}
._1f{width:35.904000pt;}
._21{width:37.057280pt;}
.fsd{font-size:34.560000pt;}
.fsb{font-size:42.240000pt;}
.fsc{font-size:44.673518pt;}
.fsa{font-size:51.200000pt;}
.fs5{font-size:53.760000pt;}
.fs4{font-size:56.857205pt;}
.fs6{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:64.979662pt;}
.fs3{font-size:67.687148pt;}
.fs9{font-size:74.240000pt;}
.fs8{font-size:78.517092pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:51.200000pt;}
.y8a{bottom:100.480000pt;}
.y3e{bottom:110.080000pt;}
.y83{bottom:111.680000pt;}
.y96{bottom:116.160000pt;}
.y89{bottom:118.720000pt;}
.y7{bottom:119.360000pt;}
.ybc{bottom:120.640000pt;}
.y8b{bottom:127.360000pt;}
.y3d{bottom:128.320000pt;}
.y82{bottom:130.240000pt;}
.y95{bottom:134.720000pt;}
.ybb{bottom:136.000000pt;}
.y79{bottom:146.240000pt;}
.y3c{bottom:146.880000pt;}
.y81{bottom:148.480000pt;}
.y88{bottom:152.000000pt;}
.y94{bottom:152.960000pt;}
.y78{bottom:164.480000pt;}
.y3b{bottom:165.120000pt;}
.yba{bottom:166.400000pt;}
.y80{bottom:167.040000pt;}
.y93{bottom:171.520000pt;}
.yb9{bottom:181.760000pt;}
.y77{bottom:183.040000pt;}
.y3a{bottom:183.680000pt;}
.y7f{bottom:185.280000pt;}
.y92{bottom:189.760000pt;}
.y76{bottom:201.280000pt;}
.y7e{bottom:203.840000pt;}
.y91{bottom:208.320000pt;}
.yb8{bottom:212.480000pt;}
.y75{bottom:219.840000pt;}
.y39{bottom:220.480000pt;}
.y66{bottom:222.080000pt;}
.y90{bottom:226.560000pt;}
.yb7{bottom:227.520000pt;}
.y74{bottom:238.080000pt;}
.y65{bottom:240.640000pt;}
.y8f{bottom:245.120000pt;}
.y73{bottom:256.640000pt;}
.y38{bottom:257.280000pt;}
.y64{bottom:258.880000pt;}
.yb6{bottom:259.520000pt;}
.y8e{bottom:263.360000pt;}
.y72{bottom:274.880000pt;}
.y37{bottom:275.520000pt;}
.y63{bottom:277.440000pt;}
.y8d{bottom:281.920000pt;}
.y87{bottom:293.440000pt;}
.y36{bottom:294.080000pt;}
.y62{bottom:295.680000pt;}
.yb5{bottom:305.600000pt;}
.y71{bottom:311.680000pt;}
.y35{bottom:312.320000pt;}
.y61{bottom:314.240000pt;}
.y8c{bottom:314.880000pt;}
.yb4{bottom:320.960000pt;}
.y86{bottom:330.240000pt;}
.y34{bottom:330.880000pt;}
.y60{bottom:332.480000pt;}
.y70{bottom:348.480000pt;}
.y33{bottom:349.120000pt;}
.y5f{bottom:351.040000pt;}
.yb3{bottom:351.360000pt;}
.y85{bottom:366.400000pt;}
.y6f{bottom:367.040000pt;}
.y32{bottom:367.680000pt;}
.y7d{bottom:369.280000pt;}
.yb2{bottom:383.040000pt;}
.y6e{bottom:385.280000pt;}
.y31{bottom:385.920000pt;}
.y5e{bottom:387.840000pt;}
.yb1{bottom:398.400000pt;}
.y6d{bottom:403.840000pt;}
.y30{bottom:404.480000pt;}
.y5d{bottom:406.080000pt;}
.y6c{bottom:422.080000pt;}
.y2f{bottom:422.720000pt;}
.y5c{bottom:424.640000pt;}
.yb0{bottom:429.120000pt;}
.y2e{bottom:441.280000pt;}
.y5b{bottom:442.880000pt;}
.yaf{bottom:444.480000pt;}
.y6b{bottom:458.880000pt;}
.y2d{bottom:459.520000pt;}
.y5a{bottom:461.440000pt;}
.yae{bottom:475.200000pt;}
.y6a{bottom:477.440000pt;}
.y2c{bottom:478.080000pt;}
.y59{bottom:479.680000pt;}
.yad{bottom:490.560000pt;}
.y69{bottom:495.680000pt;}
.y2b{bottom:496.320000pt;}
.y84{bottom:498.240000pt;}
.y68{bottom:514.240000pt;}
.y2a{bottom:514.880000pt;}
.y58{bottom:516.480000pt;}
.yac{bottom:521.280000pt;}
.y29{bottom:533.120000pt;}
.y57{bottom:535.040000pt;}
.yab{bottom:536.640000pt;}
.y67{bottom:547.520000pt;}
.yaa{bottom:551.680000pt;}
.y56{bottom:553.280000pt;}
.y6{bottom:553.600000pt;}
.y28{bottom:569.920000pt;}
.y55{bottom:571.840000pt;}
.y5{bottom:581.440000pt;}
.ya9{bottom:582.400000pt;}
.y27{bottom:588.480000pt;}
.y54{bottom:590.080000pt;}
.ya8{bottom:597.760000pt;}
.y26{bottom:606.720000pt;}
.y7c{bottom:608.640000pt;}
.y25{bottom:625.280000pt;}
.y53{bottom:626.880000pt;}
.ya7{bottom:628.480000pt;}
.y24{bottom:643.520000pt;}
.ya6{bottom:643.840000pt;}
.y7b{bottom:645.440000pt;}
.y23{bottom:662.080000pt;}
.y4{bottom:663.360000pt;}
.y52{bottom:663.680000pt;}
.ya5{bottom:674.560000pt;}
.y22{bottom:680.320000pt;}
.y51{bottom:682.240000pt;}
.ya4{bottom:689.920000pt;}
.y21{bottom:698.880000pt;}
.y50{bottom:700.480000pt;}
.y20{bottom:717.120000pt;}
.y4f{bottom:719.040000pt;}
.ya3{bottom:720.640000pt;}
.y15{bottom:734.720000pt;}
.y1f{bottom:735.680000pt;}
.y4e{bottom:737.280000pt;}
.y3{bottom:739.200000pt;}
.yca{bottom:750.080000pt;}
.y4d{bottom:755.840000pt;}
.yc9{bottom:765.120000pt;}
.ya2{bottom:766.080000pt;}
.y14{bottom:771.520000pt;}
.y1e{bottom:772.480000pt;}
.y4c{bottom:774.080000pt;}
.y2{bottom:776.000000pt;}
.y13{bottom:789.760000pt;}
.y4b{bottom:792.640000pt;}
.yc8{bottom:797.120000pt;}
.ya1{bottom:798.080000pt;}
.y12{bottom:808.320000pt;}
.y4a{bottom:810.880000pt;}
.yc7{bottom:812.480000pt;}
.y1{bottom:812.800000pt;}
.ya0{bottom:813.440000pt;}
.y11{bottom:826.560000pt;}
.yc6{bottom:827.840000pt;}
.y49{bottom:829.440000pt;}
.y9f{bottom:844.160000pt;}
.y10{bottom:845.120000pt;}
.y48{bottom:847.680000pt;}
.y9e{bottom:859.520000pt;}
.yc5{bottom:861.440000pt;}
.yf{bottom:863.360000pt;}
.y1d{bottom:864.960000pt;}
.y47{bottom:866.240000pt;}
.y9d{bottom:874.880000pt;}
.yc4{bottom:876.800000pt;}
.ye{bottom:881.920000pt;}
.y46{bottom:884.480000pt;}
.y1c{bottom:886.400000pt;}
.yc3{bottom:892.160000pt;}
.yd{bottom:900.160000pt;}
.y7a{bottom:903.040000pt;}
.y9c{bottom:905.600000pt;}
.y1b{bottom:907.840000pt;}
.yc{bottom:918.720000pt;}
.y9b{bottom:920.960000pt;}
.y45{bottom:921.280000pt;}
.yc2{bottom:922.880000pt;}
.ycc{bottom:935.040000pt;}
.yb{bottom:936.960000pt;}
.yc1{bottom:938.240000pt;}
.y44{bottom:939.840000pt;}
.y19{bottom:949.120000pt;}
.y9a{bottom:951.360000pt;}
.yc0{bottom:953.600000pt;}
.ya{bottom:955.520000pt;}
.ycb{bottom:956.160000pt;}
.y43{bottom:958.080000pt;}
.y1a{bottom:959.680000pt;}
.y99{bottom:966.720000pt;}
.ybf{bottom:968.960000pt;}
.y42{bottom:976.640000pt;}
.y18{bottom:978.240000pt;}
.y98{bottom:982.080000pt;}
.y9{bottom:992.320000pt;}
.y41{bottom:994.880000pt;}
.ybe{bottom:999.680000pt;}
.y17{bottom:1006.080000pt;}
.y8{bottom:1010.560000pt;}
.y97{bottom:1013.120000pt;}
.y40{bottom:1013.440000pt;}
.ybd{bottom:1014.720000pt;}
.y3f{bottom:1091.520000pt;}
.hf{height:34.745625pt;}
.h8{height:47.171250pt;}
.h7{height:49.888866pt;}
.he{height:54.048750pt;}
.h4{height:56.156250pt;}
.hb{height:57.015846pt;}
.h6{height:59.391507pt;}
.ha{height:61.770000pt;}
.h5{height:64.343750pt;}
.hd{height:65.141250pt;}
.hc{height:68.894148pt;}
.h3{height:84.234375pt;}
.h9{height:96.515625pt;}
.h2{height:112.312500pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.239991pt;}
.w1{width:793.333333pt;}
.w0{width:793.600016pt;}
.x0{left:0.000000pt;}
.x17{left:94.400000pt;}
.x8{left:96.000000pt;}
.x62{left:109.440000pt;}
.x9{left:112.320000pt;}
.x18{left:113.280000pt;}
.x31{left:117.120000pt;}
.x52{left:132.800000pt;}
.x32{left:137.280000pt;}
.x5e{left:140.160000pt;}
.x1e{left:151.040000pt;}
.x20{left:154.560000pt;}
.x3b{left:155.840000pt;}
.x36{left:158.400000pt;}
.x33{left:161.280000pt;}
.x2f{left:163.520000pt;}
.x38{left:171.520000pt;}
.x42{left:172.800000pt;}
.x2{left:196.800000pt;}
.x3{left:213.760000pt;}
.x4d{left:216.000000pt;}
.x10{left:219.200000pt;}
.x60{left:229.120000pt;}
.x1f{left:230.720000pt;}
.x27{left:235.840000pt;}
.xd{left:237.760000pt;}
.x59{left:239.680000pt;}
.x4c{left:240.960000pt;}
.x14{left:242.880000pt;}
.x29{left:249.280000pt;}
.xc{left:251.200000pt;}
.x2d{left:256.320000pt;}
.x11{left:258.880000pt;}
.x3a{left:262.400000pt;}
.x4f{left:263.360000pt;}
.x5{left:270.720000pt;}
.x15{left:273.280000pt;}
.x58{left:275.840000pt;}
.x49{left:283.200000pt;}
.x7{left:285.760000pt;}
.x3d{left:290.560000pt;}
.x43{left:296.640000pt;}
.x54{left:302.400000pt;}
.x5f{left:308.480000pt;}
.x3f{left:311.040000pt;}
.x30{left:312.000000pt;}
.x50{left:315.840000pt;}
.x46{left:320.320000pt;}
.x56{left:332.480000pt;}
.x6{left:336.000000pt;}
.x3c{left:336.960000pt;}
.x19{left:342.080000pt;}
.x2e{left:344.320000pt;}
.x28{left:351.040000pt;}
.x21{left:355.520000pt;}
.x4{left:364.480000pt;}
.x1{left:367.360000pt;}
.x1c{left:369.600000pt;}
.x53{left:371.200000pt;}
.x5a{left:373.120000pt;}
.x44{left:378.880000pt;}
.xe{left:386.560000pt;}
.x1a{left:389.120000pt;}
.xa{left:392.960000pt;}
.xf{left:406.720000pt;}
.x2b{left:409.280000pt;}
.x34{left:410.240000pt;}
.x24{left:412.160000pt;}
.x2a{left:414.720000pt;}
.x1d{left:424.000000pt;}
.x5c{left:440.000000pt;}
.x41{left:442.560000pt;}
.x45{left:462.080000pt;}
.x2c{left:475.200000pt;}
.x22{left:478.400000pt;}
.x40{left:489.600000pt;}
.x5b{left:502.400000pt;}
.x3e{left:511.040000pt;}
.x61{left:514.880000pt;}
.x16{left:522.880000pt;}
.x12{left:526.720000pt;}
.x57{left:529.600000pt;}
.x4a{left:532.480000pt;}
.x13{left:534.400000pt;}
.x51{left:540.800000pt;}
.x55{left:546.240000pt;}
.x25{left:549.440000pt;}
.x47{left:576.960000pt;}
.x48{left:587.520000pt;}
.x5d{left:614.080000pt;}
.x37{left:615.040000pt;}
.x23{left:616.960000pt;}
.x4b{left:630.400000pt;}
.x26{left:644.800000pt;}
.x4e{left:651.840000pt;}
.x35{left:668.800000pt;}
.xb{left:674.880000pt;}
.x39{left:695.680000pt;}
.x1b{left:699.200000pt;}
}




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