
    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_5a9726deaaaf8e3b4ad57961.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_9bba33c0c691d5aaedd8883e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_27af291e7883b1d02dac30ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_9feec8d1ec51b6fcc73a6a64.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.043415,0.246201,-0.246201,0.043415,0,0);-ms-transform:matrix(0.043415,0.246201,-0.246201,0.043415,0,0);-webkit-transform:matrix(0.043415,0.246201,-0.246201,0.043415,0,0);}
.m3{transform:matrix(0.143394,0.204788,-0.204788,0.143394,0,0);-ms-transform:matrix(0.143394,0.204788,-0.204788,0.143394,0,0);-webkit-transform:matrix(0.143394,0.204788,-0.204788,0.143394,0,0);}
.m7{transform:matrix(0.160713,-0.191498,0.191498,0.160713,0,0);-ms-transform:matrix(0.160713,-0.191498,0.191498,0.160713,0,0);-webkit-transform:matrix(0.160713,-0.191498,0.191498,0.160713,0,0);}
.m6{transform:matrix(0.191498,-0.160713,0.160713,0.191498,0,0);-ms-transform:matrix(0.191498,-0.160713,0.160713,0.191498,0,0);-webkit-transform:matrix(0.191498,-0.160713,0.160713,0.191498,0,0);}
.m5{transform:matrix(0.216505,0.125003,-0.125003,0.216505,0,0);-ms-transform:matrix(0.216505,0.125003,-0.125003,0.216505,0,0);-webkit-transform:matrix(0.216505,0.125003,-0.125003,0.216505,0,0);}
.m2{transform:matrix(0.226580,0.105647,-0.105647,0.226580,0,0);-ms-transform:matrix(0.226580,0.105647,-0.105647,0.226580,0,0);-webkit-transform:matrix(0.226580,0.105647,-0.105647,0.226580,0,0);}
.m8{transform:matrix(0.246201,-0.043415,0.043415,0.246201,0,0);-ms-transform:matrix(0.246201,-0.043415,0.043415,0.246201,0,0);-webkit-transform:matrix(0.246201,-0.043415,0.043415,0.246201,0,0);}
.m9{transform:matrix(0.249049,-0.021787,0.021787,0.249049,0,0);-ms-transform:matrix(0.249049,-0.021787,0.021787,0.249049,0,0);-webkit-transform:matrix(0.249049,-0.021787,0.021787,0.249049,0,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);}
.v1{vertical-align:-48.510000px;}
.v5{vertical-align:-22.434000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.854000px;}
.v4{vertical-align:6.150000px;}
.v6{vertical-align:21.522000px;}
.v2{vertical-align:39.984000px;}
.ls19{letter-spacing:-1.518000px;}
.ls1d{letter-spacing:-1.452000px;}
.ls33{letter-spacing:-1.386000px;}
.ls32{letter-spacing:-1.320000px;}
.lsc{letter-spacing:-1.254000px;}
.ls30{letter-spacing:-1.122000px;}
.ls22{letter-spacing:-1.056000px;}
.ls1b{letter-spacing:-0.924000px;}
.ls18{letter-spacing:-0.741000px;}
.ls36{letter-spacing:-0.726000px;}
.lsd{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.660000px;}
.ls35{letter-spacing:-0.594000px;}
.ls20{letter-spacing:-0.528000px;}
.ls21{letter-spacing:-0.462000px;}
.ls16{letter-spacing:-0.456000px;}
.ls15{letter-spacing:-0.399000px;}
.ls23{letter-spacing:-0.396000px;}
.ls31{letter-spacing:-0.330000px;}
.lsb{letter-spacing:-0.285000px;}
.ls34{letter-spacing:-0.264000px;}
.lsa{letter-spacing:-0.228000px;}
.ls1e{letter-spacing:-0.198000px;}
.ls14{letter-spacing:-0.171000px;}
.ls1a{letter-spacing:-0.132000px;}
.ls17{letter-spacing:-0.114000px;}
.ls1c{letter-spacing:-0.066000px;}
.ls9{letter-spacing:-0.057000px;}
.ls25{letter-spacing:-0.054000px;}
.ls24{letter-spacing:-0.048000px;}
.ls2a{letter-spacing:-0.042000px;}
.ls26{letter-spacing:-0.040500px;}
.ls2b{letter-spacing:-0.036000px;}
.ls8{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.035999px;}
.ls27{letter-spacing:0.040500px;}
.ls28{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.057000px;}
.ls0{letter-spacing:0.114000px;}
.ls2c{letter-spacing:0.132000px;}
.lsf{letter-spacing:0.171000px;}
.ls10{letter-spacing:0.198000px;}
.ls7{letter-spacing:0.228000px;}
.ls11{letter-spacing:0.264000px;}
.ls6{letter-spacing:0.285000px;}
.ls2e{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.342000px;}
.ls2{letter-spacing:0.399000px;}
.ls12{letter-spacing:0.462000px;}
.lse{letter-spacing:0.570000px;}
.ls37{letter-spacing:0.726000px;}
.ls4{letter-spacing:0.855000px;}
.ls3{letter-spacing:0.912000px;}
.ls2f{letter-spacing:0.924000px;}
.ls13{letter-spacing:1.650000px;}
.ls2d{letter-spacing:18.240000px;}
.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;}
}
.ws23{word-spacing:-18.150000px;}
.ws4c{word-spacing:-17.424000px;}
.ws1e{word-spacing:-16.962000px;}
.ws1c{word-spacing:-16.764000px;}
.ws20{word-spacing:-16.500000px;}
.ws22{word-spacing:-16.434000px;}
.ws1d{word-spacing:-16.368000px;}
.ws49{word-spacing:-16.302000px;}
.ws48{word-spacing:-16.170000px;}
.ws21{word-spacing:-15.972000px;}
.ws47{word-spacing:-15.378000px;}
.ws4b{word-spacing:-15.246000px;}
.ws1f{word-spacing:-15.048000px;}
.ws15{word-spacing:-14.592000px;}
.ws0{word-spacing:-14.535000px;}
.ws18{word-spacing:-14.421000px;}
.ws1{word-spacing:-14.250000px;}
.ws1b{word-spacing:-14.193000px;}
.ws16{word-spacing:-14.079000px;}
.ws17{word-spacing:-14.022000px;}
.ws19{word-spacing:-13.851000px;}
.ws3c{word-spacing:-13.554000px;}
.ws1a{word-spacing:-13.509000px;}
.ws40{word-spacing:-13.500000px;}
.ws38{word-spacing:-13.446000px;}
.ws25{word-spacing:-11.952000px;}
.ws4a{word-spacing:-11.550000px;}
.ws43{word-spacing:-10.500000px;}
.ws44{word-spacing:-10.458000px;}
.ws39{word-spacing:-10.125000px;}
.ws46{word-spacing:-9.000000px;}
.ws45{word-spacing:-8.964000px;}
.ws14{word-spacing:-7.392000px;}
.ws2f{word-spacing:-0.792000px;}
.ws2d{word-spacing:-0.726000px;}
.ws3{word-spacing:-0.684000px;}
.ws31{word-spacing:-0.660000px;}
.ws54{word-spacing:-0.594000px;}
.ws27{word-spacing:-0.570000px;}
.ws33{word-spacing:-0.528000px;}
.ws6{word-spacing:-0.513000px;}
.ws4e{word-spacing:-0.462000px;}
.ws13{word-spacing:-0.456000px;}
.ws35{word-spacing:-0.396000px;}
.ws28{word-spacing:-0.342000px;}
.ws36{word-spacing:-0.330000px;}
.ws29{word-spacing:-0.285000px;}
.ws5a{word-spacing:-0.264000px;}
.ws5c{word-spacing:-0.198000px;}
.ws57{word-spacing:-0.132000px;}
.ws5b{word-spacing:-0.066000px;}
.ws5{word-spacing:0.000000px;}
.ws2e{word-spacing:0.066000px;}
.ws58{word-spacing:0.132000px;}
.wsd{word-spacing:0.171000px;}
.ws34{word-spacing:0.198000px;}
.ws4d{word-spacing:0.264000px;}
.ws53{word-spacing:0.396000px;}
.wse{word-spacing:0.399000px;}
.ws56{word-spacing:0.462000px;}
.wsa{word-spacing:0.513000px;}
.ws9{word-spacing:0.570000px;}
.ws2a{word-spacing:0.660000px;}
.ws52{word-spacing:0.726000px;}
.ws26{word-spacing:0.855000px;}
.ws51{word-spacing:0.858000px;}
.ws5d{word-spacing:0.924000px;}
.ws7{word-spacing:1.026000px;}
.ws4f{word-spacing:1.056000px;}
.ws59{word-spacing:1.062600px;}
.ws4{word-spacing:1.083000px;}
.ws30{word-spacing:1.122000px;}
.wsf{word-spacing:1.140000px;}
.ws55{word-spacing:1.188000px;}
.ws11{word-spacing:1.197000px;}
.ws2{word-spacing:1.254000px;}
.ws10{word-spacing:1.311000px;}
.ws50{word-spacing:1.320000px;}
.ws8{word-spacing:1.368000px;}
.ws2c{word-spacing:1.386000px;}
.wsc{word-spacing:1.425000px;}
.ws2b{word-spacing:1.452000px;}
.ws37{word-spacing:1.518000px;}
.ws32{word-spacing:1.584000px;}
.ws3b{word-spacing:3.270000px;}
.ws3d{word-spacing:3.280500px;}
.ws3e{word-spacing:3.288000px;}
.ws3f{word-spacing:3.328500px;}
.ws41{word-spacing:3.333000px;}
.ws3a{word-spacing:3.483000px;}
.ws12{word-spacing:7.809000px;}
.wsb{word-spacing:12.825000px;}
.ws24{word-spacing:35.904000px;}
.ws42{word-spacing:177.618000px;}
._1{margin-left:-7.638000px;}
._4{margin-left:-6.156000px;}
._9{margin-left:-4.731000px;}
._5{margin-left:-3.420000px;}
._0{margin-left:-1.995000px;}
._7{width:1.710000px;}
._6{width:6.669000px;}
._3{width:11.850000px;}
._2{width:14.649000px;}
._d{width:41.853000px;}
._8{width:47.580000px;}
._c{width:48.891000px;}
._f{width:51.408000px;}
._10{width:55.008000px;}
._e{width:78.588000px;}
._12{width:253.869000px;}
._a{width:438.987000px;}
._b{width:479.883000px;}
._11{width:915.849000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:35.999208px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:36.001022px;}
.fs7{font-size:40.500000px;}
.fsf{font-size:41.997784px;}
.fsa{font-size:41.998329px;}
.fsb{font-size:41.999563px;}
.fs8{font-size:42.000000px;}
.fse{font-size:42.000447px;}
.fs10{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:54.937500px;}
.y50{bottom:56.526000px;}
.y1d{bottom:57.228000px;}
.y9b{bottom:72.180000px;}
.y1c{bottom:72.233250px;}
.y4f{bottom:73.768500px;}
.y54{bottom:80.866500px;}
.y1b{bottom:87.238500px;}
.y9a{bottom:89.422500px;}
.y4e{bottom:91.011000px;}
.y53{bottom:95.116500px;}
.y1a{bottom:102.243750px;}
.y99{bottom:106.665000px;}
.y52{bottom:109.372500px;}
.y4d{bottom:116.883000px;}
.y98{bottom:123.907500px;}
.y19{bottom:132.240000px;}
.y4c{bottom:134.125500px;}
.y6a{bottom:138.993000px;}
.y97{bottom:141.150000px;}
.y18{bottom:147.204000px;}
.y4b{bottom:151.368000px;}
.y96{bottom:158.392500px;}
.y4a{bottom:168.610500px;}
.y95{bottom:175.699500px;}
.y49{bottom:185.853000px;}
.y17{bottom:186.947250px;}
.y6b{bottom:190.947000px;}
.y94{bottom:192.942000px;}
.y16{bottom:201.952500px;}
.y48{bottom:203.095500px;}
.y93{bottom:210.184500px;}
.y47{bottom:220.338000px;}
.y15{bottom:222.957000px;}
.y64{bottom:224.236440px;}
.y66{bottom:237.126000px;}
.y46{bottom:237.580500px;}
.y14{bottom:237.962250px;}
.y92{bottom:244.686000px;}
.y13{bottom:252.967500px;}
.y45{bottom:254.823000px;}
.y65{bottom:256.525500px;}
.y91{bottom:261.928500px;}
.y12{bottom:267.972750px;}
.y69{bottom:270.010500px;}
.y44{bottom:272.065500px;}
.y90{bottom:279.171000px;}
.y11{bottom:282.978000px;}
.y43{bottom:289.308000px;}
.y67{bottom:294.598500px;}
.y8f{bottom:296.413500px;}
.y10{bottom:297.983250px;}
.y6f{bottom:306.073500px;}
.y42{bottom:306.550500px;}
.y61{bottom:307.117500px;}
.yf{bottom:312.988500px;}
.y8e{bottom:313.656000px;}
.y41{bottom:323.793000px;}
.ye{bottom:327.993750px;}
.y8d{bottom:330.898500px;}
.y5b{bottom:340.408500px;}
.y5c{bottom:340.606500px;}
.y60{bottom:341.137500px;}
.y62{bottom:341.757000px;}
.y8c{bottom:348.141000px;}
.y6e{bottom:348.216000px;}
.y40{bottom:349.665000px;}
.yd{bottom:357.990000px;}
.y70{bottom:358.365000px;}
.y6d{bottom:358.719000px;}
.y68{bottom:362.476500px;}
.y5f{bottom:365.014500px;}
.y8b{bottom:365.383500px;}
.y3f{bottom:366.907500px;}
.yc{bottom:372.950250px;}
.y63{bottom:374.361000px;}
.y5d{bottom:382.512000px;}
.y3e{bottom:384.150000px;}
.y59{bottom:390.795000px;}
.y71{bottom:393.091500px;}
.y5a{bottom:394.621500px;}
.y6c{bottom:398.071500px;}
.y8a{bottom:400.048500px;}
.y3d{bottom:401.392500px;}
.yb{bottom:412.693500px;}
.y89{bottom:417.291000px;}
.y3c{bottom:418.635000px;}
.y5e{bottom:423.079500px;}
.ya{bottom:427.698750px;}
.y88{bottom:434.533500px;}
.y3b{bottom:435.877500px;}
.y58{bottom:437.503500px;}
.y9{bottom:448.703250px;}
.y87{bottom:451.776000px;}
.y3a{bottom:453.120000px;}
.y57{bottom:461.688000px;}
.y8{bottom:463.708500px;}
.y72{bottom:464.730000px;}
.y86{bottom:469.018500px;}
.y39{bottom:470.362500px;}
.y7{bottom:478.713750px;}
.y56{bottom:484.683000px;}
.ya5{bottom:486.244500px;}
.y85{bottom:486.261000px;}
.y38{bottom:487.605000px;}
.y6{bottom:493.719000px;}
.y55{bottom:499.623000px;}
.ya4{bottom:503.487000px;}
.y84{bottom:503.503500px;}
.y5{bottom:508.724250px;}
.ya3{bottom:520.729500px;}
.y83{bottom:520.746000px;}
.y4{bottom:523.729500px;}
.ya2{bottom:537.972000px;}
.y82{bottom:537.988500px;}
.y3{bottom:538.734750px;}
.y2{bottom:553.740000px;}
.ya1{bottom:555.214500px;}
.y81{bottom:555.231000px;}
.y37{bottom:555.885000px;}
.y51{bottom:561.300000px;}
.y80{bottom:572.473500px;}
.y36{bottom:576.862500px;}
.y1{bottom:583.740000px;}
.y7f{bottom:589.716000px;}
.y35{bottom:591.867750px;}
.y34{bottom:606.873000px;}
.y7e{bottom:606.958500px;}
.y33{bottom:621.878250px;}
.y7d{bottom:624.201000px;}
.y27{bottom:624.384000px;}
.y73{bottom:631.500000px;}
.y32{bottom:636.883500px;}
.y26{bottom:638.640000px;}
.ya0{bottom:641.443500px;}
.y31{bottom:651.888750px;}
.y9f{bottom:658.686000px;}
.y7c{bottom:658.702500px;}
.y25{bottom:666.849000px;}
.y9e{bottom:675.928500px;}
.y7b{bottom:675.945000px;}
.y24{bottom:681.105000px;}
.y30{bottom:681.885000px;}
.y9d{bottom:693.171000px;}
.y7a{bottom:693.187500px;}
.y2f{bottom:696.864000px;}
.y23{bottom:699.105000px;}
.y79{bottom:710.430000px;}
.y22{bottom:717.105000px;}
.y78{bottom:727.672500px;}
.y2e{bottom:732.859500px;}
.y77{bottom:744.915000px;}
.y2d{bottom:747.864750px;}
.y21{bottom:762.105000px;}
.y76{bottom:762.157500px;}
.y2c{bottom:768.869250px;}
.y75{bottom:779.400000px;}
.y2b{bottom:783.874500px;}
.y20{bottom:786.105000px;}
.y74{bottom:796.642500px;}
.y2a{bottom:798.879750px;}
.y1f{bottom:810.105000px;}
.y29{bottom:813.885000px;}
.y1e{bottom:861.105000px;}
.y28{bottom:924.000000px;}
.h13{height:38.411155px;}
.hf{height:38.412000px;}
.h12{height:38.413091px;}
.h17{height:44.562000px;}
.h18{height:44.811635px;}
.h10{height:44.812217px;}
.h11{height:44.813534px;}
.he{height:44.814000px;}
.h14{height:44.814477px;}
.h16{height:46.668000px;}
.h9{height:47.085938px;}
.h4{height:51.216000px;}
.h8{height:57.618000px;}
.hd{height:58.560000px;}
.h1{height:60.819000px;}
.h3{height:61.788000px;}
.h2{height:61.947000px;}
.ha{height:70.422000px;}
.h19{height:70.817400px;}
.hb{height:71.544000px;}
.h7{height:76.824000px;}
.h15{height:84.798000px;}
.h6{height:89.628000px;}
.h5{height:102.432000px;}
.hc{height:637.500000px;}
.h0{height:894.000000px;}
.w0{width:637.500000px;}
.w1{width:891.000000px;}
.x0{left:0.000000px;}
.x6{left:6.000000px;}
.xb{left:56.452500px;}
.x1{left:76.200000px;}
.x8{left:77.414250px;}
.x9{left:94.641000px;}
.x2{left:98.700750px;}
.x7{left:99.915000px;}
.x1b{left:207.402000px;}
.x1a{left:221.270835px;}
.x1e{left:242.631000px;}
.x1d{left:263.871000px;}
.x17{left:274.165500px;}
.x18{left:286.072500px;}
.x21{left:289.498500px;}
.x19{left:364.708500px;}
.x1f{left:372.379500px;}
.x3{left:378.885000px;}
.x1c{left:380.884500px;}
.x5{left:393.409500px;}
.xc{left:394.483500px;}
.x24{left:396.297000px;}
.x4{left:398.445000px;}
.x16{left:407.410500px;}
.x15{left:417.186000px;}
.xd{left:439.671000px;}
.x27{left:451.564500px;}
.x26{left:455.686500px;}
.x14{left:458.776500px;}
.x11{left:461.941500px;}
.x10{left:530.890500px;}
.x23{left:551.005500px;}
.x22{left:557.638500px;}
.xe{left:581.080500px;}
.xf{left:623.202000px;}
.x20{left:624.280500px;}
.x12{left:648.741000px;}
.x25{left:662.697000px;}
.x13{left:685.531500px;}
.xa{left:861.105000px;}
.x28{left:924.000000px;}
@media print{
.v1{vertical-align:-43.120000pt;}
.v5{vertical-align:-19.941333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.648000pt;}
.v4{vertical-align:5.466667pt;}
.v6{vertical-align:19.130667pt;}
.v2{vertical-align:35.541333pt;}
.ls19{letter-spacing:-1.349333pt;}
.ls1d{letter-spacing:-1.290667pt;}
.ls33{letter-spacing:-1.232000pt;}
.ls32{letter-spacing:-1.173333pt;}
.lsc{letter-spacing:-1.114667pt;}
.ls30{letter-spacing:-0.997333pt;}
.ls22{letter-spacing:-0.938667pt;}
.ls1b{letter-spacing:-0.821333pt;}
.ls18{letter-spacing:-0.658667pt;}
.ls36{letter-spacing:-0.645333pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.586667pt;}
.ls35{letter-spacing:-0.528000pt;}
.ls20{letter-spacing:-0.469333pt;}
.ls21{letter-spacing:-0.410667pt;}
.ls16{letter-spacing:-0.405333pt;}
.ls15{letter-spacing:-0.354667pt;}
.ls23{letter-spacing:-0.352000pt;}
.ls31{letter-spacing:-0.293333pt;}
.lsb{letter-spacing:-0.253333pt;}
.ls34{letter-spacing:-0.234667pt;}
.lsa{letter-spacing:-0.202667pt;}
.ls1e{letter-spacing:-0.176000pt;}
.ls14{letter-spacing:-0.152000pt;}
.ls1a{letter-spacing:-0.117333pt;}
.ls17{letter-spacing:-0.101333pt;}
.ls1c{letter-spacing:-0.058667pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls25{letter-spacing:-0.048000pt;}
.ls24{letter-spacing:-0.042667pt;}
.ls2a{letter-spacing:-0.037333pt;}
.ls26{letter-spacing:-0.036000pt;}
.ls2b{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.031999pt;}
.ls27{letter-spacing:0.036000pt;}
.ls28{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.050667pt;}
.ls0{letter-spacing:0.101333pt;}
.ls2c{letter-spacing:0.117333pt;}
.lsf{letter-spacing:0.152000pt;}
.ls10{letter-spacing:0.176000pt;}
.ls7{letter-spacing:0.202667pt;}
.ls11{letter-spacing:0.234667pt;}
.ls6{letter-spacing:0.253333pt;}
.ls2e{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.304000pt;}
.ls2{letter-spacing:0.354667pt;}
.ls12{letter-spacing:0.410667pt;}
.lse{letter-spacing:0.506667pt;}
.ls37{letter-spacing:0.645333pt;}
.ls4{letter-spacing:0.760000pt;}
.ls3{letter-spacing:0.810667pt;}
.ls2f{letter-spacing:0.821333pt;}
.ls13{letter-spacing:1.466667pt;}
.ls2d{letter-spacing:16.213333pt;}
.ws23{word-spacing:-16.133333pt;}
.ws4c{word-spacing:-15.488000pt;}
.ws1e{word-spacing:-15.077333pt;}
.ws1c{word-spacing:-14.901333pt;}
.ws20{word-spacing:-14.666667pt;}
.ws22{word-spacing:-14.608000pt;}
.ws1d{word-spacing:-14.549333pt;}
.ws49{word-spacing:-14.490667pt;}
.ws48{word-spacing:-14.373333pt;}
.ws21{word-spacing:-14.197333pt;}
.ws47{word-spacing:-13.669333pt;}
.ws4b{word-spacing:-13.552000pt;}
.ws1f{word-spacing:-13.376000pt;}
.ws15{word-spacing:-12.970667pt;}
.ws0{word-spacing:-12.920000pt;}
.ws18{word-spacing:-12.818667pt;}
.ws1{word-spacing:-12.666667pt;}
.ws1b{word-spacing:-12.616000pt;}
.ws16{word-spacing:-12.514667pt;}
.ws17{word-spacing:-12.464000pt;}
.ws19{word-spacing:-12.312000pt;}
.ws3c{word-spacing:-12.048000pt;}
.ws1a{word-spacing:-12.008000pt;}
.ws40{word-spacing:-12.000000pt;}
.ws38{word-spacing:-11.952000pt;}
.ws25{word-spacing:-10.624000pt;}
.ws4a{word-spacing:-10.266667pt;}
.ws43{word-spacing:-9.333333pt;}
.ws44{word-spacing:-9.296000pt;}
.ws39{word-spacing:-9.000000pt;}
.ws46{word-spacing:-8.000000pt;}
.ws45{word-spacing:-7.968000pt;}
.ws14{word-spacing:-6.570667pt;}
.ws2f{word-spacing:-0.704000pt;}
.ws2d{word-spacing:-0.645333pt;}
.ws3{word-spacing:-0.608000pt;}
.ws31{word-spacing:-0.586667pt;}
.ws54{word-spacing:-0.528000pt;}
.ws27{word-spacing:-0.506667pt;}
.ws33{word-spacing:-0.469333pt;}
.ws6{word-spacing:-0.456000pt;}
.ws4e{word-spacing:-0.410667pt;}
.ws13{word-spacing:-0.405333pt;}
.ws35{word-spacing:-0.352000pt;}
.ws28{word-spacing:-0.304000pt;}
.ws36{word-spacing:-0.293333pt;}
.ws29{word-spacing:-0.253333pt;}
.ws5a{word-spacing:-0.234667pt;}
.ws5c{word-spacing:-0.176000pt;}
.ws57{word-spacing:-0.117333pt;}
.ws5b{word-spacing:-0.058667pt;}
.ws5{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.058667pt;}
.ws58{word-spacing:0.117333pt;}
.wsd{word-spacing:0.152000pt;}
.ws34{word-spacing:0.176000pt;}
.ws4d{word-spacing:0.234667pt;}
.ws53{word-spacing:0.352000pt;}
.wse{word-spacing:0.354667pt;}
.ws56{word-spacing:0.410667pt;}
.wsa{word-spacing:0.456000pt;}
.ws9{word-spacing:0.506667pt;}
.ws2a{word-spacing:0.586667pt;}
.ws52{word-spacing:0.645333pt;}
.ws26{word-spacing:0.760000pt;}
.ws51{word-spacing:0.762667pt;}
.ws5d{word-spacing:0.821333pt;}
.ws7{word-spacing:0.912000pt;}
.ws4f{word-spacing:0.938667pt;}
.ws59{word-spacing:0.944533pt;}
.ws4{word-spacing:0.962667pt;}
.ws30{word-spacing:0.997333pt;}
.wsf{word-spacing:1.013333pt;}
.ws55{word-spacing:1.056000pt;}
.ws11{word-spacing:1.064000pt;}
.ws2{word-spacing:1.114667pt;}
.ws10{word-spacing:1.165333pt;}
.ws50{word-spacing:1.173333pt;}
.ws8{word-spacing:1.216000pt;}
.ws2c{word-spacing:1.232000pt;}
.wsc{word-spacing:1.266667pt;}
.ws2b{word-spacing:1.290667pt;}
.ws37{word-spacing:1.349333pt;}
.ws32{word-spacing:1.408000pt;}
.ws3b{word-spacing:2.906667pt;}
.ws3d{word-spacing:2.916000pt;}
.ws3e{word-spacing:2.922667pt;}
.ws3f{word-spacing:2.958667pt;}
.ws41{word-spacing:2.962667pt;}
.ws3a{word-spacing:3.096000pt;}
.ws12{word-spacing:6.941333pt;}
.wsb{word-spacing:11.400000pt;}
.ws24{word-spacing:31.914667pt;}
.ws42{word-spacing:157.882667pt;}
._1{margin-left:-6.789333pt;}
._4{margin-left:-5.472000pt;}
._9{margin-left:-4.205333pt;}
._5{margin-left:-3.040000pt;}
._0{margin-left:-1.773333pt;}
._7{width:1.520000pt;}
._6{width:5.928000pt;}
._3{width:10.533333pt;}
._2{width:13.021333pt;}
._d{width:37.202667pt;}
._8{width:42.293333pt;}
._c{width:43.458667pt;}
._f{width:45.696000pt;}
._10{width:48.896000pt;}
._e{width:69.856000pt;}
._12{width:225.661333pt;}
._a{width:390.210667pt;}
._b{width:426.562667pt;}
._11{width:814.088000pt;}
.fsd{font-size:31.999296pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:32.000909pt;}
.fs7{font-size:36.000000pt;}
.fsf{font-size:37.331363pt;}
.fsa{font-size:37.331848pt;}
.fsb{font-size:37.332945pt;}
.fs8{font-size:37.333333pt;}
.fse{font-size:37.333731pt;}
.fs10{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:48.833333pt;}
.y50{bottom:50.245333pt;}
.y1d{bottom:50.869333pt;}
.y9b{bottom:64.160000pt;}
.y1c{bottom:64.207333pt;}
.y4f{bottom:65.572000pt;}
.y54{bottom:71.881333pt;}
.y1b{bottom:77.545333pt;}
.y9a{bottom:79.486667pt;}
.y4e{bottom:80.898667pt;}
.y53{bottom:84.548000pt;}
.y1a{bottom:90.883333pt;}
.y99{bottom:94.813333pt;}
.y52{bottom:97.220000pt;}
.y4d{bottom:103.896000pt;}
.y98{bottom:110.140000pt;}
.y19{bottom:117.546667pt;}
.y4c{bottom:119.222667pt;}
.y6a{bottom:123.549333pt;}
.y97{bottom:125.466667pt;}
.y18{bottom:130.848000pt;}
.y4b{bottom:134.549333pt;}
.y96{bottom:140.793333pt;}
.y4a{bottom:149.876000pt;}
.y95{bottom:156.177333pt;}
.y49{bottom:165.202667pt;}
.y17{bottom:166.175333pt;}
.y6b{bottom:169.730667pt;}
.y94{bottom:171.504000pt;}
.y16{bottom:179.513333pt;}
.y48{bottom:180.529333pt;}
.y93{bottom:186.830667pt;}
.y47{bottom:195.856000pt;}
.y15{bottom:198.184000pt;}
.y64{bottom:199.321280pt;}
.y66{bottom:210.778667pt;}
.y46{bottom:211.182667pt;}
.y14{bottom:211.522000pt;}
.y92{bottom:217.498667pt;}
.y13{bottom:224.860000pt;}
.y45{bottom:226.509333pt;}
.y65{bottom:228.022667pt;}
.y91{bottom:232.825333pt;}
.y12{bottom:238.198000pt;}
.y69{bottom:240.009333pt;}
.y44{bottom:241.836000pt;}
.y90{bottom:248.152000pt;}
.y11{bottom:251.536000pt;}
.y43{bottom:257.162667pt;}
.y67{bottom:261.865333pt;}
.y8f{bottom:263.478667pt;}
.y10{bottom:264.874000pt;}
.y6f{bottom:272.065333pt;}
.y42{bottom:272.489333pt;}
.y61{bottom:272.993333pt;}
.yf{bottom:278.212000pt;}
.y8e{bottom:278.805333pt;}
.y41{bottom:287.816000pt;}
.ye{bottom:291.550000pt;}
.y8d{bottom:294.132000pt;}
.y5b{bottom:302.585333pt;}
.y5c{bottom:302.761333pt;}
.y60{bottom:303.233333pt;}
.y62{bottom:303.784000pt;}
.y8c{bottom:309.458667pt;}
.y6e{bottom:309.525333pt;}
.y40{bottom:310.813333pt;}
.yd{bottom:318.213333pt;}
.y70{bottom:318.546667pt;}
.y6d{bottom:318.861333pt;}
.y68{bottom:322.201333pt;}
.y5f{bottom:324.457333pt;}
.y8b{bottom:324.785333pt;}
.y3f{bottom:326.140000pt;}
.yc{bottom:331.511333pt;}
.y63{bottom:332.765333pt;}
.y5d{bottom:340.010667pt;}
.y3e{bottom:341.466667pt;}
.y59{bottom:347.373333pt;}
.y71{bottom:349.414667pt;}
.y5a{bottom:350.774667pt;}
.y6c{bottom:353.841333pt;}
.y8a{bottom:355.598667pt;}
.y3d{bottom:356.793333pt;}
.yb{bottom:366.838667pt;}
.y89{bottom:370.925333pt;}
.y3c{bottom:372.120000pt;}
.y5e{bottom:376.070667pt;}
.ya{bottom:380.176667pt;}
.y88{bottom:386.252000pt;}
.y3b{bottom:387.446667pt;}
.y58{bottom:388.892000pt;}
.y9{bottom:398.847333pt;}
.y87{bottom:401.578667pt;}
.y3a{bottom:402.773333pt;}
.y57{bottom:410.389333pt;}
.y8{bottom:412.185333pt;}
.y72{bottom:413.093333pt;}
.y86{bottom:416.905333pt;}
.y39{bottom:418.100000pt;}
.y7{bottom:425.523333pt;}
.y56{bottom:430.829333pt;}
.ya5{bottom:432.217333pt;}
.y85{bottom:432.232000pt;}
.y38{bottom:433.426667pt;}
.y6{bottom:438.861333pt;}
.y55{bottom:444.109333pt;}
.ya4{bottom:447.544000pt;}
.y84{bottom:447.558667pt;}
.y5{bottom:452.199333pt;}
.ya3{bottom:462.870667pt;}
.y83{bottom:462.885333pt;}
.y4{bottom:465.537333pt;}
.ya2{bottom:478.197333pt;}
.y82{bottom:478.212000pt;}
.y3{bottom:478.875333pt;}
.y2{bottom:492.213333pt;}
.ya1{bottom:493.524000pt;}
.y81{bottom:493.538667pt;}
.y37{bottom:494.120000pt;}
.y51{bottom:498.933333pt;}
.y80{bottom:508.865333pt;}
.y36{bottom:512.766667pt;}
.y1{bottom:518.880000pt;}
.y7f{bottom:524.192000pt;}
.y35{bottom:526.104667pt;}
.y34{bottom:539.442667pt;}
.y7e{bottom:539.518667pt;}
.y33{bottom:552.780667pt;}
.y7d{bottom:554.845333pt;}
.y27{bottom:555.008000pt;}
.y73{bottom:561.333333pt;}
.y32{bottom:566.118667pt;}
.y26{bottom:567.680000pt;}
.ya0{bottom:570.172000pt;}
.y31{bottom:579.456667pt;}
.y9f{bottom:585.498667pt;}
.y7c{bottom:585.513333pt;}
.y25{bottom:592.754667pt;}
.y9e{bottom:600.825333pt;}
.y7b{bottom:600.840000pt;}
.y24{bottom:605.426667pt;}
.y30{bottom:606.120000pt;}
.y9d{bottom:616.152000pt;}
.y7a{bottom:616.166667pt;}
.y2f{bottom:619.434667pt;}
.y23{bottom:621.426667pt;}
.y79{bottom:631.493333pt;}
.y22{bottom:637.426667pt;}
.y78{bottom:646.820000pt;}
.y2e{bottom:651.430667pt;}
.y77{bottom:662.146667pt;}
.y2d{bottom:664.768667pt;}
.y21{bottom:677.426667pt;}
.y76{bottom:677.473333pt;}
.y2c{bottom:683.439333pt;}
.y75{bottom:692.800000pt;}
.y2b{bottom:696.777333pt;}
.y20{bottom:698.760000pt;}
.y74{bottom:708.126667pt;}
.y2a{bottom:710.115333pt;}
.y1f{bottom:720.093333pt;}
.y29{bottom:723.453333pt;}
.y1e{bottom:765.426667pt;}
.y28{bottom:821.333333pt;}
.h13{height:34.143249pt;}
.hf{height:34.144000pt;}
.h12{height:34.144970pt;}
.h17{height:39.610667pt;}
.h18{height:39.832565pt;}
.h10{height:39.833081pt;}
.h11{height:39.834252pt;}
.he{height:39.834667pt;}
.h14{height:39.835091pt;}
.h16{height:41.482667pt;}
.h9{height:41.854167pt;}
.h4{height:45.525333pt;}
.h8{height:51.216000pt;}
.hd{height:52.053333pt;}
.h1{height:54.061333pt;}
.h3{height:54.922667pt;}
.h2{height:55.064000pt;}
.ha{height:62.597333pt;}
.h19{height:62.948800pt;}
.hb{height:63.594667pt;}
.h7{height:68.288000pt;}
.h15{height:75.376000pt;}
.h6{height:79.669333pt;}
.h5{height:91.050667pt;}
.hc{height:566.666667pt;}
.h0{height:794.666667pt;}
.w0{width:566.666667pt;}
.w1{width:792.000000pt;}
.x0{left:0.000000pt;}
.x6{left:5.333333pt;}
.xb{left:50.180000pt;}
.x1{left:67.733333pt;}
.x8{left:68.812667pt;}
.x9{left:84.125333pt;}
.x2{left:87.734000pt;}
.x7{left:88.813333pt;}
.x1b{left:184.357333pt;}
.x1a{left:196.685187pt;}
.x1e{left:215.672000pt;}
.x1d{left:234.552000pt;}
.x17{left:243.702667pt;}
.x18{left:254.286667pt;}
.x21{left:257.332000pt;}
.x19{left:324.185333pt;}
.x1f{left:331.004000pt;}
.x3{left:336.786667pt;}
.x1c{left:338.564000pt;}
.x5{left:349.697333pt;}
.xc{left:350.652000pt;}
.x24{left:352.264000pt;}
.x4{left:354.173333pt;}
.x16{left:362.142667pt;}
.x15{left:370.832000pt;}
.xd{left:390.818667pt;}
.x27{left:401.390667pt;}
.x26{left:405.054667pt;}
.x14{left:407.801333pt;}
.x11{left:410.614667pt;}
.x10{left:471.902667pt;}
.x23{left:489.782667pt;}
.x22{left:495.678667pt;}
.xe{left:516.516000pt;}
.xf{left:553.957333pt;}
.x20{left:554.916000pt;}
.x12{left:576.658667pt;}
.x25{left:589.064000pt;}
.x13{left:609.361333pt;}
.xa{left:765.426667pt;}
.x28{left:821.333333pt;}
}




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