
    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_a2b167cc7123f4ff6bf0cdc2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_35db82cce4b6b8284dff906e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_6ba3f75493b5d004b3fda719.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_bd3c137b6aa5c11bfed5fae1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_21442c6a01f5013c0be3e5b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_bf8c0628137c345944a6e022.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.754395;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_1b97f367e2be0e27b0f05246.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_f08f613c6f221356a6b718e3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939941;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_1ac622349f2f03d818ee19e8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_35ee4469bb52c97ffa3155df.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_287dade48c0a2a303a2fb79b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682617;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.127200px;}
.ls14{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.066000px;}
.lsc{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls4{letter-spacing:6.660000px;}
.ls17{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.ls11{letter-spacing:55.386720px;}
.lsd{letter-spacing:64.170720px;}
.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:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wsd{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.wse{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._12{margin-left:-7.781520px;}
._18{margin-left:-6.035760px;}
._3{margin-left:-4.840560px;}
._4{margin-left:-3.406320px;}
._2{margin-left:-2.274480px;}
._0{margin-left:-1.080000px;}
._1{width:1.146000px;}
._b{width:2.689200px;}
._a{width:4.620720px;}
._9{width:5.956800px;}
._8{width:7.888320px;}
._7{width:9.610800px;}
._15{width:10.876320px;}
._13{width:11.892240px;}
._11{width:13.206960px;}
._10{width:16.005120px;}
._c{width:17.319840px;}
._d{width:18.636480px;}
._e{width:19.833120px;}
._f{width:20.856240px;}
._14{width:22.578720px;}
._17{width:24.522480px;}
._16{width:25.541280px;}
._5{width:30.884880px;}
._6{width:31.971600px;}
._1a{width:51.453360px;}
._1b{width:53.365680px;}
._1c{width:78.405120px;}
._19{width:136.062960px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y47{bottom:3.960000px;}
.y19{bottom:4.860000px;}
.y94{bottom:8.640000px;}
.ye{bottom:9.540000px;}
.y45{bottom:10.620000px;}
.y91{bottom:11.880000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.680000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.016000px;}
.y41{bottom:20.520000px;}
.y46{bottom:22.365000px;}
.yae{bottom:23.580000px;}
.y44{bottom:25.245000px;}
.y18{bottom:29.340000px;}
.yb{bottom:30.060000px;}
.y5{bottom:31.500000px;}
.y40{bottom:37.800000px;}
.y17{bottom:45.945000px;}
.ya{bottom:46.440000px;}
.y1{bottom:54.000000px;}
.y3f{bottom:55.080000px;}
.y16{bottom:62.325000px;}
.y3e{bottom:72.360000px;}
.y9{bottom:73.260000px;}
.y15{bottom:78.165000px;}
.y14{bottom:88.605000px;}
.y3d{bottom:89.460000px;}
.y8{bottom:92.910000px;}
.y3c{bottom:106.740000px;}
.y13{bottom:106.965000px;}
.y7{bottom:111.270000px;}
.yd8{bottom:113.076000px;}
.yaa{bottom:119.736000px;}
.y53{bottom:121.356000px;}
.y3b{bottom:124.020000px;}
.y12{bottom:125.865000px;}
.yd7{bottom:130.176000px;}
.y8f{bottom:133.056000px;}
.ya9{bottom:137.016000px;}
.y52{bottom:138.636000px;}
.y3a{bottom:141.300000px;}
.yd6{bottom:147.456000px;}
.y8e{bottom:150.330000px;}
.y11{bottom:151.605000px;}
.ya8{bottom:154.290000px;}
.y51{bottom:155.910000px;}
.y39{bottom:158.580000px;}
.yd5{bottom:164.730000px;}
.y8d{bottom:167.610000px;}
.ya7{bottom:171.570000px;}
.y50{bottom:173.010000px;}
.y38{bottom:175.860000px;}
.y10{bottom:176.085000px;}
.yd4{bottom:182.010000px;}
.y8c{bottom:184.890000px;}
.ya6{bottom:188.670000px;}
.y4f{bottom:190.290000px;}
.y37{bottom:192.960000px;}
.yec{bottom:197.670000px;}
.yd3{bottom:199.290000px;}
.y8b{bottom:202.170000px;}
.ya5{bottom:205.950000px;}
.y4e{bottom:207.570000px;}
.y36{bottom:210.240000px;}
.yeb{bottom:214.950000px;}
.yd2{bottom:216.570000px;}
.y8a{bottom:219.270000px;}
.ya4{bottom:223.230000px;}
.y4d{bottom:224.850000px;}
.y35{bottom:227.520000px;}
.yea{bottom:232.230000px;}
.yd1{bottom:233.670000px;}
.y28{bottom:234.360000px;}
.y89{bottom:236.550000px;}
.ya3{bottom:240.510000px;}
.y4c{bottom:242.130000px;}
.y34{bottom:244.830000px;}
.ye9{bottom:249.510000px;}
.y27{bottom:249.690000px;}
.yd0{bottom:250.950000px;}
.y88{bottom:254.910000px;}
.ya2{bottom:257.790000px;}
.y4b{bottom:259.410000px;}
.y33{bottom:262.110000px;}
.ye8{bottom:266.790000px;}
.y26{bottom:267.330000px;}
.ycf{bottom:268.230000px;}
.y87{bottom:273.270000px;}
.ya1{bottom:274.890000px;}
.y4a{bottom:276.510000px;}
.y32{bottom:279.390000px;}
.ye7{bottom:284.070000px;}
.y25{bottom:284.610000px;}
.yce{bottom:285.510000px;}
.y86{bottom:291.630000px;}
.ya0{bottom:292.170000px;}
.y49{bottom:293.790000px;}
.y31{bottom:296.490000px;}
.ye6{bottom:301.170000px;}
.y24{bottom:301.710000px;}
.ycd{bottom:302.790000px;}
.y9f{bottom:309.450000px;}
.y85{bottom:309.810000px;}
.y48{bottom:311.070000px;}
.y30{bottom:313.770000px;}
.ye5{bottom:318.450000px;}
.y23{bottom:319.530000px;}
.ycc{bottom:319.890000px;}
.y43{bottom:325.110000px;}
.y9e{bottom:326.730000px;}
.y84{bottom:327.090000px;}
.y2f{bottom:331.050000px;}
.ye4{bottom:335.730000px;}
.y22{bottom:336.990000px;}
.ycb{bottom:337.215000px;}
.y9d{bottom:344.055000px;}
.y83{bottom:345.495000px;}
.y2e{bottom:348.330000px;}
.ye3{bottom:353.055000px;}
.y21{bottom:354.450000px;}
.yca{bottom:354.495000px;}
.y9c{bottom:361.335000px;}
.y1c{bottom:361.695000px;}
.y82{bottom:363.855000px;}
.y2d{bottom:365.610000px;}
.ye2{bottom:370.335000px;}
.y20{bottom:371.730000px;}
.yc9{bottom:371.775000px;}
.y81{bottom:382.215000px;}
.y2c{bottom:382.890000px;}
.y9b{bottom:387.255000px;}
.ye1{bottom:387.615000px;}
.yc8{bottom:389.055000px;}
.y1f{bottom:392.070000px;}
.y2b{bottom:399.990000px;}
.y80{bottom:400.395000px;}
.ye0{bottom:404.715000px;}
.yc7{bottom:406.335000px;}
.y2a{bottom:417.270000px;}
.y7f{bottom:417.675000px;}
.y1e{bottom:419.430000px;}
.ydf{bottom:421.995000px;}
.yc6{bottom:423.435000px;}
.y9a{bottom:427.755000px;}
.y29{bottom:434.550000px;}
.y7e{bottom:436.035000px;}
.y1d{bottom:437.250000px;}
.yde{bottom:439.275000px;}
.yc5{bottom:440.715000px;}
.y7d{bottom:453.315000px;}
.ydd{bottom:456.555000px;}
.yc4{bottom:457.995000px;}
.y99{bottom:468.255000px;}
.y7c{bottom:470.595000px;}
.ydc{bottom:473.835000px;}
.yc3{bottom:475.275000px;}
.y7b{bottom:488.955000px;}
.ydb{bottom:490.935000px;}
.yc2{bottom:492.555000px;}
.y7a{bottom:506.055000px;}
.yda{bottom:508.215000px;}
.y98{bottom:508.755000px;}
.yc1{bottom:509.835000px;}
.y79{bottom:524.415000px;}
.yd9{bottom:525.495000px;}
.yc0{bottom:535.755000px;}
.y78{bottom:542.775000px;}
.y77{bottom:560.055000px;}
.y97{bottom:566.535000px;}
.ybf{bottom:576.255000px;}
.y76{bottom:577.335000px;}
.y75{bottom:594.435000px;}
.y96{bottom:607.065000px;}
.y74{bottom:611.745000px;}
.ybe{bottom:616.785000px;}
.y73{bottom:629.025000px;}
.y72{bottom:646.305000px;}
.y95{bottom:647.565000px;}
.ybd{bottom:649.185000px;}
.y71{bottom:663.585000px;}
.ybc{bottom:666.465000px;}
.y70{bottom:680.865000px;}
.ybb{bottom:683.745000px;}
.y93{bottom:688.065000px;}
.y6f{bottom:697.965000px;}
.yba{bottom:701.025000px;}
.y6e{bottom:715.245000px;}
.yb9{bottom:718.305000px;}
.y92{bottom:728.565000px;}
.y6d{bottom:732.525000px;}
.yb8{bottom:735.585000px;}
.y6c{bottom:749.805000px;}
.yb7{bottom:752.685000px;}
.y6b{bottom:767.085000px;}
.y90{bottom:769.065000px;}
.yb6{bottom:769.965000px;}
.y6a{bottom:784.365000px;}
.yb5{bottom:787.245000px;}
.y69{bottom:801.465000px;}
.yb4{bottom:804.525000px;}
.y1a{bottom:810.285000px;}
.y68{bottom:818.745000px;}
.yb2{bottom:830.445000px;}
.y67{bottom:836.025000px;}
.yf{bottom:839.805000px;}
.y66{bottom:853.305000px;}
.y65{bottom:870.630000px;}
.yb3{bottom:870.990000px;}
.y64{bottom:887.730000px;}
.y63{bottom:905.010000px;}
.yb0{bottom:911.490000px;}
.y62{bottom:922.290000px;}
.y61{bottom:939.570000px;}
.yb1{bottom:951.990000px;}
.y60{bottom:956.850000px;}
.y5f{bottom:974.130000px;}
.y5e{bottom:991.230000px;}
.yad{bottom:992.490000px;}
.y5d{bottom:1008.510000px;}
.y5c{bottom:1025.790000px;}
.yd{bottom:1031.010000px;}
.yaf{bottom:1032.990000px;}
.y5b{bottom:1043.070000px;}
.y6{bottom:1056.390000px;}
.y5a{bottom:1060.350000px;}
.yac{bottom:1073.490000px;}
.y59{bottom:1077.630000px;}
.y58{bottom:1094.730000px;}
.y57{bottom:1112.010000px;}
.yab{bottom:1113.990000px;}
.y56{bottom:1129.290000px;}
.y55{bottom:1146.600000px;}
.y54{bottom:1163.880000px;}
.h21{height:17.280000px;}
.hb{height:24.840000px;}
.h13{height:29.520000px;}
.h12{height:32.103633px;}
.h2{height:32.976000px;}
.h20{height:34.560000px;}
.h11{height:35.806641px;}
.h8{height:36.180000px;}
.h1d{height:36.576000px;}
.h1a{height:42.186445px;}
.h19{height:42.281367px;}
.h1c{height:43.215117px;}
.h1b{height:43.273477px;}
.h1f{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h16{height:47.980898px;}
.h18{height:49.742227px;}
.h1e{height:52.260820px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h22{height:57.780000px;}
.h23{height:57.816000px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:62.028281px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:191.190000px;}
.h15{height:448.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:46.980000px;}
.w13{width:60.660000px;}
.w3{width:74.880000px;}
.w17{width:78.300000px;}
.w12{width:93.240000px;}
.w11{width:93.456000px;}
.wb{width:145.260000px;}
.w5{width:155.370000px;}
.w16{width:162.570000px;}
.wd{width:167.070000px;}
.wc{width:171.030000px;}
.w10{width:187.410000px;}
.w15{width:198.750000px;}
.wa{width:199.875000px;}
.w8{width:220.935000px;}
.w14{width:291.135000px;}
.wf{width:299.055000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x14{left:12.600000px;}
.x18{left:17.460000px;}
.xc{left:64.656000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x15{left:108.035987px;}
.xd{left:126.750000px;}
.x10{left:140.250000px;}
.x11{left:147.090000px;}
.x16{left:165.989987px;}
.xe{left:178.410000px;}
.xf{left:196.410000px;}
.x12{left:215.175000px;}
.x20{left:225.029987px;}
.x6{left:228.270000px;}
.x17{left:281.415000px;}
.x9{left:285.195000px;}
.x13{left:293.835000px;}
.x7{left:344.955000px;}
.x8{left:364.215000px;}
.x21{left:372.495000px;}
.xb{left:373.575000px;}
.x1c{left:380.415000px;}
.x24{left:396.074987px;}
.x19{left:427.395000px;}
.xa{left:452.460000px;}
.x1d{left:568.545000px;}
.x22{left:572.145000px;}
.x1a{left:598.785000px;}
.x1e{left:662.370000px;}
.x23{left:735.090000px;}
.x3{left:745.890000px;}
.x1f{left:756.150000px;}
.x1b{left:766.230000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls14{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.058667pt;}
.lsc{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls4{letter-spacing:5.920000pt;}
.ls17{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ls11{letter-spacing:49.232640pt;}
.lsd{letter-spacing:57.040640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.wse{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._12{margin-left:-6.916907pt;}
._18{margin-left:-5.365120pt;}
._3{margin-left:-4.302720pt;}
._4{margin-left:-3.027840pt;}
._2{margin-left:-2.021760pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.018667pt;}
._b{width:2.390400pt;}
._a{width:4.107307pt;}
._9{width:5.294933pt;}
._8{width:7.011840pt;}
._7{width:8.542933pt;}
._15{width:9.667840pt;}
._13{width:10.570880pt;}
._11{width:11.739520pt;}
._10{width:14.226773pt;}
._c{width:15.395413pt;}
._d{width:16.565760pt;}
._e{width:17.629440pt;}
._f{width:18.538880pt;}
._14{width:20.069973pt;}
._17{width:21.797760pt;}
._16{width:22.703360pt;}
._5{width:27.453227pt;}
._6{width:28.419200pt;}
._1a{width:45.736320pt;}
._1b{width:47.436160pt;}
._1c{width:69.693440pt;}
._19{width:120.944853pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y47{bottom:3.520000pt;}
.y19{bottom:4.320000pt;}
.y94{bottom:7.680000pt;}
.ye{bottom:8.480000pt;}
.y45{bottom:9.440000pt;}
.y91{bottom:10.560000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.160000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.792000pt;}
.y41{bottom:18.240000pt;}
.y46{bottom:19.880000pt;}
.yae{bottom:20.960000pt;}
.y44{bottom:22.440000pt;}
.y18{bottom:26.080000pt;}
.yb{bottom:26.720000pt;}
.y5{bottom:28.000000pt;}
.y40{bottom:33.600000pt;}
.y17{bottom:40.840000pt;}
.ya{bottom:41.280000pt;}
.y1{bottom:48.000000pt;}
.y3f{bottom:48.960000pt;}
.y16{bottom:55.400000pt;}
.y3e{bottom:64.320000pt;}
.y9{bottom:65.120000pt;}
.y15{bottom:69.480000pt;}
.y14{bottom:78.760000pt;}
.y3d{bottom:79.520000pt;}
.y8{bottom:82.586667pt;}
.y3c{bottom:94.880000pt;}
.y13{bottom:95.080000pt;}
.y7{bottom:98.906667pt;}
.yd8{bottom:100.512000pt;}
.yaa{bottom:106.432000pt;}
.y53{bottom:107.872000pt;}
.y3b{bottom:110.240000pt;}
.y12{bottom:111.880000pt;}
.yd7{bottom:115.712000pt;}
.y8f{bottom:118.272000pt;}
.ya9{bottom:121.792000pt;}
.y52{bottom:123.232000pt;}
.y3a{bottom:125.600000pt;}
.yd6{bottom:131.072000pt;}
.y8e{bottom:133.626667pt;}
.y11{bottom:134.760000pt;}
.ya8{bottom:137.146667pt;}
.y51{bottom:138.586667pt;}
.y39{bottom:140.960000pt;}
.yd5{bottom:146.426667pt;}
.y8d{bottom:148.986667pt;}
.ya7{bottom:152.506667pt;}
.y50{bottom:153.786667pt;}
.y38{bottom:156.320000pt;}
.y10{bottom:156.520000pt;}
.yd4{bottom:161.786667pt;}
.y8c{bottom:164.346667pt;}
.ya6{bottom:167.706667pt;}
.y4f{bottom:169.146667pt;}
.y37{bottom:171.520000pt;}
.yec{bottom:175.706667pt;}
.yd3{bottom:177.146667pt;}
.y8b{bottom:179.706667pt;}
.ya5{bottom:183.066667pt;}
.y4e{bottom:184.506667pt;}
.y36{bottom:186.880000pt;}
.yeb{bottom:191.066667pt;}
.yd2{bottom:192.506667pt;}
.y8a{bottom:194.906667pt;}
.ya4{bottom:198.426667pt;}
.y4d{bottom:199.866667pt;}
.y35{bottom:202.240000pt;}
.yea{bottom:206.426667pt;}
.yd1{bottom:207.706667pt;}
.y28{bottom:208.320000pt;}
.y89{bottom:210.266667pt;}
.ya3{bottom:213.786667pt;}
.y4c{bottom:215.226667pt;}
.y34{bottom:217.626667pt;}
.ye9{bottom:221.786667pt;}
.y27{bottom:221.946667pt;}
.yd0{bottom:223.066667pt;}
.y88{bottom:226.586667pt;}
.ya2{bottom:229.146667pt;}
.y4b{bottom:230.586667pt;}
.y33{bottom:232.986667pt;}
.ye8{bottom:237.146667pt;}
.y26{bottom:237.626667pt;}
.ycf{bottom:238.426667pt;}
.y87{bottom:242.906667pt;}
.ya1{bottom:244.346667pt;}
.y4a{bottom:245.786667pt;}
.y32{bottom:248.346667pt;}
.ye7{bottom:252.506667pt;}
.y25{bottom:252.986667pt;}
.yce{bottom:253.786667pt;}
.y86{bottom:259.226667pt;}
.ya0{bottom:259.706667pt;}
.y49{bottom:261.146667pt;}
.y31{bottom:263.546667pt;}
.ye6{bottom:267.706667pt;}
.y24{bottom:268.186667pt;}
.ycd{bottom:269.146667pt;}
.y9f{bottom:275.066667pt;}
.y85{bottom:275.386667pt;}
.y48{bottom:276.506667pt;}
.y30{bottom:278.906667pt;}
.ye5{bottom:283.066667pt;}
.y23{bottom:284.026667pt;}
.ycc{bottom:284.346667pt;}
.y43{bottom:288.986667pt;}
.y9e{bottom:290.426667pt;}
.y84{bottom:290.746667pt;}
.y2f{bottom:294.266667pt;}
.ye4{bottom:298.426667pt;}
.y22{bottom:299.546667pt;}
.ycb{bottom:299.746667pt;}
.y9d{bottom:305.826667pt;}
.y83{bottom:307.106667pt;}
.y2e{bottom:309.626667pt;}
.ye3{bottom:313.826667pt;}
.y21{bottom:315.066667pt;}
.yca{bottom:315.106667pt;}
.y9c{bottom:321.186667pt;}
.y1c{bottom:321.506667pt;}
.y82{bottom:323.426667pt;}
.y2d{bottom:324.986667pt;}
.ye2{bottom:329.186667pt;}
.y20{bottom:330.426667pt;}
.yc9{bottom:330.466667pt;}
.y81{bottom:339.746667pt;}
.y2c{bottom:340.346667pt;}
.y9b{bottom:344.226667pt;}
.ye1{bottom:344.546667pt;}
.yc8{bottom:345.826667pt;}
.y1f{bottom:348.506667pt;}
.y2b{bottom:355.546667pt;}
.y80{bottom:355.906667pt;}
.ye0{bottom:359.746667pt;}
.yc7{bottom:361.186667pt;}
.y2a{bottom:370.906667pt;}
.y7f{bottom:371.266667pt;}
.y1e{bottom:372.826667pt;}
.ydf{bottom:375.106667pt;}
.yc6{bottom:376.386667pt;}
.y9a{bottom:380.226667pt;}
.y29{bottom:386.266667pt;}
.y7e{bottom:387.586667pt;}
.y1d{bottom:388.666667pt;}
.yde{bottom:390.466667pt;}
.yc5{bottom:391.746667pt;}
.y7d{bottom:402.946667pt;}
.ydd{bottom:405.826667pt;}
.yc4{bottom:407.106667pt;}
.y99{bottom:416.226667pt;}
.y7c{bottom:418.306667pt;}
.ydc{bottom:421.186667pt;}
.yc3{bottom:422.466667pt;}
.y7b{bottom:434.626667pt;}
.ydb{bottom:436.386667pt;}
.yc2{bottom:437.826667pt;}
.y7a{bottom:449.826667pt;}
.yda{bottom:451.746667pt;}
.y98{bottom:452.226667pt;}
.yc1{bottom:453.186667pt;}
.y79{bottom:466.146667pt;}
.yd9{bottom:467.106667pt;}
.yc0{bottom:476.226667pt;}
.y78{bottom:482.466667pt;}
.y77{bottom:497.826667pt;}
.y97{bottom:503.586667pt;}
.ybf{bottom:512.226667pt;}
.y76{bottom:513.186667pt;}
.y75{bottom:528.386667pt;}
.y96{bottom:539.613333pt;}
.y74{bottom:543.773333pt;}
.ybe{bottom:548.253333pt;}
.y73{bottom:559.133333pt;}
.y72{bottom:574.493333pt;}
.y95{bottom:575.613333pt;}
.ybd{bottom:577.053333pt;}
.y71{bottom:589.853333pt;}
.ybc{bottom:592.413333pt;}
.y70{bottom:605.213333pt;}
.ybb{bottom:607.773333pt;}
.y93{bottom:611.613333pt;}
.y6f{bottom:620.413333pt;}
.yba{bottom:623.133333pt;}
.y6e{bottom:635.773333pt;}
.yb9{bottom:638.493333pt;}
.y92{bottom:647.613333pt;}
.y6d{bottom:651.133333pt;}
.yb8{bottom:653.853333pt;}
.y6c{bottom:666.493333pt;}
.yb7{bottom:669.053333pt;}
.y6b{bottom:681.853333pt;}
.y90{bottom:683.613333pt;}
.yb6{bottom:684.413333pt;}
.y6a{bottom:697.213333pt;}
.yb5{bottom:699.773333pt;}
.y69{bottom:712.413333pt;}
.yb4{bottom:715.133333pt;}
.y1a{bottom:720.253333pt;}
.y68{bottom:727.773333pt;}
.yb2{bottom:738.173333pt;}
.y67{bottom:743.133333pt;}
.yf{bottom:746.493333pt;}
.y66{bottom:758.493333pt;}
.y65{bottom:773.893333pt;}
.yb3{bottom:774.213333pt;}
.y64{bottom:789.093333pt;}
.y63{bottom:804.453333pt;}
.yb0{bottom:810.213333pt;}
.y62{bottom:819.813333pt;}
.y61{bottom:835.173333pt;}
.yb1{bottom:846.213333pt;}
.y60{bottom:850.533333pt;}
.y5f{bottom:865.893333pt;}
.y5e{bottom:881.093333pt;}
.yad{bottom:882.213333pt;}
.y5d{bottom:896.453333pt;}
.y5c{bottom:911.813333pt;}
.yd{bottom:916.453333pt;}
.yaf{bottom:918.213333pt;}
.y5b{bottom:927.173333pt;}
.y6{bottom:939.013333pt;}
.y5a{bottom:942.533333pt;}
.yac{bottom:954.213333pt;}
.y59{bottom:957.893333pt;}
.y58{bottom:973.093333pt;}
.y57{bottom:988.453333pt;}
.yab{bottom:990.213333pt;}
.y56{bottom:1003.813333pt;}
.y55{bottom:1019.200000pt;}
.y54{bottom:1034.560000pt;}
.h21{height:15.360000pt;}
.hb{height:22.080000pt;}
.h13{height:26.240000pt;}
.h12{height:28.536563pt;}
.h2{height:29.312000pt;}
.h20{height:30.720000pt;}
.h11{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1d{height:32.512000pt;}
.h1a{height:37.499062pt;}
.h19{height:37.583438pt;}
.h1c{height:38.413438pt;}
.h1b{height:38.465312pt;}
.h1f{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h16{height:42.649687pt;}
.h18{height:44.215312pt;}
.h1e{height:46.454062pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h22{height:51.360000pt;}
.h23{height:51.392000pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:55.136250pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:169.946667pt;}
.h15{height:398.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:41.760000pt;}
.w13{width:53.920000pt;}
.w3{width:66.560000pt;}
.w17{width:69.600000pt;}
.w12{width:82.880000pt;}
.w11{width:83.072000pt;}
.wb{width:129.120000pt;}
.w5{width:138.106667pt;}
.w16{width:144.506667pt;}
.wd{width:148.506667pt;}
.wc{width:152.026667pt;}
.w10{width:166.586667pt;}
.w15{width:176.666667pt;}
.wa{width:177.666667pt;}
.w8{width:196.386667pt;}
.w14{width:258.786667pt;}
.wf{width:265.826667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x14{left:11.200000pt;}
.x18{left:15.520000pt;}
.xc{left:57.472000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x15{left:96.031988pt;}
.xd{left:112.666667pt;}
.x10{left:124.666667pt;}
.x11{left:130.746667pt;}
.x16{left:147.546655pt;}
.xe{left:158.586667pt;}
.xf{left:174.586667pt;}
.x12{left:191.266667pt;}
.x20{left:200.026655pt;}
.x6{left:202.906667pt;}
.x17{left:250.146667pt;}
.x9{left:253.506667pt;}
.x13{left:261.186667pt;}
.x7{left:306.626667pt;}
.x8{left:323.746667pt;}
.x21{left:331.106667pt;}
.xb{left:332.066667pt;}
.x1c{left:338.146667pt;}
.x24{left:352.066655pt;}
.x19{left:379.906667pt;}
.xa{left:402.186667pt;}
.x1d{left:505.373333pt;}
.x22{left:508.573333pt;}
.x1a{left:532.253333pt;}
.x1e{left:588.773333pt;}
.x23{left:653.413333pt;}
.x3{left:663.013333pt;}
.x1f{left:672.133333pt;}
.x1b{left:681.093333pt;}
}




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