
    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_78c9eef897d7ee7fe129be0a.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_3f7876472c0f6b617097d43b.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_c320252f6e1734f1b35369b5.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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_95c5423ad4c2c196cfbcc1c3.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_8c0ab5fd1ee5541091c394a0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e0eea7c8d880d66b8edee4fa.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ed0d09f64bb8b53d78c4cc40.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a4c62f8caa00ae5ac2c88f6c.woff2')format("woff");}.ffc{font-family:ffc;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);}
.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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsd{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.422000px;}
.ls10{letter-spacing:-0.726000px;}
.ls8{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.630000px;}
.lsc{letter-spacing:-0.570000px;}
.ls13{letter-spacing:-0.486600px;}
.ls9{letter-spacing:-0.089400px;}
.lsa{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.020160px;}
.ls5{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.311040px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.466800px;}
.ls3{letter-spacing:0.493920px;}
.ls1{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.869760px;}
.ls4{letter-spacing:1.080000px;}
.ls16{letter-spacing:1.440000px;}
.ls12{letter-spacing:13.680000px;}
.ls11{letter-spacing:63.826560px;}
.ls14{letter-spacing:201.024000px;}
.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;}
}
.wsa{word-spacing:-60.480000px;}
.wsc{word-spacing:-15.586800px;}
.wsb{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws7{word-spacing:-13.698000px;}
.ws4{word-spacing:-13.680000px;}
.ws6{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws9{word-spacing:-8.994000px;}
.ws5{word-spacing:-8.928000px;}
.ws8{word-spacing:0.000000px;}
._11{margin-left:-3.792480px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._5{width:4.418880px;}
._9{width:5.588160px;}
._b{width:7.398720px;}
._a{width:8.426880px;}
._7{width:9.645120px;}
._6{width:10.998720px;}
._8{width:12.009120px;}
._10{width:13.124160px;}
._f{width:14.699520px;}
._e{width:15.891840px;}
._1a{width:17.144640px;}
._13{width:18.385920px;}
._15{width:19.526400px;}
._16{width:20.564160px;}
._14{width:21.564960px;}
._19{width:22.940160px;}
._17{width:24.225120px;}
._c{width:26.015040px;}
._d{width:27.161280px;}
._18{width:64.080000px;}
._12{width:201.024000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fsc{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsb{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;}
.y49{bottom:2.869500px;}
.y5{bottom:3.960000px;}
.y5b{bottom:5.370000px;}
.y55{bottom:7.189500px;}
.y2{bottom:7.920000px;}
.y48{bottom:10.429500px;}
.yc3{bottom:12.600000px;}
.y4{bottom:21.240000px;}
.y54{bottom:24.469500px;}
.y3f{bottom:38.520000px;}
.y47{bottom:39.949500px;}
.y3{bottom:44.280000px;}
.y53{bottom:45.709500px;}
.y46{bottom:52.189500px;}
.y3e{bottom:55.845000px;}
.y7{bottom:57.636000px;}
.y52{bottom:64.789500px;}
.y45{bottom:65.149500px;}
.y3d{bottom:73.125000px;}
.y44{bottom:78.109500px;}
.y51{bottom:80.269500px;}
.y59{bottom:90.036000px;}
.y3c{bottom:90.405000px;}
.y50{bottom:96.109500px;}
.y58{bottom:96.876000px;}
.y43{bottom:99.709500px;}
.y4f{bottom:105.109500px;}
.y99{bottom:107.316000px;}
.y3b{bottom:107.685000px;}
.y57{bottom:108.036000px;}
.y98{bottom:114.156000px;}
.y4e{bottom:124.189500px;}
.y97{bottom:124.596000px;}
.y3a{bottom:124.965000px;}
.yf8{bottom:130.356000px;}
.yd4{bottom:131.436000px;}
.y56{bottom:134.316000px;}
.y4d{bottom:139.699500px;}
.y96{bottom:141.912000px;}
.y39{bottom:142.245000px;}
.yf7{bottom:147.672000px;}
.y40{bottom:148.405500px;}
.y95{bottom:148.752000px;}
.y4c{bottom:155.179500px;}
.yd3{bottom:158.835000px;}
.y38{bottom:159.165000px;}
.y94{bottom:159.915000px;}
.y42{bottom:162.019500px;}
.yf6{bottom:164.955000px;}
.yd2{bottom:165.675000px;}
.y4b{bottom:170.659500px;}
.y41{bottom:172.819500px;}
.yd1{bottom:176.115000px;}
.y37{bottom:176.445000px;}
.yf1{bottom:176.835000px;}
.yf5{bottom:182.235000px;}
.y4a{bottom:186.139500px;}
.y93{bottom:191.235000px;}
.yd0{bottom:193.395000px;}
.y36{bottom:193.755000px;}
.yf0{bottom:199.155000px;}
.ycf{bottom:200.235000px;}
.y91{bottom:208.515000px;}
.yce{bottom:210.675000px;}
.y35{bottom:211.035000px;}
.y92{bottom:215.355000px;}
.y90{bottom:225.795000px;}
.ycd{bottom:227.955000px;}
.y34{bottom:228.315000px;}
.yef{bottom:232.635000px;}
.ycc{bottom:234.795000px;}
.y8f{bottom:243.075000px;}
.ycb{bottom:245.235000px;}
.y33{bottom:245.595000px;}
.y8e{bottom:260.355000px;}
.yca{bottom:262.515000px;}
.y32{bottom:262.875000px;}
.yc9{bottom:269.355000px;}
.y8d{bottom:277.305000px;}
.y31{bottom:280.155000px;}
.yc8{bottom:280.545000px;}
.y8c{bottom:294.585000px;}
.y30{bottom:297.075000px;}
.yee{bottom:301.425000px;}
.yc7{bottom:308.625000px;}
.y8b{bottom:311.865000px;}
.y1c{bottom:315.795000px;}
.y2f{bottom:323.025000px;}
.yc6{bottom:325.905000px;}
.y8a{bottom:329.145000px;}
.y2e{bottom:338.505000px;}
.y1b{bottom:339.945000px;}
.y89{bottom:346.425000px;}
.ye{bottom:350.745000px;}
.y2d{bottom:353.985000px;}
.yc5{bottom:357.945000px;}
.y88{bottom:363.705000px;}
.y1a{bottom:364.065000px;}
.y2c{bottom:369.465000px;}
.yc4{bottom:375.945000px;}
.y87{bottom:380.985000px;}
.y2b{bottom:384.945000px;}
.y19{bottom:388.185000px;}
.y86{bottom:397.905000px;}
.yed{bottom:398.265000px;}
.y2a{bottom:400.425000px;}
.yc2{bottom:411.270000px;}
.y18{bottom:412.305000px;}
.yec{bottom:415.590000px;}
.y29{bottom:416.265000px;}
.y85{bottom:424.590000px;}
.y28{bottom:431.745000px;}
.yeb{bottom:432.870000px;}
.y17{bottom:436.785000px;}
.y84{bottom:441.870000px;}
.y27{bottom:447.225000px;}
.yc1{bottom:447.630000px;}
.yea{bottom:450.150000px;}
.yc0{bottom:453.030000px;}
.y83{bottom:459.150000px;}
.y16{bottom:460.950000px;}
.y26{bottom:462.750000px;}
.ye9{bottom:467.430000px;}
.y82{bottom:476.430000px;}
.y25{bottom:478.230000px;}
.ye8{bottom:484.350000px;}
.y15{bottom:485.070000px;}
.y81{bottom:493.350000px;}
.y24{bottom:493.710000px;}
.ybf{bottom:495.150000px;}
.ye6{bottom:501.630000px;}
.ye7{bottom:508.470000px;}
.y14{bottom:509.190000px;}
.y80{bottom:510.630000px;}
.ybd{bottom:512.430000px;}
.yf4{bottom:518.550000px;}
.ye5{bottom:518.910000px;}
.ybe{bottom:519.270000px;}
.y23{bottom:524.670000px;}
.y7f{bottom:527.910000px;}
.ybc{bottom:529.710000px;}
.y13{bottom:533.310000px;}
.ye4{bottom:536.190000px;}
.y22{bottom:540.510000px;}
.y7e{bottom:545.220000px;}
.ybb{bottom:547.020000px;}
.ye3{bottom:553.500000px;}
.y21{bottom:555.990000px;}
.y12{bottom:557.430000px;}
.y7d{bottom:562.500000px;}
.yba{bottom:564.300000px;}
.ye2{bottom:570.780000px;}
.y20{bottom:571.470000px;}
.y7c{bottom:579.780000px;}
.y11{bottom:581.550000px;}
.yb9{bottom:581.580000px;}
.y1f{bottom:586.980000px;}
.ye1{bottom:588.060000px;}
.y7b{bottom:597.060000px;}
.yb8{bottom:598.500000px;}
.y1e{bottom:602.460000px;}
.ye0{bottom:605.340000px;}
.y10{bottom:605.700000px;}
.y7a{bottom:614.340000px;}
.y1d{bottom:617.580000px;}
.ydf{bottom:622.620000px;}
.yb6{bottom:625.140000px;}
.yf{bottom:629.820000px;}
.y79{bottom:631.620000px;}
.yb7{bottom:631.980000px;}
.yde{bottom:639.900000px;}
.yb5{bottom:642.420000px;}
.y78{bottom:648.900000px;}
.yb4{bottom:659.700000px;}
.y77{bottom:666.180000px;}
.yb3{bottom:677.010000px;}
.y76{bottom:683.130000px;}
.yb2{bottom:693.930000px;}
.y75{bottom:700.410000px;}
.yb1{bottom:711.210000px;}
.y74{bottom:717.690000px;}
.yaf{bottom:728.490000px;}
.y73{bottom:734.970000px;}
.yb0{bottom:735.330000px;}
.yae{bottom:745.770000px;}
.y72{bottom:752.250000px;}
.yac{bottom:763.050000px;}
.y71{bottom:769.530000px;}
.yad{bottom:769.890000px;}
.yfb{bottom:778.170000px;}
.yab{bottom:780.330000px;}
.y70{bottom:786.810000px;}
.yfa{bottom:795.810000px;}
.yaa{bottom:797.250000px;}
.y6f{bottom:803.775000px;}
.ydd{bottom:804.135000px;}
.yf9{bottom:813.135000px;}
.ya9{bottom:814.935000px;}
.ydc{bottom:821.415000px;}
.y6d{bottom:830.415000px;}
.ya8{bottom:832.215000px;}
.y6e{bottom:837.255000px;}
.ydb{bottom:838.695000px;}
.y6c{bottom:847.695000px;}
.ya7{bottom:849.495000px;}
.yf3{bottom:855.615000px;}
.yda{bottom:855.975000px;}
.y6b{bottom:864.975000px;}
.ya6{bottom:866.775000px;}
.yd9{bottom:873.255000px;}
.y6a{bottom:882.255000px;}
.ya5{bottom:883.695000px;}
.yf2{bottom:889.095000px;}
.yd8{bottom:890.175000px;}
.y69{bottom:899.175000px;}
.ya4{bottom:900.975000px;}
.yd7{bottom:907.095000px;}
.y67{bottom:916.455000px;}
.ya3{bottom:918.255000px;}
.y68{bottom:923.295000px;}
.y66{bottom:933.765000px;}
.ya2{bottom:935.565000px;}
.y65{bottom:951.045000px;}
.ya1{bottom:952.485000px;}
.y64{bottom:968.325000px;}
.y9f{bottom:979.125000px;}
.y63{bottom:985.605000px;}
.ya0{bottom:985.965000px;}
.yd{bottom:992.805000px;}
.y9e{bottom:997.485000px;}
.y62{bottom:1002.885000px;}
.yc{bottom:1005.045000px;}
.yd6{bottom:1009.725000px;}
.y9d{bottom:1015.845000px;}
.y61{bottom:1020.165000px;}
.yb{bottom:1022.325000px;}
.yd5{bottom:1027.005000px;}
.ya{bottom:1032.405000px;}
.y9c{bottom:1034.205000px;}
.y60{bottom:1037.445000px;}
.y9b{bottom:1052.565000px;}
.y5f{bottom:1054.725000px;}
.y9{bottom:1059.765000px;}
.y9a{bottom:1070.970000px;}
.y5e{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.y5d{bottom:1088.970000px;}
.y5a{bottom:1091.520000px;}
.y5c{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.hc{height:4.165313px;}
.h16{height:5.650313px;}
.h20{height:17.265000px;}
.h1d{height:18.372656px;}
.h7{height:24.348516px;}
.h19{height:27.720000px;}
.h14{height:29.678906px;}
.h1e{height:34.545000px;}
.h1f{height:34.590000px;}
.hb{height:38.158594px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h1b{height:42.229688px;}
.h10{height:53.677969px;}
.h15{height:55.147500px;}
.h8{height:58.050000px;}
.h17{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.h11{height:60.952500px;}
.h1c{height:62.163910px;}
.h1a{height:63.455625px;}
.h12{height:65.518594px;}
.h3{height:65.884219px;}
.ha{height:66.543750px;}
.h2{height:81.390000px;}
.h9{height:84.172500px;}
.h4{height:116.640000px;}
.h13{height:201.600000px;}
.hd{height:639.165000px;}
.h1{height:1262.250000px;}
.h18{height:1262.516085px;}
.h0{height:1262.520000px;}
.w8{width:39.622500px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w7{width:163.080000px;}
.w9{width:590.265000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w6{width:893.156250px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:6.876000px;}
.x17{left:8.295000px;}
.x4{left:13.305000px;}
.x15{left:16.546500px;}
.x19{left:18.346500px;}
.x5{left:19.425000px;}
.x32{left:21.585000px;}
.x34{left:27.345000px;}
.x14{left:29.146500px;}
.x6{left:43.575000px;}
.x1a{left:47.542500px;}
.xf{left:50.782500px;}
.xe{left:55.102500px;}
.x1c{left:57.262500px;}
.x1b{left:66.265500px;}
.x12{left:73.105500px;}
.x36{left:74.535000px;}
.x11{left:76.705500px;}
.x1{left:78.529500px;}
.x13{left:80.305500px;}
.x7{left:86.436000px;}
.x20{left:91.476000px;}
.x2{left:95.425500px;}
.x37{left:96.516000px;}
.x1d{left:102.985500px;}
.x18{left:106.945500px;}
.x10{left:124.585500px;}
.x30{left:131.449500px;}
.x1e{left:140.472000px;}
.x33{left:162.780000px;}
.x42{left:163.871250px;}
.x31{left:171.810000px;}
.x43{left:173.955000px;}
.x3{left:182.250000px;}
.xc{left:197.715000px;}
.xb{left:198.795000px;}
.x16{left:218.970000px;}
.x35{left:231.570000px;}
.x38{left:257.141250px;}
.x39{left:267.225000px;}
.x1f{left:302.505000px;}
.x3c{left:318.746250px;}
.x3d{left:328.830000px;}
.x40{left:346.826250px;}
.x41{left:356.910000px;}
.x3e{left:382.826250px;}
.x3f{left:392.910000px;}
.x24{left:519.326250px;}
.x25{left:524.370000px;}
.x2c{left:526.526250px;}
.x2d{left:531.570000px;}
.x26{left:540.566250px;}
.x27{left:545.610000px;}
.x22{left:556.046250px;}
.x23{left:561.090000px;}
.xa{left:582.015000px;}
.x28{left:590.651250px;}
.x29{left:595.695000px;}
.x3a{left:636.011250px;}
.x3b{left:646.095000px;}
.x2e{left:652.931250px;}
.x2f{left:657.975000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.x2a{left:798.446250px;}
.x2b{left:803.490000px;}
.xd{left:807.090000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsd{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.264000pt;}
.ls10{letter-spacing:-0.645333pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.560000pt;}
.lsc{letter-spacing:-0.506667pt;}
.ls13{letter-spacing:-0.432533pt;}
.ls9{letter-spacing:-0.079467pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.017920pt;}
.ls5{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.276480pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.414933pt;}
.ls3{letter-spacing:0.439040pt;}
.ls1{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.773120pt;}
.ls4{letter-spacing:0.960000pt;}
.ls16{letter-spacing:1.280000pt;}
.ls12{letter-spacing:12.160000pt;}
.ls11{letter-spacing:56.734720pt;}
.ls14{letter-spacing:178.688000pt;}
.wsa{word-spacing:-53.760000pt;}
.wsc{word-spacing:-13.854933pt;}
.wsb{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws7{word-spacing:-12.176000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws6{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws9{word-spacing:-7.994667pt;}
.ws5{word-spacing:-7.936000pt;}
.ws8{word-spacing:0.000000pt;}
._11{margin-left:-3.371093pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._5{width:3.927893pt;}
._9{width:4.967253pt;}
._b{width:6.576640pt;}
._a{width:7.490560pt;}
._7{width:8.573440pt;}
._6{width:9.776640pt;}
._8{width:10.674773pt;}
._10{width:11.665920pt;}
._f{width:13.066240pt;}
._e{width:14.126080pt;}
._1a{width:15.239680pt;}
._13{width:16.343040pt;}
._15{width:17.356800pt;}
._16{width:18.279253pt;}
._14{width:19.168853pt;}
._19{width:20.391253pt;}
._17{width:21.533440pt;}
._c{width:23.124480pt;}
._d{width:24.143360pt;}
._18{width:56.960000pt;}
._12{width:178.688000pt;}
.fs7{font-size:5.120000pt;}
.fsc{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsb{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;}
.y49{bottom:2.550667pt;}
.y5{bottom:3.520000pt;}
.y5b{bottom:4.773333pt;}
.y55{bottom:6.390667pt;}
.y2{bottom:7.040000pt;}
.y48{bottom:9.270667pt;}
.yc3{bottom:11.200000pt;}
.y4{bottom:18.880000pt;}
.y54{bottom:21.750667pt;}
.y3f{bottom:34.240000pt;}
.y47{bottom:35.510667pt;}
.y3{bottom:39.360000pt;}
.y53{bottom:40.630667pt;}
.y46{bottom:46.390667pt;}
.y3e{bottom:49.640000pt;}
.y7{bottom:51.232000pt;}
.y52{bottom:57.590667pt;}
.y45{bottom:57.910667pt;}
.y3d{bottom:65.000000pt;}
.y44{bottom:69.430667pt;}
.y51{bottom:71.350667pt;}
.y59{bottom:80.032000pt;}
.y3c{bottom:80.360000pt;}
.y50{bottom:85.430667pt;}
.y58{bottom:86.112000pt;}
.y43{bottom:88.630667pt;}
.y4f{bottom:93.430667pt;}
.y99{bottom:95.392000pt;}
.y3b{bottom:95.720000pt;}
.y57{bottom:96.032000pt;}
.y98{bottom:101.472000pt;}
.y4e{bottom:110.390667pt;}
.y97{bottom:110.752000pt;}
.y3a{bottom:111.080000pt;}
.yf8{bottom:115.872000pt;}
.yd4{bottom:116.832000pt;}
.y56{bottom:119.392000pt;}
.y4d{bottom:124.177333pt;}
.y96{bottom:126.144000pt;}
.y39{bottom:126.440000pt;}
.yf7{bottom:131.264000pt;}
.y40{bottom:131.916000pt;}
.y95{bottom:132.224000pt;}
.y4c{bottom:137.937333pt;}
.yd3{bottom:141.186667pt;}
.y38{bottom:141.480000pt;}
.y94{bottom:142.146667pt;}
.y42{bottom:144.017333pt;}
.yf6{bottom:146.626667pt;}
.yd2{bottom:147.266667pt;}
.y4b{bottom:151.697333pt;}
.y41{bottom:153.617333pt;}
.yd1{bottom:156.546667pt;}
.y37{bottom:156.840000pt;}
.yf1{bottom:157.186667pt;}
.yf5{bottom:161.986667pt;}
.y4a{bottom:165.457333pt;}
.y93{bottom:169.986667pt;}
.yd0{bottom:171.906667pt;}
.y36{bottom:172.226667pt;}
.yf0{bottom:177.026667pt;}
.ycf{bottom:177.986667pt;}
.y91{bottom:185.346667pt;}
.yce{bottom:187.266667pt;}
.y35{bottom:187.586667pt;}
.y92{bottom:191.426667pt;}
.y90{bottom:200.706667pt;}
.ycd{bottom:202.626667pt;}
.y34{bottom:202.946667pt;}
.yef{bottom:206.786667pt;}
.ycc{bottom:208.706667pt;}
.y8f{bottom:216.066667pt;}
.ycb{bottom:217.986667pt;}
.y33{bottom:218.306667pt;}
.y8e{bottom:231.426667pt;}
.yca{bottom:233.346667pt;}
.y32{bottom:233.666667pt;}
.yc9{bottom:239.426667pt;}
.y8d{bottom:246.493333pt;}
.y31{bottom:249.026667pt;}
.yc8{bottom:249.373333pt;}
.y8c{bottom:261.853333pt;}
.y30{bottom:264.066667pt;}
.yee{bottom:267.933333pt;}
.yc7{bottom:274.333333pt;}
.y8b{bottom:277.213333pt;}
.y1c{bottom:280.706667pt;}
.y2f{bottom:287.133333pt;}
.yc6{bottom:289.693333pt;}
.y8a{bottom:292.573333pt;}
.y2e{bottom:300.893333pt;}
.y1b{bottom:302.173333pt;}
.y89{bottom:307.933333pt;}
.ye{bottom:311.773333pt;}
.y2d{bottom:314.653333pt;}
.yc5{bottom:318.173333pt;}
.y88{bottom:323.293333pt;}
.y1a{bottom:323.613333pt;}
.y2c{bottom:328.413333pt;}
.yc4{bottom:334.173333pt;}
.y87{bottom:338.653333pt;}
.y2b{bottom:342.173333pt;}
.y19{bottom:345.053333pt;}
.y86{bottom:353.693333pt;}
.yed{bottom:354.013333pt;}
.y2a{bottom:355.933333pt;}
.yc2{bottom:365.573333pt;}
.y18{bottom:366.493333pt;}
.yec{bottom:369.413333pt;}
.y29{bottom:370.013333pt;}
.y85{bottom:377.413333pt;}
.y28{bottom:383.773333pt;}
.yeb{bottom:384.773333pt;}
.y17{bottom:388.253333pt;}
.y84{bottom:392.773333pt;}
.y27{bottom:397.533333pt;}
.yc1{bottom:397.893333pt;}
.yea{bottom:400.133333pt;}
.yc0{bottom:402.693333pt;}
.y83{bottom:408.133333pt;}
.y16{bottom:409.733333pt;}
.y26{bottom:411.333333pt;}
.ye9{bottom:415.493333pt;}
.y82{bottom:423.493333pt;}
.y25{bottom:425.093333pt;}
.ye8{bottom:430.533333pt;}
.y15{bottom:431.173333pt;}
.y81{bottom:438.533333pt;}
.y24{bottom:438.853333pt;}
.ybf{bottom:440.133333pt;}
.ye6{bottom:445.893333pt;}
.ye7{bottom:451.973333pt;}
.y14{bottom:452.613333pt;}
.y80{bottom:453.893333pt;}
.ybd{bottom:455.493333pt;}
.yf4{bottom:460.933333pt;}
.ye5{bottom:461.253333pt;}
.ybe{bottom:461.573333pt;}
.y23{bottom:466.373333pt;}
.y7f{bottom:469.253333pt;}
.ybc{bottom:470.853333pt;}
.y13{bottom:474.053333pt;}
.ye4{bottom:476.613333pt;}
.y22{bottom:480.453333pt;}
.y7e{bottom:484.640000pt;}
.ybb{bottom:486.240000pt;}
.ye3{bottom:492.000000pt;}
.y21{bottom:494.213333pt;}
.y12{bottom:495.493333pt;}
.y7d{bottom:500.000000pt;}
.yba{bottom:501.600000pt;}
.ye2{bottom:507.360000pt;}
.y20{bottom:507.973333pt;}
.y7c{bottom:515.360000pt;}
.y11{bottom:516.933333pt;}
.yb9{bottom:516.960000pt;}
.y1f{bottom:521.760000pt;}
.ye1{bottom:522.720000pt;}
.y7b{bottom:530.720000pt;}
.yb8{bottom:532.000000pt;}
.y1e{bottom:535.520000pt;}
.ye0{bottom:538.080000pt;}
.y10{bottom:538.400000pt;}
.y7a{bottom:546.080000pt;}
.y1d{bottom:548.960000pt;}
.ydf{bottom:553.440000pt;}
.yb6{bottom:555.680000pt;}
.yf{bottom:559.840000pt;}
.y79{bottom:561.440000pt;}
.yb7{bottom:561.760000pt;}
.yde{bottom:568.800000pt;}
.yb5{bottom:571.040000pt;}
.y78{bottom:576.800000pt;}
.yb4{bottom:586.400000pt;}
.y77{bottom:592.160000pt;}
.yb3{bottom:601.786667pt;}
.y76{bottom:607.226667pt;}
.yb2{bottom:616.826667pt;}
.y75{bottom:622.586667pt;}
.yb1{bottom:632.186667pt;}
.y74{bottom:637.946667pt;}
.yaf{bottom:647.546667pt;}
.y73{bottom:653.306667pt;}
.yb0{bottom:653.626667pt;}
.yae{bottom:662.906667pt;}
.y72{bottom:668.666667pt;}
.yac{bottom:678.266667pt;}
.y71{bottom:684.026667pt;}
.yad{bottom:684.346667pt;}
.yfb{bottom:691.706667pt;}
.yab{bottom:693.626667pt;}
.y70{bottom:699.386667pt;}
.yfa{bottom:707.386667pt;}
.yaa{bottom:708.666667pt;}
.y6f{bottom:714.466667pt;}
.ydd{bottom:714.786667pt;}
.yf9{bottom:722.786667pt;}
.ya9{bottom:724.386667pt;}
.ydc{bottom:730.146667pt;}
.y6d{bottom:738.146667pt;}
.ya8{bottom:739.746667pt;}
.y6e{bottom:744.226667pt;}
.ydb{bottom:745.506667pt;}
.y6c{bottom:753.506667pt;}
.ya7{bottom:755.106667pt;}
.yf3{bottom:760.546667pt;}
.yda{bottom:760.866667pt;}
.y6b{bottom:768.866667pt;}
.ya6{bottom:770.466667pt;}
.yd9{bottom:776.226667pt;}
.y6a{bottom:784.226667pt;}
.ya5{bottom:785.506667pt;}
.yf2{bottom:790.306667pt;}
.yd8{bottom:791.266667pt;}
.y69{bottom:799.266667pt;}
.ya4{bottom:800.866667pt;}
.yd7{bottom:806.306667pt;}
.y67{bottom:814.626667pt;}
.ya3{bottom:816.226667pt;}
.y68{bottom:820.706667pt;}
.y66{bottom:830.013333pt;}
.ya2{bottom:831.613333pt;}
.y65{bottom:845.373333pt;}
.ya1{bottom:846.653333pt;}
.y64{bottom:860.733333pt;}
.y9f{bottom:870.333333pt;}
.y63{bottom:876.093333pt;}
.ya0{bottom:876.413333pt;}
.yd{bottom:882.493333pt;}
.y9e{bottom:886.653333pt;}
.y62{bottom:891.453333pt;}
.yc{bottom:893.373333pt;}
.yd6{bottom:897.533333pt;}
.y9d{bottom:902.973333pt;}
.y61{bottom:906.813333pt;}
.yb{bottom:908.733333pt;}
.yd5{bottom:912.893333pt;}
.ya{bottom:917.693333pt;}
.y9c{bottom:919.293333pt;}
.y60{bottom:922.173333pt;}
.y9b{bottom:935.613333pt;}
.y5f{bottom:937.533333pt;}
.y9{bottom:942.013333pt;}
.y9a{bottom:951.973333pt;}
.y5e{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.y5d{bottom:967.973333pt;}
.y5a{bottom:970.240000pt;}
.y5c{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.hc{height:3.702500pt;}
.h16{height:5.022500pt;}
.h20{height:15.346667pt;}
.h1d{height:16.331250pt;}
.h7{height:21.643125pt;}
.h19{height:24.640000pt;}
.h14{height:26.381250pt;}
.h1e{height:30.706667pt;}
.h1f{height:30.746667pt;}
.hb{height:33.918750pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h1b{height:37.537500pt;}
.h10{height:47.713750pt;}
.h15{height:49.020000pt;}
.h8{height:51.600000pt;}
.h17{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.h11{height:54.180000pt;}
.h1c{height:55.256809pt;}
.h1a{height:56.405000pt;}
.h12{height:58.238750pt;}
.h3{height:58.563750pt;}
.ha{height:59.150000pt;}
.h2{height:72.346667pt;}
.h9{height:74.820000pt;}
.h4{height:103.680000pt;}
.h13{height:179.200000pt;}
.hd{height:568.146667pt;}
.h1{height:1122.000000pt;}
.h18{height:1122.236520pt;}
.h0{height:1122.240000pt;}
.w8{width:35.220000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w7{width:144.960000pt;}
.w9{width:524.680000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w6{width:793.916667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.112000pt;}
.x17{left:7.373333pt;}
.x4{left:11.826667pt;}
.x15{left:14.708000pt;}
.x19{left:16.308000pt;}
.x5{left:17.266667pt;}
.x32{left:19.186667pt;}
.x34{left:24.306667pt;}
.x14{left:25.908000pt;}
.x6{left:38.733333pt;}
.x1a{left:42.260000pt;}
.xf{left:45.140000pt;}
.xe{left:48.980000pt;}
.x1c{left:50.900000pt;}
.x1b{left:58.902667pt;}
.x12{left:64.982667pt;}
.x36{left:66.253333pt;}
.x11{left:68.182667pt;}
.x1{left:69.804000pt;}
.x13{left:71.382667pt;}
.x7{left:76.832000pt;}
.x20{left:81.312000pt;}
.x2{left:84.822667pt;}
.x37{left:85.792000pt;}
.x1d{left:91.542667pt;}
.x18{left:95.062667pt;}
.x10{left:110.742667pt;}
.x30{left:116.844000pt;}
.x1e{left:124.864000pt;}
.x33{left:144.693333pt;}
.x42{left:145.663333pt;}
.x31{left:152.720000pt;}
.x43{left:154.626667pt;}
.x3{left:162.000000pt;}
.xc{left:175.746667pt;}
.xb{left:176.706667pt;}
.x16{left:194.640000pt;}
.x35{left:205.840000pt;}
.x38{left:228.570000pt;}
.x39{left:237.533333pt;}
.x1f{left:268.893333pt;}
.x3c{left:283.330000pt;}
.x3d{left:292.293333pt;}
.x40{left:308.290000pt;}
.x41{left:317.253333pt;}
.x3e{left:340.290000pt;}
.x3f{left:349.253333pt;}
.x24{left:461.623333pt;}
.x25{left:466.106667pt;}
.x2c{left:468.023333pt;}
.x2d{left:472.506667pt;}
.x26{left:480.503333pt;}
.x27{left:484.986667pt;}
.x22{left:494.263333pt;}
.x23{left:498.746667pt;}
.xa{left:517.346667pt;}
.x28{left:525.023333pt;}
.x29{left:529.506667pt;}
.x3a{left:565.343333pt;}
.x3b{left:574.306667pt;}
.x2e{left:580.383333pt;}
.x2f{left:584.866667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.x2a{left:709.730000pt;}
.x2b{left:714.213333pt;}
.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; }
  