
    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_defca4745d71b77212ec84c0.woff')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_d9a235825d1a07d3021ee8e2.woff')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_d1ddcd1e62bbb22af3dce24d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_770cc474c229c330b3d9bd75.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1c43af39073b0ba4cb5fb8b5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.767090;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_3197f93061f9f3bce952064b.woff')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_062c35f085003d3ab1cb5baf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_0ba4a45936c102133da9b69d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fd64b2f73f497e4201cbffb3.woff')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_22aa9e3116bad041ee0941dd.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')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_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_29d341fd16a3b19cedac0a6a.woff')format("woff");}.ffd{font-family:ffd;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;}
.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:-20.880000px;}
.v3{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls7{letter-spacing:-0.226200px;}
.ls9{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.089400px;}
.ls8{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:10.260000px;}
.lsf{letter-spacing:16.506720px;}
.lsd{letter-spacing:46.026720px;}
.lsa{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;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.ws3{word-spacing:-0.059760px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.075680px;}
._3{width:2.104560px;}
._2{width:3.564480px;}
._d{width:4.945680px;}
._c{width:6.210000px;}
._12{width:7.276320px;}
._7{width:8.406000px;}
._8{width:10.254000px;}
._6{width:11.340000px;}
._9{width:12.478320px;}
._15{width:13.744800px;}
._4{width:15.997680px;}
._5{width:17.297280px;}
._b{width:18.846000px;}
._a{width:20.142000px;}
._13{width:21.389040px;}
._f{width:23.045040px;}
._e{width:24.138000px;}
._14{width:26.294400px;}
._11{width:27.668880px;}
._10{width:28.804320px;}
.fc9{color:rgb(243,156,18);}
.fc8{color:rgb(39,174,96);}
.fc7{color:rgb(192,57,43);}
.fc5{color:rgb(231,76,60);}
.fc4{color:rgb(44,62,80);}
.fc2{color:rgb(0,0,255);}
.fc6{color:rgb(41,128,185);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:0.540000px;}
.y4b{bottom:2.160000px;}
.y5{bottom:3.780000px;}
.y58{bottom:5.010000px;}
.y8d{bottom:5.940000px;}
.y96{bottom:6.120000px;}
.ya7{bottom:6.150000px;}
.y9a{bottom:6.165000px;}
.y3e{bottom:7.920000px;}
.y2{bottom:9.930000px;}
.y4a{bottom:10.260000px;}
.y8b{bottom:15.840000px;}
.yaa{bottom:16.020000px;}
.ya5{bottom:16.050000px;}
.y8f{bottom:16.200000px;}
.y92{bottom:16.380000px;}
.y4{bottom:22.710000px;}
.y8c{bottom:25.740000px;}
.ya1{bottom:25.920000px;}
.ya6{bottom:25.950000px;}
.yb1{bottom:25.965000px;}
.y3d{bottom:27.765000px;}
.y56{bottom:28.260000px;}
.y49{bottom:39.960000px;}
.y55{bottom:46.980000px;}
.y3c{bottom:47.565000px;}
.y3{bottom:47.910000px;}
.y48{bottom:51.120000px;}
.y7{bottom:57.060000px;}
.y47{bottom:62.274000px;}
.y54{bottom:66.234000px;}
.y3b{bottom:67.365000px;}
.y46{bottom:73.974000px;}
.y53{bottom:82.074000px;}
.y45{bottom:86.934000px;}
.y3a{bottom:87.165000px;}
.y40{bottom:91.116000px;}
.ydf{bottom:91.476000px;}
.y52{bottom:99.174000px;}
.y44{bottom:100.074000px;}
.y39{bottom:107.145000px;}
.y8a{bottom:109.116000px;}
.yde{bottom:111.276000px;}
.y51{bottom:113.934000px;}
.y50{bottom:121.854000px;}
.y43{bottom:122.034000px;}
.y38{bottom:126.945000px;}
.y89{bottom:128.916000px;}
.ydd{bottom:131.256000px;}
.yb8{bottom:135.576000px;}
.y4f{bottom:137.334000px;}
.y37{bottom:146.745000px;}
.y88{bottom:148.716000px;}
.ydc{bottom:151.050000px;}
.y4e{bottom:152.994000px;}
.yb7{bottom:155.370000px;}
.y36{bottom:166.545000px;}
.y4d{bottom:168.474000px;}
.y87{bottom:168.510000px;}
.ydb{bottom:170.850000px;}
.yb6{bottom:175.350000px;}
.y42{bottom:183.954000px;}
.y35{bottom:186.345000px;}
.y86{bottom:188.490000px;}
.yda{bottom:190.650000px;}
.y41{bottom:194.574000px;}
.yb5{bottom:195.150000px;}
.y4c{bottom:199.434000px;}
.y34{bottom:206.325000px;}
.y85{bottom:208.290000px;}
.yd9{bottom:210.450000px;}
.yb4{bottom:214.950000px;}
.y33{bottom:226.125000px;}
.y84{bottom:228.090000px;}
.yb3{bottom:229.710000px;}
.yd8{bottom:230.430000px;}
.y32{bottom:245.925000px;}
.y83{bottom:247.890000px;}
.yd7{bottom:250.230000px;}
.y1f{bottom:263.565000px;}
.y31{bottom:265.725000px;}
.y82{bottom:267.690000px;}
.yd6{bottom:270.030000px;}
.yb2{bottom:270.210000px;}
.y30{bottom:285.555000px;}
.y81{bottom:287.670000px;}
.y1e{bottom:287.715000px;}
.yd5{bottom:289.830000px;}
.y2f{bottom:305.535000px;}
.y80{bottom:307.470000px;}
.yd4{bottom:309.630000px;}
.yb0{bottom:310.530000px;}
.y1d{bottom:312.015000px;}
.y11{bottom:315.750000px;}
.y2e{bottom:324.795000px;}
.y7f{bottom:327.270000px;}
.yd3{bottom:329.655000px;}
.y1c{bottom:336.135000px;}
.y2d{bottom:342.615000px;}
.y7e{bottom:347.115000px;}
.yd2{bottom:349.455000px;}
.yaf{bottom:351.075000px;}
.y1b{bottom:360.255000px;}
.y2c{bottom:360.435000px;}
.y7d{bottom:366.915000px;}
.yd1{bottom:369.255000px;}
.yae{bottom:371.595000px;}
.y2b{bottom:378.255000px;}
.y1a{bottom:384.375000px;}
.y7c{bottom:386.895000px;}
.yd0{bottom:389.055000px;}
.y2a{bottom:396.255000px;}
.yad{bottom:398.055000px;}
.y7b{bottom:406.695000px;}
.y19{bottom:408.495000px;}
.ycf{bottom:408.855000px;}
.y29{bottom:414.075000px;}
.yac{bottom:417.855000px;}
.y7a{bottom:426.495000px;}
.yce{bottom:428.835000px;}
.y28{bottom:431.895000px;}
.y18{bottom:432.615000px;}
.y79{bottom:446.295000px;}
.ycd{bottom:448.635000px;}
.y27{bottom:449.715000px;}
.y17{bottom:456.915000px;}
.y78{bottom:466.095000px;}
.y26{bottom:467.535000px;}
.yab{bottom:473.115000px;}
.y16{bottom:481.035000px;}
.y25{bottom:485.355000px;}
.y77{bottom:486.075000px;}
.ycc{bottom:486.795000px;}
.y24{bottom:503.355000px;}
.ycb{bottom:504.075000px;}
.y15{bottom:505.155000px;}
.y76{bottom:505.875000px;}
.ya9{bottom:513.435000px;}
.y23{bottom:521.175000px;}
.yca{bottom:521.355000px;}
.y75{bottom:525.675000px;}
.y14{bottom:529.275000px;}
.yc9{bottom:538.635000px;}
.y22{bottom:538.995000px;}
.y74{bottom:545.475000px;}
.y13{bottom:553.440000px;}
.ya8{bottom:553.935000px;}
.yc8{bottom:555.915000px;}
.y21{bottom:556.860000px;}
.y73{bottom:565.275000px;}
.yc7{bottom:573.195000px;}
.y20{bottom:574.680000px;}
.y12{bottom:577.560000px;}
.y72{bottom:585.255000px;}
.ya4{bottom:594.255000px;}
.y71{bottom:605.085000px;}
.ye8{bottom:614.625000px;}
.y70{bottom:624.885000px;}
.ya3{bottom:634.785000px;}
.ye7{bottom:635.145000px;}
.y6f{bottom:644.685000px;}
.ye6{bottom:655.665000px;}
.y6e{bottom:664.485000px;}
.yc6{bottom:665.205000px;}
.yee{bottom:673.125000px;}
.ya2{bottom:675.285000px;}
.ye5{bottom:676.365000px;}
.y6d{bottom:684.465000px;}
.yed{bottom:692.925000px;}
.yc5{bottom:695.805000px;}
.ye4{bottom:696.885000px;}
.y6c{bottom:704.265000px;}
.yec{bottom:712.905000px;}
.ya0{bottom:715.605000px;}
.ye3{bottom:717.585000px;}
.y6b{bottom:724.065000px;}
.yeb{bottom:732.705000px;}
.ye2{bottom:738.105000px;}
.y6a{bottom:743.865000px;}
.yea{bottom:752.505000px;}
.yc4{bottom:753.945000px;}
.y9f{bottom:756.105000px;}
.ye1{bottom:758.625000px;}
.y69{bottom:763.665000px;}
.ye9{bottom:772.305000px;}
.ye0{bottom:779.325000px;}
.y9e{bottom:782.385000px;}
.y68{bottom:783.645000px;}
.yc3{bottom:792.105000px;}
.y9d{bottom:802.185000px;}
.y67{bottom:803.445000px;}
.yc2{bottom:812.085000px;}
.y9b{bottom:817.125000px;}
.y66{bottom:823.245000px;}
.yc1{bottom:831.885000px;}
.y9c{bottom:837.645000px;}
.y65{bottom:843.045000px;}
.yc0{bottom:851.685000px;}
.y99{bottom:858.165000px;}
.y64{bottom:863.970000px;}
.ybf{bottom:871.530000px;}
.y97{bottom:878.910000px;}
.y63{bottom:885.030000px;}
.ybe{bottom:891.330000px;}
.y98{bottom:899.430000px;}
.y10{bottom:905.730000px;}
.y62{bottom:905.910000px;}
.ybd{bottom:911.310000px;}
.yf{bottom:913.110000px;}
.y94{bottom:919.950000px;}
.y61{bottom:926.790000px;}
.ybc{bottom:931.110000px;}
.ye{bottom:933.810000px;}
.y95{bottom:940.650000px;}
.y60{bottom:947.670000px;}
.ybb{bottom:950.910000px;}
.yd{bottom:959.190000px;}
.y91{bottom:961.170000px;}
.y5f{bottom:968.550000px;}
.yba{bottom:970.710000px;}
.yc{bottom:973.950000px;}
.y93{bottom:981.870000px;}
.y5e{bottom:989.430000px;}
.yb9{bottom:990.510000px;}
.yb{bottom:993.750000px;}
.y8e{bottom:1002.390000px;}
.y5d{bottom:1010.490000px;}
.ya{bottom:1015.890000px;}
.y90{bottom:1022.910000px;}
.y5c{bottom:1030.290000px;}
.y9{bottom:1043.610000px;}
.y5b{bottom:1050.090000px;}
.y5a{bottom:1069.890000px;}
.y8{bottom:1072.230000px;}
.y57{bottom:1075.500000px;}
.y59{bottom:1089.690000px;}
.y6{bottom:1108.230000px;}
.y1{bottom:1123.890000px;}
.h13{height:4.021875px;}
.hc{height:4.165313px;}
.h18{height:10.088437px;}
.h1f{height:19.800000px;}
.h21{height:19.980000px;}
.h22{height:20.016000px;}
.h16{height:21.114844px;}
.h15{height:25.136719px;}
.ha{height:27.147656px;}
.h1a{height:27.720000px;}
.hf{height:29.158594px;}
.he{height:29.464453px;}
.h17{height:38.100586px;}
.h10{height:38.997070px;}
.h1d{height:39.600000px;}
.h23{height:39.780000px;}
.h24{height:39.816000px;}
.h7{height:40.132617px;}
.h1e{height:40.320000px;}
.h20{height:40.500000px;}
.h6{height:41.726953px;}
.h12{height:42.164648px;}
.h1c{height:43.506914px;}
.h11{height:44.507812px;}
.h5{height:46.251562px;}
.h9{height:48.312422px;}
.h19{height:49.255313px;}
.h8{height:59.436914px;}
.hb{height:59.439023px;}
.h1b{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h14{height:223.920000px;}
.hd{height:587.265000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:54.756000px;}
.w16{width:64.656000px;}
.w17{width:68.040000px;}
.w15{width:74.340000px;}
.we{width:95.040000px;}
.w2{width:104.076000px;}
.wb{width:104.220000px;}
.wf{width:109.656000px;}
.w10{width:111.816000px;}
.w18{width:115.056000px;}
.w5{width:132.696000px;}
.w11{width:143.460000px;}
.w7{width:162.900000px;}
.wa{width:171.030000px;}
.w8{width:184.530000px;}
.w12{width:191.910000px;}
.w9{width:192.090000px;}
.w13{width:194.250000px;}
.w14{width:214.950000px;}
.wd{width:217.470000px;}
.w6{width:596.445000px;}
.w3{width:622.365000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.056000px;}
.x18{left:8.136000px;}
.x31{left:11.520000px;}
.x4{left:12.780000px;}
.x4b{left:13.860000px;}
.x17{left:16.056000px;}
.x4a{left:17.100000px;}
.x1c{left:18.216000px;}
.x15{left:19.656000px;}
.x49{left:21.420000px;}
.x30{left:23.580000px;}
.x16{left:26.136000px;}
.x2f{left:27.900000px;}
.x1e{left:29.196000px;}
.x2e{left:30.774000px;}
.x6{left:33.840000px;}
.x3a{left:35.820000px;}
.x33{left:37.254000px;}
.x40{left:38.880000px;}
.x29{left:40.860000px;}
.x38{left:43.020000px;}
.x2d{left:44.640000px;}
.x1d{left:47.736000px;}
.x10{left:50.796000px;}
.x27{left:52.560000px;}
.x39{left:53.820000px;}
.xf{left:54.936000px;}
.x3d{left:55.980000px;}
.x20{left:57.096000px;}
.x2a{left:59.580000px;}
.x1a{left:62.100000px;}
.x42{left:64.440000px;}
.x1f{left:66.270000px;}
.x25{left:68.580000px;}
.x2c{left:70.740000px;}
.x13{left:73.290000px;}
.x2b{left:74.520000px;}
.x41{left:75.780000px;}
.x1{left:78.300000px;}
.x14{left:79.590000px;}
.x12{left:82.470000px;}
.x7{left:86.399987px;}
.x2{left:95.790000px;}
.x21{left:102.810000px;}
.x1b{left:106.770000px;}
.x43{left:113.435987px;}
.x3b{left:114.696000px;}
.x23{left:119.556000px;}
.x11{left:124.590000px;}
.x32{left:134.136000px;}
.x5{left:141.345000px;}
.x44{left:176.610000px;}
.x3{left:182.370000px;}
.x19{left:219.090000px;}
.xb{left:255.269987px;}
.x24{left:304.815000px;}
.x3c{left:307.515000px;}
.x34{left:352.335000px;}
.x45{left:392.295000px;}
.xa{left:422.714987px;}
.x35{left:448.095000px;}
.x46{left:467.355000px;}
.x3e{left:479.265000px;}
.x26{left:497.625000px;}
.x47{left:532.725000px;}
.x36{left:558.465000px;}
.xd{left:574.664987px;}
.x3f{left:584.205000px;}
.x48{left:601.485000px;}
.x28{left:669.390000px;}
.x37{left:671.010000px;}
.xc{left:693.509987px;}
.x9{left:766.049987px;}
.x8{left:784.229987px;}
.xe{left:806.729987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls7{letter-spacing:-0.201067pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:9.120000pt;}
.lsf{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.912640pt;}
.lsa{letter-spacing:57.040640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.ws3{word-spacing:-0.053120pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.956160pt;}
._3{width:1.870720pt;}
._2{width:3.168427pt;}
._d{width:4.396160pt;}
._c{width:5.520000pt;}
._12{width:6.467840pt;}
._7{width:7.472000pt;}
._8{width:9.114667pt;}
._6{width:10.080000pt;}
._9{width:11.091840pt;}
._15{width:12.217600pt;}
._4{width:14.220160pt;}
._5{width:15.375360pt;}
._b{width:16.752000pt;}
._a{width:17.904000pt;}
._13{width:19.012480pt;}
._f{width:20.484480pt;}
._e{width:21.456000pt;}
._14{width:23.372800pt;}
._11{width:24.594560pt;}
._10{width:25.603840pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:0.480000pt;}
.y4b{bottom:1.920000pt;}
.y5{bottom:3.360000pt;}
.y58{bottom:4.453333pt;}
.y8d{bottom:5.280000pt;}
.y96{bottom:5.440000pt;}
.ya7{bottom:5.466667pt;}
.y9a{bottom:5.480000pt;}
.y3e{bottom:7.040000pt;}
.y2{bottom:8.826667pt;}
.y4a{bottom:9.120000pt;}
.y8b{bottom:14.080000pt;}
.yaa{bottom:14.240000pt;}
.ya5{bottom:14.266667pt;}
.y8f{bottom:14.400000pt;}
.y92{bottom:14.560000pt;}
.y4{bottom:20.186667pt;}
.y8c{bottom:22.880000pt;}
.ya1{bottom:23.040000pt;}
.ya6{bottom:23.066667pt;}
.yb1{bottom:23.080000pt;}
.y3d{bottom:24.680000pt;}
.y56{bottom:25.120000pt;}
.y49{bottom:35.520000pt;}
.y55{bottom:41.760000pt;}
.y3c{bottom:42.280000pt;}
.y3{bottom:42.586667pt;}
.y48{bottom:45.440000pt;}
.y7{bottom:50.720000pt;}
.y47{bottom:55.354667pt;}
.y54{bottom:58.874667pt;}
.y3b{bottom:59.880000pt;}
.y46{bottom:65.754667pt;}
.y53{bottom:72.954667pt;}
.y45{bottom:77.274667pt;}
.y3a{bottom:77.480000pt;}
.y40{bottom:80.992000pt;}
.ydf{bottom:81.312000pt;}
.y52{bottom:88.154667pt;}
.y44{bottom:88.954667pt;}
.y39{bottom:95.240000pt;}
.y8a{bottom:96.992000pt;}
.yde{bottom:98.912000pt;}
.y51{bottom:101.274667pt;}
.y50{bottom:108.314667pt;}
.y43{bottom:108.474667pt;}
.y38{bottom:112.840000pt;}
.y89{bottom:114.592000pt;}
.ydd{bottom:116.672000pt;}
.yb8{bottom:120.512000pt;}
.y4f{bottom:122.074667pt;}
.y37{bottom:130.440000pt;}
.y88{bottom:132.192000pt;}
.ydc{bottom:134.266667pt;}
.y4e{bottom:135.994667pt;}
.yb7{bottom:138.106667pt;}
.y36{bottom:148.040000pt;}
.y4d{bottom:149.754667pt;}
.y87{bottom:149.786667pt;}
.ydb{bottom:151.866667pt;}
.yb6{bottom:155.866667pt;}
.y42{bottom:163.514667pt;}
.y35{bottom:165.640000pt;}
.y86{bottom:167.546667pt;}
.yda{bottom:169.466667pt;}
.y41{bottom:172.954667pt;}
.yb5{bottom:173.466667pt;}
.y4c{bottom:177.274667pt;}
.y34{bottom:183.400000pt;}
.y85{bottom:185.146667pt;}
.yd9{bottom:187.066667pt;}
.yb4{bottom:191.066667pt;}
.y33{bottom:201.000000pt;}
.y84{bottom:202.746667pt;}
.yb3{bottom:204.186667pt;}
.yd8{bottom:204.826667pt;}
.y32{bottom:218.600000pt;}
.y83{bottom:220.346667pt;}
.yd7{bottom:222.426667pt;}
.y1f{bottom:234.280000pt;}
.y31{bottom:236.200000pt;}
.y82{bottom:237.946667pt;}
.yd6{bottom:240.026667pt;}
.yb2{bottom:240.186667pt;}
.y30{bottom:253.826667pt;}
.y81{bottom:255.706667pt;}
.y1e{bottom:255.746667pt;}
.yd5{bottom:257.626667pt;}
.y2f{bottom:271.586667pt;}
.y80{bottom:273.306667pt;}
.yd4{bottom:275.226667pt;}
.yb0{bottom:276.026667pt;}
.y1d{bottom:277.346667pt;}
.y11{bottom:280.666667pt;}
.y2e{bottom:288.706667pt;}
.y7f{bottom:290.906667pt;}
.yd3{bottom:293.026667pt;}
.y1c{bottom:298.786667pt;}
.y2d{bottom:304.546667pt;}
.y7e{bottom:308.546667pt;}
.yd2{bottom:310.626667pt;}
.yaf{bottom:312.066667pt;}
.y1b{bottom:320.226667pt;}
.y2c{bottom:320.386667pt;}
.y7d{bottom:326.146667pt;}
.yd1{bottom:328.226667pt;}
.yae{bottom:330.306667pt;}
.y2b{bottom:336.226667pt;}
.y1a{bottom:341.666667pt;}
.y7c{bottom:343.906667pt;}
.yd0{bottom:345.826667pt;}
.y2a{bottom:352.226667pt;}
.yad{bottom:353.826667pt;}
.y7b{bottom:361.506667pt;}
.y19{bottom:363.106667pt;}
.ycf{bottom:363.426667pt;}
.y29{bottom:368.066667pt;}
.yac{bottom:371.426667pt;}
.y7a{bottom:379.106667pt;}
.yce{bottom:381.186667pt;}
.y28{bottom:383.906667pt;}
.y18{bottom:384.546667pt;}
.y79{bottom:396.706667pt;}
.ycd{bottom:398.786667pt;}
.y27{bottom:399.746667pt;}
.y17{bottom:406.146667pt;}
.y78{bottom:414.306667pt;}
.y26{bottom:415.586667pt;}
.yab{bottom:420.546667pt;}
.y16{bottom:427.586667pt;}
.y25{bottom:431.426667pt;}
.y77{bottom:432.066667pt;}
.ycc{bottom:432.706667pt;}
.y24{bottom:447.426667pt;}
.ycb{bottom:448.066667pt;}
.y15{bottom:449.026667pt;}
.y76{bottom:449.666667pt;}
.ya9{bottom:456.386667pt;}
.y23{bottom:463.266667pt;}
.yca{bottom:463.426667pt;}
.y75{bottom:467.266667pt;}
.y14{bottom:470.466667pt;}
.yc9{bottom:478.786667pt;}
.y22{bottom:479.106667pt;}
.y74{bottom:484.866667pt;}
.y13{bottom:491.946667pt;}
.ya8{bottom:492.386667pt;}
.yc8{bottom:494.146667pt;}
.y21{bottom:494.986667pt;}
.y73{bottom:502.466667pt;}
.yc7{bottom:509.506667pt;}
.y20{bottom:510.826667pt;}
.y12{bottom:513.386667pt;}
.y72{bottom:520.226667pt;}
.ya4{bottom:528.226667pt;}
.y71{bottom:537.853333pt;}
.ye8{bottom:546.333333pt;}
.y70{bottom:555.453333pt;}
.ya3{bottom:564.253333pt;}
.ye7{bottom:564.573333pt;}
.y6f{bottom:573.053333pt;}
.ye6{bottom:582.813333pt;}
.y6e{bottom:590.653333pt;}
.yc6{bottom:591.293333pt;}
.yee{bottom:598.333333pt;}
.ya2{bottom:600.253333pt;}
.ye5{bottom:601.213333pt;}
.y6d{bottom:608.413333pt;}
.yed{bottom:615.933333pt;}
.yc5{bottom:618.493333pt;}
.ye4{bottom:619.453333pt;}
.y6c{bottom:626.013333pt;}
.yec{bottom:633.693333pt;}
.ya0{bottom:636.093333pt;}
.ye3{bottom:637.853333pt;}
.y6b{bottom:643.613333pt;}
.yeb{bottom:651.293333pt;}
.ye2{bottom:656.093333pt;}
.y6a{bottom:661.213333pt;}
.yea{bottom:668.893333pt;}
.yc4{bottom:670.173333pt;}
.y9f{bottom:672.093333pt;}
.ye1{bottom:674.333333pt;}
.y69{bottom:678.813333pt;}
.ye9{bottom:686.493333pt;}
.ye0{bottom:692.733333pt;}
.y9e{bottom:695.453333pt;}
.y68{bottom:696.573333pt;}
.yc3{bottom:704.093333pt;}
.y9d{bottom:713.053333pt;}
.y67{bottom:714.173333pt;}
.yc2{bottom:721.853333pt;}
.y9b{bottom:726.333333pt;}
.y66{bottom:731.773333pt;}
.yc1{bottom:739.453333pt;}
.y9c{bottom:744.573333pt;}
.y65{bottom:749.373333pt;}
.yc0{bottom:757.053333pt;}
.y99{bottom:762.813333pt;}
.y64{bottom:767.973333pt;}
.ybf{bottom:774.693333pt;}
.y97{bottom:781.253333pt;}
.y63{bottom:786.693333pt;}
.ybe{bottom:792.293333pt;}
.y98{bottom:799.493333pt;}
.y10{bottom:805.093333pt;}
.y62{bottom:805.253333pt;}
.ybd{bottom:810.053333pt;}
.yf{bottom:811.653333pt;}
.y94{bottom:817.733333pt;}
.y61{bottom:823.813333pt;}
.ybc{bottom:827.653333pt;}
.ye{bottom:830.053333pt;}
.y95{bottom:836.133333pt;}
.y60{bottom:842.373333pt;}
.ybb{bottom:845.253333pt;}
.yd{bottom:852.613333pt;}
.y91{bottom:854.373333pt;}
.y5f{bottom:860.933333pt;}
.yba{bottom:862.853333pt;}
.yc{bottom:865.733333pt;}
.y93{bottom:872.773333pt;}
.y5e{bottom:879.493333pt;}
.yb9{bottom:880.453333pt;}
.yb{bottom:883.333333pt;}
.y8e{bottom:891.013333pt;}
.y5d{bottom:898.213333pt;}
.ya{bottom:903.013333pt;}
.y90{bottom:909.253333pt;}
.y5c{bottom:915.813333pt;}
.y9{bottom:927.653333pt;}
.y5b{bottom:933.413333pt;}
.y5a{bottom:951.013333pt;}
.y8{bottom:953.093333pt;}
.y57{bottom:956.000000pt;}
.y59{bottom:968.613333pt;}
.y6{bottom:985.093333pt;}
.y1{bottom:999.013333pt;}
.h13{height:3.575000pt;}
.hc{height:3.702500pt;}
.h18{height:8.967500pt;}
.h1f{height:17.600000pt;}
.h21{height:17.760000pt;}
.h22{height:17.792000pt;}
.h16{height:18.768750pt;}
.h15{height:22.343750pt;}
.ha{height:24.131250pt;}
.h1a{height:24.640000pt;}
.hf{height:25.918750pt;}
.he{height:26.190625pt;}
.h17{height:33.867188pt;}
.h10{height:34.664062pt;}
.h1d{height:35.200000pt;}
.h23{height:35.360000pt;}
.h24{height:35.392000pt;}
.h7{height:35.673437pt;}
.h1e{height:35.840000pt;}
.h20{height:36.000000pt;}
.h6{height:37.090625pt;}
.h12{height:37.479688pt;}
.h1c{height:38.672812pt;}
.h11{height:39.562500pt;}
.h5{height:41.112500pt;}
.h9{height:42.944375pt;}
.h19{height:43.782500pt;}
.h8{height:52.832812pt;}
.hb{height:52.834688pt;}
.h1b{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h14{height:199.040000pt;}
.hd{height:522.013333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:48.672000pt;}
.w16{width:57.472000pt;}
.w17{width:60.480000pt;}
.w15{width:66.080000pt;}
.we{width:84.480000pt;}
.w2{width:92.512000pt;}
.wb{width:92.640000pt;}
.wf{width:97.472000pt;}
.w10{width:99.392000pt;}
.w18{width:102.272000pt;}
.w5{width:117.952000pt;}
.w11{width:127.520000pt;}
.w7{width:144.800000pt;}
.wa{width:152.026667pt;}
.w8{width:164.026667pt;}
.w12{width:170.586667pt;}
.w9{width:170.746667pt;}
.w13{width:172.666667pt;}
.w14{width:191.066667pt;}
.wd{width:193.306667pt;}
.w6{width:530.173333pt;}
.w3{width:553.213333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.272000pt;}
.x18{left:7.232000pt;}
.x31{left:10.240000pt;}
.x4{left:11.360000pt;}
.x4b{left:12.320000pt;}
.x17{left:14.272000pt;}
.x4a{left:15.200000pt;}
.x1c{left:16.192000pt;}
.x15{left:17.472000pt;}
.x49{left:19.040000pt;}
.x30{left:20.960000pt;}
.x16{left:23.232000pt;}
.x2f{left:24.800000pt;}
.x1e{left:25.952000pt;}
.x2e{left:27.354667pt;}
.x6{left:30.080000pt;}
.x3a{left:31.840000pt;}
.x33{left:33.114667pt;}
.x40{left:34.560000pt;}
.x29{left:36.320000pt;}
.x38{left:38.240000pt;}
.x2d{left:39.680000pt;}
.x1d{left:42.432000pt;}
.x10{left:45.152000pt;}
.x27{left:46.720000pt;}
.x39{left:47.840000pt;}
.xf{left:48.832000pt;}
.x3d{left:49.760000pt;}
.x20{left:50.752000pt;}
.x2a{left:52.960000pt;}
.x1a{left:55.200000pt;}
.x42{left:57.280000pt;}
.x1f{left:58.906667pt;}
.x25{left:60.960000pt;}
.x2c{left:62.880000pt;}
.x13{left:65.146667pt;}
.x2b{left:66.240000pt;}
.x41{left:67.360000pt;}
.x1{left:69.600000pt;}
.x14{left:70.746667pt;}
.x12{left:73.306667pt;}
.x7{left:76.799988pt;}
.x2{left:85.146667pt;}
.x21{left:91.386667pt;}
.x1b{left:94.906667pt;}
.x43{left:100.831988pt;}
.x3b{left:101.952000pt;}
.x23{left:106.272000pt;}
.x11{left:110.746667pt;}
.x32{left:119.232000pt;}
.x5{left:125.640000pt;}
.x44{left:156.986667pt;}
.x3{left:162.106667pt;}
.x19{left:194.746667pt;}
.xb{left:226.906655pt;}
.x24{left:270.946667pt;}
.x3c{left:273.346667pt;}
.x34{left:313.186667pt;}
.x45{left:348.706667pt;}
.xa{left:375.746655pt;}
.x35{left:398.306667pt;}
.x46{left:415.426667pt;}
.x3e{left:426.013333pt;}
.x26{left:442.333333pt;}
.x47{left:473.533333pt;}
.x36{left:496.413333pt;}
.xd{left:510.813322pt;}
.x3f{left:519.293333pt;}
.x48{left:534.653333pt;}
.x28{left:595.013333pt;}
.x37{left:596.453333pt;}
.xc{left:616.453322pt;}
.x9{left:680.933322pt;}
.x8{left:697.093322pt;}
.xe{left:717.093322pt;}
}




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