
    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_f003f865ed9ab28bc8419637.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_136c45042d70ffa8e0d725dd.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_4d0fae30309a8bf98b34ae33.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_bc29c6961332498dd1fd33aa.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_378f65608d0138b9f6946144.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_32ef6feb5df4e1afee62d805.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_5b36ae37cd0ca0bc251ab63e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064453;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);}
.v4{vertical-align:-72.720000px;}
.v5{vertical-align:-67.680000px;}
.v1{vertical-align:-65.520000px;}
.v3{vertical-align:-64.080000px;}
.v6{vertical-align:-61.200000px;}
.v2{vertical-align:-57.600000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-2.160000px;}
.ls1c{letter-spacing:-2.052000px;}
.ls1e{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.123600px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.666720px;}
.ls10{letter-spacing:0.720000px;}
.ls27{letter-spacing:1.440000px;}
.ls1d{letter-spacing:2.880000px;}
.ls16{letter-spacing:4.320000px;}
.ls13{letter-spacing:6.480000px;}
.ls1a{letter-spacing:7.920000px;}
.ls21{letter-spacing:9.540000px;}
.ls18{letter-spacing:10.080000px;}
.ls7{letter-spacing:10.260000px;}
.ls17{letter-spacing:12.960000px;}
.ls20{letter-spacing:13.626720px;}
.ls19{letter-spacing:18.000000px;}
.ls26{letter-spacing:18.180000px;}
.ls11{letter-spacing:18.720000px;}
.lsf{letter-spacing:20.160000px;}
.ls12{letter-spacing:22.320000px;}
.ls14{letter-spacing:32.400000px;}
.lsd{letter-spacing:42.660000px;}
.ls28{letter-spacing:46.200000px;}
.lse{letter-spacing:156.420000px;}
.ls25{letter-spacing:158.004000px;}
.ls4{letter-spacing:159.624000px;}
.ls24{letter-spacing:919.920000px;}
.ls22{letter-spacing:1293.456000px;}
.ls6{letter-spacing:2165.820000px;}
.ls23{letter-spacing:2289.480000px;}
.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;}
}
.wsb{word-spacing:-16.683600px;}
.ws9{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws1{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.508000px;}
.wsa{word-spacing:-14.400000px;}
.ws8{word-spacing:0.000000px;}
._20{margin-left:-3.620880px;}
._11{margin-left:-2.569680px;}
._1{margin-left:-1.195200px;}
._0{width:1.135440px;}
._2{width:2.956800px;}
._10{width:4.780800px;}
._f{width:6.215040px;}
._e{width:7.290720px;}
._8{width:8.426160px;}
._9{width:9.501840px;}
._a{width:10.973280px;}
._15{width:12.960000px;}
._16{width:14.181120px;}
._1a{width:15.229440px;}
._3{width:16.704000px;}
._14{width:17.755200px;}
._4{width:18.864000px;}
._5{width:20.168160px;}
._1c{width:21.180720px;}
._c{width:22.290480px;}
._d{width:23.844240px;}
._22{width:25.378560px;}
._1b{width:26.496000px;}
._19{width:27.866160px;}
._1d{width:28.901520px;}
._18{width:29.940480px;}
._7{width:31.285200px;}
._6{width:32.544000px;}
._1e{width:33.749520px;}
._17{width:35.949600px;}
._21{width:37.460880px;}
._1f{width:38.527200px;}
._12{width:43.146720px;}
._13{width:44.242800px;}
._24{width:45.350400px;}
._25{width:52.992000px;}
._23{width:61.735680px;}
._b{width:872.840640px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.600000px;}
.y43{bottom:56.700000px;}
.y11b{bottom:91.656000px;}
.y7a{bottom:92.376000px;}
.y42{bottom:93.456000px;}
.yb2{bottom:102.816000px;}
.ye7{bottom:105.876000px;}
.y11a{bottom:107.136000px;}
.y41{bottom:108.936000px;}
.y79{bottom:111.456000px;}
.yb1{bottom:121.716000px;}
.y119{bottom:122.436000px;}
.ye6{bottom:123.156000px;}
.y40{bottom:124.416000px;}
.y78{bottom:130.356000px;}
.y118{bottom:137.196000px;}
.y3f{bottom:140.436000px;}
.yb0{bottom:140.796000px;}
.y77{bottom:149.436000px;}
.y117{bottom:156.270000px;}
.y3e{bottom:157.710000px;}
.yaf{bottom:159.690000px;}
.y76{bottom:168.330000px;}
.y3d{bottom:174.990000px;}
.y116{bottom:175.170000px;}
.yae{bottom:178.590000px;}
.y75{bottom:187.230000px;}
.y3c{bottom:192.270000px;}
.y115{bottom:194.250000px;}
.yad{bottom:197.670000px;}
.y74{bottom:206.310000px;}
.y3b{bottom:209.370000px;}
.y114{bottom:213.150000px;}
.yac{bottom:216.570000px;}
.y73{bottom:225.210000px;}
.ye5{bottom:225.390000px;}
.y3a{bottom:226.650000px;}
.y113{bottom:232.230000px;}
.yab{bottom:235.650000px;}
.ye4{bottom:238.710000px;}
.y39{bottom:243.930000px;}
.y72{bottom:244.290000px;}
.y112{bottom:251.130000px;}
.yaa{bottom:254.550000px;}
.ye3{bottom:255.990000px;}
.y38{bottom:260.490000px;}
.y71{bottom:263.190000px;}
.y111{bottom:270.030000px;}
.ye2{bottom:273.270000px;}
.ya9{bottom:273.630000px;}
.y37{bottom:275.070000px;}
.y70{bottom:282.090000px;}
.y110{bottom:289.110000px;}
.ye1{bottom:290.190000px;}
.y36{bottom:292.170000px;}
.ya8{bottom:292.530000px;}
.y6f{bottom:301.170000px;}
.ye0{bottom:307.470000px;}
.y10f{bottom:308.010000px;}
.y35{bottom:309.450000px;}
.ya7{bottom:311.430000px;}
.y6e{bottom:320.070000px;}
.ydf{bottom:324.570000px;}
.y34{bottom:326.730000px;}
.y10e{bottom:327.090000px;}
.ya6{bottom:330.555000px;}
.y6d{bottom:339.195000px;}
.yde{bottom:341.355000px;}
.y33{bottom:343.155000px;}
.y10d{bottom:346.035000px;}
.ya5{bottom:349.455000px;}
.ydd{bottom:356.115000px;}
.y32{bottom:357.375000px;}
.y6c{bottom:358.095000px;}
.y10c{bottom:364.935000px;}
.ya4{bottom:368.535000px;}
.ydc{bottom:373.395000px;}
.y31{bottom:374.655000px;}
.y6b{bottom:376.995000px;}
.y10b{bottom:384.015000px;}
.ya3{bottom:387.435000px;}
.ydb{bottom:390.675000px;}
.y30{bottom:391.935000px;}
.y6a{bottom:396.075000px;}
.y10a{bottom:402.915000px;}
.ya2{bottom:406.335000px;}
.yda{bottom:407.775000px;}
.y2f{bottom:408.855000px;}
.y69{bottom:414.975000px;}
.y109{bottom:421.995000px;}
.y2e{bottom:423.435000px;}
.yd9{bottom:425.055000px;}
.ya1{bottom:425.415000px;}
.y68{bottom:434.055000px;}
.y2d{bottom:440.535000px;}
.y108{bottom:440.895000px;}
.yd8{bottom:442.335000px;}
.ya0{bottom:444.315000px;}
.y67{bottom:452.955000px;}
.yd7{bottom:459.615000px;}
.y107{bottom:459.795000px;}
.y9f{bottom:463.395000px;}
.y66{bottom:472.035000px;}
.y2c{bottom:473.835000px;}
.yd6{bottom:476.895000px;}
.y106{bottom:478.875000px;}
.y9e{bottom:482.295000px;}
.y2b{bottom:487.155000px;}
.y65{bottom:490.935000px;}
.yd5{bottom:493.995000px;}
.y105{bottom:497.775000px;}
.y9d{bottom:501.195000px;}
.y2a{bottom:504.435000px;}
.y64{bottom:509.835000px;}
.yd4{bottom:511.275000px;}
.y104{bottom:516.855000px;}
.y9c{bottom:520.275000px;}
.y29{bottom:521.715000px;}
.yd3{bottom:528.555000px;}
.y63{bottom:528.915000px;}
.y103{bottom:535.755000px;}
.y28{bottom:538.995000px;}
.y9b{bottom:539.175000px;}
.yd2{bottom:545.835000px;}
.y62{bottom:547.815000px;}
.y102{bottom:554.655000px;}
.y27{bottom:556.095000px;}
.y9a{bottom:558.255000px;}
.yd1{bottom:563.115000px;}
.y61{bottom:566.895000px;}
.y26{bottom:573.375000px;}
.y101{bottom:573.735000px;}
.y99{bottom:577.155000px;}
.yd0{bottom:580.395000px;}
.y60{bottom:585.795000px;}
.y25{bottom:590.655000px;}
.y100{bottom:592.635000px;}
.y98{bottom:596.085000px;}
.ycf{bottom:597.525000px;}
.y5f{bottom:604.725000px;}
.y24{bottom:607.965000px;}
.yff{bottom:611.745000px;}
.yce{bottom:614.805000px;}
.y97{bottom:615.165000px;}
.y5e{bottom:623.805000px;}
.y23{bottom:625.245000px;}
.yfe{bottom:630.645000px;}
.ycd{bottom:632.085000px;}
.y96{bottom:634.065000px;}
.y22{bottom:642.525000px;}
.y5d{bottom:642.705000px;}
.ycc{bottom:649.365000px;}
.yfd{bottom:649.725000px;}
.y95{bottom:653.145000px;}
.y21{bottom:659.625000px;}
.y5c{bottom:661.785000px;}
.ycb{bottom:666.645000px;}
.yfc{bottom:668.625000px;}
.y94{bottom:672.045000px;}
.y20{bottom:676.905000px;}
.y5b{bottom:680.685000px;}
.yca{bottom:683.925000px;}
.yfb{bottom:687.525000px;}
.y93{bottom:690.945000px;}
.y1f{bottom:694.185000px;}
.y5a{bottom:699.585000px;}
.yfa{bottom:705.525000px;}
.y92{bottom:710.025000px;}
.y1e{bottom:711.465000px;}
.yc9{bottom:717.585000px;}
.y59{bottom:718.665000px;}
.yf9{bottom:720.105000px;}
.y1d{bottom:728.745000px;}
.y91{bottom:728.925000px;}
.yc8{bottom:732.165000px;}
.yf8{bottom:737.385000px;}
.y58{bottom:737.565000px;}
.y1c{bottom:746.025000px;}
.y90{bottom:748.005000px;}
.yc7{bottom:749.445000px;}
.yf7{bottom:754.485000px;}
.y57{bottom:756.645000px;}
.y1b{bottom:763.125000px;}
.yc6{bottom:766.725000px;}
.y8f{bottom:766.905000px;}
.yf6{bottom:771.765000px;}
.y56{bottom:775.545000px;}
.y1a{bottom:779.685000px;}
.yc5{bottom:783.825000px;}
.y8e{bottom:785.985000px;}
.yf5{bottom:789.045000px;}
.y19{bottom:794.265000px;}
.y55{bottom:794.445000px;}
.yc4{bottom:801.105000px;}
.y8d{bottom:804.885000px;}
.yf4{bottom:806.325000px;}
.y18{bottom:811.545000px;}
.y54{bottom:813.525000px;}
.yc3{bottom:818.385000px;}
.yf3{bottom:823.605000px;}
.y8c{bottom:823.785000px;}
.y53{bottom:832.425000px;}
.yc2{bottom:835.665000px;}
.yf2{bottom:840.885000px;}
.y17{bottom:842.145000px;}
.y8b{bottom:842.865000px;}
.y52{bottom:851.505000px;}
.yc1{bottom:852.945000px;}
.yf1{bottom:857.985000px;}
.y16{bottom:859.425000px;}
.y8a{bottom:861.765000px;}
.yc0{bottom:870.090000px;}
.y51{bottom:870.450000px;}
.yf0{bottom:875.310000px;}
.y89{bottom:880.890000px;}
.ybf{bottom:887.370000px;}
.y50{bottom:889.350000px;}
.y15{bottom:893.130000px;}
.y88{bottom:899.790000px;}
.ybe{bottom:904.650000px;}
.y14{bottom:906.450000px;}
.y4f{bottom:908.430000px;}
.yef{bottom:909.150000px;}
.y87{bottom:918.690000px;}
.ybd{bottom:921.930000px;}
.y13{bottom:923.730000px;}
.y4e{bottom:927.330000px;}
.y86{bottom:937.770000px;}
.ybc{bottom:939.210000px;}
.y12{bottom:940.830000px;}
.y4d{bottom:946.410000px;}
.ybb{bottom:956.490000px;}
.y85{bottom:956.670000px;}
.y11{bottom:958.110000px;}
.y4c{bottom:965.310000px;}
.yba{bottom:973.590000px;}
.y10{bottom:975.390000px;}
.y84{bottom:975.750000px;}
.y4b{bottom:984.390000px;}
.yb9{bottom:990.870000px;}
.yf{bottom:992.670000px;}
.y83{bottom:994.650000px;}
.y4a{bottom:1003.290000px;}
.yb8{bottom:1008.150000px;}
.yee{bottom:1009.230000px;}
.ye{bottom:1009.950000px;}
.y82{bottom:1013.550000px;}
.y49{bottom:1022.190000px;}
.yed{bottom:1023.270000px;}
.yb7{bottom:1025.430000px;}
.yd{bottom:1027.050000px;}
.y81{bottom:1032.630000px;}
.yec{bottom:1040.550000px;}
.y48{bottom:1041.270000px;}
.yb6{bottom:1042.710000px;}
.yc{bottom:1044.330000px;}
.y80{bottom:1051.530000px;}
.yeb{bottom:1056.930000px;}
.yb5{bottom:1059.990000px;}
.y47{bottom:1060.170000px;}
.yb{bottom:1061.610000px;}
.yea{bottom:1069.710000px;}
.y7f{bottom:1070.610000px;}
.yb4{bottom:1076.730000px;}
.ya{bottom:1078.890000px;}
.ye9{bottom:1085.370000px;}
.y7e{bottom:1089.510000px;}
.yb3{bottom:1093.650000px;}
.y9{bottom:1096.170000px;}
.y46{bottom:1097.430000px;}
.y7d{bottom:1108.410000px;}
.y8{bottom:1113.450000px;}
.ye8{bottom:1116.150000px;}
.y7c{bottom:1127.490000px;}
.y7{bottom:1130.580000px;}
.y7b{bottom:1146.420000px;}
.y6{bottom:1147.500000px;}
.y45{bottom:1147.860000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y44{bottom:1189.260000px;}
.y4{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h5{height:17.280000px;}
.h8{height:40.985156px;}
.h10{height:47.321367px;}
.h9{height:47.344922px;}
.ha{height:48.616875px;}
.h4{height:49.583118px;}
.hc{height:52.998047px;}
.hb{height:53.252930px;}
.h7{height:58.621992px;}
.h2{height:58.651172px;}
.hd{height:59.027344px;}
.h6{height:60.226875px;}
.h3{height:61.423863px;}
.he{height:65.010937px;}
.hf{height:66.757500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:14.940000px;}
.w4{width:16.920000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:63.900000px;}
.x6{left:90.719987px;}
.xb{left:106.415987px;}
.x15{left:114.875987px;}
.x26{left:117.035987px;}
.x7{left:122.075987px;}
.xe{left:127.475987px;}
.x1a{left:133.235987px;}
.x17{left:148.895987px;}
.x1b{left:157.709987px;}
.x18{left:159.509987px;}
.x9{left:205.769987px;}
.x1{left:262.109987px;}
.x22{left:275.609987px;}
.xf{left:283.574987px;}
.x8{left:328.214987px;}
.x1c{left:329.294987px;}
.x19{left:355.574987px;}
.x11{left:374.294987px;}
.xa{left:384.194987px;}
.x12{left:385.634987px;}
.x5{left:390.314987px;}
.x13{left:405.254987px;}
.x10{left:425.234987px;}
.x2{left:441.254987px;}
.x1d{left:470.414987px;}
.x1e{left:545.504987px;}
.x23{left:551.444987px;}
.x1f{left:562.964987px;}
.xd{left:582.944987px;}
.x21{left:603.284987px;}
.xc{left:608.504987px;}
.x20{left:626.504987px;}
.x25{left:630.284987px;}
.x14{left:764.249987px;}
.x24{left:767.489987px;}
.x3{left:786.749987px;}
.x16{left:819.150000px;}
@media print{
.v4{vertical-align:-64.640000pt;}
.v5{vertical-align:-60.160000pt;}
.v1{vertical-align:-58.240000pt;}
.v3{vertical-align:-56.960000pt;}
.v6{vertical-align:-54.400000pt;}
.v2{vertical-align:-51.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.920000pt;}
.ls1c{letter-spacing:-1.824000pt;}
.ls1e{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.109867pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.592640pt;}
.ls10{letter-spacing:0.640000pt;}
.ls27{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:2.560000pt;}
.ls16{letter-spacing:3.840000pt;}
.ls13{letter-spacing:5.760000pt;}
.ls1a{letter-spacing:7.040000pt;}
.ls21{letter-spacing:8.480000pt;}
.ls18{letter-spacing:8.960000pt;}
.ls7{letter-spacing:9.120000pt;}
.ls17{letter-spacing:11.520000pt;}
.ls20{letter-spacing:12.112640pt;}
.ls19{letter-spacing:16.000000pt;}
.ls26{letter-spacing:16.160000pt;}
.ls11{letter-spacing:16.640000pt;}
.lsf{letter-spacing:17.920000pt;}
.ls12{letter-spacing:19.840000pt;}
.ls14{letter-spacing:28.800000pt;}
.lsd{letter-spacing:37.920000pt;}
.ls28{letter-spacing:41.066667pt;}
.lse{letter-spacing:139.040000pt;}
.ls25{letter-spacing:140.448000pt;}
.ls4{letter-spacing:141.888000pt;}
.ls24{letter-spacing:817.706667pt;}
.ls22{letter-spacing:1149.738667pt;}
.ls6{letter-spacing:1925.173333pt;}
.ls23{letter-spacing:2035.093333pt;}
.wsb{word-spacing:-14.829867pt;}
.ws9{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws1{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.896000pt;}
.wsa{word-spacing:-12.800000pt;}
.ws8{word-spacing:0.000000pt;}
._20{margin-left:-3.218560pt;}
._11{margin-left:-2.284160pt;}
._1{margin-left:-1.062400pt;}
._0{width:1.009280pt;}
._2{width:2.628267pt;}
._10{width:4.249600pt;}
._f{width:5.524480pt;}
._e{width:6.480640pt;}
._8{width:7.489920pt;}
._9{width:8.446080pt;}
._a{width:9.754027pt;}
._15{width:11.520000pt;}
._16{width:12.605440pt;}
._1a{width:13.537280pt;}
._3{width:14.848000pt;}
._14{width:15.782400pt;}
._4{width:16.768000pt;}
._5{width:17.927253pt;}
._1c{width:18.827307pt;}
._c{width:19.813760pt;}
._d{width:21.194880pt;}
._22{width:22.558720pt;}
._1b{width:23.552000pt;}
._19{width:24.769920pt;}
._1d{width:25.690240pt;}
._18{width:26.613760pt;}
._7{width:27.809067pt;}
._6{width:28.928000pt;}
._1e{width:29.999573pt;}
._17{width:31.955200pt;}
._21{width:33.298560pt;}
._1f{width:34.246400pt;}
._12{width:38.352640pt;}
._13{width:39.326933pt;}
._24{width:40.311467pt;}
._25{width:47.104000pt;}
._23{width:54.876160pt;}
._b{width:775.858347pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.200000pt;}
.y43{bottom:50.400000pt;}
.y11b{bottom:81.472000pt;}
.y7a{bottom:82.112000pt;}
.y42{bottom:83.072000pt;}
.yb2{bottom:91.392000pt;}
.ye7{bottom:94.112000pt;}
.y11a{bottom:95.232000pt;}
.y41{bottom:96.832000pt;}
.y79{bottom:99.072000pt;}
.yb1{bottom:108.192000pt;}
.y119{bottom:108.832000pt;}
.ye6{bottom:109.472000pt;}
.y40{bottom:110.592000pt;}
.y78{bottom:115.872000pt;}
.y118{bottom:121.952000pt;}
.y3f{bottom:124.832000pt;}
.yb0{bottom:125.152000pt;}
.y77{bottom:132.832000pt;}
.y117{bottom:138.906667pt;}
.y3e{bottom:140.186667pt;}
.yaf{bottom:141.946667pt;}
.y76{bottom:149.626667pt;}
.y3d{bottom:155.546667pt;}
.y116{bottom:155.706667pt;}
.yae{bottom:158.746667pt;}
.y75{bottom:166.426667pt;}
.y3c{bottom:170.906667pt;}
.y115{bottom:172.666667pt;}
.yad{bottom:175.706667pt;}
.y74{bottom:183.386667pt;}
.y3b{bottom:186.106667pt;}
.y114{bottom:189.466667pt;}
.yac{bottom:192.506667pt;}
.y73{bottom:200.186667pt;}
.ye5{bottom:200.346667pt;}
.y3a{bottom:201.466667pt;}
.y113{bottom:206.426667pt;}
.yab{bottom:209.466667pt;}
.ye4{bottom:212.186667pt;}
.y39{bottom:216.826667pt;}
.y72{bottom:217.146667pt;}
.y112{bottom:223.226667pt;}
.yaa{bottom:226.266667pt;}
.ye3{bottom:227.546667pt;}
.y38{bottom:231.546667pt;}
.y71{bottom:233.946667pt;}
.y111{bottom:240.026667pt;}
.ye2{bottom:242.906667pt;}
.ya9{bottom:243.226667pt;}
.y37{bottom:244.506667pt;}
.y70{bottom:250.746667pt;}
.y110{bottom:256.986667pt;}
.ye1{bottom:257.946667pt;}
.y36{bottom:259.706667pt;}
.ya8{bottom:260.026667pt;}
.y6f{bottom:267.706667pt;}
.ye0{bottom:273.306667pt;}
.y10f{bottom:273.786667pt;}
.y35{bottom:275.066667pt;}
.ya7{bottom:276.826667pt;}
.y6e{bottom:284.506667pt;}
.ydf{bottom:288.506667pt;}
.y34{bottom:290.426667pt;}
.y10e{bottom:290.746667pt;}
.ya6{bottom:293.826667pt;}
.y6d{bottom:301.506667pt;}
.yde{bottom:303.426667pt;}
.y33{bottom:305.026667pt;}
.y10d{bottom:307.586667pt;}
.ya5{bottom:310.626667pt;}
.ydd{bottom:316.546667pt;}
.y32{bottom:317.666667pt;}
.y6c{bottom:318.306667pt;}
.y10c{bottom:324.386667pt;}
.ya4{bottom:327.586667pt;}
.ydc{bottom:331.906667pt;}
.y31{bottom:333.026667pt;}
.y6b{bottom:335.106667pt;}
.y10b{bottom:341.346667pt;}
.ya3{bottom:344.386667pt;}
.ydb{bottom:347.266667pt;}
.y30{bottom:348.386667pt;}
.y6a{bottom:352.066667pt;}
.y10a{bottom:358.146667pt;}
.ya2{bottom:361.186667pt;}
.yda{bottom:362.466667pt;}
.y2f{bottom:363.426667pt;}
.y69{bottom:368.866667pt;}
.y109{bottom:375.106667pt;}
.y2e{bottom:376.386667pt;}
.yd9{bottom:377.826667pt;}
.ya1{bottom:378.146667pt;}
.y68{bottom:385.826667pt;}
.y2d{bottom:391.586667pt;}
.y108{bottom:391.906667pt;}
.yd8{bottom:393.186667pt;}
.ya0{bottom:394.946667pt;}
.y67{bottom:402.626667pt;}
.yd7{bottom:408.546667pt;}
.y107{bottom:408.706667pt;}
.y9f{bottom:411.906667pt;}
.y66{bottom:419.586667pt;}
.y2c{bottom:421.186667pt;}
.yd6{bottom:423.906667pt;}
.y106{bottom:425.666667pt;}
.y9e{bottom:428.706667pt;}
.y2b{bottom:433.026667pt;}
.y65{bottom:436.386667pt;}
.yd5{bottom:439.106667pt;}
.y105{bottom:442.466667pt;}
.y9d{bottom:445.506667pt;}
.y2a{bottom:448.386667pt;}
.y64{bottom:453.186667pt;}
.yd4{bottom:454.466667pt;}
.y104{bottom:459.426667pt;}
.y9c{bottom:462.466667pt;}
.y29{bottom:463.746667pt;}
.yd3{bottom:469.826667pt;}
.y63{bottom:470.146667pt;}
.y103{bottom:476.226667pt;}
.y28{bottom:479.106667pt;}
.y9b{bottom:479.266667pt;}
.yd2{bottom:485.186667pt;}
.y62{bottom:486.946667pt;}
.y102{bottom:493.026667pt;}
.y27{bottom:494.306667pt;}
.y9a{bottom:496.226667pt;}
.yd1{bottom:500.546667pt;}
.y61{bottom:503.906667pt;}
.y26{bottom:509.666667pt;}
.y101{bottom:509.986667pt;}
.y99{bottom:513.026667pt;}
.yd0{bottom:515.906667pt;}
.y60{bottom:520.706667pt;}
.y25{bottom:525.026667pt;}
.y100{bottom:526.786667pt;}
.y98{bottom:529.853333pt;}
.ycf{bottom:531.133333pt;}
.y5f{bottom:537.533333pt;}
.y24{bottom:540.413333pt;}
.yff{bottom:543.773333pt;}
.yce{bottom:546.493333pt;}
.y97{bottom:546.813333pt;}
.y5e{bottom:554.493333pt;}
.y23{bottom:555.773333pt;}
.yfe{bottom:560.573333pt;}
.ycd{bottom:561.853333pt;}
.y96{bottom:563.613333pt;}
.y22{bottom:571.133333pt;}
.y5d{bottom:571.293333pt;}
.ycc{bottom:577.213333pt;}
.yfd{bottom:577.533333pt;}
.y95{bottom:580.573333pt;}
.y21{bottom:586.333333pt;}
.y5c{bottom:588.253333pt;}
.ycb{bottom:592.573333pt;}
.yfc{bottom:594.333333pt;}
.y94{bottom:597.373333pt;}
.y20{bottom:601.693333pt;}
.y5b{bottom:605.053333pt;}
.yca{bottom:607.933333pt;}
.yfb{bottom:611.133333pt;}
.y93{bottom:614.173333pt;}
.y1f{bottom:617.053333pt;}
.y5a{bottom:621.853333pt;}
.yfa{bottom:627.133333pt;}
.y92{bottom:631.133333pt;}
.y1e{bottom:632.413333pt;}
.yc9{bottom:637.853333pt;}
.y59{bottom:638.813333pt;}
.yf9{bottom:640.093333pt;}
.y1d{bottom:647.773333pt;}
.y91{bottom:647.933333pt;}
.yc8{bottom:650.813333pt;}
.yf8{bottom:655.453333pt;}
.y58{bottom:655.613333pt;}
.y1c{bottom:663.133333pt;}
.y90{bottom:664.893333pt;}
.yc7{bottom:666.173333pt;}
.yf7{bottom:670.653333pt;}
.y57{bottom:672.573333pt;}
.y1b{bottom:678.333333pt;}
.yc6{bottom:681.533333pt;}
.y8f{bottom:681.693333pt;}
.yf6{bottom:686.013333pt;}
.y56{bottom:689.373333pt;}
.y1a{bottom:693.053333pt;}
.yc5{bottom:696.733333pt;}
.y8e{bottom:698.653333pt;}
.yf5{bottom:701.373333pt;}
.y19{bottom:706.013333pt;}
.y55{bottom:706.173333pt;}
.yc4{bottom:712.093333pt;}
.y8d{bottom:715.453333pt;}
.yf4{bottom:716.733333pt;}
.y18{bottom:721.373333pt;}
.y54{bottom:723.133333pt;}
.yc3{bottom:727.453333pt;}
.yf3{bottom:732.093333pt;}
.y8c{bottom:732.253333pt;}
.y53{bottom:739.933333pt;}
.yc2{bottom:742.813333pt;}
.yf2{bottom:747.453333pt;}
.y17{bottom:748.573333pt;}
.y8b{bottom:749.213333pt;}
.y52{bottom:756.893333pt;}
.yc1{bottom:758.173333pt;}
.yf1{bottom:762.653333pt;}
.y16{bottom:763.933333pt;}
.y8a{bottom:766.013333pt;}
.yc0{bottom:773.413333pt;}
.y51{bottom:773.733333pt;}
.yf0{bottom:778.053333pt;}
.y89{bottom:783.013333pt;}
.ybf{bottom:788.773333pt;}
.y50{bottom:790.533333pt;}
.y15{bottom:793.893333pt;}
.y88{bottom:799.813333pt;}
.ybe{bottom:804.133333pt;}
.y14{bottom:805.733333pt;}
.y4f{bottom:807.493333pt;}
.yef{bottom:808.133333pt;}
.y87{bottom:816.613333pt;}
.ybd{bottom:819.493333pt;}
.y13{bottom:821.093333pt;}
.y4e{bottom:824.293333pt;}
.y86{bottom:833.573333pt;}
.ybc{bottom:834.853333pt;}
.y12{bottom:836.293333pt;}
.y4d{bottom:841.253333pt;}
.ybb{bottom:850.213333pt;}
.y85{bottom:850.373333pt;}
.y11{bottom:851.653333pt;}
.y4c{bottom:858.053333pt;}
.yba{bottom:865.413333pt;}
.y10{bottom:867.013333pt;}
.y84{bottom:867.333333pt;}
.y4b{bottom:875.013333pt;}
.yb9{bottom:880.773333pt;}
.yf{bottom:882.373333pt;}
.y83{bottom:884.133333pt;}
.y4a{bottom:891.813333pt;}
.yb8{bottom:896.133333pt;}
.yee{bottom:897.093333pt;}
.ye{bottom:897.733333pt;}
.y82{bottom:900.933333pt;}
.y49{bottom:908.613333pt;}
.yed{bottom:909.573333pt;}
.yb7{bottom:911.493333pt;}
.yd{bottom:912.933333pt;}
.y81{bottom:917.893333pt;}
.yec{bottom:924.933333pt;}
.y48{bottom:925.573333pt;}
.yb6{bottom:926.853333pt;}
.yc{bottom:928.293333pt;}
.y80{bottom:934.693333pt;}
.yeb{bottom:939.493333pt;}
.yb5{bottom:942.213333pt;}
.y47{bottom:942.373333pt;}
.yb{bottom:943.653333pt;}
.yea{bottom:950.853333pt;}
.y7f{bottom:951.653333pt;}
.yb4{bottom:957.093333pt;}
.ya{bottom:959.013333pt;}
.ye9{bottom:964.773333pt;}
.y7e{bottom:968.453333pt;}
.yb3{bottom:972.133333pt;}
.y9{bottom:974.373333pt;}
.y46{bottom:975.493333pt;}
.y7d{bottom:985.253333pt;}
.y8{bottom:989.733333pt;}
.ye8{bottom:992.133333pt;}
.y7c{bottom:1002.213333pt;}
.y7{bottom:1004.960000pt;}
.y7b{bottom:1019.040000pt;}
.y6{bottom:1020.000000pt;}
.y45{bottom:1020.320000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y44{bottom:1057.120000pt;}
.y4{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h5{height:15.360000pt;}
.h8{height:36.431250pt;}
.h10{height:42.063437pt;}
.h9{height:42.084375pt;}
.ha{height:43.215000pt;}
.h4{height:44.073883pt;}
.hc{height:47.109375pt;}
.hb{height:47.335938pt;}
.h7{height:52.108438pt;}
.h2{height:52.134375pt;}
.hd{height:52.468750pt;}
.h6{height:53.535000pt;}
.h3{height:54.598989pt;}
.he{height:57.787500pt;}
.hf{height:59.340000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:13.280000pt;}
.w4{width:15.040000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:56.800000pt;}
.x6{left:80.639988pt;}
.xb{left:94.591988pt;}
.x15{left:102.111988pt;}
.x26{left:104.031988pt;}
.x7{left:108.511988pt;}
.xe{left:113.311988pt;}
.x1a{left:118.431988pt;}
.x17{left:132.351988pt;}
.x1b{left:140.186655pt;}
.x18{left:141.786655pt;}
.x9{left:182.906655pt;}
.x1{left:232.986655pt;}
.x22{left:244.986655pt;}
.xf{left:252.066655pt;}
.x8{left:291.746655pt;}
.x1c{left:292.706655pt;}
.x19{left:316.066655pt;}
.x11{left:332.706655pt;}
.xa{left:341.506655pt;}
.x12{left:342.786655pt;}
.x5{left:346.946655pt;}
.x13{left:360.226655pt;}
.x10{left:377.986655pt;}
.x2{left:392.226655pt;}
.x1d{left:418.146655pt;}
.x1e{left:484.893322pt;}
.x23{left:490.173322pt;}
.x1f{left:500.413322pt;}
.xd{left:518.173322pt;}
.x21{left:536.253322pt;}
.xc{left:540.893322pt;}
.x20{left:556.893322pt;}
.x25{left:560.253322pt;}
.x14{left:679.333322pt;}
.x24{left:682.213322pt;}
.x3{left:699.333322pt;}
.x16{left:728.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; }
  