
    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_fc4c643aa9b2025b29bbfd7c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_e03b0524ed22c091427e818e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c1e3d80c64a47e9c557efbf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929199;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_e84d59b2bcd2466df25a8bc4.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_672faf14d9301dfabc49f1b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941895;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_16b163d58e4a31389ae5b6f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_a40cde3ee84414ded78a1b79.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.072754;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_b06e92152901974e38162760.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_86caad45561df3a36a4b2497.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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_393311b08fb0a32e61e11e86.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.088379;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_ac21f15d9baf1cced7073705.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937500;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_19b16f6f99b813c24d05f358.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.088379;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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-2.442000px;}
.ls29{letter-spacing:-2.064000px;}
.ls14{letter-spacing:-1.674000px;}
.ls32{letter-spacing:-1.572000px;}
.ls20{letter-spacing:-1.260000px;}
.ls36{letter-spacing:-0.942000px;}
.ls4{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.840000px;}
.ls8{letter-spacing:-0.834000px;}
.ls30{letter-spacing:-0.630000px;}
.ls28{letter-spacing:-0.612000px;}
.ls2a{letter-spacing:-0.455400px;}
.ls22{letter-spacing:-0.404400px;}
.ls1b{letter-spacing:-0.162000px;}
.ls6{letter-spacing:-0.102000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.003000px;}
.ls2e{letter-spacing:0.027000px;}
.ls34{letter-spacing:0.059580px;}
.ls10{letter-spacing:0.063600px;}
.ls25{letter-spacing:0.102000px;}
.lse{letter-spacing:0.212100px;}
.ls21{letter-spacing:0.213000px;}
.lsd{letter-spacing:0.236100px;}
.lsb{letter-spacing:0.289416px;}
.ls2b{letter-spacing:0.319074px;}
.lsc{letter-spacing:0.356100px;}
.ls35{letter-spacing:0.425400px;}
.ls0{letter-spacing:0.434246px;}
.ls1{letter-spacing:0.446246px;}
.ls5{letter-spacing:0.451200px;}
.ls1e{letter-spacing:0.549000px;}
.ls31{letter-spacing:0.553200px;}
.ls9{letter-spacing:0.566246px;}
.ls12{letter-spacing:0.626246px;}
.ls7{letter-spacing:0.714000px;}
.ls19{letter-spacing:0.810000px;}
.ls11{letter-spacing:0.870000px;}
.ls1f{letter-spacing:0.954222px;}
.ls2c{letter-spacing:1.062000px;}
.ls23{letter-spacing:1.122120px;}
.ls2f{letter-spacing:1.771080px;}
.ls1a{letter-spacing:3.222120px;}
.ls24{letter-spacing:3.282120px;}
.ls2{letter-spacing:3.871080px;}
.ls33{letter-spacing:3.913080px;}
.lsf{letter-spacing:5.562120px;}
.ls16{letter-spacing:7.482120px;}
.ls1c{letter-spacing:7.542120px;}
.ls2d{letter-spacing:8.131080px;}
.ls13{letter-spacing:9.642120px;}
.ls17{letter-spacing:16.002120px;}
.ls26{letter-spacing:22.386120px;}
.ls27{letter-spacing:22.422120px;}
.ls1d{letter-spacing:28.782120px;}
.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;}
}
.ws9{word-spacing:-16.019880px;}
.ws3{word-spacing:-15.917880px;}
.ws7{word-spacing:-15.755880px;}
.ws8{word-spacing:-15.513480px;}
.wsb{word-spacing:-15.462480px;}
.wsa{word-spacing:-15.305880px;}
.ws0{word-spacing:-14.058077px;}
.wsd{word-spacing:-13.822920px;}
.ws6{word-spacing:-13.606877px;}
.wsc{word-spacing:-13.534320px;}
.ws4{word-spacing:-13.466436px;}
.ws1{word-spacing:-13.108920px;}
.ws5{word-spacing:-11.932877px;}
.ws2{word-spacing:0.000000px;}
._10{margin-left:-3.585676px;}
._1{margin-left:-2.503027px;}
._2{margin-left:-1.107110px;}
._0{width:1.289256px;}
._4{width:2.489940px;}
._3{width:4.287132px;}
._11{width:5.360962px;}
._5{width:6.465600px;}
._6{width:7.908624px;}
._7{width:9.091982px;}
._e{width:10.723418px;}
._d{width:12.010747px;}
._b{width:13.812661px;}
._14{width:15.401640px;}
._28{width:16.429296px;}
._c{width:17.647496px;}
._12{width:19.400826px;}
._9{width:20.690113px;}
._f{width:21.923351px;}
._a{width:22.933087px;}
._8{width:24.310944px;}
._18{width:25.374578px;}
._13{width:26.462186px;}
._15{width:27.481616px;}
._1b{width:28.822912px;}
._24{width:29.948294px;}
._1d{width:31.256928px;}
._1e{width:32.798162px;}
._21{width:34.874628px;}
._22{width:36.133147px;}
._23{width:37.551726px;}
._1a{width:38.588905px;}
._19{width:39.794700px;}
._1c{width:41.689020px;}
._20{width:43.476811px;}
._1f{width:44.481463px;}
._17{width:45.674044px;}
._16{width:48.043056px;}
._25{width:53.793938px;}
._27{width:56.132520px;}
._26{width:57.159660px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.305200px;}
.fs1{font-size:48.945600px;}
.fs3{font-size:59.586000px;}
.fs0{font-size:72.354000px;}
.fs2{font-size:82.998000px;}
.y0{bottom:0.000000px;}
.y51{bottom:1.566000px;}
.y2b{bottom:2.097000px;}
.y59{bottom:2.098500px;}
.y54{bottom:3.693000px;}
.y5{bottom:3.694500px;}
.y2e{bottom:4.758000px;}
.y3{bottom:57.493500px;}
.y2{bottom:78.243000px;}
.y2d{bottom:84.657000px;}
.y50{bottom:86.785500px;}
.y4{bottom:87.849000px;}
.y56{bottom:88.914000px;}
.y2a{bottom:89.977500px;}
.y57{bottom:91.042500px;}
.y63{bottom:94.234500px;}
.y1{bottom:98.991000px;}
.y8a{bottom:134.671500px;}
.y29{bottom:151.170000px;}
.y4f{bottom:157.020000px;}
.y5f{bottom:161.280000px;}
.y89{bottom:166.590000px;}
.yd0{bottom:179.355000px;}
.y28{bottom:183.090000px;}
.yae{bottom:186.810000px;}
.y4e{bottom:188.940000px;}
.y5e{bottom:193.200000px;}
.y74{bottom:193.725000px;}
.y88{bottom:197.985000px;}
.ycf{bottom:205.995000px;}
.yce{bottom:209.715000px;}
.y27{bottom:214.515000px;}
.yad{bottom:218.760000px;}
.y4d{bottom:220.365000px;}
.y73{bottom:225.690000px;}
.y87{bottom:229.935000px;}
.ycd{bottom:241.110000px;}
.yac{bottom:244.830000px;}
.y26{bottom:246.435000px;}
.y4c{bottom:252.285000px;}
.y86{bottom:261.330000px;}
.y72{bottom:266.115000px;}
.ycc{bottom:267.705000px;}
.yab{bottom:271.440000px;}
.y24{bottom:277.815000px;}
.y25{bottom:282.105000px;}
.y4a{bottom:283.710000px;}
.y4b{bottom:287.970000px;}
.y85{bottom:293.280000px;}
.ycb{bottom:293.820000px;}
.yaa{bottom:297.540000px;}
.y71{bottom:298.080000px;}
.ya9{bottom:301.260000px;}
.y23{bottom:303.390000px;}
.y49{bottom:315.630000px;}
.y5d{bottom:319.890000px;}
.y84{bottom:324.675000px;}
.y22{bottom:328.395000px;}
.yca{bottom:329.460000px;}
.ya8{bottom:333.180000px;}
.y70{bottom:338.505000px;}
.y48{bottom:347.025000px;}
.y21{bottom:352.335000px;}
.yc9{bottom:356.070000px;}
.y83{bottom:356.595000px;}
.ya7{bottom:359.790000px;}
.ya6{bottom:363.540000px;}
.y20{bottom:373.650000px;}
.y47{bottom:378.975000px;}
.y82{bottom:388.020000px;}
.yc8{bottom:391.215000px;}
.y1f{bottom:394.410000px;}
.ya5{bottom:394.935000px;}
.y46{bottom:410.370000px;}
.y1e{bottom:415.680000px;}
.yc7{bottom:417.810000px;}
.y6f{bottom:419.940000px;}
.ya4{bottom:421.530000px;}
.y45{bottom:442.320000px;}
.yc6{bottom:443.910000px;}
.ya3{bottom:447.645000px;}
.y1d{bottom:450.840000px;}
.y6e{bottom:451.365000px;}
.y43{bottom:473.715000px;}
.ya2{bottom:474.240000px;}
.y44{bottom:477.960000px;}
.yc5{bottom:479.565000px;}
.y81{bottom:483.285000px;}
.y1c{bottom:486.480000px;}
.y6d{bottom:492.330000px;}
.ya1{bottom:500.310000px;}
.y42{bottom:505.635000px;}
.yc4{bottom:509.355000px;}
.y61{bottom:509.895000px;}
.y1b{bottom:512.550000px;}
.y80{bottom:514.680000px;}
.y6c{bottom:523.755000px;}
.ya0{bottom:526.950000px;}
.ye4{bottom:532.275000px;}
.y41{bottom:537.060000px;}
.y1a{bottom:539.190000px;}
.y5c{bottom:541.305000px;}
.y7f{bottom:546.630000px;}
.y9f{bottom:553.545000px;}
.y9e{bottom:557.280000px;}
.ye3{bottom:558.330000px;}
.y6b{bottom:564.720000px;}
.y19{bottom:565.785000px;}
.yc3{bottom:567.375000px;}
.y40{bottom:568.980000px;}
.yc2{bottom:571.110000px;}
.y7e{bottom:578.025000px;}
.ye2{bottom:584.940000px;}
.y9d{bottom:588.660000px;}
.y18{bottom:591.855000px;}
.y6a{bottom:596.115000px;}
.y3f{bottom:600.405000px;}
.yc1{bottom:603.060000px;}
.y5a{bottom:604.665000px;}
.y7d{bottom:609.975000px;}
.y9c{bottom:615.300000px;}
.y17{bottom:618.495000px;}
.ye1{bottom:620.085000px;}
.yc0{bottom:629.130000px;}
.y3d{bottom:632.325000px;}
.y3e{bottom:636.585000px;}
.y7c{bottom:641.370000px;}
.y16{bottom:644.565000px;}
.ye0{bottom:646.695000px;}
.ybf{bottom:655.725000px;}
.ybe{bottom:659.460000px;}
.y3c{bottom:663.705000px;}
.y9b{bottom:667.965000px;}
.y69{bottom:668.505000px;}
.ydf{bottom:673.290000px;}
.y15{bottom:680.235000px;}
.y7b{bottom:682.365000px;}
.ybd{bottom:690.885000px;}
.y9a{bottom:694.080000px;}
.y3a{bottom:695.670000px;}
.yde{bottom:699.390000px;}
.y3b{bottom:699.930000px;}
.y14{bottom:702.585000px;}
.ydd{bottom:703.110000px;}
.ybc{bottom:717.480000px;}
.y7a{bottom:722.805000px;}
.y39{bottom:727.065000px;}
.y13{bottom:728.115000px;}
.y99{bottom:729.720000px;}
.ydc{bottom:735.045000px;}
.y68{bottom:740.895000px;}
.ybb{bottom:744.090000px;}
.y12{bottom:753.660000px;}
.y79{bottom:754.725000px;}
.y98{bottom:755.820000px;}
.y38{bottom:759.015000px;}
.ydb{bottom:761.145000px;}
.yda{bottom:764.865000px;}
.yba{bottom:770.190000px;}
.y67{bottom:772.320000px;}
.yb9{bottom:773.910000px;}
.y11{bottom:778.695000px;}
.y97{bottom:782.430000px;}
.y37{bottom:790.410000px;}
.y5b{bottom:794.655000px;}
.y78{bottom:795.195000px;}
.yd9{bottom:796.785000px;}
.y10{bottom:804.240000px;}
.yb8{bottom:805.830000px;}
.y96{bottom:809.025000px;}
.y95{bottom:812.745000px;}
.y36{bottom:822.330000px;}
.yd8{bottom:822.855000px;}
.y62{bottom:826.575000px;}
.yf{bottom:829.245000px;}
.yb7{bottom:831.900000px;}
.y94{bottom:844.170000px;}
.y66{bottom:844.710000px;}
.yd7{bottom:849.495000px;}
.y35{bottom:853.755000px;}
.ye{bottom:854.820000px;}
.yb6{bottom:858.540000px;}
.yb5{bottom:862.260000px;}
.y77{bottom:867.585000px;}
.y93{bottom:870.780000px;}
.yd6{bottom:876.090000px;}
.y65{bottom:876.630000px;}
.yd{bottom:881.415000px;}
.y34{bottom:885.675000px;}
.y60{bottom:889.920000px;}
.yb4{bottom:893.655000px;}
.y92{bottom:896.850000px;}
.y76{bottom:898.965000px;}
.y91{bottom:900.570000px;}
.yd5{bottom:902.160000px;}
.y64{bottom:908.010000px;}
.yc{bottom:910.680000px;}
.y33{bottom:917.100000px;}
.yb3{bottom:920.295000px;}
.yd4{bottom:928.800000px;}
.y90{bottom:932.520000px;}
.yb{bottom:939.975000px;}
.yb2{bottom:946.890000px;}
.y32{bottom:949.020000px;}
.y8f{bottom:958.590000px;}
.ya{bottom:961.785000px;}
.y8e{bottom:962.310000px;}
.yd3{bottom:963.915000px;}
.yd2{bottom:967.635000px;}
.y75{bottom:971.355000px;}
.yb1{bottom:972.960000px;}
.y31{bottom:980.400000px;}
.y9{bottom:982.005000px;}
.y8d{bottom:994.275000px;}
.y8c{bottom:997.995000px;}
.yb0{bottom:999.600000px;}
.y8{bottom:1002.780000px;}
.y30{bottom:1012.365000px;}
.y8b{bottom:1012.890000px;}
.y58{bottom:1016.625000px;}
.y7{bottom:1023.540000px;}
.yaf{bottom:1025.670000px;}
.yd1{bottom:1029.390000px;}
.y2f{bottom:1043.745000px;}
.y6{bottom:1044.285000px;}
.y55{bottom:1048.005000px;}
.y53{bottom:1082.100000px;}
.y52{bottom:1102.845000px;}
.y2c{bottom:1120.935000px;}
.h10{height:12.236400px;}
.hd{height:12.768450px;}
.h2{height:15.960000px;}
.hf{height:16.492500px;}
.h11{height:33.330013px;}
.hc{height:42.588408px;}
.he{height:45.504152px;}
.h1{height:50.237982px;}
.h9{height:50.450256px;}
.h3{height:51.048731px;}
.ha{height:51.846803px;}
.h4{height:55.254715px;}
.h7{height:61.260662px;}
.h8{height:61.790599px;}
.h6{height:62.956459px;}
.h5{height:70.880616px;}
.hb{height:1187.932890px;}
.h0{height:1188.000000px;}
.w7{width:37.308000px;}
.w4{width:37.840500px;}
.w6{width:356.115000px;}
.w2{width:360.375000px;}
.w5{width:360.915000px;}
.w1{width:918.000000px;}
.w3{width:918.203498px;}
.w0{width:918.270000px;}
.x0{left:0.000000px;}
.x3{left:10.644000px;}
.x9{left:13.320000px;}
.x2{left:102.214500px;}
.x1{left:106.474500px;}
.x3a{left:111.795000px;}
.x4{left:117.115500px;}
.x13{left:137.863500px;}
.x5{left:161.310000px;}
.x2d{left:175.680000px;}
.x20{left:203.798497px;}
.x21{left:217.695000px;}
.x39{left:322.575000px;}
.x22{left:361.388497px;}
.x23{left:375.285000px;}
.x14{left:390.653497px;}
.x1a{left:393.308497px;}
.x15{left:397.635000px;}
.x1b{left:400.290000px;}
.x25{left:410.925000px;}
.xe{left:451.328497px;}
.xf{left:458.310000px;}
.x10{left:468.893498px;}
.x11{left:475.875000px;}
.x28{left:496.598498px;}
.x16{left:510.428497px;}
.x17{left:517.410000px;}
.x31{left:558.878497px;}
.x32{left:572.775000px;}
.x1d{left:588.668497px;}
.x1e{left:595.650000px;}
.x36{left:598.778497px;}
.xa{left:600.908498px;}
.xb{left:607.920000px;}
.x37{left:612.705000px;}
.x6{left:649.358497px;}
.x7{left:656.340000px;}
.x2e{left:663.713498px;}
.x29{left:673.853498px;}
.x2f{left:677.655000px;}
.x2a{left:687.765000px;}
.x2b{left:689.828498px;}
.x2c{left:703.725000px;}
.x33{left:717.555000px;}
.x34{left:728.123497px;}
.x35{left:742.065000px;}
.xc{left:753.173498px;}
.xd{left:760.155000px;}
.x38{left:762.780000px;}
.x26{left:763.808498px;}
.x24{left:764.910000px;}
.x8{left:767.040000px;}
.x1f{left:769.695000px;}
.x18{left:770.760000px;}
.x19{left:771.825000px;}
.x12{left:772.890000px;}
.x1c{left:773.955000px;}
.x30{left:775.020000px;}
.x3b{left:776.085000px;}
.x27{left:777.705000px;}
.x3c{left:812.325000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-2.170667pt;}
.ls29{letter-spacing:-1.834667pt;}
.ls14{letter-spacing:-1.488000pt;}
.ls32{letter-spacing:-1.397333pt;}
.ls20{letter-spacing:-1.120000pt;}
.ls36{letter-spacing:-0.837333pt;}
.ls4{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.746667pt;}
.ls8{letter-spacing:-0.741333pt;}
.ls30{letter-spacing:-0.560000pt;}
.ls28{letter-spacing:-0.544000pt;}
.ls2a{letter-spacing:-0.404800pt;}
.ls22{letter-spacing:-0.359467pt;}
.ls1b{letter-spacing:-0.144000pt;}
.ls6{letter-spacing:-0.090667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.002667pt;}
.ls2e{letter-spacing:0.024000pt;}
.ls34{letter-spacing:0.052960pt;}
.ls10{letter-spacing:0.056533pt;}
.ls25{letter-spacing:0.090667pt;}
.lse{letter-spacing:0.188533pt;}
.ls21{letter-spacing:0.189333pt;}
.lsd{letter-spacing:0.209867pt;}
.lsb{letter-spacing:0.257259pt;}
.ls2b{letter-spacing:0.283621pt;}
.lsc{letter-spacing:0.316533pt;}
.ls35{letter-spacing:0.378133pt;}
.ls0{letter-spacing:0.385997pt;}
.ls1{letter-spacing:0.396663pt;}
.ls5{letter-spacing:0.401067pt;}
.ls1e{letter-spacing:0.488000pt;}
.ls31{letter-spacing:0.491733pt;}
.ls9{letter-spacing:0.503330pt;}
.ls12{letter-spacing:0.556663pt;}
.ls7{letter-spacing:0.634667pt;}
.ls19{letter-spacing:0.720000pt;}
.ls11{letter-spacing:0.773333pt;}
.ls1f{letter-spacing:0.848197pt;}
.ls2c{letter-spacing:0.944000pt;}
.ls23{letter-spacing:0.997440pt;}
.ls2f{letter-spacing:1.574293pt;}
.ls1a{letter-spacing:2.864107pt;}
.ls24{letter-spacing:2.917440pt;}
.ls2{letter-spacing:3.440960pt;}
.ls33{letter-spacing:3.478293pt;}
.lsf{letter-spacing:4.944107pt;}
.ls16{letter-spacing:6.650773pt;}
.ls1c{letter-spacing:6.704107pt;}
.ls2d{letter-spacing:7.227627pt;}
.ls13{letter-spacing:8.570773pt;}
.ls17{letter-spacing:14.224107pt;}
.ls26{letter-spacing:19.898773pt;}
.ls27{letter-spacing:19.930773pt;}
.ls1d{letter-spacing:25.584107pt;}
.ws9{word-spacing:-14.239893pt;}
.ws3{word-spacing:-14.149227pt;}
.ws7{word-spacing:-14.005227pt;}
.ws8{word-spacing:-13.789760pt;}
.wsb{word-spacing:-13.744427pt;}
.wsa{word-spacing:-13.605227pt;}
.ws0{word-spacing:-12.496068pt;}
.wsd{word-spacing:-12.287040pt;}
.ws6{word-spacing:-12.095002pt;}
.wsc{word-spacing:-12.030507pt;}
.ws4{word-spacing:-11.970165pt;}
.ws1{word-spacing:-11.652373pt;}
.ws5{word-spacing:-10.607002pt;}
.ws2{word-spacing:0.000000pt;}
._10{margin-left:-3.187267pt;}
._1{margin-left:-2.224913pt;}
._2{margin-left:-0.984098pt;}
._0{width:1.146005pt;}
._4{width:2.213280pt;}
._3{width:3.810784pt;}
._11{width:4.765299pt;}
._5{width:5.747200pt;}
._6{width:7.029888pt;}
._7{width:8.081762pt;}
._e{width:9.531927pt;}
._d{width:10.676220pt;}
._b{width:12.277921pt;}
._14{width:13.690347pt;}
._28{width:14.603819pt;}
._c{width:15.686663pt;}
._12{width:17.245179pt;}
._9{width:18.391212pt;}
._f{width:19.487423pt;}
._a{width:20.384966pt;}
._8{width:21.609728pt;}
._18{width:22.555181pt;}
._13{width:23.521943pt;}
._15{width:24.428103pt;}
._1b{width:25.620366pt;}
._24{width:26.620706pt;}
._1d{width:27.783936pt;}
._1e{width:29.153922pt;}
._21{width:30.999669pt;}
._22{width:32.118353pt;}
._23{width:33.379312pt;}
._1a{width:34.301249pt;}
._19{width:35.373067pt;}
._1c{width:37.056907pt;}
._20{width:38.646054pt;}
._1f{width:39.539078pt;}
._17{width:40.599150pt;}
._16{width:42.704939pt;}
._25{width:47.816834pt;}
._27{width:49.895573pt;}
._26{width:50.808587pt;}
.fs4{font-size:34.049067pt;}
.fs1{font-size:43.507200pt;}
.fs3{font-size:52.965333pt;}
.fs0{font-size:64.314667pt;}
.fs2{font-size:73.776000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:1.392000pt;}
.y2b{bottom:1.864000pt;}
.y59{bottom:1.865333pt;}
.y54{bottom:3.282667pt;}
.y5{bottom:3.284000pt;}
.y2e{bottom:4.229333pt;}
.y3{bottom:51.105333pt;}
.y2{bottom:69.549333pt;}
.y2d{bottom:75.250667pt;}
.y50{bottom:77.142667pt;}
.y4{bottom:78.088000pt;}
.y56{bottom:79.034667pt;}
.y2a{bottom:79.980000pt;}
.y57{bottom:80.926667pt;}
.y63{bottom:83.764000pt;}
.y1{bottom:87.992000pt;}
.y8a{bottom:119.708000pt;}
.y29{bottom:134.373333pt;}
.y4f{bottom:139.573333pt;}
.y5f{bottom:143.360000pt;}
.y89{bottom:148.080000pt;}
.yd0{bottom:159.426667pt;}
.y28{bottom:162.746667pt;}
.yae{bottom:166.053333pt;}
.y4e{bottom:167.946667pt;}
.y5e{bottom:171.733333pt;}
.y74{bottom:172.200000pt;}
.y88{bottom:175.986667pt;}
.ycf{bottom:183.106667pt;}
.yce{bottom:186.413333pt;}
.y27{bottom:190.680000pt;}
.yad{bottom:194.453333pt;}
.y4d{bottom:195.880000pt;}
.y73{bottom:200.613333pt;}
.y87{bottom:204.386667pt;}
.ycd{bottom:214.320000pt;}
.yac{bottom:217.626667pt;}
.y26{bottom:219.053333pt;}
.y4c{bottom:224.253333pt;}
.y86{bottom:232.293333pt;}
.y72{bottom:236.546667pt;}
.ycc{bottom:237.960000pt;}
.yab{bottom:241.280000pt;}
.y24{bottom:246.946667pt;}
.y25{bottom:250.760000pt;}
.y4a{bottom:252.186667pt;}
.y4b{bottom:255.973333pt;}
.y85{bottom:260.693333pt;}
.ycb{bottom:261.173333pt;}
.yaa{bottom:264.480000pt;}
.y71{bottom:264.960000pt;}
.ya9{bottom:267.786667pt;}
.y23{bottom:269.680000pt;}
.y49{bottom:280.560000pt;}
.y5d{bottom:284.346667pt;}
.y84{bottom:288.600000pt;}
.y22{bottom:291.906667pt;}
.yca{bottom:292.853333pt;}
.ya8{bottom:296.160000pt;}
.y70{bottom:300.893333pt;}
.y48{bottom:308.466667pt;}
.y21{bottom:313.186667pt;}
.yc9{bottom:316.506667pt;}
.y83{bottom:316.973333pt;}
.ya7{bottom:319.813333pt;}
.ya6{bottom:323.146667pt;}
.y20{bottom:332.133333pt;}
.y47{bottom:336.866667pt;}
.y82{bottom:344.906667pt;}
.yc8{bottom:347.746667pt;}
.y1f{bottom:350.586667pt;}
.ya5{bottom:351.053333pt;}
.y46{bottom:364.773333pt;}
.y1e{bottom:369.493333pt;}
.yc7{bottom:371.386667pt;}
.y6f{bottom:373.280000pt;}
.ya4{bottom:374.693333pt;}
.y45{bottom:393.173333pt;}
.yc6{bottom:394.586667pt;}
.ya3{bottom:397.906667pt;}
.y1d{bottom:400.746667pt;}
.y6e{bottom:401.213333pt;}
.y43{bottom:421.080000pt;}
.ya2{bottom:421.546667pt;}
.y44{bottom:424.853333pt;}
.yc5{bottom:426.280000pt;}
.y81{bottom:429.586667pt;}
.y1c{bottom:432.426667pt;}
.y6d{bottom:437.626667pt;}
.ya1{bottom:444.720000pt;}
.y42{bottom:449.453333pt;}
.yc4{bottom:452.760000pt;}
.y61{bottom:453.240000pt;}
.y1b{bottom:455.600000pt;}
.y80{bottom:457.493333pt;}
.y6c{bottom:465.560000pt;}
.ya0{bottom:468.400000pt;}
.ye4{bottom:473.133333pt;}
.y41{bottom:477.386667pt;}
.y1a{bottom:479.280000pt;}
.y5c{bottom:481.160000pt;}
.y7f{bottom:485.893333pt;}
.y9f{bottom:492.040000pt;}
.y9e{bottom:495.360000pt;}
.ye3{bottom:496.293333pt;}
.y6b{bottom:501.973333pt;}
.y19{bottom:502.920000pt;}
.yc3{bottom:504.333333pt;}
.y40{bottom:505.760000pt;}
.yc2{bottom:507.653333pt;}
.y7e{bottom:513.800000pt;}
.ye2{bottom:519.946667pt;}
.y9d{bottom:523.253333pt;}
.y18{bottom:526.093333pt;}
.y6a{bottom:529.880000pt;}
.y3f{bottom:533.693333pt;}
.yc1{bottom:536.053333pt;}
.y5a{bottom:537.480000pt;}
.y7d{bottom:542.200000pt;}
.y9c{bottom:546.933333pt;}
.y17{bottom:549.773333pt;}
.ye1{bottom:551.186667pt;}
.yc0{bottom:559.226667pt;}
.y3d{bottom:562.066667pt;}
.y3e{bottom:565.853333pt;}
.y7c{bottom:570.106667pt;}
.y16{bottom:572.946667pt;}
.ye0{bottom:574.840000pt;}
.ybf{bottom:582.866667pt;}
.ybe{bottom:586.186667pt;}
.y3c{bottom:589.960000pt;}
.y9b{bottom:593.746667pt;}
.y69{bottom:594.226667pt;}
.ydf{bottom:598.480000pt;}
.y15{bottom:604.653333pt;}
.y7b{bottom:606.546667pt;}
.ybd{bottom:614.120000pt;}
.y9a{bottom:616.960000pt;}
.y3a{bottom:618.373333pt;}
.yde{bottom:621.680000pt;}
.y3b{bottom:622.160000pt;}
.y14{bottom:624.520000pt;}
.ydd{bottom:624.986667pt;}
.ybc{bottom:637.760000pt;}
.y7a{bottom:642.493333pt;}
.y39{bottom:646.280000pt;}
.y13{bottom:647.213333pt;}
.y99{bottom:648.640000pt;}
.ydc{bottom:653.373333pt;}
.y68{bottom:658.573333pt;}
.ybb{bottom:661.413333pt;}
.y12{bottom:669.920000pt;}
.y79{bottom:670.866667pt;}
.y98{bottom:671.840000pt;}
.y38{bottom:674.680000pt;}
.ydb{bottom:676.573333pt;}
.yda{bottom:679.880000pt;}
.yba{bottom:684.613333pt;}
.y67{bottom:686.506667pt;}
.yb9{bottom:687.920000pt;}
.y11{bottom:692.173333pt;}
.y97{bottom:695.493333pt;}
.y37{bottom:702.586667pt;}
.y5b{bottom:706.360000pt;}
.y78{bottom:706.840000pt;}
.yd9{bottom:708.253333pt;}
.y10{bottom:714.880000pt;}
.yb8{bottom:716.293333pt;}
.y96{bottom:719.133333pt;}
.y95{bottom:722.440000pt;}
.y36{bottom:730.960000pt;}
.yd8{bottom:731.426667pt;}
.y62{bottom:734.733333pt;}
.yf{bottom:737.106667pt;}
.yb7{bottom:739.466667pt;}
.y94{bottom:750.373333pt;}
.y66{bottom:750.853333pt;}
.yd7{bottom:755.106667pt;}
.y35{bottom:758.893333pt;}
.ye{bottom:759.840000pt;}
.yb6{bottom:763.146667pt;}
.yb5{bottom:766.453333pt;}
.y77{bottom:771.186667pt;}
.y93{bottom:774.026667pt;}
.yd6{bottom:778.746667pt;}
.y65{bottom:779.226667pt;}
.yd{bottom:783.480000pt;}
.y34{bottom:787.266667pt;}
.y60{bottom:791.040000pt;}
.yb4{bottom:794.360000pt;}
.y92{bottom:797.200000pt;}
.y76{bottom:799.080000pt;}
.y91{bottom:800.506667pt;}
.yd5{bottom:801.920000pt;}
.y64{bottom:807.120000pt;}
.yc{bottom:809.493333pt;}
.y33{bottom:815.200000pt;}
.yb3{bottom:818.040000pt;}
.yd4{bottom:825.600000pt;}
.y90{bottom:828.906667pt;}
.yb{bottom:835.533333pt;}
.yb2{bottom:841.680000pt;}
.y32{bottom:843.573333pt;}
.y8f{bottom:852.080000pt;}
.ya{bottom:854.920000pt;}
.y8e{bottom:855.386667pt;}
.yd3{bottom:856.813333pt;}
.yd2{bottom:860.120000pt;}
.y75{bottom:863.426667pt;}
.yb1{bottom:864.853333pt;}
.y31{bottom:871.466667pt;}
.y9{bottom:872.893333pt;}
.y8d{bottom:883.800000pt;}
.y8c{bottom:887.106667pt;}
.yb0{bottom:888.533333pt;}
.y8{bottom:891.360000pt;}
.y30{bottom:899.880000pt;}
.y8b{bottom:900.346667pt;}
.y58{bottom:903.666667pt;}
.y7{bottom:909.813333pt;}
.yaf{bottom:911.706667pt;}
.yd1{bottom:915.013333pt;}
.y2f{bottom:927.773333pt;}
.y6{bottom:928.253333pt;}
.y55{bottom:931.560000pt;}
.y53{bottom:961.866667pt;}
.y52{bottom:980.306667pt;}
.y2c{bottom:996.386667pt;}
.h10{height:10.876800pt;}
.hd{height:11.349733pt;}
.h2{height:14.186667pt;}
.hf{height:14.660000pt;}
.h11{height:29.626678pt;}
.hc{height:37.856362pt;}
.he{height:40.448135pt;}
.h1{height:44.655984pt;}
.h9{height:44.844672pt;}
.h3{height:45.376650pt;}
.ha{height:46.086047pt;}
.h4{height:49.115302pt;}
.h7{height:54.453922pt;}
.h8{height:54.924977pt;}
.h6{height:55.961297pt;}
.h5{height:63.004992pt;}
.hb{height:1055.940347pt;}
.h0{height:1056.000000pt;}
.w7{width:33.162667pt;}
.w4{width:33.636000pt;}
.w6{width:316.546667pt;}
.w2{width:320.333333pt;}
.w5{width:320.813333pt;}
.w1{width:816.000000pt;}
.w3{width:816.180887pt;}
.w0{width:816.240000pt;}
.x0{left:0.000000pt;}
.x3{left:9.461333pt;}
.x9{left:11.840000pt;}
.x2{left:90.857333pt;}
.x1{left:94.644000pt;}
.x3a{left:99.373333pt;}
.x4{left:104.102667pt;}
.x13{left:122.545333pt;}
.x5{left:143.386667pt;}
.x2d{left:156.160000pt;}
.x20{left:181.154220pt;}
.x21{left:193.506667pt;}
.x39{left:286.733333pt;}
.x22{left:321.234220pt;}
.x23{left:333.586667pt;}
.x14{left:347.247553pt;}
.x1a{left:349.607553pt;}
.x15{left:353.453333pt;}
.x1b{left:355.813333pt;}
.x25{left:365.266667pt;}
.xe{left:401.180887pt;}
.xf{left:407.386667pt;}
.x10{left:416.794220pt;}
.x11{left:423.000000pt;}
.x28{left:441.420887pt;}
.x16{left:453.714220pt;}
.x17{left:459.920000pt;}
.x31{left:496.780887pt;}
.x32{left:509.133333pt;}
.x1d{left:523.260887pt;}
.x1e{left:529.466667pt;}
.x36{left:532.247553pt;}
.xa{left:534.140887pt;}
.xb{left:540.373333pt;}
.x37{left:544.626667pt;}
.x6{left:577.207553pt;}
.x7{left:583.413333pt;}
.x2e{left:589.967553pt;}
.x29{left:598.980887pt;}
.x2f{left:602.360000pt;}
.x2a{left:611.346667pt;}
.x2b{left:613.180887pt;}
.x2c{left:625.533333pt;}
.x33{left:637.826667pt;}
.x34{left:647.220887pt;}
.x35{left:659.613333pt;}
.xc{left:669.487553pt;}
.xd{left:675.693333pt;}
.x38{left:678.026667pt;}
.x26{left:678.940887pt;}
.x24{left:679.920000pt;}
.x8{left:681.813333pt;}
.x1f{left:684.173333pt;}
.x18{left:685.120000pt;}
.x19{left:686.066667pt;}
.x12{left:687.013333pt;}
.x1c{left:687.960000pt;}
.x30{left:688.906667pt;}
.x3b{left:689.853333pt;}
.x27{left:691.293333pt;}
.x3c{left:722.066667pt;}
}




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