
    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_6e6f8aa5a0973e97d2003300.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_f1238df0393996288f23d7f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_ff6a19f629524cdeb7cc78fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_978c7bfb5d9538d8cded7eca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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);}
.v1{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.272400px;}
.lse{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.150000px;}
.lsc{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.894240px;}
.ls5{letter-spacing:3.240000px;}
.ls3{letter-spacing:5.940000px;}
.ls1{letter-spacing:18.180000px;}
.ls2{letter-spacing:70.020000px;}
.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;}
}
.ws7{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.505760px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-2.160000px;}
._4{margin-left:-1.080000px;}
._0{width:1.248000px;}
._11{width:2.280000px;}
._5{width:3.456000px;}
._9{width:4.824000px;}
._a{width:6.120000px;}
._b{width:7.188000px;}
._12{width:8.306640px;}
._13{width:9.568560px;}
._1a{width:10.692240px;}
._2{width:12.636000px;}
._1{width:13.872000px;}
._3{width:15.156000px;}
._6{width:16.500000px;}
._16{width:18.346320px;}
._f{width:19.656000px;}
._10{width:21.072000px;}
._19{width:22.200000px;}
._7{width:23.328000px;}
._8{width:24.636000px;}
._18{width:26.460000px;}
._c{width:27.576000px;}
._d{width:29.304000px;}
._15{width:30.441360px;}
._1f{width:31.447920px;}
._14{width:32.449680px;}
._1b{width:34.344000px;}
._1e{width:35.640000px;}
._23{width:47.232000px;}
._24{width:48.456000px;}
._17{width:69.076080px;}
._25{width:70.416000px;}
._20{width:82.560000px;}
._21{width:84.240000px;}
._1d{width:121.140000px;}
._1c{width:163.264320px;}
._22{width:234.156000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(51,102,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:24.660000px;}
.y2c{bottom:25.020000px;}
.y83{bottom:32.580000px;}
.y5c{bottom:41.940000px;}
.y82{bottom:43.200000px;}
.y81{bottom:50.760000px;}
.y2b{bottom:56.340000px;}
.y5b{bottom:59.040000px;}
.y80{bottom:62.100000px;}
.y5a{bottom:65.880000px;}
.ybd{bottom:68.040000px;}
.y2a{bottom:74.880000px;}
.y59{bottom:76.320000px;}
.ybc{bottom:79.380000px;}
.ya5{bottom:85.860000px;}
.y29{bottom:93.600000px;}
.y28{bottom:100.440000px;}
.y7e{bottom:101.160000px;}
.y7f{bottom:109.440000px;}
.ye0{bottom:110.196000px;}
.y58{bottom:110.880000px;}
.y136{bottom:112.716000px;}
.ydf{bottom:117.756000px;}
.ya4{bottom:118.800000px;}
.y27{bottom:124.200000px;}
.y14d{bottom:127.296000px;}
.y57{bottom:128.160000px;}
.y100{bottom:128.556000px;}
.yde{bottom:129.096000px;}
.y7d{bottom:132.120000px;}
.y56{bottom:135.036000px;}
.yff{bottom:136.116000px;}
.y26{bottom:142.776000px;}
.y135{bottom:143.676000px;}
.y55{bottom:145.476000px;}
.yfe{bottom:147.456000px;}
.ya3{bottom:149.976000px;}
.y11c{bottom:150.510000px;}
.y54{bottom:152.310000px;}
.ydd{bottom:159.690000px;}
.y25{bottom:161.490000px;}
.y7c{bottom:163.290000px;}
.y14c{bottom:170.310000px;}
.y53{bottom:174.630000px;}
.y134{bottom:174.810000px;}
.y24{bottom:180.030000px;}
.ya2{bottom:180.930000px;}
.y52{bottom:181.470000px;}
.ydc{bottom:190.830000px;}
.y51{bottom:191.910000px;}
.y7b{bottom:194.250000px;}
.y23{bottom:198.570000px;}
.y50{bottom:198.750000px;}
.y14b{bottom:201.270000px;}
.y22{bottom:205.410000px;}
.y133{bottom:205.770000px;}
.y4f{bottom:210.090000px;}
.ya1{bottom:213.870000px;}
.y21{bottom:216.750000px;}
.ydb{bottom:221.790000px;}
.yfd{bottom:222.870000px;}
.y11b{bottom:224.490000px;}
.y7a{bottom:225.390000px;}
.y4e{bottom:232.950000px;}
.y20{bottom:243.570000px;}
.y14a{bottom:244.470000px;}
.ya0{bottom:246.810000px;}
.y132{bottom:248.790000px;}
.y4d{bottom:253.650000px;}
.yda{bottom:254.910000px;}
.y11a{bottom:255.630000px;}
.yfc{bottom:255.810000px;}
.y79{bottom:256.350000px;}
.y4c{bottom:274.350000px;}
.y1f{bottom:274.530000px;}
.y149{bottom:275.430000px;}
.y9f{bottom:279.930000px;}
.yd9{bottom:285.870000px;}
.y119{bottom:286.590000px;}
.y78{bottom:287.490000px;}
.yfb{bottom:288.750000px;}
.y4b{bottom:295.050000px;}
.y1e{bottom:305.670000px;}
.y131{bottom:310.890000px;}
.y9d{bottom:312.870000px;}
.y4a{bottom:316.110000px;}
.y118{bottom:317.730000px;}
.y77{bottom:318.450000px;}
.yd8{bottom:318.810000px;}
.y9e{bottom:321.150000px;}
.yfa{bottom:321.870000px;}
.y1d{bottom:336.630000px;}
.y130{bottom:342.075000px;}
.y9c{bottom:344.010000px;}
.y148{bottom:349.635000px;}
.y76{bottom:351.390000px;}
.yd7{bottom:351.975000px;}
.y48{bottom:359.850000px;}
.y117{bottom:360.795000px;}
.y1c{bottom:367.770000px;}
.y49{bottom:368.130000px;}
.yf8{bottom:371.235000px;}
.y12f{bottom:373.035000px;}
.y9b{bottom:376.950000px;}
.yf9{bottom:379.515000px;}
.yd6{bottom:382.935000px;}
.y75{bottom:384.510000px;}
.y47{bottom:391.035000px;}
.y116{bottom:391.755000px;}
.y147{bottom:392.655000px;}
.y1b{bottom:399.855000px;}
.yf7{bottom:402.375000px;}
.y12e{bottom:404.175000px;}
.y9a{bottom:409.935000px;}
.y74{bottom:417.495000px;}
.yd5{bottom:420.015000px;}
.y45{bottom:421.995000px;}
.y115{bottom:422.895000px;}
.y146{bottom:423.615000px;}
.y19{bottom:429.195000px;}
.y46{bottom:430.275000px;}
.yf6{bottom:433.335000px;}
.y12d{bottom:435.135000px;}
.yba{bottom:435.675000px;}
.y1a{bottom:436.035000px;}
.y99{bottom:441.075000px;}
.ybb{bottom:443.955000px;}
.y18{bottom:446.475000px;}
.y73{bottom:450.435000px;}
.y44{bottom:452.955000px;}
.yd4{bottom:453.135000px;}
.y114{bottom:453.855000px;}
.y145{bottom:454.755000px;}
.y17{bottom:463.575000px;}
.yf5{bottom:464.475000px;}
.yb9{bottom:466.815000px;}
.y98{bottom:474.015000px;}
.y12c{bottom:478.155000px;}
.y16{bottom:480.855000px;}
.y72{bottom:481.575000px;}
.y42{bottom:484.095000px;}
.yd3{bottom:486.075000px;}
.y43{bottom:490.935000px;}
.yf4{bottom:495.435000px;}
.y113{bottom:496.695000px;}
.yb8{bottom:497.775000px;}
.y15{bottom:498.135000px;}
.y12b{bottom:509.295000px;}
.y41{bottom:515.055000px;}
.y14{bottom:515.415000px;}
.y97{bottom:517.035000px;}
.yf3{bottom:526.575000px;}
.y112{bottom:527.655000px;}
.y144{bottom:528.735000px;}
.yb7{bottom:528.915000px;}
.yd1{bottom:529.455000px;}
.y13{bottom:532.695000px;}
.yd2{bottom:537.735000px;}
.y12a{bottom:540.255000px;}
.y40{bottom:546.195000px;}
.y71{bottom:546.555000px;}
.y96{bottom:548.175000px;}
.yf2{bottom:557.535000px;}
.yb6{bottom:559.875000px;}
.yd0{bottom:560.595000px;}
.y111{bottom:562.215000px;}
.y143{bottom:571.935000px;}
.y12{bottom:572.835000px;}
.y3f{bottom:577.155000px;}
.y95{bottom:579.135000px;}
.y6f{bottom:580.035000px;}
.y129{bottom:583.275000px;}
.y70{bottom:588.315000px;}
.yf1{bottom:588.675000px;}
.yb5{bottom:591.015000px;}
.ycf{bottom:591.555000px;}
.y142{bottom:602.895000px;}
.y110{bottom:605.445000px;}
.y3e{bottom:608.295000px;}
.y94{bottom:609.915000px;}
.y6e{bottom:610.995000px;}
.y128{bottom:614.445000px;}
.y11{bottom:615.855000px;}
.yf0{bottom:619.665000px;}
.yb4{bottom:621.975000px;}
.yce{bottom:622.725000px;}
.y141{bottom:634.065000px;}
.y10e{bottom:636.405000px;}
.y6d{bottom:642.165000px;}
.y93{bottom:642.885000px;}
.y10f{bottom:644.685000px;}
.y127{bottom:645.405000px;}
.y10{bottom:647.025000px;}
.yef{bottom:650.805000px;}
.y3d{bottom:651.525000px;}
.yb3{bottom:653.145000px;}
.ycd{bottom:653.685000px;}
.y10d{bottom:667.545000px;}
.y140{bottom:668.445000px;}
.y6c{bottom:673.125000px;}
.y91{bottom:676.185000px;}
.yf{bottom:677.985000px;}
.yee{bottom:681.765000px;}
.y3c{bottom:683.025000px;}
.yb2{bottom:684.105000px;}
.y92{bottom:684.465000px;}
.ycc{bottom:684.825000px;}
.y126{bottom:688.605000px;}
.y10c{bottom:698.505000px;}
.y13f{bottom:702.465000px;}
.y6b{bottom:704.265000px;}
.y90{bottom:707.325000px;}
.ye{bottom:709.125000px;}
.yed{bottom:712.905000px;}
.y3b{bottom:713.985000px;}
.ycb{bottom:715.785000px;}
.yb1{bottom:717.225000px;}
.y125{bottom:719.565000px;}
.y13e{bottom:724.605000px;}
.y10b{bottom:729.645000px;}
.y6a{bottom:735.225000px;}
.y8f{bottom:738.285000px;}
.yd{bottom:740.085000px;}
.yec{bottom:743.865000px;}
.y3a{bottom:745.125000px;}
.yca{bottom:746.925000px;}
.y124{bottom:750.705000px;}
.y13d{bottom:759.165000px;}
.yb0{bottom:760.245000px;}
.y10a{bottom:760.605000px;}
.y69{bottom:766.365000px;}
.y8e{bottom:769.425000px;}
.yc{bottom:771.045000px;}
.y39{bottom:776.085000px;}
.yeb{bottom:776.805000px;}
.yc9{bottom:777.885000px;}
.y123{bottom:781.665000px;}
.y109{bottom:791.745000px;}
.y13c{bottom:793.545000px;}
.y68{bottom:797.325000px;}
.y8d{bottom:800.385000px;}
.yb{bottom:802.185000px;}
.yaf{bottom:803.265000px;}
.y38{bottom:807.045000px;}
.yc8{bottom:809.025000px;}
.yea{bottom:809.925000px;}
.y108{bottom:822.705000px;}
.y122{bottom:824.685000px;}
.y67{bottom:830.265000px;}
.y8c{bottom:831.525000px;}
.yae{bottom:834.225000px;}
.y13b{bottom:836.745000px;}
.y37{bottom:838.185000px;}
.ye9{bottom:842.865000px;}
.y9{bottom:845.205000px;}
.yc7{bottom:848.985000px;}
.ya{bottom:853.485000px;}
.y107{bottom:853.845000px;}
.y121{bottom:855.825000px;}
.y66{bottom:863.385000px;}
.y8b{bottom:864.465000px;}
.yad{bottom:865.365000px;}
.y13a{bottom:867.705000px;}
.y36{bottom:869.145000px;}
.ye8{bottom:873.870000px;}
.y8{bottom:876.345000px;}
.yc6{bottom:882.150000px;}
.y106{bottom:884.850000px;}
.y65{bottom:896.370000px;}
.y8a{bottom:897.630000px;}
.y120{bottom:898.890000px;}
.y35{bottom:900.330000px;}
.ye7{bottom:906.630000px;}
.y7{bottom:907.350000px;}
.y139{bottom:910.950000px;}
.yc5{bottom:913.110000px;}
.y105{bottom:917.970000px;}
.y89{bottom:928.590000px;}
.yac{bottom:929.130000px;}
.y64{bottom:929.310000px;}
.y11f{bottom:929.850000px;}
.y6{bottom:938.490000px;}
.ye6{bottom:939.570000px;}
.y138{bottom:941.910000px;}
.y33{bottom:943.350000px;}
.yc4{bottom:946.050000px;}
.y34{bottom:951.630000px;}
.y88{bottom:959.550000px;}
.y104{bottom:960.990000px;}
.y63{bottom:962.070000px;}
.y5{bottom:969.450000px;}
.yaa{bottom:972.510000px;}
.y137{bottom:972.870000px;}
.y32{bottom:974.490000px;}
.yc3{bottom:979.170000px;}
.yab{bottom:980.790000px;}
.y103{bottom:991.950000px;}
.y87{bottom:992.670000px;}
.ya9{bottom:1003.470000px;}
.y11e{bottom:1004.010000px;}
.y62{bottom:1005.090000px;}
.y31{bottom:1005.450000px;}
.yc2{bottom:1010.130000px;}
.y4{bottom:1012.110000px;}
.ye4{bottom:1016.070000px;}
.y102{bottom:1023.090000px;}
.ye5{bottom:1024.350000px;}
.y86{bottom:1025.610000px;}
.ya8{bottom:1034.610000px;}
.y11d{bottom:1034.970000px;}
.y61{bottom:1036.230000px;}
.y30{bottom:1036.590000px;}
.yc1{bottom:1040.730000px;}
.ye3{bottom:1047.030000px;}
.y3{bottom:1055.130000px;}
.y85{bottom:1056.570000px;}
.ya7{bottom:1065.570000px;}
.y101{bottom:1066.110000px;}
.y2f{bottom:1067.550000px;}
.yc0{bottom:1073.850000px;}
.ye2{bottom:1078.170000px;}
.y60{bottom:1088.430000px;}
.y84{bottom:1096.350000px;}
.ya6{bottom:1096.710000px;}
.y2{bottom:1098.330000px;}
.y2e{bottom:1098.690000px;}
.ybf{bottom:1106.790000px;}
.y5f{bottom:1109.130000px;}
.y1{bottom:1129.290000px;}
.y2d{bottom:1129.650000px;}
.y5e{bottom:1129.830000px;}
.ybe{bottom:1139.940000px;}
.ye1{bottom:1140.300000px;}
.hd{height:27.907031px;}
.h7{height:38.158594px;}
.ha{height:42.894141px;}
.hb{height:43.304062px;}
.h5{height:47.344922px;}
.h8{height:47.545312px;}
.hc{height:51.679688px;}
.h9{height:53.573906px;}
.h6{height:58.651172px;}
.h10{height:64.546875px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.hf{height:1262.877990px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.h4{height:1263.057990px;}
.h0{height:1263.060000px;}
.w5{width:892.978125px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.w1{width:894.000000px;}
.w2{width:894.058125px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x3{left:99.036000px;}
.xa{left:103.896000px;}
.x19{left:107.316000px;}
.x1d{left:108.756000px;}
.x21{left:127.656000px;}
.x22{left:135.936000px;}
.x2{left:138.096000px;}
.x6{left:141.516000px;}
.x1{left:143.136000px;}
.x11{left:176.608125px;}
.x12{left:182.730000px;}
.x7{left:216.388125px;}
.x8{left:221.250000px;}
.x23{left:228.628125px;}
.x24{left:240.915000px;}
.x9{left:315.075000px;}
.x25{left:343.695000px;}
.x26{left:393.193125px;}
.x27{left:405.465000px;}
.xb{left:460.543125px;}
.xc{left:466.665000px;}
.x4{left:511.483125px;}
.x5{left:517.605000px;}
.x28{left:540.103125px;}
.x29{left:552.345000px;}
.x1a{left:561.883125px;}
.x15{left:574.483125px;}
.x16{left:580.605000px;}
.x1b{left:650.308125px;}
.x1c{left:662.550000px;}
.x1e{left:680.548125px;}
.xf{left:688.828125px;}
.x13{left:690.988125px;}
.x10{left:693.690000px;}
.x14{left:697.110000px;}
.xd{left:705.928125px;}
.xe{left:714.390000px;}
.x17{left:717.988125px;}
.x18{left:724.110000px;}
.x1f{left:730.408125px;}
.x20{left:742.650000px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.242133pt;}
.lse{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133333pt;}
.lsc{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.794880pt;}
.ls5{letter-spacing:2.880000pt;}
.ls3{letter-spacing:5.280000pt;}
.ls1{letter-spacing:16.160000pt;}
.ls2{letter-spacing:62.240000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.005120pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-1.920000pt;}
._4{margin-left:-0.960000pt;}
._0{width:1.109333pt;}
._11{width:2.026667pt;}
._5{width:3.072000pt;}
._9{width:4.288000pt;}
._a{width:5.440000pt;}
._b{width:6.389333pt;}
._12{width:7.383680pt;}
._13{width:8.505387pt;}
._1a{width:9.504213pt;}
._2{width:11.232000pt;}
._1{width:12.330667pt;}
._3{width:13.472000pt;}
._6{width:14.666667pt;}
._16{width:16.307840pt;}
._f{width:17.472000pt;}
._10{width:18.730667pt;}
._19{width:19.733333pt;}
._7{width:20.736000pt;}
._8{width:21.898667pt;}
._18{width:23.520000pt;}
._c{width:24.512000pt;}
._d{width:26.048000pt;}
._15{width:27.058987pt;}
._1f{width:27.953707pt;}
._14{width:28.844160pt;}
._1b{width:30.528000pt;}
._1e{width:31.680000pt;}
._23{width:41.984000pt;}
._24{width:43.072000pt;}
._17{width:61.400960pt;}
._25{width:62.592000pt;}
._20{width:73.386667pt;}
._21{width:74.880000pt;}
._1d{width:107.680000pt;}
._1c{width:145.123840pt;}
._22{width:208.138667pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:21.920000pt;}
.y2c{bottom:22.240000pt;}
.y83{bottom:28.960000pt;}
.y5c{bottom:37.280000pt;}
.y82{bottom:38.400000pt;}
.y81{bottom:45.120000pt;}
.y2b{bottom:50.080000pt;}
.y5b{bottom:52.480000pt;}
.y80{bottom:55.200000pt;}
.y5a{bottom:58.560000pt;}
.ybd{bottom:60.480000pt;}
.y2a{bottom:66.560000pt;}
.y59{bottom:67.840000pt;}
.ybc{bottom:70.560000pt;}
.ya5{bottom:76.320000pt;}
.y29{bottom:83.200000pt;}
.y28{bottom:89.280000pt;}
.y7e{bottom:89.920000pt;}
.y7f{bottom:97.280000pt;}
.ye0{bottom:97.952000pt;}
.y58{bottom:98.560000pt;}
.y136{bottom:100.192000pt;}
.ydf{bottom:104.672000pt;}
.ya4{bottom:105.600000pt;}
.y27{bottom:110.400000pt;}
.y14d{bottom:113.152000pt;}
.y57{bottom:113.920000pt;}
.y100{bottom:114.272000pt;}
.yde{bottom:114.752000pt;}
.y7d{bottom:117.440000pt;}
.y56{bottom:120.032000pt;}
.yff{bottom:120.992000pt;}
.y26{bottom:126.912000pt;}
.y135{bottom:127.712000pt;}
.y55{bottom:129.312000pt;}
.yfe{bottom:131.072000pt;}
.ya3{bottom:133.312000pt;}
.y11c{bottom:133.786667pt;}
.y54{bottom:135.386667pt;}
.ydd{bottom:141.946667pt;}
.y25{bottom:143.546667pt;}
.y7c{bottom:145.146667pt;}
.y14c{bottom:151.386667pt;}
.y53{bottom:155.226667pt;}
.y134{bottom:155.386667pt;}
.y24{bottom:160.026667pt;}
.ya2{bottom:160.826667pt;}
.y52{bottom:161.306667pt;}
.ydc{bottom:169.626667pt;}
.y51{bottom:170.586667pt;}
.y7b{bottom:172.666667pt;}
.y23{bottom:176.506667pt;}
.y50{bottom:176.666667pt;}
.y14b{bottom:178.906667pt;}
.y22{bottom:182.586667pt;}
.y133{bottom:182.906667pt;}
.y4f{bottom:186.746667pt;}
.ya1{bottom:190.106667pt;}
.y21{bottom:192.666667pt;}
.ydb{bottom:197.146667pt;}
.yfd{bottom:198.106667pt;}
.y11b{bottom:199.546667pt;}
.y7a{bottom:200.346667pt;}
.y4e{bottom:207.066667pt;}
.y20{bottom:216.506667pt;}
.y14a{bottom:217.306667pt;}
.ya0{bottom:219.386667pt;}
.y132{bottom:221.146667pt;}
.y4d{bottom:225.466667pt;}
.yda{bottom:226.586667pt;}
.y11a{bottom:227.226667pt;}
.yfc{bottom:227.386667pt;}
.y79{bottom:227.866667pt;}
.y4c{bottom:243.866667pt;}
.y1f{bottom:244.026667pt;}
.y149{bottom:244.826667pt;}
.y9f{bottom:248.826667pt;}
.yd9{bottom:254.106667pt;}
.y119{bottom:254.746667pt;}
.y78{bottom:255.546667pt;}
.yfb{bottom:256.666667pt;}
.y4b{bottom:262.266667pt;}
.y1e{bottom:271.706667pt;}
.y131{bottom:276.346667pt;}
.y9d{bottom:278.106667pt;}
.y4a{bottom:280.986667pt;}
.y118{bottom:282.426667pt;}
.y77{bottom:283.066667pt;}
.yd8{bottom:283.386667pt;}
.y9e{bottom:285.466667pt;}
.yfa{bottom:286.106667pt;}
.y1d{bottom:299.226667pt;}
.y130{bottom:304.066667pt;}
.y9c{bottom:305.786667pt;}
.y148{bottom:310.786667pt;}
.y76{bottom:312.346667pt;}
.yd7{bottom:312.866667pt;}
.y48{bottom:319.866667pt;}
.y117{bottom:320.706667pt;}
.y1c{bottom:326.906667pt;}
.y49{bottom:327.226667pt;}
.yf8{bottom:329.986667pt;}
.y12f{bottom:331.586667pt;}
.y9b{bottom:335.066667pt;}
.yf9{bottom:337.346667pt;}
.yd6{bottom:340.386667pt;}
.y75{bottom:341.786667pt;}
.y47{bottom:347.586667pt;}
.y116{bottom:348.226667pt;}
.y147{bottom:349.026667pt;}
.y1b{bottom:355.426667pt;}
.yf7{bottom:357.666667pt;}
.y12e{bottom:359.266667pt;}
.y9a{bottom:364.386667pt;}
.y74{bottom:371.106667pt;}
.yd5{bottom:373.346667pt;}
.y45{bottom:375.106667pt;}
.y115{bottom:375.906667pt;}
.y146{bottom:376.546667pt;}
.y19{bottom:381.506667pt;}
.y46{bottom:382.466667pt;}
.yf6{bottom:385.186667pt;}
.y12d{bottom:386.786667pt;}
.yba{bottom:387.266667pt;}
.y1a{bottom:387.586667pt;}
.y99{bottom:392.066667pt;}
.ybb{bottom:394.626667pt;}
.y18{bottom:396.866667pt;}
.y73{bottom:400.386667pt;}
.y44{bottom:402.626667pt;}
.yd4{bottom:402.786667pt;}
.y114{bottom:403.426667pt;}
.y145{bottom:404.226667pt;}
.y17{bottom:412.066667pt;}
.yf5{bottom:412.866667pt;}
.yb9{bottom:414.946667pt;}
.y98{bottom:421.346667pt;}
.y12c{bottom:425.026667pt;}
.y16{bottom:427.426667pt;}
.y72{bottom:428.066667pt;}
.y42{bottom:430.306667pt;}
.yd3{bottom:432.066667pt;}
.y43{bottom:436.386667pt;}
.yf4{bottom:440.386667pt;}
.y113{bottom:441.506667pt;}
.yb8{bottom:442.466667pt;}
.y15{bottom:442.786667pt;}
.y12b{bottom:452.706667pt;}
.y41{bottom:457.826667pt;}
.y14{bottom:458.146667pt;}
.y97{bottom:459.586667pt;}
.yf3{bottom:468.066667pt;}
.y112{bottom:469.026667pt;}
.y144{bottom:469.986667pt;}
.yb7{bottom:470.146667pt;}
.yd1{bottom:470.626667pt;}
.y13{bottom:473.506667pt;}
.yd2{bottom:477.986667pt;}
.y12a{bottom:480.226667pt;}
.y40{bottom:485.506667pt;}
.y71{bottom:485.826667pt;}
.y96{bottom:487.266667pt;}
.yf2{bottom:495.586667pt;}
.yb6{bottom:497.666667pt;}
.yd0{bottom:498.306667pt;}
.y111{bottom:499.746667pt;}
.y143{bottom:508.386667pt;}
.y12{bottom:509.186667pt;}
.y3f{bottom:513.026667pt;}
.y95{bottom:514.786667pt;}
.y6f{bottom:515.586667pt;}
.y129{bottom:518.466667pt;}
.y70{bottom:522.946667pt;}
.yf1{bottom:523.266667pt;}
.yb5{bottom:525.346667pt;}
.ycf{bottom:525.826667pt;}
.y142{bottom:535.906667pt;}
.y110{bottom:538.173333pt;}
.y3e{bottom:540.706667pt;}
.y94{bottom:542.146667pt;}
.y6e{bottom:543.106667pt;}
.y128{bottom:546.173333pt;}
.y11{bottom:547.426667pt;}
.yf0{bottom:550.813333pt;}
.yb4{bottom:552.866667pt;}
.yce{bottom:553.533333pt;}
.y141{bottom:563.613333pt;}
.y10e{bottom:565.693333pt;}
.y6d{bottom:570.813333pt;}
.y93{bottom:571.453333pt;}
.y10f{bottom:573.053333pt;}
.y127{bottom:573.693333pt;}
.y10{bottom:575.133333pt;}
.yef{bottom:578.493333pt;}
.y3d{bottom:579.133333pt;}
.yb3{bottom:580.573333pt;}
.ycd{bottom:581.053333pt;}
.y10d{bottom:593.373333pt;}
.y140{bottom:594.173333pt;}
.y6c{bottom:598.333333pt;}
.y91{bottom:601.053333pt;}
.yf{bottom:602.653333pt;}
.yee{bottom:606.013333pt;}
.y3c{bottom:607.133333pt;}
.yb2{bottom:608.093333pt;}
.y92{bottom:608.413333pt;}
.ycc{bottom:608.733333pt;}
.y126{bottom:612.093333pt;}
.y10c{bottom:620.893333pt;}
.y13f{bottom:624.413333pt;}
.y6b{bottom:626.013333pt;}
.y90{bottom:628.733333pt;}
.ye{bottom:630.333333pt;}
.yed{bottom:633.693333pt;}
.y3b{bottom:634.653333pt;}
.ycb{bottom:636.253333pt;}
.yb1{bottom:637.533333pt;}
.y125{bottom:639.613333pt;}
.y13e{bottom:644.093333pt;}
.y10b{bottom:648.573333pt;}
.y6a{bottom:653.533333pt;}
.y8f{bottom:656.253333pt;}
.yd{bottom:657.853333pt;}
.yec{bottom:661.213333pt;}
.y3a{bottom:662.333333pt;}
.yca{bottom:663.933333pt;}
.y124{bottom:667.293333pt;}
.y13d{bottom:674.813333pt;}
.yb0{bottom:675.773333pt;}
.y10a{bottom:676.093333pt;}
.y69{bottom:681.213333pt;}
.y8e{bottom:683.933333pt;}
.yc{bottom:685.373333pt;}
.y39{bottom:689.853333pt;}
.yeb{bottom:690.493333pt;}
.yc9{bottom:691.453333pt;}
.y123{bottom:694.813333pt;}
.y109{bottom:703.773333pt;}
.y13c{bottom:705.373333pt;}
.y68{bottom:708.733333pt;}
.y8d{bottom:711.453333pt;}
.yb{bottom:713.053333pt;}
.yaf{bottom:714.013333pt;}
.y38{bottom:717.373333pt;}
.yc8{bottom:719.133333pt;}
.yea{bottom:719.933333pt;}
.y108{bottom:731.293333pt;}
.y122{bottom:733.053333pt;}
.y67{bottom:738.013333pt;}
.y8c{bottom:739.133333pt;}
.yae{bottom:741.533333pt;}
.y13b{bottom:743.773333pt;}
.y37{bottom:745.053333pt;}
.ye9{bottom:749.213333pt;}
.y9{bottom:751.293333pt;}
.yc7{bottom:754.653333pt;}
.ya{bottom:758.653333pt;}
.y107{bottom:758.973333pt;}
.y121{bottom:760.733333pt;}
.y66{bottom:767.453333pt;}
.y8b{bottom:768.413333pt;}
.yad{bottom:769.213333pt;}
.y13a{bottom:771.293333pt;}
.y36{bottom:772.573333pt;}
.ye8{bottom:776.773333pt;}
.y8{bottom:778.973333pt;}
.yc6{bottom:784.133333pt;}
.y106{bottom:786.533333pt;}
.y65{bottom:796.773333pt;}
.y8a{bottom:797.893333pt;}
.y120{bottom:799.013333pt;}
.y35{bottom:800.293333pt;}
.ye7{bottom:805.893333pt;}
.y7{bottom:806.533333pt;}
.y139{bottom:809.733333pt;}
.yc5{bottom:811.653333pt;}
.y105{bottom:815.973333pt;}
.y89{bottom:825.413333pt;}
.yac{bottom:825.893333pt;}
.y64{bottom:826.053333pt;}
.y11f{bottom:826.533333pt;}
.y6{bottom:834.213333pt;}
.ye6{bottom:835.173333pt;}
.y138{bottom:837.253333pt;}
.y33{bottom:838.533333pt;}
.yc4{bottom:840.933333pt;}
.y34{bottom:845.893333pt;}
.y88{bottom:852.933333pt;}
.y104{bottom:854.213333pt;}
.y63{bottom:855.173333pt;}
.y5{bottom:861.733333pt;}
.yaa{bottom:864.453333pt;}
.y137{bottom:864.773333pt;}
.y32{bottom:866.213333pt;}
.yc3{bottom:870.373333pt;}
.yab{bottom:871.813333pt;}
.y103{bottom:881.733333pt;}
.y87{bottom:882.373333pt;}
.ya9{bottom:891.973333pt;}
.y11e{bottom:892.453333pt;}
.y62{bottom:893.413333pt;}
.y31{bottom:893.733333pt;}
.yc2{bottom:897.893333pt;}
.y4{bottom:899.653333pt;}
.ye4{bottom:903.173333pt;}
.y102{bottom:909.413333pt;}
.ye5{bottom:910.533333pt;}
.y86{bottom:911.653333pt;}
.ya8{bottom:919.653333pt;}
.y11d{bottom:919.973333pt;}
.y61{bottom:921.093333pt;}
.y30{bottom:921.413333pt;}
.yc1{bottom:925.093333pt;}
.ye3{bottom:930.693333pt;}
.y3{bottom:937.893333pt;}
.y85{bottom:939.173333pt;}
.ya7{bottom:947.173333pt;}
.y101{bottom:947.653333pt;}
.y2f{bottom:948.933333pt;}
.yc0{bottom:954.533333pt;}
.ye2{bottom:958.373333pt;}
.y60{bottom:967.493333pt;}
.y84{bottom:974.533333pt;}
.ya6{bottom:974.853333pt;}
.y2{bottom:976.293333pt;}
.y2e{bottom:976.613333pt;}
.ybf{bottom:983.813333pt;}
.y5f{bottom:985.893333pt;}
.y1{bottom:1003.813333pt;}
.y2d{bottom:1004.133333pt;}
.y5e{bottom:1004.293333pt;}
.ybe{bottom:1013.280000pt;}
.ye1{bottom:1013.600000pt;}
.hd{height:24.806250pt;}
.h7{height:33.918750pt;}
.ha{height:38.128125pt;}
.hb{height:38.492500pt;}
.h5{height:42.084375pt;}
.h8{height:42.262500pt;}
.hc{height:45.937500pt;}
.h9{height:47.621250pt;}
.h6{height:52.134375pt;}
.h10{height:57.375000pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.hf{height:1122.558213pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h4{height:1122.718213pt;}
.h0{height:1122.720000pt;}
.w5{width:793.758333pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.718333pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x3{left:88.032000pt;}
.xa{left:92.352000pt;}
.x19{left:95.392000pt;}
.x1d{left:96.672000pt;}
.x21{left:113.472000pt;}
.x22{left:120.832000pt;}
.x2{left:122.752000pt;}
.x6{left:125.792000pt;}
.x1{left:127.232000pt;}
.x11{left:156.985000pt;}
.x12{left:162.426667pt;}
.x7{left:192.345000pt;}
.x8{left:196.666667pt;}
.x23{left:203.225000pt;}
.x24{left:214.146667pt;}
.x9{left:280.066667pt;}
.x25{left:305.506667pt;}
.x26{left:349.505000pt;}
.x27{left:360.413333pt;}
.xb{left:409.371667pt;}
.xc{left:414.813333pt;}
.x4{left:454.651667pt;}
.x5{left:460.093333pt;}
.x28{left:480.091667pt;}
.x29{left:490.973333pt;}
.x1a{left:499.451667pt;}
.x15{left:510.651667pt;}
.x16{left:516.093333pt;}
.x1b{left:578.051667pt;}
.x1c{left:588.933333pt;}
.x1e{left:604.931667pt;}
.xf{left:612.291667pt;}
.x13{left:614.211667pt;}
.x10{left:616.613333pt;}
.x14{left:619.653333pt;}
.xd{left:627.491667pt;}
.xe{left:635.013333pt;}
.x17{left:638.211667pt;}
.x18{left:643.653333pt;}
.x1f{left:649.251667pt;}
.x20{left:660.133333pt;}
}




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