
    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_f3bae8e11be0c78e986f2c8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_ef4276175571d6e10d79e9d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_03a566df3c0b805c08791e2f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_6cd468d8e48d0665c6643e67.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5562ac467972c737bc0ff8d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_58e0ea282c61e25337da0498.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.894043;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);}
.v0{vertical-align:0.000000px;}
.ls35{letter-spacing:-0.900000px;}
.ls38{letter-spacing:-0.810000px;}
.ls16{letter-spacing:-0.720000px;}
.ls4e{letter-spacing:-0.702000px;}
.ls1d{letter-spacing:-0.660000px;}
.ls37{letter-spacing:-0.648000px;}
.ls4a{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.486000px;}
.ls4c{letter-spacing:-0.432000px;}
.ls1b{letter-spacing:-0.420000px;}
.ls4b{letter-spacing:-0.378000px;}
.ls1a{letter-spacing:-0.300000px;}
.ls1e{letter-spacing:-0.240000px;}
.ls1c{letter-spacing:-0.180000px;}
.ls36{letter-spacing:-0.162000px;}
.ls34{letter-spacing:-0.120000px;}
.ls19{letter-spacing:-0.108000px;}
.ls33{letter-spacing:-0.060000px;}
.ls4d{letter-spacing:-0.054000px;}
.ls15{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.120000px;}
.ls31{letter-spacing:0.162000px;}
.ls24{letter-spacing:0.180000px;}
.ls3d{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.240000px;}
.ls47{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.300000px;}
.ls39{letter-spacing:0.324000px;}
.ls22{letter-spacing:0.360000px;}
.ls42{letter-spacing:0.378000px;}
.ls48{letter-spacing:0.486000px;}
.ls27{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.594000px;}
.ls25{letter-spacing:0.600000px;}
.ls30{letter-spacing:0.648000px;}
.lsf{letter-spacing:0.660000px;}
.ls45{letter-spacing:0.702000px;}
.ls3e{letter-spacing:0.756000px;}
.lsa{letter-spacing:0.810000px;}
.lsb{letter-spacing:0.840000px;}
.ls32{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.900000px;}
.ls3f{letter-spacing:0.918000px;}
.lsd{letter-spacing:0.960000px;}
.ls3{letter-spacing:1.020000px;}
.ls8{letter-spacing:1.026000px;}
.ls7{letter-spacing:1.080000px;}
.ls41{letter-spacing:1.134000px;}
.ls23{letter-spacing:1.200000px;}
.ls10{letter-spacing:1.260000px;}
.ls3c{letter-spacing:1.296000px;}
.ls29{letter-spacing:1.320000px;}
.ls3a{letter-spacing:1.350000px;}
.ls3b{letter-spacing:1.404000px;}
.ls5{letter-spacing:1.429200px;}
.ls6{letter-spacing:1.440000px;}
.ls2f{letter-spacing:1.512000px;}
.lse{letter-spacing:1.560000px;}
.ls12{letter-spacing:1.620000px;}
.ls44{letter-spacing:1.728000px;}
.ls2b{letter-spacing:1.740000px;}
.ls46{letter-spacing:1.836000px;}
.ls13{letter-spacing:1.920000px;}
.ls2{letter-spacing:1.980000px;}
.ls26{letter-spacing:2.220000px;}
.ls43{letter-spacing:2.268000px;}
.ls11{letter-spacing:2.580000px;}
.ls2e{letter-spacing:2.592000px;}
.ls40{letter-spacing:2.754000px;}
.ls49{letter-spacing:2.808000px;}
.ls2a{letter-spacing:2.820000px;}
.ls2d{letter-spacing:2.916000px;}
.ls14{letter-spacing:2.940000px;}
.ls20{letter-spacing:3.024000px;}
.ls1f{letter-spacing:3.456000px;}
.ls17{letter-spacing:3.564000px;}
.ls0{letter-spacing:4.380000px;}
.ls9{letter-spacing:5.788200px;}
.ls4{letter-spacing:8.497800px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws26{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.280000px;}
.ws51{word-spacing:-14.256000px;}
.ws50{word-spacing:-13.716000px;}
.ws1{word-spacing:-13.500000px;}
.ws27{word-spacing:-13.014000px;}
.ws29{word-spacing:-4.860000px;}
.ws3c{word-spacing:-4.320000px;}
.ws4d{word-spacing:-4.212000px;}
.ws4{word-spacing:-3.780000px;}
.ws1d{word-spacing:-3.720000px;}
.ws67{word-spacing:-3.564000px;}
.ws1e{word-spacing:-3.420000px;}
.ws2e{word-spacing:-3.402000px;}
.ws4b{word-spacing:-3.348000px;}
.ws4e{word-spacing:-3.078000px;}
.ws2c{word-spacing:-3.024000px;}
.ws47{word-spacing:-2.916000px;}
.ws3b{word-spacing:-2.280000px;}
.ws60{word-spacing:-1.728000px;}
.ws19{word-spacing:-1.620000px;}
.ws53{word-spacing:-1.404000px;}
.ws34{word-spacing:-1.320000px;}
.ws62{word-spacing:-1.296000px;}
.ws25{word-spacing:-1.260000px;}
.ws61{word-spacing:-1.242000px;}
.ws24{word-spacing:-1.140000px;}
.ws9{word-spacing:-1.080000px;}
.ws5a{word-spacing:-0.918000px;}
.ws11{word-spacing:-0.900000px;}
.ws66{word-spacing:-0.864000px;}
.wsf{word-spacing:-0.840000px;}
.ws16{word-spacing:-0.660000px;}
.ws39{word-spacing:-0.600000px;}
.ws5c{word-spacing:-0.594000px;}
.ws14{word-spacing:-0.180000px;}
.ws30{word-spacing:-0.120000px;}
.ws1c{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws2a{word-spacing:0.060000px;}
.wse{word-spacing:0.108000px;}
.ws37{word-spacing:0.120000px;}
.wsc{word-spacing:0.270000px;}
.ws10{word-spacing:0.300000px;}
.ws5b{word-spacing:0.324000px;}
.ws54{word-spacing:0.378000px;}
.ws56{word-spacing:0.432000px;}
.ws3f{word-spacing:0.480000px;}
.wsd{word-spacing:0.486000px;}
.ws65{word-spacing:0.648000px;}
.ws20{word-spacing:0.660000px;}
.ws4f{word-spacing:0.918000px;}
.ws45{word-spacing:1.134000px;}
.ws3e{word-spacing:1.320000px;}
.ws48{word-spacing:1.674000px;}
.ws3a{word-spacing:1.800000px;}
.ws42{word-spacing:1.860000px;}
.ws49{word-spacing:1.944000px;}
.ws63{word-spacing:1.998000px;}
.ws33{word-spacing:2.100000px;}
.ws4a{word-spacing:2.106000px;}
.ws44{word-spacing:2.280000px;}
.ws31{word-spacing:2.340000px;}
.ws2f{word-spacing:2.460000px;}
.ws28{word-spacing:2.520000px;}
.ws3d{word-spacing:2.700000px;}
.ws1b{word-spacing:2.820000px;}
.ws5f{word-spacing:3.132000px;}
.ws38{word-spacing:3.180000px;}
.ws43{word-spacing:3.240000px;}
.ws32{word-spacing:3.480000px;}
.ws52{word-spacing:3.510000px;}
.ws35{word-spacing:3.720000px;}
.ws17{word-spacing:4.020000px;}
.ws23{word-spacing:4.080000px;}
.ws5d{word-spacing:4.212000px;}
.ws5e{word-spacing:4.536000px;}
.ws64{word-spacing:4.806000px;}
.ws1f{word-spacing:4.860000px;}
.ws36{word-spacing:5.100000px;}
.ws55{word-spacing:5.292000px;}
.ws41{word-spacing:5.340000px;}
.wsb{word-spacing:5.778000px;}
.ws57{word-spacing:5.832000px;}
.ws40{word-spacing:5.940000px;}
.ws2d{word-spacing:6.048000px;}
.ws22{word-spacing:6.120000px;}
.ws58{word-spacing:6.210000px;}
.ws46{word-spacing:6.264000px;}
.ws7{word-spacing:6.420000px;}
.ws4c{word-spacing:6.534000px;}
.ws15{word-spacing:6.540000px;}
.ws59{word-spacing:6.696000px;}
.wsa{word-spacing:6.750000px;}
.ws18{word-spacing:6.780000px;}
.ws12{word-spacing:6.840000px;}
.ws2b{word-spacing:6.912000px;}
.ws8{word-spacing:7.074000px;}
.ws1a{word-spacing:7.080000px;}
.ws13{word-spacing:7.200000px;}
.ws21{word-spacing:7.320000px;}
.ws6{word-spacing:7.500000px;}
.ws5{word-spacing:8.820000px;}
._0{margin-left:-94.500000px;}
._10{margin-left:-7.853400px;}
._7{margin-left:-6.334200px;}
._9{margin-left:-5.022000px;}
._2{margin-left:-3.562200px;}
._3{margin-left:-2.513400px;}
._5{margin-left:-1.405800px;}
._4{width:1.506600px;}
._c{width:2.693400px;}
._8{width:3.720600px;}
._6{width:5.099400px;}
._f{width:6.780000px;}
._a{width:7.830000px;}
._b{width:8.850000px;}
._e{width:10.698000px;}
._d{width:1399.268400px;}
._1{width:1480.293600px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:83.274600px;}
.y27{bottom:85.728900px;}
.y82{bottom:99.474600px;}
.y5d{bottom:101.274600px;}
.y26{bottom:103.728900px;}
.y81{bottom:115.674600px;}
.y5c{bottom:119.274600px;}
.y25{bottom:121.728900px;}
.y80{bottom:131.874600px;}
.y5b{bottom:137.274600px;}
.yb1{bottom:138.301500px;}
.yc4{bottom:138.914700px;}
.y24{bottom:139.728900px;}
.y7f{bottom:148.074600px;}
.yc3{bottom:152.414700px;}
.yb0{bottom:154.501500px;}
.y5a{bottom:155.274600px;}
.y23{bottom:157.728900px;}
.y7e{bottom:164.274600px;}
.yc2{bottom:165.914700px;}
.yaf{bottom:170.701500px;}
.y59{bottom:173.274600px;}
.y22{bottom:175.728900px;}
.yc1{bottom:179.414700px;}
.y7d{bottom:180.474600px;}
.yae{bottom:186.901500px;}
.y58{bottom:191.274600px;}
.yc0{bottom:192.914700px;}
.y21{bottom:193.728900px;}
.y7c{bottom:196.674600px;}
.yad{bottom:203.101500px;}
.y57{bottom:209.274600px;}
.y20{bottom:211.728900px;}
.y7b{bottom:212.874600px;}
.yac{bottom:219.301500px;}
.y56{bottom:227.274600px;}
.y7a{bottom:229.074600px;}
.y1f{bottom:229.728900px;}
.yab{bottom:235.501500px;}
.y55{bottom:245.274600px;}
.y1e{bottom:247.728900px;}
.yaa{bottom:251.701500px;}
.y79{bottom:261.474600px;}
.y54{bottom:263.274600px;}
.y1d{bottom:265.728900px;}
.ya9{bottom:267.901500px;}
.y78{bottom:277.674600px;}
.y53{bottom:281.274600px;}
.y1c{bottom:283.728900px;}
.ya8{bottom:284.101500px;}
.y77{bottom:293.874600px;}
.y52{bottom:299.274600px;}
.y1b{bottom:299.928900px;}
.ya7{bottom:300.301500px;}
.y30{bottom:301.728900px;}
.y76{bottom:310.074600px;}
.y1a{bottom:316.128900px;}
.ya6{bottom:316.501500px;}
.y51{bottom:317.274600px;}
.y2f{bottom:319.728900px;}
.y75{bottom:326.274600px;}
.y19{bottom:332.328900px;}
.ya5{bottom:332.701500px;}
.y50{bottom:335.274600px;}
.y2e{bottom:337.728900px;}
.y74{bottom:342.474600px;}
.y18{bottom:348.528900px;}
.ya4{bottom:348.901500px;}
.y4f{bottom:353.274600px;}
.y2d{bottom:355.728900px;}
.y73{bottom:358.674600px;}
.y17{bottom:364.728900px;}
.ya3{bottom:365.101500px;}
.y4e{bottom:371.274600px;}
.y2c{bottom:373.728900px;}
.y72{bottom:374.874600px;}
.y16{bottom:380.928900px;}
.ya2{bottom:381.301500px;}
.y4d{bottom:389.274600px;}
.y71{bottom:391.074600px;}
.y2b{bottom:391.728900px;}
.y15{bottom:397.128900px;}
.ya1{bottom:397.501500px;}
.y4c{bottom:407.274600px;}
.y2a{bottom:409.728900px;}
.y14{bottom:413.328900px;}
.ya0{bottom:413.701500px;}
.y70{bottom:423.474600px;}
.y4b{bottom:425.274600px;}
.y29{bottom:427.728900px;}
.y13{bottom:429.528900px;}
.y9f{bottom:429.901500px;}
.y6f{bottom:439.674600px;}
.y4a{bottom:443.274600px;}
.y12{bottom:445.728900px;}
.y9e{bottom:446.101500px;}
.y6e{bottom:455.874600px;}
.y49{bottom:461.274600px;}
.y9d{bottom:462.301500px;}
.y11{bottom:463.728900px;}
.y6d{bottom:472.074600px;}
.y9c{bottom:478.501500px;}
.y48{bottom:479.274600px;}
.y10{bottom:481.728900px;}
.y6c{bottom:488.274600px;}
.y9b{bottom:494.701500px;}
.y47{bottom:497.274600px;}
.yf{bottom:499.728900px;}
.y9a{bottom:510.901500px;}
.y46{bottom:515.274600px;}
.y28{bottom:517.728900px;}
.y6b{bottom:526.974600px;}
.y99{bottom:527.101500px;}
.y45{bottom:533.274600px;}
.ye{bottom:535.728900px;}
.y98{bottom:543.301500px;}
.y44{bottom:551.274600px;}
.yd{bottom:553.728900px;}
.y97{bottom:559.501500px;}
.y43{bottom:569.274600px;}
.yc{bottom:571.728900px;}
.y96{bottom:575.701500px;}
.y42{bottom:587.274600px;}
.yb{bottom:589.728900px;}
.y95{bottom:591.901500px;}
.y6a{bottom:594.474600px;}
.y41{bottom:605.274600px;}
.ya{bottom:607.728900px;}
.y94{bottom:608.101500px;}
.y69{bottom:612.474600px;}
.y40{bottom:623.274600px;}
.y93{bottom:624.301500px;}
.y9{bottom:625.728900px;}
.y68{bottom:630.474600px;}
.y92{bottom:640.501500px;}
.y3f{bottom:641.274600px;}
.y67{bottom:648.474600px;}
.y91{bottom:656.701500px;}
.y3e{bottom:659.274600px;}
.y66{bottom:666.474600px;}
.y90{bottom:672.901500px;}
.ybf{bottom:672.914700px;}
.y3d{bottom:677.274600px;}
.y7{bottom:677.349450px;}
.y65{bottom:684.474600px;}
.y8f{bottom:689.101500px;}
.ybe{bottom:689.114700px;}
.y3c{bottom:695.274600px;}
.y64{bottom:702.474600px;}
.y8e{bottom:705.301500px;}
.ybd{bottom:705.314700px;}
.y6{bottom:705.849450px;}
.y3b{bottom:713.274600px;}
.y63{bottom:720.474600px;}
.y8d{bottom:721.501500px;}
.ybc{bottom:721.514700px;}
.y3a{bottom:729.474600px;}
.y5{bottom:734.349450px;}
.y8c{bottom:737.701500px;}
.ybb{bottom:737.714700px;}
.y62{bottom:738.474600px;}
.y39{bottom:745.674600px;}
.y8b{bottom:753.901500px;}
.yba{bottom:753.914700px;}
.y61{bottom:756.474600px;}
.y38{bottom:761.874600px;}
.y8a{bottom:770.101500px;}
.yb9{bottom:770.114700px;}
.y60{bottom:774.474600px;}
.y37{bottom:778.074600px;}
.y89{bottom:786.301500px;}
.yb8{bottom:786.314700px;}
.y8{bottom:786.834900px;}
.y5f{bottom:792.474600px;}
.y36{bottom:794.274600px;}
.y88{bottom:802.501500px;}
.yb7{bottom:802.514700px;}
.y35{bottom:810.474600px;}
.y87{bottom:818.701500px;}
.yb6{bottom:818.714700px;}
.y4{bottom:828.459900px;}
.y34{bottom:828.474600px;}
.y86{bottom:834.901500px;}
.yb5{bottom:834.914550px;}
.y33{bottom:846.474600px;}
.y85{bottom:851.101500px;}
.yb4{bottom:851.114700px;}
.y3{bottom:864.459900px;}
.y32{bottom:864.474600px;}
.y84{bottom:867.301500px;}
.yb3{bottom:867.314700px;}
.y2{bottom:882.459900px;}
.y31{bottom:882.474600px;}
.y83{bottom:883.501500px;}
.yb2{bottom:883.514700px;}
.y1{bottom:937.589700px;}
.h5{height:37.494141px;}
.h7{height:42.117188px;}
.h9{height:47.381836px;}
.h6{height:47.513672px;}
.h2{height:47.961914px;}
.h4{height:52.646484px;}
.h8{height:52.792969px;}
.h3{height:53.291016px;}
.h0{height:1007.700000px;}
.h1{height:1008.000000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:63.750000px;}
.x1{left:85.050000px;}
.x9{left:87.750000px;}
.xa{left:93.450000px;}
.xe{left:106.275000px;}
.x4{left:109.050000px;}
.x5{left:114.750000px;}
.x3{left:202.530450px;}
.xb{left:361.425000px;}
.x6{left:382.725000px;}
.xc{left:385.425000px;}
.xf{left:403.950000px;}
.x7{left:406.725000px;}
.x2{left:425.220300px;}
.xd{left:443.765400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls35{letter-spacing:-0.800000pt;}
.ls38{letter-spacing:-0.720000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls4e{letter-spacing:-0.624000pt;}
.ls1d{letter-spacing:-0.586667pt;}
.ls37{letter-spacing:-0.576000pt;}
.ls4a{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.432000pt;}
.ls4c{letter-spacing:-0.384000pt;}
.ls1b{letter-spacing:-0.373333pt;}
.ls4b{letter-spacing:-0.336000pt;}
.ls1a{letter-spacing:-0.266667pt;}
.ls1e{letter-spacing:-0.213333pt;}
.ls1c{letter-spacing:-0.160000pt;}
.ls36{letter-spacing:-0.144000pt;}
.ls34{letter-spacing:-0.106667pt;}
.ls19{letter-spacing:-0.096000pt;}
.ls33{letter-spacing:-0.053333pt;}
.ls4d{letter-spacing:-0.048000pt;}
.ls15{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.106667pt;}
.ls31{letter-spacing:0.144000pt;}
.ls24{letter-spacing:0.160000pt;}
.ls3d{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.213333pt;}
.ls47{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.266667pt;}
.ls39{letter-spacing:0.288000pt;}
.ls22{letter-spacing:0.320000pt;}
.ls42{letter-spacing:0.336000pt;}
.ls48{letter-spacing:0.432000pt;}
.ls27{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.528000pt;}
.ls25{letter-spacing:0.533333pt;}
.ls30{letter-spacing:0.576000pt;}
.lsf{letter-spacing:0.586667pt;}
.ls45{letter-spacing:0.624000pt;}
.ls3e{letter-spacing:0.672000pt;}
.lsa{letter-spacing:0.720000pt;}
.lsb{letter-spacing:0.746667pt;}
.ls32{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls3f{letter-spacing:0.816000pt;}
.lsd{letter-spacing:0.853333pt;}
.ls3{letter-spacing:0.906667pt;}
.ls8{letter-spacing:0.912000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls41{letter-spacing:1.008000pt;}
.ls23{letter-spacing:1.066667pt;}
.ls10{letter-spacing:1.120000pt;}
.ls3c{letter-spacing:1.152000pt;}
.ls29{letter-spacing:1.173333pt;}
.ls3a{letter-spacing:1.200000pt;}
.ls3b{letter-spacing:1.248000pt;}
.ls5{letter-spacing:1.270400pt;}
.ls6{letter-spacing:1.280000pt;}
.ls2f{letter-spacing:1.344000pt;}
.lse{letter-spacing:1.386667pt;}
.ls12{letter-spacing:1.440000pt;}
.ls44{letter-spacing:1.536000pt;}
.ls2b{letter-spacing:1.546667pt;}
.ls46{letter-spacing:1.632000pt;}
.ls13{letter-spacing:1.706667pt;}
.ls2{letter-spacing:1.760000pt;}
.ls26{letter-spacing:1.973333pt;}
.ls43{letter-spacing:2.016000pt;}
.ls11{letter-spacing:2.293333pt;}
.ls2e{letter-spacing:2.304000pt;}
.ls40{letter-spacing:2.448000pt;}
.ls49{letter-spacing:2.496000pt;}
.ls2a{letter-spacing:2.506667pt;}
.ls2d{letter-spacing:2.592000pt;}
.ls14{letter-spacing:2.613333pt;}
.ls20{letter-spacing:2.688000pt;}
.ls1f{letter-spacing:3.072000pt;}
.ls17{letter-spacing:3.168000pt;}
.ls0{letter-spacing:3.893333pt;}
.ls9{letter-spacing:5.145067pt;}
.ls4{letter-spacing:7.553600pt;}
.ws2{word-spacing:-13.333333pt;}
.ws26{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.693333pt;}
.ws51{word-spacing:-12.672000pt;}
.ws50{word-spacing:-12.192000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws27{word-spacing:-11.568000pt;}
.ws29{word-spacing:-4.320000pt;}
.ws3c{word-spacing:-3.840000pt;}
.ws4d{word-spacing:-3.744000pt;}
.ws4{word-spacing:-3.360000pt;}
.ws1d{word-spacing:-3.306667pt;}
.ws67{word-spacing:-3.168000pt;}
.ws1e{word-spacing:-3.040000pt;}
.ws2e{word-spacing:-3.024000pt;}
.ws4b{word-spacing:-2.976000pt;}
.ws4e{word-spacing:-2.736000pt;}
.ws2c{word-spacing:-2.688000pt;}
.ws47{word-spacing:-2.592000pt;}
.ws3b{word-spacing:-2.026667pt;}
.ws60{word-spacing:-1.536000pt;}
.ws19{word-spacing:-1.440000pt;}
.ws53{word-spacing:-1.248000pt;}
.ws34{word-spacing:-1.173333pt;}
.ws62{word-spacing:-1.152000pt;}
.ws25{word-spacing:-1.120000pt;}
.ws61{word-spacing:-1.104000pt;}
.ws24{word-spacing:-1.013333pt;}
.ws9{word-spacing:-0.960000pt;}
.ws5a{word-spacing:-0.816000pt;}
.ws11{word-spacing:-0.800000pt;}
.ws66{word-spacing:-0.768000pt;}
.wsf{word-spacing:-0.746667pt;}
.ws16{word-spacing:-0.586667pt;}
.ws39{word-spacing:-0.533333pt;}
.ws5c{word-spacing:-0.528000pt;}
.ws14{word-spacing:-0.160000pt;}
.ws30{word-spacing:-0.106667pt;}
.ws1c{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.053333pt;}
.wse{word-spacing:0.096000pt;}
.ws37{word-spacing:0.106667pt;}
.wsc{word-spacing:0.240000pt;}
.ws10{word-spacing:0.266667pt;}
.ws5b{word-spacing:0.288000pt;}
.ws54{word-spacing:0.336000pt;}
.ws56{word-spacing:0.384000pt;}
.ws3f{word-spacing:0.426667pt;}
.wsd{word-spacing:0.432000pt;}
.ws65{word-spacing:0.576000pt;}
.ws20{word-spacing:0.586667pt;}
.ws4f{word-spacing:0.816000pt;}
.ws45{word-spacing:1.008000pt;}
.ws3e{word-spacing:1.173333pt;}
.ws48{word-spacing:1.488000pt;}
.ws3a{word-spacing:1.600000pt;}
.ws42{word-spacing:1.653333pt;}
.ws49{word-spacing:1.728000pt;}
.ws63{word-spacing:1.776000pt;}
.ws33{word-spacing:1.866667pt;}
.ws4a{word-spacing:1.872000pt;}
.ws44{word-spacing:2.026667pt;}
.ws31{word-spacing:2.080000pt;}
.ws2f{word-spacing:2.186667pt;}
.ws28{word-spacing:2.240000pt;}
.ws3d{word-spacing:2.400000pt;}
.ws1b{word-spacing:2.506667pt;}
.ws5f{word-spacing:2.784000pt;}
.ws38{word-spacing:2.826667pt;}
.ws43{word-spacing:2.880000pt;}
.ws32{word-spacing:3.093333pt;}
.ws52{word-spacing:3.120000pt;}
.ws35{word-spacing:3.306667pt;}
.ws17{word-spacing:3.573333pt;}
.ws23{word-spacing:3.626667pt;}
.ws5d{word-spacing:3.744000pt;}
.ws5e{word-spacing:4.032000pt;}
.ws64{word-spacing:4.272000pt;}
.ws1f{word-spacing:4.320000pt;}
.ws36{word-spacing:4.533333pt;}
.ws55{word-spacing:4.704000pt;}
.ws41{word-spacing:4.746667pt;}
.wsb{word-spacing:5.136000pt;}
.ws57{word-spacing:5.184000pt;}
.ws40{word-spacing:5.280000pt;}
.ws2d{word-spacing:5.376000pt;}
.ws22{word-spacing:5.440000pt;}
.ws58{word-spacing:5.520000pt;}
.ws46{word-spacing:5.568000pt;}
.ws7{word-spacing:5.706667pt;}
.ws4c{word-spacing:5.808000pt;}
.ws15{word-spacing:5.813333pt;}
.ws59{word-spacing:5.952000pt;}
.wsa{word-spacing:6.000000pt;}
.ws18{word-spacing:6.026667pt;}
.ws12{word-spacing:6.080000pt;}
.ws2b{word-spacing:6.144000pt;}
.ws8{word-spacing:6.288000pt;}
.ws1a{word-spacing:6.293333pt;}
.ws13{word-spacing:6.400000pt;}
.ws21{word-spacing:6.506667pt;}
.ws6{word-spacing:6.666667pt;}
.ws5{word-spacing:7.840000pt;}
._0{margin-left:-84.000000pt;}
._10{margin-left:-6.980800pt;}
._7{margin-left:-5.630400pt;}
._9{margin-left:-4.464000pt;}
._2{margin-left:-3.166400pt;}
._3{margin-left:-2.234133pt;}
._5{margin-left:-1.249600pt;}
._4{width:1.339200pt;}
._c{width:2.394133pt;}
._8{width:3.307200pt;}
._6{width:4.532800pt;}
._f{width:6.026667pt;}
._a{width:6.960000pt;}
._b{width:7.866667pt;}
._e{width:9.509333pt;}
._d{width:1243.794133pt;}
._1{width:1315.816533pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:74.021867pt;}
.y27{bottom:76.203467pt;}
.y82{bottom:88.421867pt;}
.y5d{bottom:90.021867pt;}
.y26{bottom:92.203467pt;}
.y81{bottom:102.821867pt;}
.y5c{bottom:106.021867pt;}
.y25{bottom:108.203467pt;}
.y80{bottom:117.221867pt;}
.y5b{bottom:122.021867pt;}
.yb1{bottom:122.934667pt;}
.yc4{bottom:123.479733pt;}
.y24{bottom:124.203467pt;}
.y7f{bottom:131.621867pt;}
.yc3{bottom:135.479733pt;}
.yb0{bottom:137.334667pt;}
.y5a{bottom:138.021867pt;}
.y23{bottom:140.203467pt;}
.y7e{bottom:146.021867pt;}
.yc2{bottom:147.479733pt;}
.yaf{bottom:151.734667pt;}
.y59{bottom:154.021867pt;}
.y22{bottom:156.203467pt;}
.yc1{bottom:159.479733pt;}
.y7d{bottom:160.421867pt;}
.yae{bottom:166.134667pt;}
.y58{bottom:170.021867pt;}
.yc0{bottom:171.479733pt;}
.y21{bottom:172.203467pt;}
.y7c{bottom:174.821867pt;}
.yad{bottom:180.534667pt;}
.y57{bottom:186.021867pt;}
.y20{bottom:188.203467pt;}
.y7b{bottom:189.221867pt;}
.yac{bottom:194.934667pt;}
.y56{bottom:202.021867pt;}
.y7a{bottom:203.621867pt;}
.y1f{bottom:204.203467pt;}
.yab{bottom:209.334667pt;}
.y55{bottom:218.021867pt;}
.y1e{bottom:220.203467pt;}
.yaa{bottom:223.734667pt;}
.y79{bottom:232.421867pt;}
.y54{bottom:234.021867pt;}
.y1d{bottom:236.203467pt;}
.ya9{bottom:238.134667pt;}
.y78{bottom:246.821867pt;}
.y53{bottom:250.021867pt;}
.y1c{bottom:252.203467pt;}
.ya8{bottom:252.534667pt;}
.y77{bottom:261.221867pt;}
.y52{bottom:266.021867pt;}
.y1b{bottom:266.603467pt;}
.ya7{bottom:266.934667pt;}
.y30{bottom:268.203467pt;}
.y76{bottom:275.621867pt;}
.y1a{bottom:281.003467pt;}
.ya6{bottom:281.334667pt;}
.y51{bottom:282.021867pt;}
.y2f{bottom:284.203467pt;}
.y75{bottom:290.021867pt;}
.y19{bottom:295.403467pt;}
.ya5{bottom:295.734667pt;}
.y50{bottom:298.021867pt;}
.y2e{bottom:300.203467pt;}
.y74{bottom:304.421867pt;}
.y18{bottom:309.803467pt;}
.ya4{bottom:310.134667pt;}
.y4f{bottom:314.021867pt;}
.y2d{bottom:316.203467pt;}
.y73{bottom:318.821867pt;}
.y17{bottom:324.203467pt;}
.ya3{bottom:324.534667pt;}
.y4e{bottom:330.021867pt;}
.y2c{bottom:332.203467pt;}
.y72{bottom:333.221867pt;}
.y16{bottom:338.603467pt;}
.ya2{bottom:338.934667pt;}
.y4d{bottom:346.021867pt;}
.y71{bottom:347.621867pt;}
.y2b{bottom:348.203467pt;}
.y15{bottom:353.003467pt;}
.ya1{bottom:353.334667pt;}
.y4c{bottom:362.021867pt;}
.y2a{bottom:364.203467pt;}
.y14{bottom:367.403467pt;}
.ya0{bottom:367.734667pt;}
.y70{bottom:376.421867pt;}
.y4b{bottom:378.021867pt;}
.y29{bottom:380.203467pt;}
.y13{bottom:381.803467pt;}
.y9f{bottom:382.134667pt;}
.y6f{bottom:390.821867pt;}
.y4a{bottom:394.021867pt;}
.y12{bottom:396.203467pt;}
.y9e{bottom:396.534667pt;}
.y6e{bottom:405.221867pt;}
.y49{bottom:410.021867pt;}
.y9d{bottom:410.934667pt;}
.y11{bottom:412.203467pt;}
.y6d{bottom:419.621867pt;}
.y9c{bottom:425.334667pt;}
.y48{bottom:426.021867pt;}
.y10{bottom:428.203467pt;}
.y6c{bottom:434.021867pt;}
.y9b{bottom:439.734667pt;}
.y47{bottom:442.021867pt;}
.yf{bottom:444.203467pt;}
.y9a{bottom:454.134667pt;}
.y46{bottom:458.021867pt;}
.y28{bottom:460.203467pt;}
.y6b{bottom:468.421867pt;}
.y99{bottom:468.534667pt;}
.y45{bottom:474.021867pt;}
.ye{bottom:476.203467pt;}
.y98{bottom:482.934667pt;}
.y44{bottom:490.021867pt;}
.yd{bottom:492.203467pt;}
.y97{bottom:497.334667pt;}
.y43{bottom:506.021867pt;}
.yc{bottom:508.203467pt;}
.y96{bottom:511.734667pt;}
.y42{bottom:522.021867pt;}
.yb{bottom:524.203467pt;}
.y95{bottom:526.134667pt;}
.y6a{bottom:528.421867pt;}
.y41{bottom:538.021867pt;}
.ya{bottom:540.203467pt;}
.y94{bottom:540.534667pt;}
.y69{bottom:544.421867pt;}
.y40{bottom:554.021867pt;}
.y93{bottom:554.934667pt;}
.y9{bottom:556.203467pt;}
.y68{bottom:560.421867pt;}
.y92{bottom:569.334667pt;}
.y3f{bottom:570.021867pt;}
.y67{bottom:576.421867pt;}
.y91{bottom:583.734667pt;}
.y3e{bottom:586.021867pt;}
.y66{bottom:592.421867pt;}
.y90{bottom:598.134667pt;}
.ybf{bottom:598.146400pt;}
.y3d{bottom:602.021867pt;}
.y7{bottom:602.088400pt;}
.y65{bottom:608.421867pt;}
.y8f{bottom:612.534667pt;}
.ybe{bottom:612.546400pt;}
.y3c{bottom:618.021867pt;}
.y64{bottom:624.421867pt;}
.y8e{bottom:626.934667pt;}
.ybd{bottom:626.946400pt;}
.y6{bottom:627.421733pt;}
.y3b{bottom:634.021867pt;}
.y63{bottom:640.421867pt;}
.y8d{bottom:641.334667pt;}
.ybc{bottom:641.346400pt;}
.y3a{bottom:648.421867pt;}
.y5{bottom:652.755067pt;}
.y8c{bottom:655.734667pt;}
.ybb{bottom:655.746400pt;}
.y62{bottom:656.421867pt;}
.y39{bottom:662.821867pt;}
.y8b{bottom:670.134667pt;}
.yba{bottom:670.146400pt;}
.y61{bottom:672.421867pt;}
.y38{bottom:677.221867pt;}
.y8a{bottom:684.534667pt;}
.yb9{bottom:684.546400pt;}
.y60{bottom:688.421867pt;}
.y37{bottom:691.621867pt;}
.y89{bottom:698.934667pt;}
.yb8{bottom:698.946400pt;}
.y8{bottom:699.408800pt;}
.y5f{bottom:704.421867pt;}
.y36{bottom:706.021867pt;}
.y88{bottom:713.334667pt;}
.yb7{bottom:713.346400pt;}
.y35{bottom:720.421867pt;}
.y87{bottom:727.734667pt;}
.yb6{bottom:727.746400pt;}
.y4{bottom:736.408800pt;}
.y34{bottom:736.421867pt;}
.y86{bottom:742.134667pt;}
.yb5{bottom:742.146267pt;}
.y33{bottom:752.421867pt;}
.y85{bottom:756.534667pt;}
.yb4{bottom:756.546400pt;}
.y3{bottom:768.408800pt;}
.y32{bottom:768.421867pt;}
.y84{bottom:770.934667pt;}
.yb3{bottom:770.946400pt;}
.y2{bottom:784.408800pt;}
.y31{bottom:784.421867pt;}
.y83{bottom:785.334667pt;}
.yb2{bottom:785.346400pt;}
.y1{bottom:833.413067pt;}
.h5{height:33.328125pt;}
.h7{height:37.437500pt;}
.h9{height:42.117188pt;}
.h6{height:42.234375pt;}
.h2{height:42.632812pt;}
.h4{height:46.796875pt;}
.h8{height:46.927083pt;}
.h3{height:47.369792pt;}
.h0{height:895.733333pt;}
.h1{height:896.000000pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:56.666667pt;}
.x1{left:75.600000pt;}
.x9{left:78.000000pt;}
.xa{left:83.066667pt;}
.xe{left:94.466667pt;}
.x4{left:96.933333pt;}
.x5{left:102.000000pt;}
.x3{left:180.027067pt;}
.xb{left:321.266667pt;}
.x6{left:340.200000pt;}
.xc{left:342.600000pt;}
.xf{left:359.066667pt;}
.x7{left:361.533333pt;}
.x2{left:377.973600pt;}
.xd{left:394.458133pt;}
}




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