
    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_2e42a1cc6e95fec113b5a36e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_873446b4974fda6eb82be6eb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5f951fbddff99e63d753f44e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_5e37dabcd9be94a43d37cd07.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_fe12e6c410ccc3a88626634c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_6a0200e407e71aa7dd7b7647.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-82.799967px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.155880px;}
.ls7{letter-spacing:0.155922px;}
.ls5{letter-spacing:0.311800px;}
.ls3{letter-spacing:0.311844px;}
.ls2{letter-spacing:0.677340px;}
.ls4{letter-spacing:3.758038px;}
.ls8{letter-spacing:16.527053px;}
.ls0{letter-spacing:88.047565px;}
.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;}
}
.ws6{word-spacing:-20.327836px;}
.ws1{word-spacing:-20.015992px;}
.ws3{word-spacing:-16.613273px;}
.ws0{word-spacing:-14.939994px;}
.ws4{word-spacing:-13.410715px;}
.ws5{word-spacing:-10.808636px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-9.439422px;}
._0{margin-left:-1.184223px;}
._1{width:1.130668px;}
._8{width:2.410556px;}
._a{width:3.720318px;}
._5{width:5.397293px;}
._c{width:6.475548px;}
._d{width:7.821270px;}
._4{width:8.894404px;}
._b{width:10.454778px;}
._9{width:11.736384px;}
._7{width:13.055529px;}
._6{width:14.058986px;}
._10{width:15.462034px;}
._19{width:16.700175px;}
._15{width:17.967856px;}
._14{width:18.980304px;}
._3{width:21.058624px;}
._12{width:22.250496px;}
._13{width:23.299660px;}
._1a{width:24.635408px;}
._1c{width:25.745544px;}
._11{width:26.875116px;}
._f{width:27.999778px;}
._1b{width:29.738596px;}
._1e{width:31.007198px;}
._17{width:32.069694px;}
._16{width:33.275393px;}
._1d{width:34.969204px;}
._24{width:36.469092px;}
._2{width:37.908912px;}
._e{width:39.708657px;}
._1f{width:43.897537px;}
._20{width:45.288019px;}
._25{width:52.034344px;}
._22{width:110.717555px;}
._23{width:166.372560px;}
._21{width:185.260277px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.879984px;}
.fs0{font-size:48.239981px;}
.fs1{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y8{bottom:26.039990px;}
.y7{bottom:46.199982px;}
.y71{bottom:111.539955px;}
.y114{bottom:111.540255px;}
.y143{bottom:111.719955px;}
.y38{bottom:111.720255px;}
.y113{bottom:119.100252px;}
.y37{bottom:119.280252px;}
.yc7{bottom:128.819948px;}
.y36{bottom:128.820248px;}
.y70{bottom:128.999948px;}
.ya7{bottom:129.000248px;}
.y162{bottom:130.080248px;}
.y35{bottom:136.380245px;}
.ya6{bottom:136.560245px;}
.y6f{bottom:146.099942px;}
.yc6{bottom:146.279941px;}
.ya5{bottom:146.280241px;}
.y34{bottom:147.360241px;}
.ya4{bottom:153.839938px;}
.y6e{bottom:163.199935px;}
.ya3{bottom:163.379935px;}
.ya2{bottom:170.939932px;}
.y6d{bottom:180.479928px;}
.yf1{bottom:180.659928px;}
.yf0{bottom:188.219925px;}
.y161{bottom:190.919924px;}
.y6c{bottom:197.759921px;}
.ya1{bottom:197.939921px;}
.y33{bottom:201.359919px;}
.y142{bottom:205.319918px;}
.ya0{bottom:205.499918px;}
.y160{bottom:211.439915px;}
.y6b{bottom:215.039914px;}
.yef{bottom:215.219914px;}
.y32{bottom:222.059911px;}
.yc5{bottom:222.599911px;}
.y15f{bottom:232.139907px;}
.y6a{bottom:232.319907px;}
.y9f{bottom:232.499907px;}
.y132{bottom:239.879904px;}
.yc4{bottom:240.059904px;}
.y31{bottom:242.759903px;}
.y9e{bottom:249.599900px;}
.y69{bottom:249.779900px;}
.y15e{bottom:253.019899px;}
.y141{bottom:257.159897px;}
.y30{bottom:263.459895px;}
.y9d{bottom:266.699893px;}
.y68{bottom:266.879893px;}
.y15d{bottom:273.719891px;}
.yee{bottom:274.259890px;}
.y140{bottom:274.439890px;}
.y67{bottom:283.979886px;}
.y2f{bottom:284.159886px;}
.y66{bottom:291.539883px;}
.y131{bottom:291.719883px;}
.y65{bottom:301.259879px;}
.yc3{bottom:301.439879px;}
.y15c{bottom:303.239879px;}
.y2d{bottom:304.859878px;}
.yed{bottom:308.819876px;}
.y2e{bottom:313.139875px;}
.y10d{bottom:318.539873px;}
.y64{bottom:318.719873px;}
.yec{bottom:319.799872px;}
.y15b{bottom:324.119870px;}
.y2c{bottom:325.559870px;}
.y63{bottom:326.279869px;}
.y9c{bottom:335.819866px;}
.y62{bottom:335.999866px;}
.y13f{bottom:343.559863px;}
.y15a{bottom:344.639862px;}
.y2b{bottom:346.439861px;}
.yc2{bottom:353.099859px;}
.y61{bottom:353.279859px;}
.yeb{bottom:354.719858px;}
.yc1{bottom:360.659856px;}
.y9b{bottom:360.839856px;}
.y2a{bottom:366.959853px;}
.y60{bottom:370.199852px;}
.yc0{bottom:370.379852px;}
.y9a{bottom:371.459851px;}
.y159{bottom:374.339850px;}
.yea{bottom:375.419850px;}
.ybf{bottom:377.939849px;}
.y5f{bottom:387.479845px;}
.y29{bottom:387.659845px;}
.y5e{bottom:395.039842px;}
.ybe{bottom:395.219842px;}
.ye9{bottom:396.119842px;}
.y98{bottom:399.719840px;}
.y10c{bottom:404.759838px;}
.y5d{bottom:404.939838px;}
.y99{bottom:407.999837px;}
.y28{bottom:408.359837px;}
.ybd{bottom:412.499835px;}
.ye8{bottom:416.819833px;}
.y97{bottom:420.419832px;}
.y10b{bottom:422.039831px;}
.y5c{bottom:422.219831px;}
.ybc{bottom:423.299831px;}
.y158{bottom:424.919830px;}
.y27{bottom:429.059828px;}
.y10a{bottom:429.599828px;}
.y109{bottom:439.319824px;}
.y5b{bottom:439.499824px;}
.y13e{bottom:440.579824px;}
.y96{bottom:441.119824px;}
.ye6{bottom:446.699821px;}
.y108{bottom:446.879821px;}
.y157{bottom:454.439818px;}
.ye7{bottom:454.979818px;}
.y5a{bottom:456.419817px;}
.y107{bottom:456.599817px;}
.y94{bottom:461.819815px;}
.ye5{bottom:467.219813px;}
.y95{bottom:470.099812px;}
.yba{bottom:470.819812px;}
.y13d{bottom:473.519811px;}
.y106{bottom:473.699811px;}
.y59{bottom:473.879810px;}
.y156{bottom:475.319810px;}
.ybb{bottom:479.099808px;}
.y26{bottom:479.459808px;}
.y130{bottom:481.259807px;}
.y58{bottom:481.439807px;}
.y93{bottom:482.519807px;}
.y172{bottom:484.319806px;}
.ye4{bottom:487.919805px;}
.y105{bottom:490.979804px;}
.y12f{bottom:491.159804px;}
.yb9{bottom:491.699803px;}
.y57{bottom:492.239803px;}
.y13c{bottom:494.219802px;}
.y12e{bottom:498.719801px;}
.y91{bottom:503.399799px;}
.y155{bottom:505.019798px;}
.y104{bottom:508.259797px;}
.y12d{bottom:508.439797px;}
.ye3{bottom:508.619797px;}
.y25{bottom:509.159796px;}
.y92{bottom:511.679795px;}
.yb8{bottom:512.399795px;}
.y103{bottom:515.819794px;}
.y12c{bottom:515.999794px;}
.y90{bottom:523.919790px;}
.y112{bottom:525.539790px;}
.y102{bottom:525.719790px;}
.y12b{bottom:526.799789px;}
.ye2{bottom:529.319788px;}
.y24{bottom:529.859788px;}
.yb7{bottom:533.099787px;}
.y101{bottom:533.279787px;}
.y154{bottom:534.719786px;}
.y100{bottom:542.999783px;}
.y111{bottom:544.079782px;}
.y13b{bottom:544.619782px;}
.y129{bottom:547.319781px;}
.y23{bottom:550.559780px;}
.y8e{bottom:553.619779px;}
.y153{bottom:555.239778px;}
.y12a{bottom:555.599778px;}
.ye0{bottom:559.019776px;}
.yff{bottom:560.099776px;}
.y8f{bottom:561.899775px;}
.y13a{bottom:565.319774px;}
.ye1{bottom:567.299773px;}
.y128{bottom:568.019773px;}
.y22{bottom:571.259771px;}
.y8d{bottom:574.319770px;}
.yb5{bottom:574.499770px;}
.yfe{bottom:577.199769px;}
.ydf{bottom:579.719768px;}
.yb6{bottom:582.779767px;}
.y152{bottom:584.939766px;}
.y171{bottom:585.119766px;}
.y56{bottom:586.019766px;}
.y127{bottom:588.719765px;}
.yfd{bottom:594.479762px;}
.y8c{bottom:595.019762px;}
.yde{bottom:600.419760px;}
.y21{bottom:600.959760px;}
.y151{bottom:605.819758px;}
.y170{bottom:605.999758px;}
.y55{bottom:606.719757px;}
.y126{bottom:609.419756px;}
.yfc{bottom:611.759755px;}
.y8b{bottom:615.719754px;}
.ydd{bottom:621.119752px;}
.y20{bottom:621.659751px;}
.y54{bottom:627.419749px;}
.yfb{bottom:629.039748px;}
.y150{bottom:635.519746px;}
.y16f{bottom:635.699746px;}
.yb4{bottom:636.419745px;}
.y8a{bottom:636.599745px;}
.y125{bottom:639.119744px;}
.ydc{bottom:641.999743px;}
.y1f{bottom:642.359743px;}
.yfa{bottom:646.499741px;}
.y53{bottom:648.119741px;}
.yf9{bottom:654.059738px;}
.y139{bottom:656.399737px;}
.y110{bottom:657.119737px;}
.y89{bottom:657.299737px;}
.y124{bottom:659.819736px;}
.ydb{bottom:662.519735px;}
.y1e{bottom:663.059735px;}
.yf8{bottom:664.679734px;}
.y14f{bottom:665.039734px;}
.y16e{bottom:665.219734px;}
.y52{bottom:668.999732px;}
.y88{bottom:677.819729px;}
.yb3{bottom:677.999729px;}
.y123{bottom:680.519728px;}
.y1d{bottom:683.759726px;}
.y14e{bottom:685.919726px;}
.y51{bottom:689.519724px;}
.yda{bottom:692.219723px;}
.y87{bottom:698.519721px;}
.y122{bottom:701.219720px;}
.y1c{bottom:704.459718px;}
.y14d{bottom:706.439717px;}
.yf7{bottom:706.799717px;}
.yb1{bottom:707.519717px;}
.y4f{bottom:710.219716px;}
.y138{bottom:710.399716px;}
.yd9{bottom:713.099715px;}
.y16d{bottom:715.619714px;}
.yb2{bottom:715.799714px;}
.y50{bottom:718.499713px;}
.y86{bottom:719.219712px;}
.y121{bottom:721.919711px;}
.y1b{bottom:725.159710px;}
.yb0{bottom:728.219709px;}
.y137{bottom:730.919708px;}
.yd7{bottom:733.799706px;}
.y14c{bottom:736.139706px;}
.y16c{bottom:736.499705px;}
.y4e{bottom:739.919704px;}
.yd8{bottom:742.079703px;}
.y1a{bottom:745.859702px;}
.yf6{bottom:748.199701px;}
.y84{bottom:748.919700px;}
.y11f{bottom:751.619699px;}
.yd6{bottom:754.319698px;}
.y14b{bottom:757.019697px;}
.y85{bottom:757.199697px;}
.y120{bottom:759.899696px;}
.y4d{bottom:760.619696px;}
.y19{bottom:766.559693px;}
.y83{bottom:769.619692px;}
.y11e{bottom:772.319691px;}
.y4c{bottom:781.319687px;}
.yd5{bottom:784.019686px;}
.y14a{bottom:786.539685px;}
.y16b{bottom:786.899685px;}
.yf5{bottom:789.599684px;}
.yaf{bottom:790.319684px;}
.y82{bottom:790.499684px;}
.y11d{bottom:793.019683px;}
.y18{bottom:796.259681px;}
.y4b{bottom:802.019679px;}
.yd4{bottom:804.719678px;}
.y149{bottom:807.419677px;}
.y81{bottom:811.019676px;}
.y11b{bottom:813.899674px;}
.y16a{bottom:816.419673px;}
.y17{bottom:816.959673px;}
.y10f{bottom:819.299672px;}
.y11c{bottom:822.179671px;}
.y4a{bottom:822.719671px;}
.yd2{bottom:825.599670px;}
.y80{bottom:831.719667px;}
.yd3{bottom:833.879666px;}
.y11a{bottom:834.419666px;}
.y148{bottom:837.119665px;}
.y169{bottom:837.299665px;}
.y16{bottom:837.659665px;}
.y49{bottom:843.419663px;}
.yd1{bottom:846.119662px;}
.yf4{bottom:851.699659px;}
.y7f{bottom:852.419659px;}
.y119{bottom:855.119658px;}
.y168{bottom:857.999657px;}
.y15{bottom:858.359657px;}
.y135{bottom:864.119654px;}
.y147{bottom:869.519652px;}
.y136{bottom:872.399651px;}
.y48{bottom:873.119651px;}
.yd0{bottom:875.819650px;}
.y14{bottom:879.059648px;}
.y7e{bottom:881.399647px;}
.y134{bottom:884.819646px;}
.y167{bottom:887.519645px;}
.y7d{bottom:893.819642px;}
.ycf{bottom:896.519641px;}
.y13{bottom:899.759640px;}
.y47{bottom:902.819639px;}
.y118{bottom:905.519638px;}
.y146{bottom:908.399637px;}
.y7c{bottom:914.519634px;}
.yce{bottom:917.219633px;}
.y12{bottom:920.459632px;}
.y46{bottom:923.519631px;}
.y7b{bottom:935.219626px;}
.yf3{bottom:935.399626px;}
.ycd{bottom:937.919625px;}
.y11{bottom:941.159624px;}
.y45{bottom:944.219622px;}
.y7a{bottom:955.919618px;}
.ycc{bottom:958.619617px;}
.y166{bottom:958.799616px;}
.y10{bottom:961.859615px;}
.y133{bottom:964.199614px;}
.y44{bottom:964.919614px;}
.yad{bottom:965.099614px;}
.y117{bottom:973.199611px;}
.yae{bottom:973.379611px;}
.y79{bottom:976.619609px;}
.ycb{bottom:979.319608px;}
.yf{bottom:982.559607px;}
.yf2{bottom:984.899606px;}
.yac{bottom:985.619606px;}
.y42{bottom:985.799606px;}
.y165{bottom:988.319605px;}
.y43{bottom:994.079602px;}
.y78{bottom:997.319601px;}
.yca{bottom:1000.019600px;}
.y10e{bottom:1005.599598px;}
.yaa{bottom:1006.319597px;}
.y41{bottom:1006.499597px;}
.y164{bottom:1009.199596px;}
.yab{bottom:1014.599594px;}
.y145{bottom:1014.779594px;}
.y77{bottom:1018.019593px;}
.yc9{bottom:1020.719592px;}
.ye{bottom:1021.619591px;}
.y40{bottom:1027.019589px;}
.y144{bottom:1027.199589px;}
.y116{bottom:1035.299586px;}
.y76{bottom:1038.719585px;}
.yd{bottom:1041.419583px;}
.y3f{bottom:1047.719581px;}
.yc8{bottom:1050.419580px;}
.y75{bottom:1059.419576px;}
.y163{bottom:1059.599576px;}
.y3d{bottom:1068.419573px;}
.yc{bottom:1071.119572px;}
.y3e{bottom:1076.699569px;}
.y74{bottom:1080.119568px;}
.y3c{bottom:1089.119564px;}
.ya9{bottom:1089.299564px;}
.y115{bottom:1097.399561px;}
.ya{bottom:1100.819560px;}
.yb{bottom:1109.099556px;}
.y3b{bottom:1109.819556px;}
.y72{bottom:1109.999556px;}
.ya8{bottom:1118.099553px;}
.y73{bottom:1118.279553px;}
.y9{bottom:1121.519551px;}
.y39{bottom:1130.519548px;}
.y3a{bottom:1138.799544px;}
.y6{bottom:1151.759539px;}
.y5{bottom:1170.659532px;}
.y4{bottom:1189.379524px;}
.y3{bottom:1203.239519px;}
.y2{bottom:1217.099513px;}
.y1{bottom:1230.959508px;}
.h6{height:40.550609px;}
.h3{height:44.149201px;}
.h1{height:47.344903px;}
.h5{height:50.312792px;}
.h2{height:60.226851px;}
.h7{height:62.327788px;}
.h4{height:75.093720px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:80.819968px;}
.xd{left:86.219966px;}
.x25{left:91.619963px;}
.x14{left:107.821197px;}
.xa{left:133.918900px;}
.x21{left:151.919939px;}
.x22{left:165.239934px;}
.x23{left:168.119933px;}
.x24{left:181.439927px;}
.x3c{left:187.919925px;}
.x8{left:189.899924px;}
.x9{left:196.559921px;}
.x3d{left:201.239920px;}
.x3{left:202.680846px;}
.x52{left:209.339916px;}
.x32{left:216.719913px;}
.x4{left:223.560679px;}
.x1b{left:238.859904px;}
.x45{left:241.019904px;}
.x1c{left:245.519902px;}
.x3e{left:251.999899px;}
.x46{left:254.339898px;}
.x5{left:256.139898px;}
.x54{left:266.759893px;}
.x35{left:269.819892px;}
.x2{left:275.580365px;}
.x36{left:283.139887px;}
.x12{left:325.079870px;}
.x13{left:331.739867px;}
.x41{left:338.039865px;}
.x2d{left:340.919864px;}
.x2e{left:354.239858px;}
.xb{left:362.519855px;}
.xc{left:369.179852px;}
.x2f{left:376.019850px;}
.x37{left:378.719849px;}
.x26{left:389.159844px;}
.x38{left:392.039843px;}
.x27{left:402.479839px;}
.x4a{left:417.059833px;}
.x30{left:418.499833px;}
.x4b{left:430.379828px;}
.x31{left:431.819827px;}
.x53{left:444.599822px;}
.x1{left:446.399821px;}
.x47{left:460.259816px;}
.x50{left:469.439812px;}
.xe{left:471.599811px;}
.xf{left:478.259809px;}
.x51{left:482.759807px;}
.x48{left:488.699805px;}
.x49{left:502.019799px;}
.x2a{left:506.159798px;}
.x17{left:520.019792px;}
.x18{left:526.679789px;}
.x42{left:540.539784px;}
.x3f{left:544.859782px;}
.x28{left:549.179780px;}
.x43{left:553.859778px;}
.x2b{left:555.299778px;}
.x40{left:558.179777px;}
.x29{left:562.499775px;}
.x2c{left:568.619773px;}
.x10{left:606.419757px;}
.x39{left:609.299756px;}
.x11{left:613.079755px;}
.x3a{left:622.619751px;}
.x33{left:625.139750px;}
.x34{left:638.459745px;}
.x3b{left:651.959739px;}
.x15{left:658.619737px;}
.x16{left:665.279734px;}
.x19{left:666.539733px;}
.x1a{left:673.199731px;}
.x4e{left:732.059707px;}
.x4f{left:745.379702px;}
.x55{left:747.179701px;}
.x4c{left:761.759695px;}
.x44{left:765.359694px;}
.x56{left:768.059693px;}
.x4d{left:775.079690px;}
.x1d{left:778.319689px;}
.x7{left:787.140053px;}
.x1e{left:791.639683px;}
.x1f{left:793.799682px;}
.x20{left:807.119677px;}
@media print{
.v1{vertical-align:-73.599971pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.138560pt;}
.ls7{letter-spacing:0.138597pt;}
.ls5{letter-spacing:0.277156pt;}
.ls3{letter-spacing:0.277195pt;}
.ls2{letter-spacing:0.602080pt;}
.ls4{letter-spacing:3.340479pt;}
.ls8{letter-spacing:14.690714pt;}
.ls0{letter-spacing:78.264502pt;}
.ws6{word-spacing:-18.069188pt;}
.ws1{word-spacing:-17.791993pt;}
.ws3{word-spacing:-14.767354pt;}
.ws0{word-spacing:-13.279995pt;}
.ws4{word-spacing:-11.920635pt;}
.ws5{word-spacing:-9.607676pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-8.390597pt;}
._0{margin-left:-1.052643pt;}
._1{width:1.005038pt;}
._8{width:2.142716pt;}
._a{width:3.306950pt;}
._5{width:4.797594pt;}
._c{width:5.756043pt;}
._d{width:6.952240pt;}
._4{width:7.906137pt;}
._b{width:9.293136pt;}
._9{width:10.432342pt;}
._7{width:11.604914pt;}
._6{width:12.496876pt;}
._10{width:13.744030pt;}
._19{width:14.844600pt;}
._15{width:15.971427pt;}
._14{width:16.871382pt;}
._3{width:18.718777pt;}
._12{width:19.778219pt;}
._13{width:20.710809pt;}
._1a{width:21.898141pt;}
._1c{width:22.884928pt;}
._11{width:23.888992pt;}
._f{width:24.888691pt;}
._1b{width:26.434307pt;}
._1e{width:27.561954pt;}
._17{width:28.506395pt;}
._16{width:29.578127pt;}
._1d{width:31.083737pt;}
._24{width:32.416970pt;}
._2{width:33.696811pt;}
._e{width:35.296584pt;}
._1f{width:39.020033pt;}
._20{width:40.256017pt;}
._25{width:46.252751pt;}
._22{width:98.415605pt;}
._23{width:147.886720pt;}
._21{width:164.675802pt;}
.fs4{font-size:34.559986pt;}
.fs0{font-size:42.879983pt;}
.fs1{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:23.146657pt;}
.y7{bottom:41.066650pt;}
.y71{bottom:99.146627pt;}
.y114{bottom:99.146894pt;}
.y143{bottom:99.306627pt;}
.y38{bottom:99.306894pt;}
.y113{bottom:105.866891pt;}
.y37{bottom:106.026891pt;}
.yc7{bottom:114.506621pt;}
.y36{bottom:114.506888pt;}
.y70{bottom:114.666621pt;}
.ya7{bottom:114.666887pt;}
.y162{bottom:115.626887pt;}
.y35{bottom:121.226885pt;}
.ya6{bottom:121.386885pt;}
.y6f{bottom:129.866615pt;}
.yc6{bottom:130.026615pt;}
.ya5{bottom:130.026881pt;}
.y34{bottom:130.986881pt;}
.ya4{bottom:136.746612pt;}
.y6e{bottom:145.066609pt;}
.ya3{bottom:145.226609pt;}
.ya2{bottom:151.946606pt;}
.y6d{bottom:160.426602pt;}
.yf1{bottom:160.586602pt;}
.yf0{bottom:167.306600pt;}
.y161{bottom:169.706599pt;}
.y6c{bottom:175.786596pt;}
.ya1{bottom:175.946596pt;}
.y33{bottom:178.986595pt;}
.y142{bottom:182.506594pt;}
.ya0{bottom:182.666594pt;}
.y160{bottom:187.946591pt;}
.y6b{bottom:191.146590pt;}
.yef{bottom:191.306590pt;}
.y32{bottom:197.386588pt;}
.yc5{bottom:197.866588pt;}
.y15f{bottom:206.346584pt;}
.y6a{bottom:206.506584pt;}
.y9f{bottom:206.666584pt;}
.y132{bottom:213.226581pt;}
.yc4{bottom:213.386581pt;}
.y31{bottom:215.786580pt;}
.y9e{bottom:221.866578pt;}
.y69{bottom:222.026578pt;}
.y15e{bottom:224.906577pt;}
.y141{bottom:228.586575pt;}
.y30{bottom:234.186573pt;}
.y9d{bottom:237.066572pt;}
.y68{bottom:237.226572pt;}
.y15d{bottom:243.306569pt;}
.yee{bottom:243.786569pt;}
.y140{bottom:243.946569pt;}
.y67{bottom:252.426566pt;}
.y2f{bottom:252.586566pt;}
.y66{bottom:259.146563pt;}
.y131{bottom:259.306563pt;}
.y65{bottom:267.786560pt;}
.yc3{bottom:267.946559pt;}
.y15c{bottom:269.546559pt;}
.y2d{bottom:270.986558pt;}
.yed{bottom:274.506557pt;}
.y2e{bottom:278.346555pt;}
.y10d{bottom:283.146553pt;}
.y64{bottom:283.306553pt;}
.yec{bottom:284.266553pt;}
.y15b{bottom:288.106551pt;}
.y2c{bottom:289.386551pt;}
.y63{bottom:290.026551pt;}
.y9c{bottom:298.506547pt;}
.y62{bottom:298.666547pt;}
.y13f{bottom:305.386545pt;}
.y15a{bottom:306.346544pt;}
.y2b{bottom:307.946543pt;}
.yc2{bottom:313.866541pt;}
.y61{bottom:314.026541pt;}
.yeb{bottom:315.306541pt;}
.yc1{bottom:320.586538pt;}
.y9b{bottom:320.746538pt;}
.y2a{bottom:326.186536pt;}
.y60{bottom:329.066535pt;}
.yc0{bottom:329.226535pt;}
.y9a{bottom:330.186535pt;}
.y159{bottom:332.746534pt;}
.yea{bottom:333.706533pt;}
.ybf{bottom:335.946532pt;}
.y5f{bottom:344.426529pt;}
.y29{bottom:344.586529pt;}
.y5e{bottom:351.146526pt;}
.ybe{bottom:351.306526pt;}
.ye9{bottom:352.106526pt;}
.y98{bottom:355.306525pt;}
.y10c{bottom:359.786523pt;}
.y5d{bottom:359.946523pt;}
.y99{bottom:362.666522pt;}
.y28{bottom:362.986521pt;}
.ybd{bottom:366.666520pt;}
.ye8{bottom:370.506518pt;}
.y97{bottom:373.706517pt;}
.y10b{bottom:375.146517pt;}
.y5c{bottom:375.306517pt;}
.ybc{bottom:376.266516pt;}
.y158{bottom:377.706516pt;}
.y27{bottom:381.386514pt;}
.y10a{bottom:381.866514pt;}
.y109{bottom:390.506510pt;}
.y5b{bottom:390.666510pt;}
.y13e{bottom:391.626510pt;}
.y96{bottom:392.106510pt;}
.ye6{bottom:397.066508pt;}
.y108{bottom:397.226508pt;}
.y157{bottom:403.946505pt;}
.ye7{bottom:404.426505pt;}
.y5a{bottom:405.706504pt;}
.y107{bottom:405.866504pt;}
.y94{bottom:410.506502pt;}
.ye5{bottom:415.306501pt;}
.y95{bottom:417.866500pt;}
.yba{bottom:418.506499pt;}
.y13d{bottom:420.906498pt;}
.y106{bottom:421.066498pt;}
.y59{bottom:421.226498pt;}
.y156{bottom:422.506498pt;}
.ybb{bottom:425.866496pt;}
.y26{bottom:426.186496pt;}
.y130{bottom:427.786496pt;}
.y58{bottom:427.946495pt;}
.y93{bottom:428.906495pt;}
.y172{bottom:430.506494pt;}
.ye4{bottom:433.706493pt;}
.y105{bottom:436.426492pt;}
.y12f{bottom:436.586492pt;}
.yb9{bottom:437.066492pt;}
.y57{bottom:437.546492pt;}
.y13c{bottom:439.306491pt;}
.y12e{bottom:443.306489pt;}
.y91{bottom:447.466488pt;}
.y155{bottom:448.906487pt;}
.y104{bottom:451.786486pt;}
.y12d{bottom:451.946486pt;}
.ye3{bottom:452.106486pt;}
.y25{bottom:452.586486pt;}
.y92{bottom:454.826485pt;}
.yb8{bottom:455.466484pt;}
.y103{bottom:458.506483pt;}
.y12c{bottom:458.666483pt;}
.y90{bottom:465.706480pt;}
.y112{bottom:467.146480pt;}
.y102{bottom:467.306480pt;}
.y12b{bottom:468.266479pt;}
.ye2{bottom:470.506478pt;}
.y24{bottom:470.986478pt;}
.yb7{bottom:473.866477pt;}
.y101{bottom:474.026477pt;}
.y154{bottom:475.306477pt;}
.y100{bottom:482.666474pt;}
.y111{bottom:483.626473pt;}
.y13b{bottom:484.106473pt;}
.y129{bottom:486.506472pt;}
.y23{bottom:489.386471pt;}
.y8e{bottom:492.106470pt;}
.y153{bottom:493.546469pt;}
.y12a{bottom:493.866469pt;}
.ye0{bottom:496.906468pt;}
.yff{bottom:497.866468pt;}
.y8f{bottom:499.466467pt;}
.y13a{bottom:502.506466pt;}
.ye1{bottom:504.266465pt;}
.y128{bottom:504.906465pt;}
.y22{bottom:507.786464pt;}
.y8d{bottom:510.506462pt;}
.yb5{bottom:510.666462pt;}
.yfe{bottom:513.066461pt;}
.ydf{bottom:515.306461pt;}
.yb6{bottom:518.026459pt;}
.y152{bottom:519.946459pt;}
.y171{bottom:520.106459pt;}
.y56{bottom:520.906458pt;}
.y127{bottom:523.306457pt;}
.yfd{bottom:528.426455pt;}
.y8c{bottom:528.906455pt;}
.yde{bottom:533.706453pt;}
.y21{bottom:534.186453pt;}
.y151{bottom:538.506451pt;}
.y170{bottom:538.666451pt;}
.y55{bottom:539.306451pt;}
.y126{bottom:541.706450pt;}
.yfc{bottom:543.786449pt;}
.y8b{bottom:547.306448pt;}
.ydd{bottom:552.106446pt;}
.y20{bottom:552.586446pt;}
.y54{bottom:557.706444pt;}
.yfb{bottom:559.146443pt;}
.y150{bottom:564.906441pt;}
.y16f{bottom:565.066441pt;}
.yb4{bottom:565.706440pt;}
.y8a{bottom:565.866440pt;}
.y125{bottom:568.106439pt;}
.ydc{bottom:570.666438pt;}
.y1f{bottom:570.986438pt;}
.yfa{bottom:574.666437pt;}
.y53{bottom:576.106436pt;}
.yf9{bottom:581.386434pt;}
.y139{bottom:583.466433pt;}
.y110{bottom:584.106433pt;}
.y89{bottom:584.266433pt;}
.y124{bottom:586.506432pt;}
.ydb{bottom:588.906431pt;}
.y1e{bottom:589.386431pt;}
.yf8{bottom:590.826430pt;}
.y14f{bottom:591.146430pt;}
.y16e{bottom:591.306430pt;}
.y52{bottom:594.666429pt;}
.y88{bottom:602.506426pt;}
.yb3{bottom:602.666426pt;}
.y123{bottom:604.906425pt;}
.y1d{bottom:607.786424pt;}
.y14e{bottom:609.706423pt;}
.y51{bottom:612.906422pt;}
.yda{bottom:615.306421pt;}
.y87{bottom:620.906418pt;}
.y122{bottom:623.306417pt;}
.y1c{bottom:626.186416pt;}
.y14d{bottom:627.946415pt;}
.yf7{bottom:628.266415pt;}
.yb1{bottom:628.906415pt;}
.y4f{bottom:631.306414pt;}
.y138{bottom:631.466414pt;}
.yd9{bottom:633.866413pt;}
.y16d{bottom:636.106412pt;}
.yb2{bottom:636.266412pt;}
.y50{bottom:638.666411pt;}
.y86{bottom:639.306411pt;}
.y121{bottom:641.706410pt;}
.y1b{bottom:644.586409pt;}
.yb0{bottom:647.306408pt;}
.y137{bottom:649.706407pt;}
.yd7{bottom:652.266406pt;}
.y14c{bottom:654.346405pt;}
.y16c{bottom:654.666405pt;}
.y4e{bottom:657.706404pt;}
.yd8{bottom:659.626403pt;}
.y1a{bottom:662.986401pt;}
.yf6{bottom:665.066401pt;}
.y84{bottom:665.706400pt;}
.y11f{bottom:668.106399pt;}
.yd6{bottom:670.506398pt;}
.y14b{bottom:672.906398pt;}
.y85{bottom:673.066397pt;}
.y120{bottom:675.466396pt;}
.y4d{bottom:676.106396pt;}
.y19{bottom:681.386394pt;}
.y83{bottom:684.106393pt;}
.y11e{bottom:686.506392pt;}
.y4c{bottom:694.506389pt;}
.yd5{bottom:696.906388pt;}
.y14a{bottom:699.146387pt;}
.y16b{bottom:699.466387pt;}
.yf5{bottom:701.866386pt;}
.yaf{bottom:702.506386pt;}
.y82{bottom:702.666386pt;}
.y11d{bottom:704.906385pt;}
.y18{bottom:707.786384pt;}
.y4b{bottom:712.906382pt;}
.yd4{bottom:715.306381pt;}
.y149{bottom:717.706380pt;}
.y81{bottom:720.906378pt;}
.y11b{bottom:723.466377pt;}
.y16a{bottom:725.706376pt;}
.y17{bottom:726.186376pt;}
.y10f{bottom:728.266375pt;}
.y11c{bottom:730.826374pt;}
.y4a{bottom:731.306374pt;}
.yd2{bottom:733.866373pt;}
.y80{bottom:739.306371pt;}
.yd3{bottom:741.226370pt;}
.y11a{bottom:741.706370pt;}
.y148{bottom:744.106369pt;}
.y169{bottom:744.266369pt;}
.y16{bottom:744.586369pt;}
.y49{bottom:749.706367pt;}
.yd1{bottom:752.106366pt;}
.yf4{bottom:757.066364pt;}
.y7f{bottom:757.706364pt;}
.y119{bottom:760.106363pt;}
.y168{bottom:762.666362pt;}
.y15{bottom:762.986361pt;}
.y135{bottom:768.106359pt;}
.y147{bottom:772.906358pt;}
.y136{bottom:775.466356pt;}
.y48{bottom:776.106356pt;}
.yd0{bottom:778.506355pt;}
.y14{bottom:781.386354pt;}
.y7e{bottom:783.466353pt;}
.y134{bottom:786.506352pt;}
.y167{bottom:788.906351pt;}
.y7d{bottom:794.506349pt;}
.ycf{bottom:796.906348pt;}
.y13{bottom:799.786347pt;}
.y47{bottom:802.506346pt;}
.y118{bottom:804.906345pt;}
.y146{bottom:807.466344pt;}
.y7c{bottom:812.906342pt;}
.yce{bottom:815.306341pt;}
.y12{bottom:818.186339pt;}
.y46{bottom:820.906338pt;}
.y7b{bottom:831.306334pt;}
.yf3{bottom:831.466334pt;}
.ycd{bottom:833.706333pt;}
.y11{bottom:836.586332pt;}
.y45{bottom:839.306331pt;}
.y7a{bottom:849.706327pt;}
.ycc{bottom:852.106326pt;}
.y166{bottom:852.266326pt;}
.y10{bottom:854.986325pt;}
.y133{bottom:857.066324pt;}
.y44{bottom:857.706324pt;}
.yad{bottom:857.866324pt;}
.y117{bottom:865.066321pt;}
.yae{bottom:865.226321pt;}
.y79{bottom:868.106319pt;}
.ycb{bottom:870.506318pt;}
.yf{bottom:873.386317pt;}
.yf2{bottom:875.466316pt;}
.yac{bottom:876.106316pt;}
.y42{bottom:876.266316pt;}
.y165{bottom:878.506315pt;}
.y43{bottom:883.626313pt;}
.y78{bottom:886.506312pt;}
.yca{bottom:888.906311pt;}
.y10e{bottom:893.866309pt;}
.yaa{bottom:894.506309pt;}
.y41{bottom:894.666309pt;}
.y164{bottom:897.066308pt;}
.yab{bottom:901.866306pt;}
.y145{bottom:902.026306pt;}
.y77{bottom:904.906305pt;}
.yc9{bottom:907.306304pt;}
.ye{bottom:908.106303pt;}
.y40{bottom:912.906302pt;}
.y144{bottom:913.066301pt;}
.y116{bottom:920.266299pt;}
.y76{bottom:923.306297pt;}
.yd{bottom:925.706296pt;}
.y3f{bottom:931.306294pt;}
.yc8{bottom:933.706293pt;}
.y75{bottom:941.706290pt;}
.y163{bottom:941.866290pt;}
.y3d{bottom:949.706287pt;}
.yc{bottom:952.106286pt;}
.y3e{bottom:957.066284pt;}
.y74{bottom:960.106283pt;}
.y3c{bottom:968.106279pt;}
.ya9{bottom:968.266279pt;}
.y115{bottom:975.466276pt;}
.ya{bottom:978.506275pt;}
.yb{bottom:985.866272pt;}
.y3b{bottom:986.506272pt;}
.y72{bottom:986.666272pt;}
.ya8{bottom:993.866269pt;}
.y73{bottom:994.026269pt;}
.y9{bottom:996.906268pt;}
.y39{bottom:1004.906265pt;}
.y3a{bottom:1012.266262pt;}
.y6{bottom:1023.786257pt;}
.y5{bottom:1040.586250pt;}
.y4{bottom:1057.226244pt;}
.y3{bottom:1069.546239pt;}
.y2{bottom:1081.866234pt;}
.y1{bottom:1094.186229pt;}
.h6{height:36.044986pt;}
.h3{height:39.243734pt;}
.h1{height:42.084358pt;}
.h5{height:44.722482pt;}
.h2{height:53.534979pt;}
.h7{height:55.402478pt;}
.h4{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:71.839971pt;}
.xd{left:76.639969pt;}
.x25{left:81.439967pt;}
.x14{left:95.841064pt;}
.xa{left:119.039022pt;}
.x21{left:135.039946pt;}
.x22{left:146.879941pt;}
.x23{left:149.439940pt;}
.x24{left:161.279935pt;}
.x3c{left:167.039933pt;}
.x8{left:168.799932pt;}
.x9{left:174.719930pt;}
.x3d{left:178.879928pt;}
.x3{left:180.160752pt;}
.x52{left:186.079926pt;}
.x32{left:192.639923pt;}
.x4{left:198.720603pt;}
.x1b{left:212.319915pt;}
.x45{left:214.239914pt;}
.x1c{left:218.239913pt;}
.x3e{left:223.999910pt;}
.x46{left:226.079910pt;}
.x5{left:227.679909pt;}
.x54{left:237.119905pt;}
.x35{left:239.839904pt;}
.x2{left:244.960324pt;}
.x36{left:251.679899pt;}
.x12{left:288.959884pt;}
.x13{left:294.879882pt;}
.x41{left:300.479880pt;}
.x2d{left:303.039879pt;}
.x2e{left:314.879874pt;}
.xb{left:322.239871pt;}
.xc{left:328.159869pt;}
.x2f{left:334.239866pt;}
.x37{left:336.639865pt;}
.x26{left:345.919862pt;}
.x38{left:348.479861pt;}
.x27{left:357.759857pt;}
.x4a{left:370.719852pt;}
.x30{left:371.999851pt;}
.x4b{left:382.559847pt;}
.x31{left:383.839846pt;}
.x53{left:395.199842pt;}
.x1{left:396.799841pt;}
.x47{left:409.119836pt;}
.x50{left:417.279833pt;}
.xe{left:419.199832pt;}
.xf{left:425.119830pt;}
.x51{left:429.119828pt;}
.x48{left:434.399826pt;}
.x49{left:446.239822pt;}
.x2a{left:449.919820pt;}
.x17{left:462.239815pt;}
.x18{left:468.159813pt;}
.x42{left:480.479808pt;}
.x3f{left:484.319806pt;}
.x28{left:488.159805pt;}
.x43{left:492.319803pt;}
.x2b{left:493.599803pt;}
.x40{left:496.159802pt;}
.x29{left:499.999800pt;}
.x2c{left:505.439798pt;}
.x10{left:539.039784pt;}
.x39{left:541.599783pt;}
.x11{left:544.959782pt;}
.x3a{left:553.439779pt;}
.x33{left:555.679778pt;}
.x34{left:567.519773pt;}
.x3b{left:579.519768pt;}
.x15{left:585.439766pt;}
.x16{left:591.359763pt;}
.x19{left:592.479763pt;}
.x1a{left:598.399761pt;}
.x4e{left:650.719740pt;}
.x4f{left:662.559735pt;}
.x55{left:664.159734pt;}
.x4c{left:677.119729pt;}
.x44{left:680.319728pt;}
.x56{left:682.719727pt;}
.x4d{left:688.959724pt;}
.x1d{left:691.839723pt;}
.x7{left:699.680047pt;}
.x1e{left:703.679719pt;}
.x1f{left:705.599718pt;}
.x20{left:717.439713pt;}
}




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