
    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_616a1dc9bc82b956545d7928.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_f43807c3bfd679674bdf7036.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_563a988c20979c5f0f753748.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_7eb2137b419cc8a25aa9d3c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239258;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);}
.v2{vertical-align:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.500000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006000px;}
.ls5{letter-spacing:0.012000px;}
.ls1d{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.933000px;}
.ls0{letter-spacing:1.476000px;}
.ls1b{letter-spacing:1.494000px;}
.lsf{letter-spacing:1.500000px;}
.ls6{letter-spacing:1.506000px;}
.ls3{letter-spacing:1.512000px;}
.lsc{letter-spacing:1.518000px;}
.ls23{letter-spacing:1.728000px;}
.lsb{letter-spacing:4.500000px;}
.ls9{letter-spacing:5.994000px;}
.ls1f{letter-spacing:6.000000px;}
.ls12{letter-spacing:6.006000px;}
.ls20{letter-spacing:6.018000px;}
.lsd{letter-spacing:7.512000px;}
.ls11{letter-spacing:9.000000px;}
.ls14{letter-spacing:9.006000px;}
.ls10{letter-spacing:9.012000px;}
.ls1c{letter-spacing:10.524000px;}
.lsa{letter-spacing:14.427000px;}
.ls22{letter-spacing:15.006000px;}
.ls2{letter-spacing:15.055500px;}
.ls19{letter-spacing:16.494000px;}
.ls16{letter-spacing:16.500000px;}
.ls18{letter-spacing:16.506000px;}
.ls15{letter-spacing:17.994000px;}
.lse{letter-spacing:18.000000px;}
.ls8{letter-spacing:18.006000px;}
.ls17{letter-spacing:19.494000px;}
.ls13{letter-spacing:19.506000px;}
.ls21{letter-spacing:19.512000px;}
.ls1e{letter-spacing:21.006000px;}
.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;}
}
.ws22{word-spacing:-18.024000px;}
.ws16{word-spacing:-17.670000px;}
.ws3{word-spacing:-17.640000px;}
.ws6c{word-spacing:-17.430000px;}
.ws21{word-spacing:-17.424000px;}
.ws18{word-spacing:-17.370000px;}
.ws72{word-spacing:-17.346000px;}
.ws51{word-spacing:-17.268000px;}
.ws5d{word-spacing:-17.250000px;}
.ws31{word-spacing:-17.160000px;}
.ws71{word-spacing:-17.154000px;}
.ws49{word-spacing:-17.094000px;}
.ws69{word-spacing:-17.046000px;}
.ws73{word-spacing:-16.986000px;}
.ws35{word-spacing:-16.956000px;}
.ws36{word-spacing:-16.920000px;}
.ws66{word-spacing:-16.884000px;}
.ws1c{word-spacing:-16.836000px;}
.ws68{word-spacing:-16.830000px;}
.ws5f{word-spacing:-16.782000px;}
.ws56{word-spacing:-16.770000px;}
.ws14{word-spacing:-16.752000px;}
.ws2b{word-spacing:-16.746000px;}
.ws15{word-spacing:-16.716000px;}
.ws5c{word-spacing:-16.698000px;}
.ws6a{word-spacing:-16.686000px;}
.ws23{word-spacing:-16.668000px;}
.ws7a{word-spacing:-16.596000px;}
.ws57{word-spacing:-16.590000px;}
.ws64{word-spacing:-16.584000px;}
.ws34{word-spacing:-16.554000px;}
.ws4a{word-spacing:-16.548000px;}
.ws50{word-spacing:-16.506000px;}
.wsd{word-spacing:-16.500000px;}
.ws38{word-spacing:-16.476000px;}
.ws53{word-spacing:-16.470000px;}
.ws4f{word-spacing:-16.464000px;}
.ws7e{word-spacing:-16.446000px;}
.ws17{word-spacing:-16.422000px;}
.ws2c{word-spacing:-16.416000px;}
.ws29{word-spacing:-16.410000px;}
.ws47{word-spacing:-16.386000px;}
.ws4c{word-spacing:-16.374000px;}
.ws7d{word-spacing:-16.362000px;}
.ws27{word-spacing:-16.356000px;}
.ws48{word-spacing:-16.350000px;}
.ws67{word-spacing:-16.338000px;}
.ws33{word-spacing:-16.332000px;}
.ws4d{word-spacing:-16.326000px;}
.ws4e{word-spacing:-16.308000px;}
.ws3f{word-spacing:-16.296000px;}
.ws7c{word-spacing:-16.290000px;}
.ws5e{word-spacing:-16.284000px;}
.ws60{word-spacing:-16.278000px;}
.ws1b{word-spacing:-16.266000px;}
.ws62{word-spacing:-16.200000px;}
.ws59{word-spacing:-16.194000px;}
.ws4b{word-spacing:-16.188000px;}
.ws13{word-spacing:-16.170000px;}
.ws5a{word-spacing:-16.098000px;}
.ws24{word-spacing:-16.092000px;}
.ws30{word-spacing:-15.984000px;}
.ws58{word-spacing:-15.954000px;}
.ws26{word-spacing:-15.906000px;}
.ws1d{word-spacing:-15.840000px;}
.ws7b{word-spacing:-15.582000px;}
.ws63{word-spacing:-15.510000px;}
.ws2f{word-spacing:-15.468000px;}
.ws52{word-spacing:-15.462000px;}
.ws25{word-spacing:-15.270000px;}
.ws5{word-spacing:-14.556000px;}
.ws0{word-spacing:-14.535000px;}
.ws9{word-spacing:-14.244000px;}
.ws8{word-spacing:-14.178000px;}
.wsa{word-spacing:-14.154000px;}
.ws7{word-spacing:-14.148000px;}
.ws6b{word-spacing:-13.980000px;}
.ws4{word-spacing:-13.974000px;}
.ws6{word-spacing:-13.968000px;}
.ws55{word-spacing:-13.896000px;}
.ws12{word-spacing:-13.878000px;}
.ws11{word-spacing:-13.770000px;}
.ws1f{word-spacing:-13.608000px;}
.wsb{word-spacing:-13.500000px;}
.ws28{word-spacing:-13.446000px;}
.ws20{word-spacing:-13.404000px;}
.wsf{word-spacing:-13.230000px;}
.ws46{word-spacing:-12.960000px;}
.ws6d{word-spacing:-12.478212px;}
.ws2{word-spacing:-11.994000px;}
.wse{word-spacing:-11.542500px;}
.ws2d{word-spacing:-11.462472px;}
.ws32{word-spacing:-11.413224px;}
.ws61{word-spacing:-11.240856px;}
.ws2a{word-spacing:-11.216232px;}
.ws2e{word-spacing:-10.883808px;}
.ws5b{word-spacing:-10.345500px;}
.ws70{word-spacing:-10.332000px;}
.wsc{word-spacing:-10.125000px;}
.ws1a{word-spacing:-10.062000px;}
.ws37{word-spacing:-9.990000px;}
.ws10{word-spacing:-9.855000px;}
.ws19{word-spacing:-9.697500px;}
.ws76{word-spacing:-2.562000px;}
.ws3c{word-spacing:-2.268000px;}
.ws75{word-spacing:-2.208000px;}
.ws40{word-spacing:-2.034000px;}
.ws74{word-spacing:-0.864000px;}
.ws39{word-spacing:-0.798000px;}
.ws1{word-spacing:0.000000px;}
.ws3a{word-spacing:0.480000px;}
.ws45{word-spacing:0.696000px;}
.ws79{word-spacing:0.888000px;}
.ws42{word-spacing:1.308000px;}
.ws41{word-spacing:1.530000px;}
.ws43{word-spacing:2.826000px;}
.ws65{word-spacing:3.012000px;}
.ws44{word-spacing:3.018000px;}
.ws3b{word-spacing:3.540000px;}
.ws3d{word-spacing:3.804000px;}
.ws3e{word-spacing:3.918000px;}
.ws78{word-spacing:4.392000px;}
.ws6f{word-spacing:4.488000px;}
.ws77{word-spacing:4.602000px;}
.ws1e{word-spacing:6.006000px;}
.ws54{word-spacing:7.524000px;}
.ws6e{word-spacing:9.000000px;}
._21{margin-left:-13.794000px;}
._1d{margin-left:-12.192000px;}
._20{margin-left:-11.067000px;}
._1e{margin-left:-9.876000px;}
._1b{margin-left:-8.190000px;}
._f{margin-left:-6.741000px;}
._6{margin-left:-5.535000px;}
._1a{margin-left:-4.200000px;}
._4{margin-left:-3.024000px;}
._3{margin-left:-1.968000px;}
._0{width:1.488000px;}
._2{width:3.264000px;}
._5{width:4.728000px;}
._10{width:6.348000px;}
._15{width:7.554000px;}
._17{width:8.988000px;}
._22{width:10.188000px;}
._8{width:11.712000px;}
._16{width:13.530000px;}
._a{width:14.958000px;}
._b{width:16.458000px;}
._1f{width:17.547000px;}
._11{width:18.594000px;}
._19{width:19.905000px;}
._12{width:21.048000px;}
._7{width:22.971000px;}
._13{width:24.348000px;}
._1c{width:26.376000px;}
._9{width:28.458000px;}
._c{width:29.958000px;}
._18{width:34.530000px;}
._1{width:47.928000px;}
._d{width:49.458000px;}
._14{width:689.736000px;}
._e{width:1266.408000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:40.500000px;}
.fs7{font-size:46.170000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:37.742130px;}
.yab{bottom:38.867130px;}
.y21{bottom:39.242130px;}
.ya5{bottom:47.867130px;}
.y2a{bottom:51.992130px;}
.y20{bottom:54.242130px;}
.yaa{bottom:56.117130px;}
.yd0{bottom:56.492130px;}
.ya4{bottom:65.117130px;}
.y29{bottom:66.242130px;}
.ya9{bottom:73.367130px;}
.ycf{bottom:73.742130px;}
.y1f{bottom:75.242130px;}
.y28{bottom:80.492130px;}
.ya3{bottom:82.367130px;}
.ya8{bottom:90.617130px;}
.yce{bottom:90.992130px;}
.y27{bottom:94.742130px;}
.y1e{bottom:96.242130px;}
.ya2{bottom:99.617130px;}
.ya7{bottom:107.867130px;}
.ycd{bottom:108.242130px;}
.y26{bottom:108.992130px;}
.ya1{bottom:116.867130px;}
.y1d{bottom:119.492130px;}
.y25{bottom:123.242130px;}
.y73{bottom:125.117130px;}
.ycc{bottom:125.492130px;}
.ya6{bottom:133.742130px;}
.ya0{bottom:134.117130px;}
.y24{bottom:137.492130px;}
.y72{bottom:142.367130px;}
.ycb{bottom:142.742130px;}
.y9f{bottom:151.367130px;}
.y23{bottom:151.741755px;}
.y6d{bottom:151.742130px;}
.y71{bottom:159.617130px;}
.yca{bottom:159.992130px;}
.y22{bottom:165.992130px;}
.y9e{bottom:168.617130px;}
.y1c{bottom:175.367130px;}
.y6c{bottom:176.867130px;}
.yc9{bottom:177.242130px;}
.y7b{bottom:180.242130px;}
.y9d{bottom:185.867130px;}
.y6b{bottom:194.117130px;}
.y7a{bottom:194.492130px;}
.y1b{bottom:196.367130px;}
.y9c{bottom:203.117130px;}
.y79{bottom:208.742130px;}
.y1a{bottom:211.367130px;}
.yc8{bottom:211.742130px;}
.y4d{bottom:219.992130px;}
.y9b{bottom:220.367130px;}
.y78{bottom:222.992130px;}
.y19{bottom:226.367130px;}
.y6a{bottom:228.617130px;}
.yc7{bottom:228.992130px;}
.y4c{bottom:237.242130px;}
.y9a{bottom:237.617130px;}
.y18{bottom:241.367130px;}
.y69{bottom:245.867130px;}
.yc6{bottom:246.242130px;}
.y77{bottom:251.492130px;}
.y4b{bottom:254.492130px;}
.y99{bottom:254.867130px;}
.y17{bottom:256.367130px;}
.y68{bottom:263.117130px;}
.yc5{bottom:263.492130px;}
.y76{bottom:265.742130px;}
.y16{bottom:271.367130px;}
.y4a{bottom:271.742130px;}
.y98{bottom:272.117130px;}
.y75{bottom:279.992130px;}
.y67{bottom:280.367130px;}
.yc4{bottom:280.742130px;}
.y15{bottom:286.367130px;}
.y49{bottom:288.992130px;}
.y97{bottom:289.367130px;}
.y74{bottom:294.242130px;}
.y66{bottom:297.617130px;}
.yc3{bottom:297.992130px;}
.y14{bottom:301.367130px;}
.y48{bottom:306.242130px;}
.y96{bottom:306.617130px;}
.y65{bottom:314.867130px;}
.yc2{bottom:315.242130px;}
.y13{bottom:316.367130px;}
.y47{bottom:323.492130px;}
.y95{bottom:323.867130px;}
.y64{bottom:332.117130px;}
.yc1{bottom:332.492130px;}
.y46{bottom:340.742130px;}
.y94{bottom:341.117130px;}
.y12{bottom:346.367130px;}
.y63{bottom:349.367130px;}
.yc0{bottom:349.742130px;}
.y45{bottom:357.992130px;}
.y93{bottom:358.367130px;}
.y62{bottom:366.617130px;}
.ybf{bottom:366.992130px;}
.y44{bottom:375.242130px;}
.y92{bottom:375.617130px;}
.y11{bottom:382.367130px;}
.y61{bottom:383.867130px;}
.ybe{bottom:384.242130px;}
.y43{bottom:392.492130px;}
.y91{bottom:392.867130px;}
.y60{bottom:401.117130px;}
.ybd{bottom:401.492130px;}
.y10{bottom:403.367130px;}
.y42{bottom:409.742130px;}
.y90{bottom:410.117130px;}
.yf{bottom:418.367130px;}
.ybc{bottom:418.742130px;}
.y41{bottom:426.992130px;}
.y8f{bottom:427.367130px;}
.ye{bottom:433.367130px;}
.y5f{bottom:435.617130px;}
.ybb{bottom:435.992130px;}
.y40{bottom:444.242130px;}
.y8e{bottom:444.617130px;}
.yd{bottom:448.367130px;}
.y70{bottom:452.867130px;}
.yba{bottom:453.242130px;}
.y3f{bottom:461.492130px;}
.y8d{bottom:461.867130px;}
.yc{bottom:463.367130px;}
.y6f{bottom:470.117130px;}
.yb9{bottom:470.492130px;}
.yb{bottom:478.367130px;}
.y3e{bottom:478.742130px;}
.y8c{bottom:479.117130px;}
.y6e{bottom:487.367130px;}
.yb8{bottom:487.742130px;}
.ya{bottom:493.367130px;}
.y3d{bottom:495.992130px;}
.y8b{bottom:496.367130px;}
.y5e{bottom:504.617130px;}
.yb7{bottom:504.992130px;}
.y9{bottom:508.367130px;}
.y3c{bottom:513.242130px;}
.y8a{bottom:513.617130px;}
.y5d{bottom:521.867130px;}
.yb6{bottom:522.242130px;}
.y8{bottom:523.367130px;}
.y3b{bottom:530.492130px;}
.y89{bottom:530.867130px;}
.y5c{bottom:539.117130px;}
.yb5{bottom:539.492130px;}
.y3a{bottom:547.742130px;}
.y88{bottom:548.117130px;}
.y7{bottom:553.367130px;}
.y5b{bottom:556.367130px;}
.yb4{bottom:556.742130px;}
.y39{bottom:564.992130px;}
.y87{bottom:565.367130px;}
.y5a{bottom:573.617130px;}
.yb3{bottom:573.992130px;}
.y38{bottom:582.242130px;}
.y86{bottom:582.617130px;}
.y59{bottom:590.867130px;}
.yb2{bottom:591.242130px;}
.y37{bottom:599.492130px;}
.y85{bottom:599.867130px;}
.y58{bottom:608.117130px;}
.yb1{bottom:608.492130px;}
.y36{bottom:616.742130px;}
.y84{bottom:617.117130px;}
.y57{bottom:625.367130px;}
.yb0{bottom:625.742130px;}
.y35{bottom:633.992130px;}
.y83{bottom:634.367130px;}
.y56{bottom:642.617130px;}
.yaf{bottom:642.992130px;}
.y34{bottom:651.242130px;}
.y82{bottom:651.617130px;}
.y55{bottom:659.867130px;}
.yae{bottom:660.242130px;}
.y33{bottom:668.492130px;}
.y81{bottom:668.867130px;}
.y54{bottom:677.117130px;}
.yad{bottom:677.492130px;}
.y32{bottom:685.742130px;}
.y80{bottom:686.117130px;}
.y53{bottom:694.367130px;}
.yac{bottom:694.742130px;}
.y6{bottom:701.867130px;}
.y31{bottom:702.992130px;}
.y7f{bottom:703.367130px;}
.y52{bottom:711.617130px;}
.y5{bottom:716.117130px;}
.y30{bottom:720.242130px;}
.y7e{bottom:720.617130px;}
.y51{bottom:728.867130px;}
.y4{bottom:730.367130px;}
.y2f{bottom:737.492130px;}
.y7d{bottom:737.867130px;}
.y50{bottom:746.117130px;}
.y3{bottom:748.367130px;}
.y2e{bottom:754.742130px;}
.y4f{bottom:763.367130px;}
.y7c{bottom:763.742130px;}
.y2d{bottom:771.992130px;}
.y4e{bottom:780.617130px;}
.y2{bottom:793.367130px;}
.y2c{bottom:797.867130px;}
.y1{bottom:845.117130px;}
.h2{height:51.216000px;}
.h5{height:57.618000px;}
.h9{height:58.536000px;}
.h8{height:58.537500px;}
.h6{height:60.819000px;}
.h7{height:61.788000px;}
.ha{height:70.422000px;}
.hb{height:71.544000px;}
.hc{height:71.763390px;}
.h4{height:76.824000px;}
.h3{height:102.432000px;}
.h1{height:875.250000px;}
.h0{height:875.492130px;}
.w1{width:565.500000px;}
.w0{width:565.736235px;}
.x0{left:0.000000px;}
.x2{left:45.503235px;}
.x9{left:67.703610px;}
.xa{left:81.276735px;}
.x6{left:89.465235px;}
.x7{left:103.790235px;}
.x5{left:154.863735px;}
.x4{left:191.654235px;}
.x3{left:268.130235px;}
.x8{left:301.886235px;}
.x1{left:412.923735px;}
@media print{
.v2{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005333pt;}
.ls5{letter-spacing:0.010667pt;}
.ls1d{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.829333pt;}
.ls0{letter-spacing:1.312000pt;}
.ls1b{letter-spacing:1.328000pt;}
.lsf{letter-spacing:1.333333pt;}
.ls6{letter-spacing:1.338667pt;}
.ls3{letter-spacing:1.344000pt;}
.lsc{letter-spacing:1.349333pt;}
.ls23{letter-spacing:1.536000pt;}
.lsb{letter-spacing:4.000000pt;}
.ls9{letter-spacing:5.328000pt;}
.ls1f{letter-spacing:5.333333pt;}
.ls12{letter-spacing:5.338667pt;}
.ls20{letter-spacing:5.349333pt;}
.lsd{letter-spacing:6.677333pt;}
.ls11{letter-spacing:8.000000pt;}
.ls14{letter-spacing:8.005333pt;}
.ls10{letter-spacing:8.010667pt;}
.ls1c{letter-spacing:9.354667pt;}
.lsa{letter-spacing:12.824000pt;}
.ls22{letter-spacing:13.338667pt;}
.ls2{letter-spacing:13.382667pt;}
.ls19{letter-spacing:14.661333pt;}
.ls16{letter-spacing:14.666667pt;}
.ls18{letter-spacing:14.672000pt;}
.ls15{letter-spacing:15.994667pt;}
.lse{letter-spacing:16.000000pt;}
.ls8{letter-spacing:16.005333pt;}
.ls17{letter-spacing:17.328000pt;}
.ls13{letter-spacing:17.338667pt;}
.ls21{letter-spacing:17.344000pt;}
.ls1e{letter-spacing:18.672000pt;}
.ws22{word-spacing:-16.021333pt;}
.ws16{word-spacing:-15.706667pt;}
.ws3{word-spacing:-15.680000pt;}
.ws6c{word-spacing:-15.493333pt;}
.ws21{word-spacing:-15.488000pt;}
.ws18{word-spacing:-15.440000pt;}
.ws72{word-spacing:-15.418667pt;}
.ws51{word-spacing:-15.349333pt;}
.ws5d{word-spacing:-15.333333pt;}
.ws31{word-spacing:-15.253333pt;}
.ws71{word-spacing:-15.248000pt;}
.ws49{word-spacing:-15.194667pt;}
.ws69{word-spacing:-15.152000pt;}
.ws73{word-spacing:-15.098667pt;}
.ws35{word-spacing:-15.072000pt;}
.ws36{word-spacing:-15.040000pt;}
.ws66{word-spacing:-15.008000pt;}
.ws1c{word-spacing:-14.965333pt;}
.ws68{word-spacing:-14.960000pt;}
.ws5f{word-spacing:-14.917333pt;}
.ws56{word-spacing:-14.906667pt;}
.ws14{word-spacing:-14.890667pt;}
.ws2b{word-spacing:-14.885333pt;}
.ws15{word-spacing:-14.858667pt;}
.ws5c{word-spacing:-14.842667pt;}
.ws6a{word-spacing:-14.832000pt;}
.ws23{word-spacing:-14.816000pt;}
.ws7a{word-spacing:-14.752000pt;}
.ws57{word-spacing:-14.746667pt;}
.ws64{word-spacing:-14.741333pt;}
.ws34{word-spacing:-14.714667pt;}
.ws4a{word-spacing:-14.709333pt;}
.ws50{word-spacing:-14.672000pt;}
.wsd{word-spacing:-14.666667pt;}
.ws38{word-spacing:-14.645333pt;}
.ws53{word-spacing:-14.640000pt;}
.ws4f{word-spacing:-14.634667pt;}
.ws7e{word-spacing:-14.618667pt;}
.ws17{word-spacing:-14.597333pt;}
.ws2c{word-spacing:-14.592000pt;}
.ws29{word-spacing:-14.586667pt;}
.ws47{word-spacing:-14.565333pt;}
.ws4c{word-spacing:-14.554667pt;}
.ws7d{word-spacing:-14.544000pt;}
.ws27{word-spacing:-14.538667pt;}
.ws48{word-spacing:-14.533333pt;}
.ws67{word-spacing:-14.522667pt;}
.ws33{word-spacing:-14.517333pt;}
.ws4d{word-spacing:-14.512000pt;}
.ws4e{word-spacing:-14.496000pt;}
.ws3f{word-spacing:-14.485333pt;}
.ws7c{word-spacing:-14.480000pt;}
.ws5e{word-spacing:-14.474667pt;}
.ws60{word-spacing:-14.469333pt;}
.ws1b{word-spacing:-14.458667pt;}
.ws62{word-spacing:-14.400000pt;}
.ws59{word-spacing:-14.394667pt;}
.ws4b{word-spacing:-14.389333pt;}
.ws13{word-spacing:-14.373333pt;}
.ws5a{word-spacing:-14.309333pt;}
.ws24{word-spacing:-14.304000pt;}
.ws30{word-spacing:-14.208000pt;}
.ws58{word-spacing:-14.181333pt;}
.ws26{word-spacing:-14.138667pt;}
.ws1d{word-spacing:-14.080000pt;}
.ws7b{word-spacing:-13.850667pt;}
.ws63{word-spacing:-13.786667pt;}
.ws2f{word-spacing:-13.749333pt;}
.ws52{word-spacing:-13.744000pt;}
.ws25{word-spacing:-13.573333pt;}
.ws5{word-spacing:-12.938667pt;}
.ws0{word-spacing:-12.920000pt;}
.ws9{word-spacing:-12.661333pt;}
.ws8{word-spacing:-12.602667pt;}
.wsa{word-spacing:-12.581333pt;}
.ws7{word-spacing:-12.576000pt;}
.ws6b{word-spacing:-12.426667pt;}
.ws4{word-spacing:-12.421333pt;}
.ws6{word-spacing:-12.416000pt;}
.ws55{word-spacing:-12.352000pt;}
.ws12{word-spacing:-12.336000pt;}
.ws11{word-spacing:-12.240000pt;}
.ws1f{word-spacing:-12.096000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws28{word-spacing:-11.952000pt;}
.ws20{word-spacing:-11.914667pt;}
.wsf{word-spacing:-11.760000pt;}
.ws46{word-spacing:-11.520000pt;}
.ws6d{word-spacing:-11.091744pt;}
.ws2{word-spacing:-10.661333pt;}
.wse{word-spacing:-10.260000pt;}
.ws2d{word-spacing:-10.188864pt;}
.ws32{word-spacing:-10.145088pt;}
.ws61{word-spacing:-9.991872pt;}
.ws2a{word-spacing:-9.969984pt;}
.ws2e{word-spacing:-9.674496pt;}
.ws5b{word-spacing:-9.196000pt;}
.ws70{word-spacing:-9.184000pt;}
.wsc{word-spacing:-9.000000pt;}
.ws1a{word-spacing:-8.944000pt;}
.ws37{word-spacing:-8.880000pt;}
.ws10{word-spacing:-8.760000pt;}
.ws19{word-spacing:-8.620000pt;}
.ws76{word-spacing:-2.277333pt;}
.ws3c{word-spacing:-2.016000pt;}
.ws75{word-spacing:-1.962667pt;}
.ws40{word-spacing:-1.808000pt;}
.ws74{word-spacing:-0.768000pt;}
.ws39{word-spacing:-0.709333pt;}
.ws1{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.426667pt;}
.ws45{word-spacing:0.618667pt;}
.ws79{word-spacing:0.789333pt;}
.ws42{word-spacing:1.162667pt;}
.ws41{word-spacing:1.360000pt;}
.ws43{word-spacing:2.512000pt;}
.ws65{word-spacing:2.677333pt;}
.ws44{word-spacing:2.682667pt;}
.ws3b{word-spacing:3.146667pt;}
.ws3d{word-spacing:3.381333pt;}
.ws3e{word-spacing:3.482667pt;}
.ws78{word-spacing:3.904000pt;}
.ws6f{word-spacing:3.989333pt;}
.ws77{word-spacing:4.090667pt;}
.ws1e{word-spacing:5.338667pt;}
.ws54{word-spacing:6.688000pt;}
.ws6e{word-spacing:8.000000pt;}
._21{margin-left:-12.261333pt;}
._1d{margin-left:-10.837333pt;}
._20{margin-left:-9.837333pt;}
._1e{margin-left:-8.778667pt;}
._1b{margin-left:-7.280000pt;}
._f{margin-left:-5.992000pt;}
._6{margin-left:-4.920000pt;}
._1a{margin-left:-3.733333pt;}
._4{margin-left:-2.688000pt;}
._3{margin-left:-1.749333pt;}
._0{width:1.322667pt;}
._2{width:2.901333pt;}
._5{width:4.202667pt;}
._10{width:5.642667pt;}
._15{width:6.714667pt;}
._17{width:7.989333pt;}
._22{width:9.056000pt;}
._8{width:10.410667pt;}
._16{width:12.026667pt;}
._a{width:13.296000pt;}
._b{width:14.629333pt;}
._1f{width:15.597333pt;}
._11{width:16.528000pt;}
._19{width:17.693333pt;}
._12{width:18.709333pt;}
._7{width:20.418667pt;}
._13{width:21.642667pt;}
._1c{width:23.445333pt;}
._9{width:25.296000pt;}
._c{width:26.629333pt;}
._18{width:30.693333pt;}
._1{width:42.602667pt;}
._d{width:43.962667pt;}
._14{width:613.098667pt;}
._e{width:1125.696000pt;}
.fs5{font-size:36.000000pt;}
.fs7{font-size:41.040000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:33.548560pt;}
.yab{bottom:34.548560pt;}
.y21{bottom:34.881893pt;}
.ya5{bottom:42.548560pt;}
.y2a{bottom:46.215227pt;}
.y20{bottom:48.215227pt;}
.yaa{bottom:49.881893pt;}
.yd0{bottom:50.215227pt;}
.ya4{bottom:57.881893pt;}
.y29{bottom:58.881893pt;}
.ya9{bottom:65.215227pt;}
.ycf{bottom:65.548560pt;}
.y1f{bottom:66.881893pt;}
.y28{bottom:71.548560pt;}
.ya3{bottom:73.215227pt;}
.ya8{bottom:80.548560pt;}
.yce{bottom:80.881893pt;}
.y27{bottom:84.215227pt;}
.y1e{bottom:85.548560pt;}
.ya2{bottom:88.548560pt;}
.ya7{bottom:95.881893pt;}
.ycd{bottom:96.215227pt;}
.y26{bottom:96.881893pt;}
.ya1{bottom:103.881893pt;}
.y1d{bottom:106.215227pt;}
.y25{bottom:109.548560pt;}
.y73{bottom:111.215227pt;}
.ycc{bottom:111.548560pt;}
.ya6{bottom:118.881893pt;}
.ya0{bottom:119.215227pt;}
.y24{bottom:122.215227pt;}
.y72{bottom:126.548560pt;}
.ycb{bottom:126.881893pt;}
.y9f{bottom:134.548560pt;}
.y23{bottom:134.881560pt;}
.y6d{bottom:134.881893pt;}
.y71{bottom:141.881893pt;}
.yca{bottom:142.215227pt;}
.y22{bottom:147.548560pt;}
.y9e{bottom:149.881893pt;}
.y1c{bottom:155.881893pt;}
.y6c{bottom:157.215227pt;}
.yc9{bottom:157.548560pt;}
.y7b{bottom:160.215227pt;}
.y9d{bottom:165.215227pt;}
.y6b{bottom:172.548560pt;}
.y7a{bottom:172.881893pt;}
.y1b{bottom:174.548560pt;}
.y9c{bottom:180.548560pt;}
.y79{bottom:185.548560pt;}
.y1a{bottom:187.881893pt;}
.yc8{bottom:188.215227pt;}
.y4d{bottom:195.548560pt;}
.y9b{bottom:195.881893pt;}
.y78{bottom:198.215227pt;}
.y19{bottom:201.215227pt;}
.y6a{bottom:203.215227pt;}
.yc7{bottom:203.548560pt;}
.y4c{bottom:210.881893pt;}
.y9a{bottom:211.215227pt;}
.y18{bottom:214.548560pt;}
.y69{bottom:218.548560pt;}
.yc6{bottom:218.881893pt;}
.y77{bottom:223.548560pt;}
.y4b{bottom:226.215227pt;}
.y99{bottom:226.548560pt;}
.y17{bottom:227.881893pt;}
.y68{bottom:233.881893pt;}
.yc5{bottom:234.215227pt;}
.y76{bottom:236.215227pt;}
.y16{bottom:241.215227pt;}
.y4a{bottom:241.548560pt;}
.y98{bottom:241.881893pt;}
.y75{bottom:248.881893pt;}
.y67{bottom:249.215227pt;}
.yc4{bottom:249.548560pt;}
.y15{bottom:254.548560pt;}
.y49{bottom:256.881893pt;}
.y97{bottom:257.215227pt;}
.y74{bottom:261.548560pt;}
.y66{bottom:264.548560pt;}
.yc3{bottom:264.881893pt;}
.y14{bottom:267.881893pt;}
.y48{bottom:272.215227pt;}
.y96{bottom:272.548560pt;}
.y65{bottom:279.881893pt;}
.yc2{bottom:280.215227pt;}
.y13{bottom:281.215227pt;}
.y47{bottom:287.548560pt;}
.y95{bottom:287.881893pt;}
.y64{bottom:295.215227pt;}
.yc1{bottom:295.548560pt;}
.y46{bottom:302.881893pt;}
.y94{bottom:303.215227pt;}
.y12{bottom:307.881893pt;}
.y63{bottom:310.548560pt;}
.yc0{bottom:310.881893pt;}
.y45{bottom:318.215227pt;}
.y93{bottom:318.548560pt;}
.y62{bottom:325.881893pt;}
.ybf{bottom:326.215227pt;}
.y44{bottom:333.548560pt;}
.y92{bottom:333.881893pt;}
.y11{bottom:339.881893pt;}
.y61{bottom:341.215227pt;}
.ybe{bottom:341.548560pt;}
.y43{bottom:348.881893pt;}
.y91{bottom:349.215227pt;}
.y60{bottom:356.548560pt;}
.ybd{bottom:356.881893pt;}
.y10{bottom:358.548560pt;}
.y42{bottom:364.215227pt;}
.y90{bottom:364.548560pt;}
.yf{bottom:371.881893pt;}
.ybc{bottom:372.215227pt;}
.y41{bottom:379.548560pt;}
.y8f{bottom:379.881893pt;}
.ye{bottom:385.215227pt;}
.y5f{bottom:387.215227pt;}
.ybb{bottom:387.548560pt;}
.y40{bottom:394.881893pt;}
.y8e{bottom:395.215227pt;}
.yd{bottom:398.548560pt;}
.y70{bottom:402.548560pt;}
.yba{bottom:402.881893pt;}
.y3f{bottom:410.215227pt;}
.y8d{bottom:410.548560pt;}
.yc{bottom:411.881893pt;}
.y6f{bottom:417.881893pt;}
.yb9{bottom:418.215227pt;}
.yb{bottom:425.215227pt;}
.y3e{bottom:425.548560pt;}
.y8c{bottom:425.881893pt;}
.y6e{bottom:433.215227pt;}
.yb8{bottom:433.548560pt;}
.ya{bottom:438.548560pt;}
.y3d{bottom:440.881893pt;}
.y8b{bottom:441.215227pt;}
.y5e{bottom:448.548560pt;}
.yb7{bottom:448.881893pt;}
.y9{bottom:451.881893pt;}
.y3c{bottom:456.215227pt;}
.y8a{bottom:456.548560pt;}
.y5d{bottom:463.881893pt;}
.yb6{bottom:464.215227pt;}
.y8{bottom:465.215227pt;}
.y3b{bottom:471.548560pt;}
.y89{bottom:471.881893pt;}
.y5c{bottom:479.215227pt;}
.yb5{bottom:479.548560pt;}
.y3a{bottom:486.881893pt;}
.y88{bottom:487.215227pt;}
.y7{bottom:491.881893pt;}
.y5b{bottom:494.548560pt;}
.yb4{bottom:494.881893pt;}
.y39{bottom:502.215227pt;}
.y87{bottom:502.548560pt;}
.y5a{bottom:509.881893pt;}
.yb3{bottom:510.215227pt;}
.y38{bottom:517.548560pt;}
.y86{bottom:517.881893pt;}
.y59{bottom:525.215227pt;}
.yb2{bottom:525.548560pt;}
.y37{bottom:532.881893pt;}
.y85{bottom:533.215227pt;}
.y58{bottom:540.548560pt;}
.yb1{bottom:540.881893pt;}
.y36{bottom:548.215227pt;}
.y84{bottom:548.548560pt;}
.y57{bottom:555.881893pt;}
.yb0{bottom:556.215227pt;}
.y35{bottom:563.548560pt;}
.y83{bottom:563.881893pt;}
.y56{bottom:571.215227pt;}
.yaf{bottom:571.548560pt;}
.y34{bottom:578.881893pt;}
.y82{bottom:579.215227pt;}
.y55{bottom:586.548560pt;}
.yae{bottom:586.881893pt;}
.y33{bottom:594.215227pt;}
.y81{bottom:594.548560pt;}
.y54{bottom:601.881893pt;}
.yad{bottom:602.215227pt;}
.y32{bottom:609.548560pt;}
.y80{bottom:609.881893pt;}
.y53{bottom:617.215227pt;}
.yac{bottom:617.548560pt;}
.y6{bottom:623.881893pt;}
.y31{bottom:624.881893pt;}
.y7f{bottom:625.215227pt;}
.y52{bottom:632.548560pt;}
.y5{bottom:636.548560pt;}
.y30{bottom:640.215227pt;}
.y7e{bottom:640.548560pt;}
.y51{bottom:647.881893pt;}
.y4{bottom:649.215227pt;}
.y2f{bottom:655.548560pt;}
.y7d{bottom:655.881893pt;}
.y50{bottom:663.215227pt;}
.y3{bottom:665.215227pt;}
.y2e{bottom:670.881893pt;}
.y4f{bottom:678.548560pt;}
.y7c{bottom:678.881893pt;}
.y2d{bottom:686.215227pt;}
.y4e{bottom:693.881893pt;}
.y2{bottom:705.215227pt;}
.y2c{bottom:709.215227pt;}
.y1{bottom:751.215227pt;}
.h2{height:45.525333pt;}
.h5{height:51.216000pt;}
.h9{height:52.032000pt;}
.h8{height:52.033333pt;}
.h6{height:54.061333pt;}
.h7{height:54.922667pt;}
.ha{height:62.597333pt;}
.hb{height:63.594667pt;}
.hc{height:63.789680pt;}
.h4{height:68.288000pt;}
.h3{height:91.050667pt;}
.h1{height:778.000000pt;}
.h0{height:778.215227pt;}
.w1{width:502.666667pt;}
.w0{width:502.876653pt;}
.x0{left:0.000000pt;}
.x2{left:40.447320pt;}
.x9{left:60.180987pt;}
.xa{left:72.245987pt;}
.x6{left:79.524653pt;}
.x7{left:92.257987pt;}
.x5{left:137.656653pt;}
.x4{left:170.359320pt;}
.x3{left:238.337987pt;}
.x8{left:268.343320pt;}
.x1{left:367.043320pt;}
}




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