
    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_039ca39bc3c048390d2a6109.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bd7eccb265d5b473a35025a7.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_8a0c73395482904afd77bd13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_cc4fd41b56310e22cc57c5a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966797;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_709e149b6ca09680734f9d0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.072000;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;}
.v5{vertical-align:5.460000px;}
.v2{vertical-align:17.280000px;}
.v4{vertical-align:45.660000px;}
.v3{vertical-align:79.500000px;}
.v1{vertical-align:136.980000px;}
.ls11{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.280200px;}
.ls20{letter-spacing:-0.259800px;}
.ls1a{letter-spacing:-0.232200px;}
.ls22{letter-spacing:-0.230400px;}
.ls1e{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.053280px;}
.ls1f{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.163800px;}
.lsa{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.252000px;}
.ls1b{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.324000px;}
.ls3{letter-spacing:57.600000px;}
.ls17{letter-spacing:65.865600px;}
.ls4{letter-spacing:65.877600px;}
.ls14{letter-spacing:65.916000px;}
.ls5{letter-spacing:65.928000px;}
.ls15{letter-spacing:70.161600px;}
.ls9{letter-spacing:70.200000px;}
.ls16{letter-spacing:70.212000px;}
.ls19{letter-spacing:74.433600px;}
.ls18{letter-spacing:74.484000px;}
.ls12{letter-spacing:78.528000px;}
.ls8{letter-spacing:97.509600px;}
.ls7{letter-spacing:97.560000px;}
.lse{letter-spacing:391.680000px;}
.lsf{letter-spacing:391.800000px;}
.lsc{letter-spacing:1019.940000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-115.430400px;}
.ws1a{word-spacing:-115.344000px;}
.ws12{word-spacing:-46.677312px;}
.ws4{word-spacing:-40.072032px;}
.ws3{word-spacing:-40.032000px;}
.ws2{word-spacing:-33.426720px;}
.ws13{word-spacing:-33.146520px;}
.ws8{word-spacing:-30.276000px;}
.ws5{word-spacing:-30.064032px;}
.ws6{word-spacing:-30.024000px;}
.ws16{word-spacing:-29.988000px;}
.ws15{word-spacing:-29.808000px;}
.ws0{word-spacing:-26.658720px;}
.ws11{word-spacing:-26.621280px;}
.ws10{word-spacing:-23.418720px;}
.ws18{word-spacing:-16.613280px;}
.ws17{word-spacing:-16.353480px;}
.wsd{word-spacing:-10.332000px;}
.wsc{word-spacing:-10.008000px;}
.ws14{word-spacing:-2.280240px;}
.wsa{word-spacing:-1.134240px;}
.wsf{word-spacing:-1.024080px;}
.ws7{word-spacing:-0.384000px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:283.596000px;}
.wsb{word-spacing:283.656000px;}
.ws9{word-spacing:691.080000px;}
._c{margin-left:-18.956880px;}
._7{margin-left:-12.592800px;}
._1{margin-left:-11.012400px;}
._9{margin-left:-9.785664px;}
._6{margin-left:-7.683840px;}
._4{margin-left:-5.937120px;}
._3{margin-left:-3.926160px;}
._5{margin-left:-2.738736px;}
._2{margin-left:-1.532160px;}
._0{width:1.915200px;}
._8{width:3.410352px;}
._d{width:24.572640px;}
._a{width:31.736160px;}
._e{width:65.928000px;}
._b{width:302.092224px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,176,240);}
.fc3{color:rgb(104,104,104);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:36.000000px;}
.fsb{font-size:36.144000px;}
.fs12{font-size:59.760000px;}
.fse{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fsf{font-size:95.904000px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs6{font-size:120.240000px;}
.fs5{font-size:120.384000px;}
.fs4{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fs8{font-size:167.760000px;}
.fs3{font-size:167.904000px;}
.fs15{font-size:192.240000px;}
.fs14{font-size:192.384000px;}
.fs13{font-size:239.904000px;}
.fs2{font-size:288.000000px;}
.fs1{font-size:288.144000px;}
.fs11{font-size:352.080000px;}
.fs10{font-size:352.224000px;}
.y0{bottom:0.000000px;}
.yd3{bottom:16.668000px;}
.yd2{bottom:34.668000px;}
.yc0{bottom:39.852000px;}
.y67{bottom:48.492000px;}
.y48{bottom:50.148000px;}
.y5d{bottom:52.488000px;}
.y18{bottom:61.236000px;}
.y30{bottom:74.556000px;}
.yd8{bottom:75.276000px;}
.ybf{bottom:77.652000px;}
.y1f{bottom:82.080000px;}
.y47{bottom:82.548000px;}
.y66{bottom:84.492000px;}
.y5c{bottom:84.924000px;}
.ya9{bottom:85.572000px;}
.y85{bottom:86.184000px;}
.y73{bottom:101.916000px;}
.y17{bottom:104.436000px;}
.ybe{bottom:106.452000px;}
.y2f{bottom:106.956000px;}
.y98{bottom:111.456000px;}
.y11{bottom:112.356000px;}
.y72{bottom:112.716000px;}
.y46{bottom:114.948000px;}
.y5b{bottom:117.324000px;}
.ya8{bottom:117.972000px;}
.y84{bottom:118.620000px;}
.y97{bottom:122.256000px;}
.y90{bottom:123.120000px;}
.y71{bottom:123.516000px;}
.y1e{bottom:125.280000px;}
.y65{bottom:129.492000px;}
.y96{bottom:133.056000px;}
.yb2{bottom:133.632000px;}
.yb1{bottom:137.592000px;}
.y36{bottom:139.356000px;}
.yd7{bottom:141.876000px;}
.ybd{bottom:144.252000px;}
.ycb{bottom:145.152000px;}
.y56{bottom:145.800000px;}
.y16{bottom:147.636000px;}
.y2e{bottom:148.356000px;}
.y5a{bottom:149.724000px;}
.y83{bottom:151.020000px;}
.y8f{bottom:155.520000px;}
.y10{bottom:155.595000px;}
.y70{bottom:159.120000px;}
.ya7{bottom:159.375000px;}
.y6f{bottom:160.485000px;}
.y64{bottom:165.495000px;}
.y1d{bottom:168.480000px;}
.y95{bottom:168.690000px;}
.yb0{bottom:170.025000px;}
.y94{bottom:170.070000px;}
.y5{bottom:170.310000px;}
.y55{bottom:178.200000px;}
.y69{bottom:178.275000px;}
.y35{bottom:180.750000px;}
.ybc{bottom:182.055000px;}
.yca{bottom:188.355000px;}
.y2d{bottom:189.750000px;}
.y15{bottom:190.875000px;}
.ya6{bottom:191.775000px;}
.y82{bottom:192.420000px;}
.y75{bottom:195.945000px;}
.y6d{bottom:196.230000px;}
.y6e{bottom:196.845000px;}
.y8e{bottom:196.920000px;}
.yf{bottom:198.795000px;}
.y4{bottom:203.610000px;}
.y9a{bottom:205.530000px;}
.y92{bottom:205.815000px;}
.y93{bottom:206.385000px;}
.y74{bottom:206.745000px;}
.y6c{bottom:207.075000px;}
.yd6{bottom:208.515000px;}
.y54{bottom:210.630000px;}
.y68{bottom:210.675000px;}
.y34{bottom:213.150000px;}
.y99{bottom:216.330000px;}
.y91{bottom:216.615000px;}
.ybb{bottom:220.605000px;}
.y63{bottom:220.785000px;}
.y2c{bottom:222.150000px;}
.y81{bottom:224.820000px;}
.y8d{bottom:229.320000px;}
.y45{bottom:229.860000px;}
.y14{bottom:234.075000px;}
.y44{bottom:234.180000px;}
.y3{bottom:236.910000px;}
.y40{bottom:240.405000px;}
.ya5{bottom:240.945000px;}
.y76{bottom:245.190000px;}
.y53{bottom:252.030000px;}
.y2b{bottom:254.595000px;}
.y9b{bottom:254.775000px;}
.yc9{bottom:258.585000px;}
.ye{bottom:259.995000px;}
.y8c{bottom:261.750000px;}
.yba{bottom:262.005000px;}
.y62{bottom:263.985000px;}
.ya4{bottom:266.145000px;}
.y80{bottom:266.250000px;}
.yaf{bottom:268.845000px;}
.y2{bottom:270.210000px;}
.y3f{bottom:272.805000px;}
.yc2{bottom:276.195000px;}
.y52{bottom:284.430000px;}
.y2a{bottom:286.995000px;}
.ya3{bottom:291.345000px;}
.y33{bottom:295.995000px;}
.y7f{bottom:298.650000px;}
.yae{bottom:301.245000px;}
.yc8{bottom:301.785000px;}
.y8b{bottom:303.150000px;}
.yb9{bottom:303.405000px;}
.y51{bottom:316.830000px;}
.yc1{bottom:319.425000px;}
.y3e{bottom:323.205000px;}
.ya2{bottom:325.545000px;}
.y1a{bottom:326.850000px;}
.y29{bottom:328.395000px;}
.y7e{bottom:331.050000px;}
.y1{bottom:332.355000px;}
.y8a{bottom:335.550000px;}
.y13{bottom:345.315000px;}
.y4b{bottom:347.610000px;}
.y42{bottom:348.585000px;}
.y50{bottom:349.230000px;}
.y43{bottom:350.430000px;}
.ya1{bottom:350.745000px;}
.yb8{bottom:354.570000px;}
.y3d{bottom:355.650000px;}
.y61{bottom:359.970000px;}
.y28{bottom:360.795000px;}
.y89{bottom:367.950000px;}
.y19{bottom:370.050000px;}
.yc7{bottom:370.770000px;}
.y7d{bottom:372.450000px;}
.ya0{bottom:375.990000px;}
.y6a{bottom:379.590000px;}
.y4a{bottom:380.010000px;}
.y41{bottom:380.985000px;}
.y4f{bottom:381.675000px;}
.yd{bottom:386.970000px;}
.y3c{bottom:388.050000px;}
.y32{bottom:393.225000px;}
.y12{bottom:395.745000px;}
.y60{bottom:395.970000px;}
.yc3{bottom:397.620000px;}
.yad{bottom:400.110000px;}
.y27{bottom:402.225000px;}
.ycf{bottom:404.250000px;}
.y7c{bottom:404.850000px;}
.y88{bottom:409.350000px;}
.y9f{bottom:410.190000px;}
.yb7{bottom:416.850000px;}
.y7{bottom:420.270000px;}
.yc{bottom:422.970000px;}
.y4e{bottom:423.075000px;}
.yc6{bottom:424.770000px;}
.yac{bottom:432.510000px;}
.y31{bottom:434.625000px;}
.y9e{bottom:435.390000px;}
.yce{bottom:436.650000px;}
.y3b{bottom:438.450000px;}
.y5f{bottom:440.970000px;}
.y87{bottom:441.795000px;}
.y26{bottom:443.625000px;}
.y7b{bottom:446.295000px;}
.y4d{bottom:455.475000px;}
.y78{bottom:455.610000px;}
.y59{bottom:456.915000px;}
.yb6{bottom:458.250000px;}
.y9d{bottom:460.590000px;}
.y3a{bottom:470.850000px;}
.y25{bottom:476.025000px;}
.yb{bottom:476.970000px;}
.y7a{bottom:478.695000px;}
.yc5{bottom:478.770000px;}
.y9c{bottom:485.790000px;}
.y6b{bottom:486.435000px;}
.ycd{bottom:487.050000px;}
.y58{bottom:489.315000px;}
.yb5{bottom:490.650000px;}
.y1c{bottom:492.225000px;}
.y86{bottom:492.915000px;}
.yd5{bottom:497.415000px;}
.y6{bottom:498.060000px;}
.y77{bottom:498.810000px;}
.y57{bottom:501.870000px;}
.y4c{bottom:506.595000px;}
.y24{bottom:508.425000px;}
.ya{bottom:513.000000px;}
.y39{bottom:521.280000px;}
.y5e{bottom:522.000000px;}
.y79{bottom:529.815000px;}
.yb4{bottom:532.080000px;}
.yc4{bottom:534.060000px;}
.yab{bottom:534.990000px;}
.y1b{bottom:535.470000px;}
.ycc{bottom:547.200000px;}
.y22{bottom:550.290000px;}
.y38{bottom:553.680000px;}
.y23{bottom:559.590000px;}
.yaa{bottom:567.435000px;}
.y9{bottom:577.260000px;}
.yb3{bottom:583.200000px;}
.y37{bottom:586.080000px;}
.y49{bottom:591.015000px;}
.y21{bottom:593.490000px;}
.yd1{bottom:605.265000px;}
.y20{bottom:684.000000px;}
.yd4{bottom:703.650000px;}
.yd0{bottom:710.970000px;}
.y8{bottom:729.390000px;}
.h16{height:27.070312px;}
.h17{height:32.530313px;}
.h19{height:32.590312px;}
.h15{height:37.546875px;}
.h13{height:37.697062px;}
.h20{height:62.327813px;}
.h1b{height:75.093750px;}
.hd{height:78.943359px;}
.h10{height:81.210938px;}
.h18{height:83.026875px;}
.h14{height:83.206875px;}
.h1a{height:87.859687px;}
.h1d{height:87.890273px;}
.h11{height:98.490938px;}
.h1{height:99.874688px;}
.h1c{height:100.024875px;}
.hb{height:108.281250px;}
.ha{height:108.389531px;}
.hc{height:112.640625px;}
.he{height:112.790813px;}
.h7{height:125.406562px;}
.h6{height:125.556750px;}
.h5{height:150.187500px;}
.h8{height:150.337688px;}
.h23{height:167.633280px;}
.h22{height:167.758848px;}
.h9{height:174.968437px;}
.h4{height:175.118625px;}
.h12{height:192.290813px;}
.hf{height:249.620625px;}
.h21{height:250.212375px;}
.h3{height:300.375000px;}
.h2{height:300.525188px;}
.h1f{height:367.208438px;}
.h1e{height:367.358625px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x51{left:52.235979px;}
.x3{left:92.951979px;}
.x24{left:109.223979px;}
.x14{left:110.879979px;}
.x3b{left:112.391979px;}
.x18{left:119.951979px;}
.xb{left:130.751979px;}
.x25{left:143.063979px;}
.x15{left:144.719979px;}
.x4{left:146.951979px;}
.x6{left:160.019979px;}
.x16{left:164.879979px;}
.x5{left:173.954979px;}
.xa{left:193.034979px;}
.x2{left:195.629979px;}
.x17{left:198.719979px;}
.x1{left:200.954979px;}
.x7{left:204.149979px;}
.x4d{left:227.954979px;}
.x8{left:269.129979px;}
.xc{left:281.729979px;}
.x52{left:304.994979px;}
.x54{left:351.074979px;}
.x53{left:527.939979px;}
.x1f{left:545.504979px;}
.x19{left:556.919979px;}
.x4c{left:563.144979px;}
.x9{left:569.444979px;}
.x1e{left:571.244979px;}
.x20{left:588.344979px;}
.xd{left:601.019979px;}
.x37{left:607.394979px;}
.x1a{left:612.179979px;}
.x1d{left:621.899979px;}
.x21{left:636.149979px;}
.x38{left:641.234979px;}
.x10{left:645.404979px;}
.x39{left:661.394979px;}
.x11{left:679.244979px;}
.x3a{left:695.234979px;}
.x12{left:699.404979px;}
.x13{left:733.244979px;}
.x28{left:780.404979px;}
.x1b{left:837.149979px;}
.x26{left:842.549979px;}
.x27{left:1067.609979px;}
.x2c{left:1073.669979px;}
.x41{left:1109.234979px;}
.x22{left:1112.429979px;}
.x40{left:1117.874979px;}
.x23{left:1119.269979px;}
.x2d{left:1123.484979px;}
.x32{left:1128.059979px;}
.x3c{left:1131.629979px;}
.x33{left:1133.819979px;}
.x3f{left:1134.869979px;}
.x29{left:1139.114979px;}
.x2e{left:1141.844979px;}
.x31{left:1145.084979px;}
.x4f{left:1147.754979px;}
.xf{left:1148.864979px;}
.x2b{left:1150.634979px;}
.x1c{left:1177.409979px;}
.x50{left:1191.269979px;}
.x2a{left:1194.014979px;}
.x4e{left:1210.064979px;}
.xe{left:1211.189979px;}
.x46{left:1213.019979px;}
.x3d{left:1219.529979px;}
.x48{left:1222.274979px;}
.x44{left:1223.669979px;}
.x2f{left:1229.759979px;}
.x36{left:1233.899979px;}
.x4a{left:1244.054979px;}
.x4b{left:1255.934979px;}
.x49{left:1270.154979px;}
.x47{left:1271.519979px;}
.x45{left:1274.399979px;}
.x42{left:1323.974979px;}
.x43{left:1326.134979px;}
.x34{left:1334.189979px;}
.x35{left:1336.349979px;}
.x3e{left:1345.574979px;}
.x30{left:1355.789979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.853333pt;}
.v2{vertical-align:15.360000pt;}
.v4{vertical-align:40.586667pt;}
.v3{vertical-align:70.666667pt;}
.v1{vertical-align:121.760000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.249067pt;}
.ls20{letter-spacing:-0.230933pt;}
.ls1a{letter-spacing:-0.206400pt;}
.ls22{letter-spacing:-0.204800pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.047360pt;}
.ls1f{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.145600pt;}
.lsa{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.224000pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.288000pt;}
.ls3{letter-spacing:51.200000pt;}
.ls17{letter-spacing:58.547200pt;}
.ls4{letter-spacing:58.557867pt;}
.ls14{letter-spacing:58.592000pt;}
.ls5{letter-spacing:58.602667pt;}
.ls15{letter-spacing:62.365867pt;}
.ls9{letter-spacing:62.400000pt;}
.ls16{letter-spacing:62.410667pt;}
.ls19{letter-spacing:66.163200pt;}
.ls18{letter-spacing:66.208000pt;}
.ls12{letter-spacing:69.802667pt;}
.ls8{letter-spacing:86.675200pt;}
.ls7{letter-spacing:86.720000pt;}
.lse{letter-spacing:348.160000pt;}
.lsf{letter-spacing:348.266667pt;}
.lsc{letter-spacing:906.613333pt;}
.ws19{word-spacing:-102.604800pt;}
.ws1a{word-spacing:-102.528000pt;}
.ws12{word-spacing:-41.490944pt;}
.ws4{word-spacing:-35.619584pt;}
.ws3{word-spacing:-35.584000pt;}
.ws2{word-spacing:-29.712640pt;}
.ws13{word-spacing:-29.463573pt;}
.ws8{word-spacing:-26.912000pt;}
.ws5{word-spacing:-26.723584pt;}
.ws6{word-spacing:-26.688000pt;}
.ws16{word-spacing:-26.656000pt;}
.ws15{word-spacing:-26.496000pt;}
.ws0{word-spacing:-23.696640pt;}
.ws11{word-spacing:-23.663360pt;}
.ws10{word-spacing:-20.816640pt;}
.ws18{word-spacing:-14.767360pt;}
.ws17{word-spacing:-14.536427pt;}
.wsd{word-spacing:-9.184000pt;}
.wsc{word-spacing:-8.896000pt;}
.ws14{word-spacing:-2.026880pt;}
.wsa{word-spacing:-1.008213pt;}
.wsf{word-spacing:-0.910293pt;}
.ws7{word-spacing:-0.341333pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:252.085333pt;}
.wsb{word-spacing:252.138667pt;}
.ws9{word-spacing:614.293333pt;}
._c{margin-left:-16.850560pt;}
._7{margin-left:-11.193600pt;}
._1{margin-left:-9.788800pt;}
._9{margin-left:-8.698368pt;}
._6{margin-left:-6.830080pt;}
._4{margin-left:-5.277440pt;}
._3{margin-left:-3.489920pt;}
._5{margin-left:-2.434432pt;}
._2{margin-left:-1.361920pt;}
._0{width:1.702400pt;}
._8{width:3.031424pt;}
._d{width:21.842347pt;}
._a{width:28.209920pt;}
._e{width:58.602667pt;}
._b{width:268.526421pt;}
.fsc{font-size:32.000000pt;}
.fsb{font-size:32.128000pt;}
.fs12{font-size:53.120000pt;}
.fse{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fsf{font-size:85.248000pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs6{font-size:106.880000pt;}
.fs5{font-size:107.008000pt;}
.fs4{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fs8{font-size:149.120000pt;}
.fs3{font-size:149.248000pt;}
.fs15{font-size:170.880000pt;}
.fs14{font-size:171.008000pt;}
.fs13{font-size:213.248000pt;}
.fs2{font-size:256.000000pt;}
.fs1{font-size:256.128000pt;}
.fs11{font-size:312.960000pt;}
.fs10{font-size:313.088000pt;}
.y0{bottom:0.000000pt;}
.yd3{bottom:14.816000pt;}
.yd2{bottom:30.816000pt;}
.yc0{bottom:35.424000pt;}
.y67{bottom:43.104000pt;}
.y48{bottom:44.576000pt;}
.y5d{bottom:46.656000pt;}
.y18{bottom:54.432000pt;}
.y30{bottom:66.272000pt;}
.yd8{bottom:66.912000pt;}
.ybf{bottom:69.024000pt;}
.y1f{bottom:72.960000pt;}
.y47{bottom:73.376000pt;}
.y66{bottom:75.104000pt;}
.y5c{bottom:75.488000pt;}
.ya9{bottom:76.064000pt;}
.y85{bottom:76.608000pt;}
.y73{bottom:90.592000pt;}
.y17{bottom:92.832000pt;}
.ybe{bottom:94.624000pt;}
.y2f{bottom:95.072000pt;}
.y98{bottom:99.072000pt;}
.y11{bottom:99.872000pt;}
.y72{bottom:100.192000pt;}
.y46{bottom:102.176000pt;}
.y5b{bottom:104.288000pt;}
.ya8{bottom:104.864000pt;}
.y84{bottom:105.440000pt;}
.y97{bottom:108.672000pt;}
.y90{bottom:109.440000pt;}
.y71{bottom:109.792000pt;}
.y1e{bottom:111.360000pt;}
.y65{bottom:115.104000pt;}
.y96{bottom:118.272000pt;}
.yb2{bottom:118.784000pt;}
.yb1{bottom:122.304000pt;}
.y36{bottom:123.872000pt;}
.yd7{bottom:126.112000pt;}
.ybd{bottom:128.224000pt;}
.ycb{bottom:129.024000pt;}
.y56{bottom:129.600000pt;}
.y16{bottom:131.232000pt;}
.y2e{bottom:131.872000pt;}
.y5a{bottom:133.088000pt;}
.y83{bottom:134.240000pt;}
.y8f{bottom:138.240000pt;}
.y10{bottom:138.306667pt;}
.y70{bottom:141.440000pt;}
.ya7{bottom:141.666667pt;}
.y6f{bottom:142.653333pt;}
.y64{bottom:147.106667pt;}
.y1d{bottom:149.760000pt;}
.y95{bottom:149.946667pt;}
.yb0{bottom:151.133333pt;}
.y94{bottom:151.173333pt;}
.y5{bottom:151.386667pt;}
.y55{bottom:158.400000pt;}
.y69{bottom:158.466667pt;}
.y35{bottom:160.666667pt;}
.ybc{bottom:161.826667pt;}
.yca{bottom:167.426667pt;}
.y2d{bottom:168.666667pt;}
.y15{bottom:169.666667pt;}
.ya6{bottom:170.466667pt;}
.y82{bottom:171.040000pt;}
.y75{bottom:174.173333pt;}
.y6d{bottom:174.426667pt;}
.y6e{bottom:174.973333pt;}
.y8e{bottom:175.040000pt;}
.yf{bottom:176.706667pt;}
.y4{bottom:180.986667pt;}
.y9a{bottom:182.693333pt;}
.y92{bottom:182.946667pt;}
.y93{bottom:183.453333pt;}
.y74{bottom:183.773333pt;}
.y6c{bottom:184.066667pt;}
.yd6{bottom:185.346667pt;}
.y54{bottom:187.226667pt;}
.y68{bottom:187.266667pt;}
.y34{bottom:189.466667pt;}
.y99{bottom:192.293333pt;}
.y91{bottom:192.546667pt;}
.ybb{bottom:196.093333pt;}
.y63{bottom:196.253333pt;}
.y2c{bottom:197.466667pt;}
.y81{bottom:199.840000pt;}
.y8d{bottom:203.840000pt;}
.y45{bottom:204.320000pt;}
.y14{bottom:208.066667pt;}
.y44{bottom:208.160000pt;}
.y3{bottom:210.586667pt;}
.y40{bottom:213.693333pt;}
.ya5{bottom:214.173333pt;}
.y76{bottom:217.946667pt;}
.y53{bottom:224.026667pt;}
.y2b{bottom:226.306667pt;}
.y9b{bottom:226.466667pt;}
.yc9{bottom:229.853333pt;}
.ye{bottom:231.106667pt;}
.y8c{bottom:232.666667pt;}
.yba{bottom:232.893333pt;}
.y62{bottom:234.653333pt;}
.ya4{bottom:236.573333pt;}
.y80{bottom:236.666667pt;}
.yaf{bottom:238.973333pt;}
.y2{bottom:240.186667pt;}
.y3f{bottom:242.493333pt;}
.yc2{bottom:245.506667pt;}
.y52{bottom:252.826667pt;}
.y2a{bottom:255.106667pt;}
.ya3{bottom:258.973333pt;}
.y33{bottom:263.106667pt;}
.y7f{bottom:265.466667pt;}
.yae{bottom:267.773333pt;}
.yc8{bottom:268.253333pt;}
.y8b{bottom:269.466667pt;}
.yb9{bottom:269.693333pt;}
.y51{bottom:281.626667pt;}
.yc1{bottom:283.933333pt;}
.y3e{bottom:287.293333pt;}
.ya2{bottom:289.373333pt;}
.y1a{bottom:290.533333pt;}
.y29{bottom:291.906667pt;}
.y7e{bottom:294.266667pt;}
.y1{bottom:295.426667pt;}
.y8a{bottom:298.266667pt;}
.y13{bottom:306.946667pt;}
.y4b{bottom:308.986667pt;}
.y42{bottom:309.853333pt;}
.y50{bottom:310.426667pt;}
.y43{bottom:311.493333pt;}
.ya1{bottom:311.773333pt;}
.yb8{bottom:315.173333pt;}
.y3d{bottom:316.133333pt;}
.y61{bottom:319.973333pt;}
.y28{bottom:320.706667pt;}
.y89{bottom:327.066667pt;}
.y19{bottom:328.933333pt;}
.yc7{bottom:329.573333pt;}
.y7d{bottom:331.066667pt;}
.ya0{bottom:334.213333pt;}
.y6a{bottom:337.413333pt;}
.y4a{bottom:337.786667pt;}
.y41{bottom:338.653333pt;}
.y4f{bottom:339.266667pt;}
.yd{bottom:343.973333pt;}
.y3c{bottom:344.933333pt;}
.y32{bottom:349.533333pt;}
.y12{bottom:351.773333pt;}
.y60{bottom:351.973333pt;}
.yc3{bottom:353.440000pt;}
.yad{bottom:355.653333pt;}
.y27{bottom:357.533333pt;}
.ycf{bottom:359.333333pt;}
.y7c{bottom:359.866667pt;}
.y88{bottom:363.866667pt;}
.y9f{bottom:364.613333pt;}
.yb7{bottom:370.533333pt;}
.y7{bottom:373.573333pt;}
.yc{bottom:375.973333pt;}
.y4e{bottom:376.066667pt;}
.yc6{bottom:377.573333pt;}
.yac{bottom:384.453333pt;}
.y31{bottom:386.333333pt;}
.y9e{bottom:387.013333pt;}
.yce{bottom:388.133333pt;}
.y3b{bottom:389.733333pt;}
.y5f{bottom:391.973333pt;}
.y87{bottom:392.706667pt;}
.y26{bottom:394.333333pt;}
.y7b{bottom:396.706667pt;}
.y4d{bottom:404.866667pt;}
.y78{bottom:404.986667pt;}
.y59{bottom:406.146667pt;}
.yb6{bottom:407.333333pt;}
.y9d{bottom:409.413333pt;}
.y3a{bottom:418.533333pt;}
.y25{bottom:423.133333pt;}
.yb{bottom:423.973333pt;}
.y7a{bottom:425.506667pt;}
.yc5{bottom:425.573333pt;}
.y9c{bottom:431.813333pt;}
.y6b{bottom:432.386667pt;}
.ycd{bottom:432.933333pt;}
.y58{bottom:434.946667pt;}
.yb5{bottom:436.133333pt;}
.y1c{bottom:437.533333pt;}
.y86{bottom:438.146667pt;}
.yd5{bottom:442.146667pt;}
.y6{bottom:442.720000pt;}
.y77{bottom:443.386667pt;}
.y57{bottom:446.106667pt;}
.y4c{bottom:450.306667pt;}
.y24{bottom:451.933333pt;}
.ya{bottom:456.000000pt;}
.y39{bottom:463.360000pt;}
.y5e{bottom:464.000000pt;}
.y79{bottom:470.946667pt;}
.yb4{bottom:472.960000pt;}
.yc4{bottom:474.720000pt;}
.yab{bottom:475.546667pt;}
.y1b{bottom:475.973333pt;}
.ycc{bottom:486.400000pt;}
.y22{bottom:489.146667pt;}
.y38{bottom:492.160000pt;}
.y23{bottom:497.413333pt;}
.yaa{bottom:504.386667pt;}
.y9{bottom:513.120000pt;}
.yb3{bottom:518.400000pt;}
.y37{bottom:520.960000pt;}
.y49{bottom:525.346667pt;}
.y21{bottom:527.546667pt;}
.yd1{bottom:538.013333pt;}
.y20{bottom:608.000000pt;}
.yd4{bottom:625.466667pt;}
.yd0{bottom:631.973333pt;}
.y8{bottom:648.346667pt;}
.h16{height:24.062500pt;}
.h17{height:28.915833pt;}
.h19{height:28.969167pt;}
.h15{height:33.375000pt;}
.h13{height:33.508500pt;}
.h20{height:55.402500pt;}
.h1b{height:66.750000pt;}
.hd{height:70.171875pt;}
.h10{height:72.187500pt;}
.h18{height:73.801667pt;}
.h14{height:73.961667pt;}
.h1a{height:78.097500pt;}
.h1d{height:78.124687pt;}
.h11{height:87.547500pt;}
.h1{height:88.777500pt;}
.h1c{height:88.911000pt;}
.hb{height:96.250000pt;}
.ha{height:96.346250pt;}
.hc{height:100.125000pt;}
.he{height:100.258500pt;}
.h7{height:111.472500pt;}
.h6{height:111.606000pt;}
.h5{height:133.500000pt;}
.h8{height:133.633500pt;}
.h23{height:149.007360pt;}
.h22{height:149.118976pt;}
.h9{height:155.527500pt;}
.h4{height:155.661000pt;}
.h12{height:170.925167pt;}
.hf{height:221.885000pt;}
.h21{height:222.411000pt;}
.h3{height:267.000000pt;}
.h2{height:267.133500pt;}
.h1f{height:326.407500pt;}
.h1e{height:326.541000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x51{left:46.431981pt;}
.x3{left:82.623981pt;}
.x24{left:97.087981pt;}
.x14{left:98.559981pt;}
.x3b{left:99.903981pt;}
.x18{left:106.623981pt;}
.xb{left:116.223981pt;}
.x25{left:127.167981pt;}
.x15{left:128.639981pt;}
.x4{left:130.623981pt;}
.x6{left:142.239981pt;}
.x16{left:146.559981pt;}
.x5{left:154.626648pt;}
.xa{left:171.586648pt;}
.x2{left:173.893314pt;}
.x17{left:176.639981pt;}
.x1{left:178.626648pt;}
.x7{left:181.466648pt;}
.x4d{left:202.626648pt;}
.x8{left:239.226648pt;}
.xc{left:250.426648pt;}
.x52{left:271.106648pt;}
.x54{left:312.066648pt;}
.x53{left:469.279981pt;}
.x1f{left:484.893314pt;}
.x19{left:495.039981pt;}
.x4c{left:500.573314pt;}
.x9{left:506.173314pt;}
.x1e{left:507.773314pt;}
.x20{left:522.973314pt;}
.xd{left:534.239981pt;}
.x37{left:539.906648pt;}
.x1a{left:544.159981pt;}
.x1d{left:552.799981pt;}
.x21{left:565.466648pt;}
.x38{left:569.986648pt;}
.x10{left:573.693314pt;}
.x39{left:587.906648pt;}
.x11{left:603.773314pt;}
.x3a{left:617.986648pt;}
.x12{left:621.693314pt;}
.x13{left:651.773314pt;}
.x28{left:693.693314pt;}
.x1b{left:744.133314pt;}
.x26{left:748.933314pt;}
.x27{left:948.986648pt;}
.x2c{left:954.373314pt;}
.x41{left:985.986648pt;}
.x22{left:988.826648pt;}
.x40{left:993.666648pt;}
.x23{left:994.906648pt;}
.x2d{left:998.653314pt;}
.x32{left:1002.719981pt;}
.x3c{left:1005.893314pt;}
.x33{left:1007.839981pt;}
.x3f{left:1008.773314pt;}
.x29{left:1012.546648pt;}
.x2e{left:1014.973314pt;}
.x31{left:1017.853314pt;}
.x4f{left:1020.226648pt;}
.xf{left:1021.213314pt;}
.x2b{left:1022.786648pt;}
.x1c{left:1046.586648pt;}
.x50{left:1058.906648pt;}
.x2a{left:1061.346648pt;}
.x4e{left:1075.613314pt;}
.xe{left:1076.613314pt;}
.x46{left:1078.239981pt;}
.x3d{left:1084.026648pt;}
.x48{left:1086.466648pt;}
.x44{left:1087.706648pt;}
.x2f{left:1093.119981pt;}
.x36{left:1096.799981pt;}
.x4a{left:1105.826648pt;}
.x4b{left:1116.386648pt;}
.x49{left:1129.026648pt;}
.x47{left:1130.239981pt;}
.x45{left:1132.799981pt;}
.x42{left:1176.866648pt;}
.x43{left:1178.786648pt;}
.x34{left:1185.946648pt;}
.x35{left:1187.866648pt;}
.x3e{left:1196.066648pt;}
.x30{left:1205.146648pt;}
}




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