
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_c4a280751aa3637208f8ab44.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_221ab7dd3af13f28bb5bd7e5.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_89e436cc0c0965e265648bb4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_05188f9d518e77c78ca1077c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4ff02a1a5e3bb1b45afc4fc7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2a5e81941d7d1098f432036d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1408393c9ee5e874958454c7.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_59d5a9968b04bbdcc7a44c09.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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:ffe;src:url('chunks/assets/font_74e88d7e59502c0fcba69d94.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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);}
.v3{vertical-align:-70.560000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls5{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.630000px;}
.ls4{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.466800px;}
.ls8{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.954000px;}
.lse{letter-spacing:16.306560px;}
.lsb{letter-spacing:46.546560px;}
.ls1{letter-spacing:63.826560px;}
.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;}
}
.ws5{word-spacing:-60.480000px;}
.ws0{word-spacing:-15.120000px;}
.ws2{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.050000px;}
.ws3{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.928000px;}
.ws8{word-spacing:0.000000px;}
._15{margin-left:-3.801120px;}
._4{margin-left:-2.365440px;}
._3{margin-left:-1.085280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._9{width:4.835520px;}
._a{width:6.705600px;}
._b{width:8.591040px;}
._e{width:9.996000px;}
._c{width:11.011200px;}
._d{width:12.663840px;}
._12{width:13.772160px;}
._8{width:15.074400px;}
._6{width:16.483200px;}
._7{width:17.665440px;}
._5{width:18.726720px;}
._14{width:20.299200px;}
._13{width:22.314720px;}
._11{width:23.531520px;}
._10{width:24.609120px;}
._f{width:25.769280px;}
._16{width:522.188160px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:0.715500px;}
.y5{bottom:3.960000px;}
.y93{bottom:4.665000px;}
.ya8{bottom:4.680000px;}
.y8c{bottom:5.025000px;}
.y89{bottom:5.040000px;}
.y5b{bottom:5.370000px;}
.y8f{bottom:5.385000px;}
.yc0{bottom:5.395500px;}
.y8a{bottom:5.400000px;}
.y2{bottom:7.920000px;}
.y59{bottom:10.795500px;}
.y4{bottom:21.240000px;}
.y44{bottom:22.320000px;}
.ya0{bottom:23.385000px;}
.y9f{bottom:23.745000px;}
.ya5{bottom:23.760000px;}
.y9c{bottom:23.790000px;}
.ybe{bottom:24.105000px;}
.ya4{bottom:24.120000px;}
.y58{bottom:26.275500px;}
.y4c{bottom:30.235500px;}
.y43{bottom:39.600000px;}
.y4b{bottom:42.475500px;}
.y57{bottom:43.555500px;}
.ybc{bottom:43.954500px;}
.y3{bottom:44.280000px;}
.y4a{bottom:55.474500px;}
.y7{bottom:57.636000px;}
.y42{bottom:57.960000px;}
.y56{bottom:59.434500px;}
.ybb{bottom:62.674500px;}
.y49{bottom:68.434500px;}
.y55{bottom:74.914500px;}
.y41{bottom:75.240000px;}
.y54{bottom:87.874500px;}
.y48{bottom:90.034500px;}
.y40{bottom:93.600000px;}
.y53{bottom:94.354500px;}
.y45{bottom:96.160500px;}
.ye8{bottom:108.396000px;}
.y52{bottom:110.194500px;}
.y3f{bottom:111.600000px;}
.y96{bottom:111.636000px;}
.yc1{bottom:115.600500px;}
.y51{bottom:125.674500px;}
.ye7{bottom:125.676000px;}
.y95{bottom:128.916000px;}
.yba{bottom:135.040500px;}
.y3e{bottom:138.285000px;}
.y50{bottom:141.154500px;}
.ye6{bottom:142.992000px;}
.y94{bottom:146.232000px;}
.y47{bottom:152.314500px;}
.ybf{bottom:154.530000px;}
.y3d{bottom:155.205000px;}
.y4f{bottom:156.634500px;}
.ye5{bottom:160.275000px;}
.y92{bottom:160.290000px;}
.y46{bottom:163.114500px;}
.y4e{bottom:171.754500px;}
.y3c{bottom:172.485000px;}
.ybd{bottom:173.610000px;}
.ye4{bottom:177.195000px;}
.y91{bottom:179.370000px;}
.y3b{bottom:189.765000px;}
.ye3{bottom:194.475000px;}
.y90{bottom:198.810000px;}
.y3a{bottom:207.045000px;}
.ye2{bottom:211.395000px;}
.yb9{bottom:211.770000px;}
.y8e{bottom:218.250000px;}
.y39{bottom:224.325000px;}
.yb8{bottom:231.210000px;}
.y8d{bottom:237.690000px;}
.ye1{bottom:238.035000px;}
.y38{bottom:241.605000px;}
.yb7{bottom:250.650000px;}
.ye0{bottom:255.315000px;}
.y8b{bottom:257.130000px;}
.y37{bottom:258.915000px;}
.ydf{bottom:272.595000px;}
.y36{bottom:276.195000px;}
.y88{bottom:276.225000px;}
.ye{bottom:288.825000px;}
.yde{bottom:289.905000px;}
.yb6{bottom:290.985000px;}
.y35{bottom:293.115000px;}
.y87{bottom:299.265000px;}
.ydd{bottom:306.825000px;}
.yb5{bottom:308.265000px;}
.y34{bottom:319.755000px;}
.y86{bottom:325.545000px;}
.ydc{bottom:333.465000px;}
.y33{bottom:337.035000px;}
.y85{bottom:342.825000px;}
.ydb{bottom:350.745000px;}
.y32{bottom:353.955000px;}
.yb4{bottom:360.105000px;}
.y1d{bottom:360.435000px;}
.yda{bottom:367.665000px;}
.y84{bottom:369.465000px;}
.y31{bottom:371.235000px;}
.yb3{bottom:377.025000px;}
.y1c{bottom:384.585000px;}
.y83{bottom:386.745000px;}
.y30{bottom:388.545000px;}
.yd9{bottom:394.305000px;}
.yb2{bottom:403.665000px;}
.y82{bottom:404.025000px;}
.y2f{bottom:405.825000px;}
.y1b{bottom:409.065000px;}
.yd8{bottom:411.270000px;}
.yb1{bottom:420.990000px;}
.y81{bottom:421.350000px;}
.y2e{bottom:423.105000px;}
.yd7{bottom:428.190000px;}
.y1a{bottom:433.185000px;}
.yb0{bottom:437.910000px;}
.y80{bottom:438.270000px;}
.y2d{bottom:440.385000px;}
.yd6{bottom:454.830000px;}
.y7f{bottom:455.190000px;}
.y19{bottom:457.305000px;}
.y2c{bottom:457.665000px;}
.yd5{bottom:472.110000px;}
.yaf{bottom:472.470000px;}
.y2b{bottom:474.585000px;}
.y18{bottom:481.425000px;}
.y7e{bottom:481.830000px;}
.yd4{bottom:489.390000px;}
.yae{bottom:489.750000px;}
.y7d{bottom:499.110000px;}
.y2a{bottom:500.505000px;}
.y17{bottom:505.545000px;}
.yd3{bottom:506.310000px;}
.yad{bottom:507.030000px;}
.y29{bottom:516.030000px;}
.y7c{bottom:516.390000px;}
.yac{bottom:524.310000px;}
.y16{bottom:529.710000px;}
.y28{bottom:531.510000px;}
.yd2{bottom:532.950000px;}
.y7b{bottom:533.670000px;}
.yab{bottom:541.620000px;}
.y27{bottom:546.990000px;}
.yd1{bottom:550.260000px;}
.y7a{bottom:550.980000px;}
.y15{bottom:553.830000px;}
.yaa{bottom:555.660000px;}
.y26{bottom:562.470000px;}
.yd0{bottom:567.180000px;}
.y79{bottom:568.260000px;}
.ya9{bottom:575.100000px;}
.y14{bottom:577.950000px;}
.y25{bottom:578.310000px;}
.y78{bottom:585.180000px;}
.y24{bottom:593.790000px;}
.ycf{bottom:593.820000px;}
.ya7{bottom:594.540000px;}
.y13{bottom:602.070000px;}
.y23{bottom:609.270000px;}
.yce{bottom:611.100000px;}
.y77{bottom:611.820000px;}
.ya6{bottom:613.620000px;}
.y22{bottom:624.750000px;}
.y12{bottom:626.190000px;}
.ycd{bottom:627.660000px;}
.y76{bottom:629.100000px;}
.ya3{bottom:633.060000px;}
.y21{bottom:640.230000px;}
.y75{bottom:646.020000px;}
.y11{bottom:650.340000px;}
.ycc{bottom:654.300000px;}
.y20{bottom:655.740000px;}
.y74{bottom:663.300000px;}
.y1f{bottom:671.220000px;}
.ya2{bottom:671.265000px;}
.ycb{bottom:671.610000px;}
.y10{bottom:674.460000px;}
.y73{bottom:680.610000px;}
.y1e{bottom:686.340000px;}
.yca{bottom:688.890000px;}
.y72{bottom:697.890000px;}
.yf{bottom:698.580000px;}
.yc9{bottom:705.810000px;}
.yf7{bottom:707.610000px;}
.ya1{bottom:709.065000px;}
.y71{bottom:724.170000px;}
.yf6{bottom:724.890000px;}
.y9e{bottom:728.505000px;}
.yc8{bottom:732.450000px;}
.y70{bottom:741.450000px;}
.yf5{bottom:742.170000px;}
.yc7{bottom:749.730000px;}
.y6f{bottom:758.730000px;}
.yf4{bottom:759.450000px;}
.y9d{bottom:766.305000px;}
.yc6{bottom:767.010000px;}
.y6e{bottom:776.010000px;}
.yf3{bottom:776.730000px;}
.yc5{bottom:783.930000px;}
.y9b{bottom:785.745000px;}
.y6d{bottom:793.290000px;}
.yf2{bottom:794.010000px;}
.y6c{bottom:810.615000px;}
.yf1{bottom:811.335000px;}
.y6b{bottom:827.535000px;}
.yc4{bottom:827.895000px;}
.yf0{bottom:828.615000px;}
.yc3{bottom:845.175000px;}
.yef{bottom:845.895000px;}
.y6a{bottom:854.175000px;}
.yc2{bottom:861.735000px;}
.yee{bottom:863.175000px;}
.y69{bottom:871.095000px;}
.yed{bottom:880.095000px;}
.y68{bottom:888.375000px;}
.yec{bottom:897.375000px;}
.y67{bottom:905.655000px;}
.yeb{bottom:914.655000px;}
.y66{bottom:922.935000px;}
.yea{bottom:931.935000px;}
.y9a{bottom:939.885000px;}
.y65{bottom:940.245000px;}
.ye9{bottom:949.245000px;}
.y64{bottom:957.165000px;}
.y99{bottom:966.525000px;}
.y63{bottom:983.805000px;}
.yd{bottom:999.645000px;}
.y62{bottom:1001.085000px;}
.yc{bottom:1005.045000px;}
.y61{bottom:1018.365000px;}
.yb{bottom:1029.165000px;}
.y60{bottom:1035.645000px;}
.ya{bottom:1039.245000px;}
.y5f{bottom:1052.925000px;}
.y9{bottom:1058.685000px;}
.y5e{bottom:1069.890000px;}
.y8{bottom:1086.450000px;}
.y5d{bottom:1086.810000px;}
.y98{bottom:1087.170000px;}
.y5a{bottom:1089.720000px;}
.y5c{bottom:1104.090000px;}
.y97{bottom:1104.450000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.hc{height:4.165313px;}
.h18{height:5.650313px;}
.h1d{height:18.345000px;}
.h1c{height:18.360000px;}
.h1b{height:18.705000px;}
.h25{height:18.715500px;}
.h21{height:18.720000px;}
.h24{height:18.751500px;}
.h19{height:27.720000px;}
.h16{height:29.678906px;}
.h6{height:30.077578px;}
.h15{height:35.332031px;}
.h1f{height:37.065000px;}
.h23{height:37.425000px;}
.h1e{height:37.461000px;}
.h20{height:37.476000px;}
.ha{height:38.158594px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h12{height:42.229688px;}
.h11{height:45.101250px;}
.h10{height:53.677969px;}
.h17{height:55.147500px;}
.h7{height:58.050000px;}
.h5{height:59.357813px;}
.hb{height:60.952500px;}
.h13{height:62.163910px;}
.h1a{height:63.455625px;}
.h8{height:63.577969px;}
.h3{height:65.884219px;}
.h9{height:66.543750px;}
.h22{height:75.991500px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h14{height:191.925000px;}
.hd{height:707.925000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w18{width:42.120000px;}
.w16{width:44.676000px;}
.wd{width:46.470000px;}
.w19{width:60.105000px;}
.w10{width:64.800000px;}
.w1b{width:79.590000px;}
.w9{width:87.150000px;}
.w11{width:90.390000px;}
.we{width:93.996000px;}
.w1a{width:97.560000px;}
.wf{width:100.461000px;}
.w2{width:103.702500px;}
.w17{width:118.461000px;}
.w15{width:122.790000px;}
.w7{width:125.685000px;}
.w4{width:132.502500px;}
.w8{width:134.310000px;}
.wa{width:134.352000px;}
.w6{width:163.080000px;}
.wb{width:167.805000px;}
.w14{width:178.245000px;}
.wc{width:263.970000px;}
.w12{width:399.045000px;}
.w13{width:570.060000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:6.876000px;}
.x17{left:8.266500px;}
.x26{left:9.720000px;}
.x28{left:10.800000px;}
.x3d{left:11.880000px;}
.x4{left:13.305000px;}
.x14{left:14.386500px;}
.x2a{left:15.480000px;}
.x47{left:16.905000px;}
.x1c{left:18.346500px;}
.x5{left:19.425000px;}
.x16{left:20.866500px;}
.x15{left:26.266500px;}
.x1e{left:29.146500px;}
.x32{left:30.630000px;}
.x2d{left:34.230000px;}
.x1a{left:35.295000px;}
.x3e{left:36.705000px;}
.x31{left:39.985500px;}
.x45{left:42.105000px;}
.xf{left:43.906500px;}
.x48{left:45.705000px;}
.x1d{left:47.542500px;}
.x6{left:50.055000px;}
.x33{left:53.670000px;}
.xe{left:55.102500px;}
.x34{left:56.160000px;}
.x13{left:57.982500px;}
.x2f{left:59.760000px;}
.x19{left:62.295000px;}
.x2c{left:63.405000px;}
.x1f{left:66.265500px;}
.x30{left:70.575000px;}
.x2e{left:74.535000px;}
.x1{left:78.529500px;}
.x12{left:83.905500px;}
.x7{left:86.436000px;}
.x11{left:90.025500px;}
.x49{left:91.836000px;}
.x2{left:95.425500px;}
.x20{left:102.985500px;}
.x1b{left:106.945500px;}
.x22{left:113.436000px;}
.x37{left:114.889500px;}
.x4a{left:118.836000px;}
.x24{left:120.649500px;}
.x10{left:124.585500px;}
.x35{left:140.472000px;}
.x3f{left:161.730000px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.x25{left:247.065000px;}
.x46{left:260.385000px;}
.xb{left:261.465000px;}
.x40{left:264.330000px;}
.x36{left:311.550000px;}
.xa{left:340.710000px;}
.x38{left:379.590000px;}
.x27{left:382.110000px;}
.x23{left:422.820000px;}
.x39{left:426.780000px;}
.x41{left:464.220000px;}
.x29{left:469.980000px;}
.x42{left:509.625000px;}
.x3a{left:521.505000px;}
.xc{left:597.495000px;}
.x2b{left:605.070000px;}
.x3b{left:622.710000px;}
.x43{left:628.830000px;}
.x44{left:671.685000px;}
.x3c{left:688.245000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xd{left:807.090000px;}
@media print{
.v3{vertical-align:-62.720000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.560000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.414933pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.848000pt;}
.lse{letter-spacing:14.494720pt;}
.lsb{letter-spacing:41.374720pt;}
.ls1{letter-spacing:56.734720pt;}
.ws5{word-spacing:-53.760000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws2{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.600000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.936000pt;}
.ws8{word-spacing:0.000000pt;}
._15{margin-left:-3.378773pt;}
._4{margin-left:-2.102613pt;}
._3{margin-left:-0.964693pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._9{width:4.298240pt;}
._a{width:5.960533pt;}
._b{width:7.636480pt;}
._e{width:8.885333pt;}
._c{width:9.787733pt;}
._d{width:11.256747pt;}
._12{width:12.241920pt;}
._8{width:13.399467pt;}
._6{width:14.651733pt;}
._7{width:15.702613pt;}
._5{width:16.645973pt;}
._14{width:18.043733pt;}
._13{width:19.835307pt;}
._11{width:20.916907pt;}
._10{width:21.874773pt;}
._f{width:22.906027pt;}
._16{width:464.167253pt;}
.fs7{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:0.636000pt;}
.y5{bottom:3.520000pt;}
.y93{bottom:4.146667pt;}
.ya8{bottom:4.160000pt;}
.y8c{bottom:4.466667pt;}
.y89{bottom:4.480000pt;}
.y5b{bottom:4.773333pt;}
.y8f{bottom:4.786667pt;}
.yc0{bottom:4.796000pt;}
.y8a{bottom:4.800000pt;}
.y2{bottom:7.040000pt;}
.y59{bottom:9.596000pt;}
.y4{bottom:18.880000pt;}
.y44{bottom:19.840000pt;}
.ya0{bottom:20.786667pt;}
.y9f{bottom:21.106667pt;}
.ya5{bottom:21.120000pt;}
.y9c{bottom:21.146667pt;}
.ybe{bottom:21.426667pt;}
.ya4{bottom:21.440000pt;}
.y58{bottom:23.356000pt;}
.y4c{bottom:26.876000pt;}
.y43{bottom:35.200000pt;}
.y4b{bottom:37.756000pt;}
.y57{bottom:38.716000pt;}
.ybc{bottom:39.070667pt;}
.y3{bottom:39.360000pt;}
.y4a{bottom:49.310667pt;}
.y7{bottom:51.232000pt;}
.y42{bottom:51.520000pt;}
.y56{bottom:52.830667pt;}
.ybb{bottom:55.710667pt;}
.y49{bottom:60.830667pt;}
.y55{bottom:66.590667pt;}
.y41{bottom:66.880000pt;}
.y54{bottom:78.110667pt;}
.y48{bottom:80.030667pt;}
.y40{bottom:83.200000pt;}
.y53{bottom:83.870667pt;}
.y45{bottom:85.476000pt;}
.ye8{bottom:96.352000pt;}
.y52{bottom:97.950667pt;}
.y3f{bottom:99.200000pt;}
.y96{bottom:99.232000pt;}
.yc1{bottom:102.756000pt;}
.y51{bottom:111.710667pt;}
.ye7{bottom:111.712000pt;}
.y95{bottom:114.592000pt;}
.yba{bottom:120.036000pt;}
.y3e{bottom:122.920000pt;}
.y50{bottom:125.470667pt;}
.ye6{bottom:127.104000pt;}
.y94{bottom:129.984000pt;}
.y47{bottom:135.390667pt;}
.ybf{bottom:137.360000pt;}
.y3d{bottom:137.960000pt;}
.y4f{bottom:139.230667pt;}
.ye5{bottom:142.466667pt;}
.y92{bottom:142.480000pt;}
.y46{bottom:144.990667pt;}
.y4e{bottom:152.670667pt;}
.y3c{bottom:153.320000pt;}
.ybd{bottom:154.320000pt;}
.ye4{bottom:157.506667pt;}
.y91{bottom:159.440000pt;}
.y3b{bottom:168.680000pt;}
.ye3{bottom:172.866667pt;}
.y90{bottom:176.720000pt;}
.y3a{bottom:184.040000pt;}
.ye2{bottom:187.906667pt;}
.yb9{bottom:188.240000pt;}
.y8e{bottom:194.000000pt;}
.y39{bottom:199.400000pt;}
.yb8{bottom:205.520000pt;}
.y8d{bottom:211.280000pt;}
.ye1{bottom:211.586667pt;}
.y38{bottom:214.760000pt;}
.yb7{bottom:222.800000pt;}
.ye0{bottom:226.946667pt;}
.y8b{bottom:228.560000pt;}
.y37{bottom:230.146667pt;}
.ydf{bottom:242.306667pt;}
.y36{bottom:245.506667pt;}
.y88{bottom:245.533333pt;}
.ye{bottom:256.733333pt;}
.yde{bottom:257.693333pt;}
.yb6{bottom:258.653333pt;}
.y35{bottom:260.546667pt;}
.y87{bottom:266.013333pt;}
.ydd{bottom:272.733333pt;}
.yb5{bottom:274.013333pt;}
.y34{bottom:284.226667pt;}
.y86{bottom:289.373333pt;}
.ydc{bottom:296.413333pt;}
.y33{bottom:299.586667pt;}
.y85{bottom:304.733333pt;}
.ydb{bottom:311.773333pt;}
.y32{bottom:314.626667pt;}
.yb4{bottom:320.093333pt;}
.y1d{bottom:320.386667pt;}
.yda{bottom:326.813333pt;}
.y84{bottom:328.413333pt;}
.y31{bottom:329.986667pt;}
.yb3{bottom:335.133333pt;}
.y1c{bottom:341.853333pt;}
.y83{bottom:343.773333pt;}
.y30{bottom:345.373333pt;}
.yd9{bottom:350.493333pt;}
.yb2{bottom:358.813333pt;}
.y82{bottom:359.133333pt;}
.y2f{bottom:360.733333pt;}
.y1b{bottom:363.613333pt;}
.yd8{bottom:365.573333pt;}
.yb1{bottom:374.213333pt;}
.y81{bottom:374.533333pt;}
.y2e{bottom:376.093333pt;}
.yd7{bottom:380.613333pt;}
.y1a{bottom:385.053333pt;}
.yb0{bottom:389.253333pt;}
.y80{bottom:389.573333pt;}
.y2d{bottom:391.453333pt;}
.yd6{bottom:404.293333pt;}
.y7f{bottom:404.613333pt;}
.y19{bottom:406.493333pt;}
.y2c{bottom:406.813333pt;}
.yd5{bottom:419.653333pt;}
.yaf{bottom:419.973333pt;}
.y2b{bottom:421.853333pt;}
.y18{bottom:427.933333pt;}
.y7e{bottom:428.293333pt;}
.yd4{bottom:435.013333pt;}
.yae{bottom:435.333333pt;}
.y7d{bottom:443.653333pt;}
.y2a{bottom:444.893333pt;}
.y17{bottom:449.373333pt;}
.yd3{bottom:450.053333pt;}
.yad{bottom:450.693333pt;}
.y29{bottom:458.693333pt;}
.y7c{bottom:459.013333pt;}
.yac{bottom:466.053333pt;}
.y16{bottom:470.853333pt;}
.y28{bottom:472.453333pt;}
.yd2{bottom:473.733333pt;}
.y7b{bottom:474.373333pt;}
.yab{bottom:481.440000pt;}
.y27{bottom:486.213333pt;}
.yd1{bottom:489.120000pt;}
.y7a{bottom:489.760000pt;}
.y15{bottom:492.293333pt;}
.yaa{bottom:493.920000pt;}
.y26{bottom:499.973333pt;}
.yd0{bottom:504.160000pt;}
.y79{bottom:505.120000pt;}
.ya9{bottom:511.200000pt;}
.y14{bottom:513.733333pt;}
.y25{bottom:514.053333pt;}
.y78{bottom:520.160000pt;}
.y24{bottom:527.813333pt;}
.ycf{bottom:527.840000pt;}
.ya7{bottom:528.480000pt;}
.y13{bottom:535.173333pt;}
.y23{bottom:541.573333pt;}
.yce{bottom:543.200000pt;}
.y77{bottom:543.840000pt;}
.ya6{bottom:545.440000pt;}
.y22{bottom:555.333333pt;}
.y12{bottom:556.613333pt;}
.ycd{bottom:557.920000pt;}
.y76{bottom:559.200000pt;}
.ya3{bottom:562.720000pt;}
.y21{bottom:569.093333pt;}
.y75{bottom:574.240000pt;}
.y11{bottom:578.080000pt;}
.ycc{bottom:581.600000pt;}
.y20{bottom:582.880000pt;}
.y74{bottom:589.600000pt;}
.y1f{bottom:596.640000pt;}
.ya2{bottom:596.680000pt;}
.ycb{bottom:596.986667pt;}
.y10{bottom:599.520000pt;}
.y73{bottom:604.986667pt;}
.y1e{bottom:610.080000pt;}
.yca{bottom:612.346667pt;}
.y72{bottom:620.346667pt;}
.yf{bottom:620.960000pt;}
.yc9{bottom:627.386667pt;}
.yf7{bottom:628.986667pt;}
.ya1{bottom:630.280000pt;}
.y71{bottom:643.706667pt;}
.yf6{bottom:644.346667pt;}
.y9e{bottom:647.560000pt;}
.yc8{bottom:651.066667pt;}
.y70{bottom:659.066667pt;}
.yf5{bottom:659.706667pt;}
.yc7{bottom:666.426667pt;}
.y6f{bottom:674.426667pt;}
.yf4{bottom:675.066667pt;}
.y9d{bottom:681.160000pt;}
.yc6{bottom:681.786667pt;}
.y6e{bottom:689.786667pt;}
.yf3{bottom:690.426667pt;}
.yc5{bottom:696.826667pt;}
.y9b{bottom:698.440000pt;}
.y6d{bottom:705.146667pt;}
.yf2{bottom:705.786667pt;}
.y6c{bottom:720.546667pt;}
.yf1{bottom:721.186667pt;}
.y6b{bottom:735.586667pt;}
.yc4{bottom:735.906667pt;}
.yf0{bottom:736.546667pt;}
.yc3{bottom:751.266667pt;}
.yef{bottom:751.906667pt;}
.y6a{bottom:759.266667pt;}
.yc2{bottom:765.986667pt;}
.yee{bottom:767.266667pt;}
.y69{bottom:774.306667pt;}
.yed{bottom:782.306667pt;}
.y68{bottom:789.666667pt;}
.yec{bottom:797.666667pt;}
.y67{bottom:805.026667pt;}
.yeb{bottom:813.026667pt;}
.y66{bottom:820.386667pt;}
.yea{bottom:828.386667pt;}
.y9a{bottom:835.453333pt;}
.y65{bottom:835.773333pt;}
.ye9{bottom:843.773333pt;}
.y64{bottom:850.813333pt;}
.y99{bottom:859.133333pt;}
.y63{bottom:874.493333pt;}
.yd{bottom:888.573333pt;}
.y62{bottom:889.853333pt;}
.yc{bottom:893.373333pt;}
.y61{bottom:905.213333pt;}
.yb{bottom:914.813333pt;}
.y60{bottom:920.573333pt;}
.ya{bottom:923.773333pt;}
.y5f{bottom:935.933333pt;}
.y9{bottom:941.053333pt;}
.y5e{bottom:951.013333pt;}
.y8{bottom:965.733333pt;}
.y5d{bottom:966.053333pt;}
.y98{bottom:966.373333pt;}
.y5a{bottom:968.640000pt;}
.y5c{bottom:981.413333pt;}
.y97{bottom:981.733333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.hc{height:3.702500pt;}
.h18{height:5.022500pt;}
.h1d{height:16.306667pt;}
.h1c{height:16.320000pt;}
.h1b{height:16.626667pt;}
.h25{height:16.636000pt;}
.h21{height:16.640000pt;}
.h24{height:16.668000pt;}
.h19{height:24.640000pt;}
.h16{height:26.381250pt;}
.h6{height:26.735625pt;}
.h15{height:31.406250pt;}
.h1f{height:32.946667pt;}
.h23{height:33.266667pt;}
.h1e{height:33.298667pt;}
.h20{height:33.312000pt;}
.ha{height:33.918750pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h12{height:37.537500pt;}
.h11{height:40.090000pt;}
.h10{height:47.713750pt;}
.h17{height:49.020000pt;}
.h7{height:51.600000pt;}
.h5{height:52.762500pt;}
.hb{height:54.180000pt;}
.h13{height:55.256809pt;}
.h1a{height:56.405000pt;}
.h8{height:56.513750pt;}
.h3{height:58.563750pt;}
.h9{height:59.150000pt;}
.h22{height:67.548000pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h14{height:170.600000pt;}
.hd{height:629.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w18{width:37.440000pt;}
.w16{width:39.712000pt;}
.wd{width:41.306667pt;}
.w19{width:53.426667pt;}
.w10{width:57.600000pt;}
.w1b{width:70.746667pt;}
.w9{width:77.466667pt;}
.w11{width:80.346667pt;}
.we{width:83.552000pt;}
.w1a{width:86.720000pt;}
.wf{width:89.298667pt;}
.w2{width:92.180000pt;}
.w17{width:105.298667pt;}
.w15{width:109.146667pt;}
.w7{width:111.720000pt;}
.w4{width:117.780000pt;}
.w8{width:119.386667pt;}
.wa{width:119.424000pt;}
.w6{width:144.960000pt;}
.wb{width:149.160000pt;}
.w14{width:158.440000pt;}
.wc{width:234.640000pt;}
.w12{width:354.706667pt;}
.w13{width:506.720000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.112000pt;}
.x17{left:7.348000pt;}
.x26{left:8.640000pt;}
.x28{left:9.600000pt;}
.x3d{left:10.560000pt;}
.x4{left:11.826667pt;}
.x14{left:12.788000pt;}
.x2a{left:13.760000pt;}
.x47{left:15.026667pt;}
.x1c{left:16.308000pt;}
.x5{left:17.266667pt;}
.x16{left:18.548000pt;}
.x15{left:23.348000pt;}
.x1e{left:25.908000pt;}
.x32{left:27.226667pt;}
.x2d{left:30.426667pt;}
.x1a{left:31.373333pt;}
.x3e{left:32.626667pt;}
.x31{left:35.542667pt;}
.x45{left:37.426667pt;}
.xf{left:39.028000pt;}
.x48{left:40.626667pt;}
.x1d{left:42.260000pt;}
.x6{left:44.493333pt;}
.x33{left:47.706667pt;}
.xe{left:48.980000pt;}
.x34{left:49.920000pt;}
.x13{left:51.540000pt;}
.x2f{left:53.120000pt;}
.x19{left:55.373333pt;}
.x2c{left:56.360000pt;}
.x1f{left:58.902667pt;}
.x30{left:62.733333pt;}
.x2e{left:66.253333pt;}
.x1{left:69.804000pt;}
.x12{left:74.582667pt;}
.x7{left:76.832000pt;}
.x11{left:80.022667pt;}
.x49{left:81.632000pt;}
.x2{left:84.822667pt;}
.x20{left:91.542667pt;}
.x1b{left:95.062667pt;}
.x22{left:100.832000pt;}
.x37{left:102.124000pt;}
.x4a{left:105.632000pt;}
.x24{left:107.244000pt;}
.x10{left:110.742667pt;}
.x35{left:124.864000pt;}
.x3f{left:143.760000pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.x25{left:219.613333pt;}
.x46{left:231.453333pt;}
.xb{left:232.413333pt;}
.x40{left:234.960000pt;}
.x36{left:276.933333pt;}
.xa{left:302.853333pt;}
.x38{left:337.413333pt;}
.x27{left:339.653333pt;}
.x23{left:375.840000pt;}
.x39{left:379.360000pt;}
.x41{left:412.640000pt;}
.x29{left:417.760000pt;}
.x42{left:453.000000pt;}
.x3a{left:463.560000pt;}
.xc{left:531.106667pt;}
.x2b{left:537.840000pt;}
.x3b{left:553.520000pt;}
.x43{left:558.960000pt;}
.x44{left:597.053333pt;}
.x3c{left:611.773333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xd{left:717.413333pt;}
}




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