
    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_d29df8b169eb607f4d1b20e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937988;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_8e9d89d4f5a9f485b47fac83.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_f44820fb48f6c4ef724cd3e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049805;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_b7ead87bdb9b88be301eef06.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_f8e84eeb78d28446ce400bfb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_e1ff1255ed50c97937d8f8c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_83cb5e918703539b83216470.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937988;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_b4a46b4e0e178bd609880421.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_a502625eb28fc020a6689cdd.woff2')format("woff");}.ffb{font-family:ffb;line-height:4.296875;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);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-12.240000px;}
.v3{vertical-align:-5.760000px;}
.v7{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.160000px;}
.v1{vertical-align:20.880000px;}
.v8{vertical-align:70.560000px;}
.v5{vertical-align:72.000000px;}
.vb{vertical-align:77.040000px;}
.va{vertical-align:107.280000px;}
.v9{vertical-align:109.440000px;}
.lsd{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.177600px;}
.lsf{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.012960px;}
.lsb{letter-spacing:0.045360px;}
.ls19{letter-spacing:0.095040px;}
.ls0{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.192960px;}
.ls10{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.206640px;}
.lse{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.275040px;}
.ls21{letter-spacing:0.306600px;}
.ls1d{letter-spacing:0.347520px;}
.lsa{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.371520px;}
.ls1a{letter-spacing:0.399600px;}
.ls5{letter-spacing:0.428400px;}
.ls14{letter-spacing:0.542160px;}
.ls1e{letter-spacing:0.719280px;}
.ls1f{letter-spacing:0.732960px;}
.ls13{letter-spacing:0.826560px;}
.ls4{letter-spacing:1.620000px;}
.ls12{letter-spacing:14.580000px;}
.ls3{letter-spacing:17.460000px;}
.ls7{letter-spacing:22.986720px;}
.ls1{letter-spacing:30.540000px;}
.ls20{letter-spacing:31.140000px;}
.ls11{letter-spacing:42.660000px;}
.ls8{letter-spacing:70.020000px;}
.ls9{letter-spacing:165.780000px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws6{word-spacing:-15.300000px;}
.ws1e{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.146400px;}
.ws9{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.762400px;}
.ws10{word-spacing:-13.160160px;}
.wsd{word-spacing:-13.147200px;}
.ws0{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.105360px;}
.ws2{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.187200px;}
.ws7{word-spacing:0.000000px;}
.ws11{word-spacing:28.167840px;}
.wsf{word-spacing:28.887840px;}
.ws19{word-spacing:34.647840px;}
.ws16{word-spacing:35.367840px;}
.ws13{word-spacing:50.487840px;}
.ws1a{word-spacing:60.387840px;}
.ws18{word-spacing:96.387840px;}
.wsc{word-spacing:96.567840px;}
.ws17{word-spacing:97.287840px;}
.ws14{word-spacing:106.362000px;}
.wse{word-spacing:107.082000px;}
.ws1b{word-spacing:107.187840px;}
.ws1c{word-spacing:107.199840px;}
.ws1d{word-spacing:107.907840px;}
.ws12{word-spacing:113.847840px;}
.ws15{word-spacing:119.607840px;}
._24{margin-left:-3.574800px;}
._17{margin-left:-2.513520px;}
._0{margin-left:-1.373280px;}
._1{width:1.015920px;}
._2{width:2.182560px;}
._12{width:4.183200px;}
._27{width:5.199120px;}
._1b{width:6.215040px;}
._3{width:8.127360px;}
._7{width:10.111680px;}
._2e{width:11.138400px;}
._1d{width:12.238560px;}
._1e{width:13.565520px;}
._34{width:15.587280px;}
._b{width:16.805280px;}
._13{width:17.808480px;}
._22{width:19.601280px;}
._23{width:20.796480px;}
._14{width:22.170960px;}
._29{width:23.724720px;}
._19{width:24.800400px;}
._18{width:26.174880px;}
._25{width:27.668880px;}
._32{width:29.043360px;}
._31{width:30.119040px;}
._6{width:31.194720px;}
._e{width:32.688720px;}
._1f{width:33.943680px;}
._26{width:36.871920px;}
._10{width:38.844000px;}
._f{width:40.039200px;}
._33{width:41.234400px;}
._2f{width:42.869520px;}
._2b{width:45.336000px;}
._d{width:46.553040px;}
._c{width:47.748240px;}
._28{width:50.377680px;}
._8{width:51.393600px;}
._2a{width:56.712240px;}
._21{width:60.477120px;}
._5{width:61.493040px;}
._4{width:62.628480px;}
._16{width:64.320000px;}
._15{width:65.837280px;}
._11{width:70.158240px;}
._20{width:73.564560px;}
._3b{width:76.910400px;}
._a{width:87.070320px;}
._2c{width:89.879040px;}
._2d{width:90.894960px;}
._9{width:106.372800px;}
._35{width:111.060720px;}
._1c{width:112.587840px;}
._3a{width:121.871520px;}
._36{width:127.045920px;}
._1a{width:128.842560px;}
._39{width:132.805920px;}
._38{width:134.100720px;}
._37{width:149.940720px;}
._30{width:197.460000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.636000px;}
.y4{bottom:77.076000px;}
.yd1{bottom:103.716000px;}
.y49{bottom:109.836000px;}
.y7a{bottom:110.916000px;}
.y44{bottom:112.896000px;}
.ya5{bottom:118.116000px;}
.yd0{bottom:121.176000px;}
.y79{bottom:126.936000px;}
.y48{bottom:127.116000px;}
.y41{bottom:130.176000px;}
.ya4{bottom:132.156000px;}
.ycf{bottom:140.436000px;}
.y47{bottom:141.156000px;}
.y78{bottom:144.576000px;}
.y40{bottom:147.456000px;}
.yce{bottom:158.070000px;}
.ye2{bottom:163.470000px;}
.y3f{bottom:164.730000px;}
.y77{bottom:176.970000px;}
.ycd{bottom:177.510000px;}
.ye1{bottom:180.750000px;}
.y3e{bottom:181.830000px;}
.y76{bottom:194.430000px;}
.ycc{bottom:194.970000px;}
.ye0{bottom:198.030000px;}
.y3d{bottom:199.110000px;}
.y74{bottom:203.790000px;}
.ycb{bottom:212.430000px;}
.y75{bottom:213.150000px;}
.ydf{bottom:215.130000px;}
.y3c{bottom:216.390000px;}
.yca{bottom:230.070000px;}
.yde{bottom:232.410000px;}
.y3b{bottom:233.670000px;}
.y73{bottom:245.370000px;}
.yc9{bottom:247.350000px;}
.ydd{bottom:249.690000px;}
.y3a{bottom:250.950000px;}
.y72{bottom:263.010000px;}
.yc8{bottom:264.630000px;}
.ydc{bottom:266.970000px;}
.y39{bottom:268.050000px;}
.yc7{bottom:281.955000px;}
.ydb{bottom:284.295000px;}
.y38{bottom:285.375000px;}
.ya3{bottom:289.515000px;}
.y71{bottom:296.715000px;}
.yc6{bottom:299.235000px;}
.yda{bottom:301.395000px;}
.y37{bottom:302.655000px;}
.ya2{bottom:306.795000px;}
.y70{bottom:313.995000px;}
.yc5{bottom:316.515000px;}
.yd9{bottom:318.675000px;}
.y36{bottom:319.935000px;}
.ya1{bottom:324.075000px;}
.y6f{bottom:331.095000px;}
.yc4{bottom:333.795000px;}
.yd8{bottom:335.955000px;}
.y35{bottom:337.215000px;}
.ya0{bottom:341.355000px;}
.y6e{bottom:347.295000px;}
.yc3{bottom:350.895000px;}
.yd7{bottom:353.235000px;}
.y34{bottom:354.495000px;}
.y9f{bottom:358.635000px;}
.y6c{bottom:365.115000px;}
.y6d{bottom:365.295000px;}
.yc2{bottom:368.175000px;}
.y46{bottom:369.435000px;}
.yd6{bottom:370.515000px;}
.y33{bottom:371.595000px;}
.y9e{bottom:375.735000px;}
.y45{bottom:383.475000px;}
.yc1{bottom:385.455000px;}
.yd5{bottom:387.795000px;}
.y32{bottom:388.875000px;}
.y9d{bottom:393.015000px;}
.y6b{bottom:397.695000px;}
.yc0{bottom:402.735000px;}
.yd4{bottom:404.895000px;}
.y31{bottom:406.155000px;}
.y9c{bottom:410.295000px;}
.y6a{bottom:415.155000px;}
.ybf{bottom:420.015000px;}
.yd3{bottom:422.175000px;}
.y30{bottom:423.435000px;}
.y68{bottom:424.695000px;}
.y9b{bottom:427.575000px;}
.y69{bottom:433.875000px;}
.ybe{bottom:439.275000px;}
.yd2{bottom:439.455000px;}
.y2f{bottom:440.715000px;}
.y9a{bottom:444.855000px;}
.ybd{bottom:456.735000px;}
.y2e{bottom:457.995000px;}
.y99{bottom:461.955000px;}
.y67{bottom:466.455000px;}
.ybc{bottom:474.015000px;}
.y2d{bottom:475.095000px;}
.y98{bottom:479.235000px;}
.y66{bottom:484.095000px;}
.ybb{bottom:491.295000px;}
.y2c{bottom:492.375000px;}
.y97{bottom:496.515000px;}
.yba{bottom:505.335000px;}
.y2b{bottom:509.655000px;}
.y96{bottom:513.795000px;}
.y65{bottom:517.575000px;}
.y2a{bottom:526.935000px;}
.y95{bottom:531.075000px;}
.y64{bottom:534.855000px;}
.y29{bottom:544.215000px;}
.y94{bottom:548.355000px;}
.y63{bottom:552.135000px;}
.y28{bottom:561.345000px;}
.y93{bottom:565.485000px;}
.y62{bottom:568.185000px;}
.y27{bottom:578.625000px;}
.y92{bottom:582.765000px;}
.y61{bottom:585.825000px;}
.y26{bottom:595.905000px;}
.y91{bottom:600.045000px;}
.y25{bottom:613.185000px;}
.y90{bottom:616.065000px;}
.y60{bottom:618.405000px;}
.y24{bottom:630.465000px;}
.y8f{bottom:633.705000px;}
.y8e{bottom:633.885000px;}
.y5f{bottom:635.865000px;}
.y5d{bottom:645.225000px;}
.y23{bottom:647.745000px;}
.y5e{bottom:654.585000px;}
.y22{bottom:664.845000px;}
.y8d{bottom:666.645000px;}
.y21{bottom:682.125000px;}
.y8c{bottom:684.465000px;}
.y5c{bottom:686.985000px;}
.y8a{bottom:693.825000px;}
.y20{bottom:699.405000px;}
.y8b{bottom:703.185000px;}
.y5b{bottom:704.805000px;}
.y59{bottom:714.165000px;}
.y1f{bottom:716.685000px;}
.y5a{bottom:723.525000px;}
.y1e{bottom:733.965000px;}
.y89{bottom:735.765000px;}
.y1d{bottom:751.245000px;}
.y87{bottom:753.585000px;}
.y88{bottom:753.765000px;}
.y58{bottom:756.105000px;}
.yb9{bottom:768.165000px;}
.y1c{bottom:768.345000px;}
.y57{bottom:773.745000px;}
.yb2{bottom:778.065000px;}
.y1b{bottom:785.625000px;}
.y86{bottom:787.245000px;}
.yb8{bottom:787.785000px;}
.yb1{bottom:795.345000px;}
.y1a{bottom:802.905000px;}
.y85{bottom:804.525000px;}
.y56{bottom:807.225000px;}
.yb0{bottom:812.625000px;}
.y19{bottom:820.185000px;}
.y84{bottom:821.805000px;}
.y55{bottom:823.245000px;}
.yb7{bottom:824.685000px;}
.yaf{bottom:829.905000px;}
.y18{bottom:837.465000px;}
.y83{bottom:839.085000px;}
.y54{bottom:840.885000px;}
.yb6{bottom:842.145000px;}
.yae{bottom:847.230000px;}
.y17{bottom:854.790000px;}
.y82{bottom:856.230000px;}
.yb5{bottom:861.630000px;}
.yad{bottom:864.510000px;}
.y16{bottom:871.890000px;}
.y81{bottom:873.330000px;}
.y53{bottom:873.510000px;}
.yb4{bottom:879.270000px;}
.yac{bottom:881.610000px;}
.y15{bottom:889.170000px;}
.y52{bottom:890.970000px;}
.yb3{bottom:898.710000px;}
.yab{bottom:898.890000px;}
.y50{bottom:900.330000px;}
.y14{bottom:906.450000px;}
.y51{bottom:909.690000px;}
.yaa{bottom:916.170000px;}
.y13{bottom:923.730000px;}
.y80{bottom:924.810000px;}
.ya9{bottom:933.450000px;}
.y12{bottom:941.010000px;}
.y4f{bottom:942.090000px;}
.y7f{bottom:942.270000px;}
.ya8{bottom:950.730000px;}
.y7d{bottom:951.630000px;}
.y11{bottom:958.110000px;}
.y4e{bottom:959.550000px;}
.y7e{bottom:960.990000px;}
.ya7{bottom:968.010000px;}
.y4c{bottom:968.910000px;}
.y10{bottom:975.390000px;}
.y4d{bottom:978.270000px;}
.ya6{bottom:981.870000px;}
.y43{bottom:992.670000px;}
.y7c{bottom:993.210000px;}
.yf{bottom:997.890000px;}
.ye{bottom:1009.950000px;}
.y4b{bottom:1010.490000px;}
.y7b{bottom:1010.850000px;}
.y42{bottom:1027.230000px;}
.y4a{bottom:1028.130000px;}
.yd{bottom:1032.450000px;}
.yc{bottom:1044.510000px;}
.yb{bottom:1061.610000px;}
.ya{bottom:1078.890000px;}
.y9{bottom:1096.170000px;}
.y8{bottom:1113.450000px;}
.y7{bottom:1130.760000px;}
.y6{bottom:1148.040000px;}
.y3{bottom:1166.400000px;}
.y2{bottom:1184.580000px;}
.y1{bottom:1198.440000px;}
.h8{height:33.621328px;}
.h2{height:39.760312px;}
.ha{height:49.255313px;}
.h9{height:49.838906px;}
.h6{height:51.677227px;}
.h7{height:54.501328px;}
.h5{height:60.046875px;}
.h4{height:65.884219px;}
.h3{height:71.613281px;}
.h17{height:145.460742px;}
.hc{height:147.620742px;}
.hd{height:216.020742px;}
.h14{height:216.740742px;}
.h15{height:217.436742px;}
.hb{height:217.460742px;}
.h10{height:217.640742px;}
.h13{height:218.180742px;}
.h16{height:222.500742px;}
.hf{height:252.740742px;}
.h12{height:253.460742px;}
.h11{height:254.180742px;}
.he{height:254.900742px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x9{left:132.695987px;}
.x6{left:133.775987px;}
.x5{left:142.595987px;}
.x17{left:146.375987px;}
.x1a{left:155.729987px;}
.x1f{left:159.149987px;}
.x14{left:160.769987px;}
.x1d{left:163.829987px;}
.x1c{left:165.089987px;}
.x12{left:169.589987px;}
.x2{left:174.449987px;}
.xb{left:180.749987px;}
.x7{left:189.569987px;}
.x3{left:203.969987px;}
.x8{left:221.789987px;}
.x1b{left:234.389987px;}
.x1e{left:238.169987px;}
.x15{left:240.689987px;}
.x13{left:243.929987px;}
.x18{left:258.734987px;}
.xa{left:270.794987px;}
.x16{left:272.414987px;}
.x19{left:290.414987px;}
.x4{left:303.014987px;}
.xf{left:453.524987px;}
.x11{left:489.164987px;}
.xd{left:499.604987px;}
.x2d{left:519.764987px;}
.x23{left:531.284987px;}
.x29{left:535.784987px;}
.x27{left:540.464987px;}
.x20{left:541.544987px;}
.xc{left:552.704987px;}
.x24{left:611.249987px;}
.x28{left:614.849987px;}
.x21{left:615.929987px;}
.x26{left:628.889987px;}
.x22{left:643.289987px;}
.x25{left:644.369987px;}
.x2a{left:645.809987px;}
.x10{left:669.749987px;}
.x2c{left:674.969987px;}
.x2b{left:701.969987px;}
.xe{left:726.629987px;}
.x2e{left:787.679987px;}
.x2f{left:837.359987px;}
.x30{left:841.139987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-10.880000pt;}
.v3{vertical-align:-5.120000pt;}
.v7{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.920000pt;}
.v1{vertical-align:18.560000pt;}
.v8{vertical-align:62.720000pt;}
.v5{vertical-align:64.000000pt;}
.vb{vertical-align:68.480000pt;}
.va{vertical-align:95.360000pt;}
.v9{vertical-align:97.280000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.157867pt;}
.lsf{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.011520pt;}
.lsb{letter-spacing:0.040320pt;}
.ls19{letter-spacing:0.084480pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.171520pt;}
.ls10{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.183680pt;}
.lse{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.244480pt;}
.ls21{letter-spacing:0.272533pt;}
.ls1d{letter-spacing:0.308907pt;}
.lsa{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.330240pt;}
.ls1a{letter-spacing:0.355200pt;}
.ls5{letter-spacing:0.380800pt;}
.ls14{letter-spacing:0.481920pt;}
.ls1e{letter-spacing:0.639360pt;}
.ls1f{letter-spacing:0.651520pt;}
.ls13{letter-spacing:0.734720pt;}
.ls4{letter-spacing:1.440000pt;}
.ls12{letter-spacing:12.960000pt;}
.ls3{letter-spacing:15.520000pt;}
.ls7{letter-spacing:20.432640pt;}
.ls1{letter-spacing:27.146667pt;}
.ls20{letter-spacing:27.680000pt;}
.ls11{letter-spacing:37.920000pt;}
.ls8{letter-spacing:62.240000pt;}
.ls9{letter-spacing:147.360000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws1e{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.122133pt;}
.ws10{word-spacing:-11.697920pt;}
.wsd{word-spacing:-11.686400pt;}
.ws0{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.760320pt;}
.ws2{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.166400pt;}
.ws7{word-spacing:0.000000pt;}
.ws11{word-spacing:25.038080pt;}
.wsf{word-spacing:25.678080pt;}
.ws19{word-spacing:30.798080pt;}
.ws16{word-spacing:31.438080pt;}
.ws13{word-spacing:44.878080pt;}
.ws1a{word-spacing:53.678080pt;}
.ws18{word-spacing:85.678080pt;}
.wsc{word-spacing:85.838080pt;}
.ws17{word-spacing:86.478080pt;}
.ws14{word-spacing:94.544000pt;}
.wse{word-spacing:95.184000pt;}
.ws1b{word-spacing:95.278080pt;}
.ws1c{word-spacing:95.288747pt;}
.ws1d{word-spacing:95.918080pt;}
.ws12{word-spacing:101.198080pt;}
.ws15{word-spacing:106.318080pt;}
._24{margin-left:-3.177600pt;}
._17{margin-left:-2.234240pt;}
._0{margin-left:-1.220693pt;}
._1{width:0.903040pt;}
._2{width:1.940053pt;}
._12{width:3.718400pt;}
._27{width:4.621440pt;}
._1b{width:5.524480pt;}
._3{width:7.224320pt;}
._7{width:8.988160pt;}
._2e{width:9.900800pt;}
._1d{width:10.878720pt;}
._1e{width:12.058240pt;}
._34{width:13.855360pt;}
._b{width:14.938027pt;}
._13{width:15.829760pt;}
._22{width:17.423360pt;}
._23{width:18.485760pt;}
._14{width:19.707520pt;}
._29{width:21.088640pt;}
._19{width:22.044800pt;}
._18{width:23.266560pt;}
._25{width:24.594560pt;}
._32{width:25.816320pt;}
._31{width:26.772480pt;}
._6{width:27.728640pt;}
._e{width:29.056640pt;}
._1f{width:30.172160pt;}
._26{width:32.775040pt;}
._10{width:34.528000pt;}
._f{width:35.590400pt;}
._33{width:36.652800pt;}
._2f{width:38.106240pt;}
._2b{width:40.298667pt;}
._d{width:41.380480pt;}
._c{width:42.442880pt;}
._28{width:44.780160pt;}
._8{width:45.683200pt;}
._2a{width:50.410880pt;}
._21{width:53.757440pt;}
._5{width:54.660480pt;}
._4{width:55.669760pt;}
._16{width:57.173333pt;}
._15{width:58.522027pt;}
._11{width:62.362880pt;}
._20{width:65.390720pt;}
._3b{width:68.364800pt;}
._a{width:77.395840pt;}
._2c{width:79.892480pt;}
._2d{width:80.795520pt;}
._9{width:94.553600pt;}
._35{width:98.720640pt;}
._1c{width:100.078080pt;}
._3a{width:108.330240pt;}
._36{width:112.929707pt;}
._1a{width:114.526720pt;}
._39{width:118.049707pt;}
._38{width:119.200640pt;}
._37{width:133.280640pt;}
._30{width:175.520000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.232000pt;}
.y4{bottom:68.512000pt;}
.yd1{bottom:92.192000pt;}
.y49{bottom:97.632000pt;}
.y7a{bottom:98.592000pt;}
.y44{bottom:100.352000pt;}
.ya5{bottom:104.992000pt;}
.yd0{bottom:107.712000pt;}
.y79{bottom:112.832000pt;}
.y48{bottom:112.992000pt;}
.y41{bottom:115.712000pt;}
.ya4{bottom:117.472000pt;}
.ycf{bottom:124.832000pt;}
.y47{bottom:125.472000pt;}
.y78{bottom:128.512000pt;}
.y40{bottom:131.072000pt;}
.yce{bottom:140.506667pt;}
.ye2{bottom:145.306667pt;}
.y3f{bottom:146.426667pt;}
.y77{bottom:157.306667pt;}
.ycd{bottom:157.786667pt;}
.ye1{bottom:160.666667pt;}
.y3e{bottom:161.626667pt;}
.y76{bottom:172.826667pt;}
.ycc{bottom:173.306667pt;}
.ye0{bottom:176.026667pt;}
.y3d{bottom:176.986667pt;}
.y74{bottom:181.146667pt;}
.ycb{bottom:188.826667pt;}
.y75{bottom:189.466667pt;}
.ydf{bottom:191.226667pt;}
.y3c{bottom:192.346667pt;}
.yca{bottom:204.506667pt;}
.yde{bottom:206.586667pt;}
.y3b{bottom:207.706667pt;}
.y73{bottom:218.106667pt;}
.yc9{bottom:219.866667pt;}
.ydd{bottom:221.946667pt;}
.y3a{bottom:223.066667pt;}
.y72{bottom:233.786667pt;}
.yc8{bottom:235.226667pt;}
.ydc{bottom:237.306667pt;}
.y39{bottom:238.266667pt;}
.yc7{bottom:250.626667pt;}
.ydb{bottom:252.706667pt;}
.y38{bottom:253.666667pt;}
.ya3{bottom:257.346667pt;}
.y71{bottom:263.746667pt;}
.yc6{bottom:265.986667pt;}
.yda{bottom:267.906667pt;}
.y37{bottom:269.026667pt;}
.ya2{bottom:272.706667pt;}
.y70{bottom:279.106667pt;}
.yc5{bottom:281.346667pt;}
.yd9{bottom:283.266667pt;}
.y36{bottom:284.386667pt;}
.ya1{bottom:288.066667pt;}
.y6f{bottom:294.306667pt;}
.yc4{bottom:296.706667pt;}
.yd8{bottom:298.626667pt;}
.y35{bottom:299.746667pt;}
.ya0{bottom:303.426667pt;}
.y6e{bottom:308.706667pt;}
.yc3{bottom:311.906667pt;}
.yd7{bottom:313.986667pt;}
.y34{bottom:315.106667pt;}
.y9f{bottom:318.786667pt;}
.y6c{bottom:324.546667pt;}
.y6d{bottom:324.706667pt;}
.yc2{bottom:327.266667pt;}
.y46{bottom:328.386667pt;}
.yd6{bottom:329.346667pt;}
.y33{bottom:330.306667pt;}
.y9e{bottom:333.986667pt;}
.y45{bottom:340.866667pt;}
.yc1{bottom:342.626667pt;}
.yd5{bottom:344.706667pt;}
.y32{bottom:345.666667pt;}
.y9d{bottom:349.346667pt;}
.y6b{bottom:353.506667pt;}
.yc0{bottom:357.986667pt;}
.yd4{bottom:359.906667pt;}
.y31{bottom:361.026667pt;}
.y9c{bottom:364.706667pt;}
.y6a{bottom:369.026667pt;}
.ybf{bottom:373.346667pt;}
.yd3{bottom:375.266667pt;}
.y30{bottom:376.386667pt;}
.y68{bottom:377.506667pt;}
.y9b{bottom:380.066667pt;}
.y69{bottom:385.666667pt;}
.ybe{bottom:390.466667pt;}
.yd2{bottom:390.626667pt;}
.y2f{bottom:391.746667pt;}
.y9a{bottom:395.426667pt;}
.ybd{bottom:405.986667pt;}
.y2e{bottom:407.106667pt;}
.y99{bottom:410.626667pt;}
.y67{bottom:414.626667pt;}
.ybc{bottom:421.346667pt;}
.y2d{bottom:422.306667pt;}
.y98{bottom:425.986667pt;}
.y66{bottom:430.306667pt;}
.ybb{bottom:436.706667pt;}
.y2c{bottom:437.666667pt;}
.y97{bottom:441.346667pt;}
.yba{bottom:449.186667pt;}
.y2b{bottom:453.026667pt;}
.y96{bottom:456.706667pt;}
.y65{bottom:460.066667pt;}
.y2a{bottom:468.386667pt;}
.y95{bottom:472.066667pt;}
.y64{bottom:475.426667pt;}
.y29{bottom:483.746667pt;}
.y94{bottom:487.426667pt;}
.y63{bottom:490.786667pt;}
.y28{bottom:498.973333pt;}
.y93{bottom:502.653333pt;}
.y62{bottom:505.053333pt;}
.y27{bottom:514.333333pt;}
.y92{bottom:518.013333pt;}
.y61{bottom:520.733333pt;}
.y26{bottom:529.693333pt;}
.y91{bottom:533.373333pt;}
.y25{bottom:545.053333pt;}
.y90{bottom:547.613333pt;}
.y60{bottom:549.693333pt;}
.y24{bottom:560.413333pt;}
.y8f{bottom:563.293333pt;}
.y8e{bottom:563.453333pt;}
.y5f{bottom:565.213333pt;}
.y5d{bottom:573.533333pt;}
.y23{bottom:575.773333pt;}
.y5e{bottom:581.853333pt;}
.y22{bottom:590.973333pt;}
.y8d{bottom:592.573333pt;}
.y21{bottom:606.333333pt;}
.y8c{bottom:608.413333pt;}
.y5c{bottom:610.653333pt;}
.y8a{bottom:616.733333pt;}
.y20{bottom:621.693333pt;}
.y8b{bottom:625.053333pt;}
.y5b{bottom:626.493333pt;}
.y59{bottom:634.813333pt;}
.y1f{bottom:637.053333pt;}
.y5a{bottom:643.133333pt;}
.y1e{bottom:652.413333pt;}
.y89{bottom:654.013333pt;}
.y1d{bottom:667.773333pt;}
.y87{bottom:669.853333pt;}
.y88{bottom:670.013333pt;}
.y58{bottom:672.093333pt;}
.yb9{bottom:682.813333pt;}
.y1c{bottom:682.973333pt;}
.y57{bottom:687.773333pt;}
.yb2{bottom:691.613333pt;}
.y1b{bottom:698.333333pt;}
.y86{bottom:699.773333pt;}
.yb8{bottom:700.253333pt;}
.yb1{bottom:706.973333pt;}
.y1a{bottom:713.693333pt;}
.y85{bottom:715.133333pt;}
.y56{bottom:717.533333pt;}
.yb0{bottom:722.333333pt;}
.y19{bottom:729.053333pt;}
.y84{bottom:730.493333pt;}
.y55{bottom:731.773333pt;}
.yb7{bottom:733.053333pt;}
.yaf{bottom:737.693333pt;}
.y18{bottom:744.413333pt;}
.y83{bottom:745.853333pt;}
.y54{bottom:747.453333pt;}
.yb6{bottom:748.573333pt;}
.yae{bottom:753.093333pt;}
.y17{bottom:759.813333pt;}
.y82{bottom:761.093333pt;}
.yb5{bottom:765.893333pt;}
.yad{bottom:768.453333pt;}
.y16{bottom:775.013333pt;}
.y81{bottom:776.293333pt;}
.y53{bottom:776.453333pt;}
.yb4{bottom:781.573333pt;}
.yac{bottom:783.653333pt;}
.y15{bottom:790.373333pt;}
.y52{bottom:791.973333pt;}
.yb3{bottom:798.853333pt;}
.yab{bottom:799.013333pt;}
.y50{bottom:800.293333pt;}
.y14{bottom:805.733333pt;}
.y51{bottom:808.613333pt;}
.yaa{bottom:814.373333pt;}
.y13{bottom:821.093333pt;}
.y80{bottom:822.053333pt;}
.ya9{bottom:829.733333pt;}
.y12{bottom:836.453333pt;}
.y4f{bottom:837.413333pt;}
.y7f{bottom:837.573333pt;}
.ya8{bottom:845.093333pt;}
.y7d{bottom:845.893333pt;}
.y11{bottom:851.653333pt;}
.y4e{bottom:852.933333pt;}
.y7e{bottom:854.213333pt;}
.ya7{bottom:860.453333pt;}
.y4c{bottom:861.253333pt;}
.y10{bottom:867.013333pt;}
.y4d{bottom:869.573333pt;}
.ya6{bottom:872.773333pt;}
.y43{bottom:882.373333pt;}
.y7c{bottom:882.853333pt;}
.yf{bottom:887.013333pt;}
.ye{bottom:897.733333pt;}
.y4b{bottom:898.213333pt;}
.y7b{bottom:898.533333pt;}
.y42{bottom:913.093333pt;}
.y4a{bottom:913.893333pt;}
.yd{bottom:917.733333pt;}
.yc{bottom:928.453333pt;}
.yb{bottom:943.653333pt;}
.ya{bottom:959.013333pt;}
.y9{bottom:974.373333pt;}
.y8{bottom:989.733333pt;}
.y7{bottom:1005.120000pt;}
.y6{bottom:1020.480000pt;}
.y3{bottom:1036.800000pt;}
.y2{bottom:1052.960000pt;}
.y1{bottom:1065.280000pt;}
.h8{height:29.885625pt;}
.h2{height:35.342500pt;}
.ha{height:43.782500pt;}
.h9{height:44.301250pt;}
.h6{height:45.935313pt;}
.h7{height:48.445625pt;}
.h5{height:53.375000pt;}
.h4{height:58.563750pt;}
.h3{height:63.656250pt;}
.h17{height:129.298438pt;}
.hc{height:131.218438pt;}
.hd{height:192.018437pt;}
.h14{height:192.658437pt;}
.h15{height:193.277104pt;}
.hb{height:193.298438pt;}
.h10{height:193.458438pt;}
.h13{height:193.938438pt;}
.h16{height:197.778437pt;}
.hf{height:224.658437pt;}
.h12{height:225.298438pt;}
.h11{height:225.938438pt;}
.he{height:226.578438pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x9{left:117.951988pt;}
.x6{left:118.911988pt;}
.x5{left:126.751988pt;}
.x17{left:130.111988pt;}
.x1a{left:138.426655pt;}
.x1f{left:141.466655pt;}
.x14{left:142.906655pt;}
.x1d{left:145.626655pt;}
.x1c{left:146.746655pt;}
.x12{left:150.746655pt;}
.x2{left:155.066655pt;}
.xb{left:160.666655pt;}
.x7{left:168.506655pt;}
.x3{left:181.306655pt;}
.x8{left:197.146655pt;}
.x1b{left:208.346655pt;}
.x1e{left:211.706655pt;}
.x15{left:213.946655pt;}
.x13{left:216.826655pt;}
.x18{left:229.986655pt;}
.xa{left:240.706655pt;}
.x16{left:242.146655pt;}
.x19{left:258.146655pt;}
.x4{left:269.346655pt;}
.xf{left:403.133322pt;}
.x11{left:434.813322pt;}
.xd{left:444.093322pt;}
.x2d{left:462.013322pt;}
.x23{left:472.253322pt;}
.x29{left:476.253322pt;}
.x27{left:480.413322pt;}
.x20{left:481.373322pt;}
.xc{left:491.293322pt;}
.x24{left:543.333322pt;}
.x28{left:546.533322pt;}
.x21{left:547.493322pt;}
.x26{left:559.013322pt;}
.x22{left:571.813322pt;}
.x25{left:572.773322pt;}
.x2a{left:574.053322pt;}
.x10{left:595.333322pt;}
.x2c{left:599.973322pt;}
.x2b{left:623.973322pt;}
.xe{left:645.893322pt;}
.x2e{left:700.159988pt;}
.x2f{left:744.319988pt;}
.x30{left:747.679988pt;}
}




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