
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
.ff22{font-family:sans-serif;visibility:hidden;}
.ff23{font-family:sans-serif;visibility:hidden;}
.ff24{font-family:sans-serif;visibility:hidden;}
.ff25{font-family:sans-serif;visibility:hidden;}
.ff26{font-family:sans-serif;visibility:hidden;}
.ff27{font-family:sans-serif;visibility:hidden;}
.ff28{font-family:sans-serif;visibility:hidden;}
.ff29{font-family:sans-serif;visibility:hidden;}
.ff2a{font-family:sans-serif;visibility:hidden;}
.ff2b{font-family:sans-serif;visibility:hidden;}
.ff2c{font-family:sans-serif;visibility:hidden;}
.ff2d{font-family:sans-serif;visibility:hidden;}
.ff2e{font-family:sans-serif;visibility:hidden;}
.ff2f{font-family:sans-serif;visibility:hidden;}
.ff30{font-family:sans-serif;visibility:hidden;}
.ff31{font-family:sans-serif;visibility:hidden;}
.ff32{font-family:sans-serif;visibility:hidden;}
.ff33{font-family:sans-serif;visibility:hidden;}
.ff34{font-family:sans-serif;visibility:hidden;}
.ff35{font-family:sans-serif;visibility:hidden;}
.ff36{font-family:sans-serif;visibility:hidden;}
.ff37{font-family:sans-serif;visibility:hidden;}
.ff38{font-family:sans-serif;visibility:hidden;}
.ff39{font-family:sans-serif;visibility:hidden;}
.ff3a{font-family:sans-serif;visibility:hidden;}
.ff3b{font-family:sans-serif;visibility:hidden;}
.ff3c{font-family:sans-serif;visibility:hidden;}
.ff3d{font-family:sans-serif;visibility:hidden;}
.ff3e{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_faaf6bcaacfb4cb1a04b0258.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.687988;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;}
.ff40{font-family:sans-serif;visibility:hidden;}
.ff41{font-family:sans-serif;visibility:hidden;}
.ff42{font-family:sans-serif;visibility:hidden;}
.ff43{font-family:sans-serif;visibility:hidden;}
.ff44{font-family:sans-serif;visibility:hidden;}
.ff45{font-family:sans-serif;visibility:hidden;}
.ff46{font-family:sans-serif;visibility:hidden;}
.ff47{font-family:sans-serif;visibility:hidden;}
.ff48{font-family:sans-serif;visibility:hidden;}
.ff49{font-family:sans-serif;visibility:hidden;}
.ff4a{font-family:sans-serif;visibility:hidden;}
.ff4b{font-family:sans-serif;visibility:hidden;}
.ff4c{font-family:sans-serif;visibility:hidden;}
.ff4d{font-family:sans-serif;visibility:hidden;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:53.999998px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.037109px;}
.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;}
}
.ws1{word-spacing:-1.037109px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:538.734375px;}
._5{margin-left:-14.888671px;}
._10{margin-left:-12.076171px;}
._8{margin-left:-10.160156px;}
._13{margin-left:-7.519043px;}
._f{margin-left:-6.266601px;}
._3{margin-left:-5.220703px;}
._7{margin-left:-3.700195px;}
._0{margin-left:-2.074219px;}
._4{margin-left:-1.001953px;}
._2{width:1.019531px;}
._1{width:2.548828px;}
._6{width:4.473633px;}
._e{width:6.468750px;}
._15{width:177.240204px;}
._16{width:189.439423px;}
._14{width:276.011730px;}
._c{width:297.070300px;}
._a{width:455.554669px;}
._b{width:572.000953px;}
._9{width:598.359350px;}
._d{width:706.739473px;}
._12{width:707.831513px;}
._18{width:717.714791px;}
._17{width:779.484365px;}
._11{width:808.457508px;}
.fc4{color:rgb(30,58,95);}
.fc3{color:transparent;}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(212,165,116);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:62.999997px;}
.fsc{font-size:67.499997px;}
.fsa{font-size:71.999997px;}
.fsb{font-size:76.499997px;}
.fs2{font-size:80.999997px;}
.fs6{font-size:89.999996px;}
.fs9{font-size:98.999996px;}
.fs3{font-size:107.999996px;}
.fs8{font-size:125.999995px;}
.fs1{font-size:161.999993px;}
.fs4{font-size:179.999993px;}
.fs5{font-size:251.999990px;}
.fs0{font-size:323.999987px;}
.y0{bottom:0.000000px;}
.ya6{bottom:0.000038px;}
.y17{bottom:0.054156px;}
.y33{bottom:0.125922px;}
.y44{bottom:0.125923px;}
.y99{bottom:0.180035px;}
.y29{bottom:0.180037px;}
.y52{bottom:0.180038px;}
.y62{bottom:0.180041px;}
.y1{bottom:0.495064px;}
.y16{bottom:46.439976px;}
.ye2{bottom:47.619142px;}
.y51{bottom:52.119142px;}
.ya5{bottom:57.374998px;}
.ybf{bottom:57.689979px;}
.y43{bottom:57.744142px;}
.y7e{bottom:58.005002px;}
.ybc{bottom:58.499998px;}
.y32{bottom:62.999997px;}
.y28{bottom:63.755853px;}
.y61{bottom:64.124997px;}
.y9{bottom:78.749997px;}
.y15{bottom:110.564973px;}
.y7d{bottom:117.630000px;}
.ybb{bottom:121.499995px;}
.ye1{bottom:121.869139px;}
.y8{bottom:124.874995px;}
.y31{bottom:128.249995px;}
.ye7{bottom:134.244138px;}
.y27{bottom:136.880850px;}
.y7c{bottom:144.629999px;}
.y14{bottom:145.439972px;}
.y60{bottom:146.249994px;}
.yce{bottom:148.814975px;}
.y42{bottom:151.119138px;}
.yba{bottom:151.874994px;}
.ye0{bottom:152.244138px;}
.y30{bottom:155.249994px;}
.y50{bottom:158.994137px;}
.ya4{bottom:166.499993px;}
.ye6{bottom:169.119137px;}
.y26{bottom:169.505849px;}
.y7b{bottom:171.629997px;}
.ycd{bottom:176.939974px;}
.y13{bottom:179.189970px;}
.y91{bottom:179.999992px;}
.y73{bottom:181.124992px;}
.y41{bottom:181.494136px;}
.y2f{bottom:182.249992px;}
.ydf{bottom:182.619136px;}
.y98{bottom:184.499992px;}
.ya3{bottom:191.249992px;}
.y4f{bottom:197.244136px;}
.y25{bottom:202.130848px;}
.ye5{bottom:205.119135px;}
.ycc{bottom:206.189972px;}
.y7a{bottom:208.754996px;}
.y2e{bottom:209.249991px;}
.y72{bottom:211.499991px;}
.y40{bottom:211.869135px;}
.y5f{bottom:212.624991px;}
.yde{bottom:212.994135px;}
.y12{bottom:214.064969px;}
.y90{bottom:214.874991px;}
.ya2{bottom:217.124991px;}
.yb9{bottom:220.499991px;}
.yb7{bottom:231.749990px;}
.yb8{bottom:233.999990px;}
.ycb{bottom:234.314971px;}
.y4e{bottom:235.494134px;}
.y2d{bottom:236.249990px;}
.ye4{bottom:241.119134px;}
.y71{bottom:241.874990px;}
.y3f{bottom:243.369134px;}
.y8f{bottom:248.624990px;}
.ydd{bottom:253.494133px;}
.yca{bottom:263.564970px;}
.y3e{bottom:273.744133px;}
.ye3{bottom:275.994133px;}
.y7{bottom:276.749988px;}
.y2c{bottom:278.999988px;}
.y8e{bottom:283.499988px;}
.y11{bottom:302.939965px;}
.yc9{bottom:302.939968px;}
.y24{bottom:303.380843px;}
.y79{bottom:304.379992px;}
.ydc{bottom:306.369131px;}
.yb6{bottom:310.499987px;}
.ya1{bottom:318.374987px;}
.y3d{bottom:318.744131px;}
.yb4{bottom:321.749987px;}
.y4d{bottom:327.744130px;}
.y78{bottom:331.379991px;}
.y6{bottom:332.999986px;}
.y23{bottom:336.005842px;}
.y10{bottom:336.689964px;}
.yb5{bottom:337.499986px;}
.ydb{bottom:337.869130px;}
.y70{bottom:339.749986px;}
.yc8{bottom:346.814966px;}
.y5e{bottom:348.749985px;}
.y97{bottom:350.999985px;}
.y77{bottom:358.379990px;}
.y8d{bottom:361.124985px;}
.yda{bottom:368.244129px;}
.y6d{bottom:368.999985px;}
.y6f{bottom:371.249985px;}
.y4c{bottom:378.369128px;}
.y5d{bottom:382.499984px;}
.y22{bottom:383.255840px;}
.y5{bottom:390.374984px;}
.y8c{bottom:394.874984px;}
.y76{bottom:395.504988px;}
.yf{bottom:396.314961px;}
.yd9{bottom:398.619127px;}
.yb3{bottom:400.499983px;}
.y6e{bottom:401.624983px;}
.y3c{bottom:404.244127px;}
.y96{bottom:408.374983px;}
.ycf{bottom:410.939964px;}
.yb0{bottom:411.749983px;}
.yb1{bottom:413.999983px;}
.y5c{bottom:417.374983px;}
.ya0{bottom:424.124982px;}
.yb2{bottom:427.499982px;}
.yd8{bottom:428.994126px;}
.y8b{bottom:429.749982px;}
.y3b{bottom:434.619126px;}
.y9f{bottom:448.874981px;}
.y5b{bottom:451.124981px;}
.y21{bottom:455.255837px;}
.y8a{bottom:464.624981px;}
.y3a{bottom:464.994125px;}
.yd7{bottom:469.494124px;}
.y9e{bottom:474.749980px;}
.y4b{bottom:478.494124px;}
.y82{bottom:481.004985px;}
.y4{bottom:487.124980px;}
.y20{bottom:487.880836px;}
.yaf{bottom:490.499980px;}
.y39{bottom:496.494123px;}
.yc6{bottom:497.564960px;}
.y6c{bottom:499.499979px;}
.yad{bottom:501.749979px;}
.y81{bottom:506.879983px;}
.y5a{bottom:514.124979px;}
.y4a{bottom:516.744122px;}
.yae{bottom:517.499978px;}
.y95{bottom:518.624978px;}
.y1f{bottom:520.505834px;}
.yd6{bottom:522.369122px;}
.y9d{bottom:525.374978px;}
.yc5{bottom:525.689959px;}
.y38{bottom:526.869122px;}
.y69{bottom:527.624978px;}
.y6b{bottom:529.874978px;}
.y80{bottom:531.629982px;}
.y89{bottom:541.124977px;}
.ye{bottom:541.439955px;}
.y59{bottom:548.999977px;}
.yd5{bottom:553.869121px;}
.yc4{bottom:554.939958px;}
.y49{bottom:554.994121px;}
.y37{bottom:557.244121px;}
.y6a{bottom:560.249977px;}
.y7f{bottom:566.504981px;}
.y1e{bottom:567.755832px;}
.yd{bottom:575.189954px;}
.y88{bottom:575.999976px;}
.y94{bottom:577.124976px;}
.yac{bottom:580.499976px;}
.y58{bottom:582.749976px;}
.yc3{bottom:583.064957px;}
.yd4{bottom:584.244120px;}
.y3{bottom:584.999976px;}
.yaa{bottom:591.749975px;}
.yab{bottom:593.999975px;}
.y9c{bottom:601.874975px;}
.y36{bottom:602.244119px;}
.y48{bottom:608.994119px;}
.y87{bottom:610.874975px;}
.yc2{bottom:612.314955px;}
.yd3{bottom:614.619118px;}
.y57{bottom:617.624974px;}
.yc{bottom:634.814951px;}
.y93{bottom:636.749973px;}
.y1d{bottom:638.630829px;}
.y86{bottom:644.624973px;}
.y56{bottom:651.374973px;}
.yc1{bottom:651.689954px;}
.yd2{bottom:655.119117px;}
.y68{bottom:659.249973px;}
.y47{bottom:659.619117px;}
.y1c{bottom:671.255828px;}
.ya9{bottom:672.749972px;}
.y75{bottom:677.879976px;}
.y85{bottom:679.499972px;}
.y2{bottom:681.749972px;}
.y55{bottom:686.249971px;}
.y65{bottom:687.374971px;}
.y67{bottom:689.624971px;}
.y92{bottom:694.124971px;}
.yc0{bottom:695.564952px;}
.y9b{bottom:697.499971px;}
.y1b{bottom:703.880827px;}
.y35{bottom:707.994115px;}
.yd1{bottom:719.244114px;}
.y66{bottom:719.999970px;}
.y74{bottom:736.379974px;}
.y2b{bottom:736.874969px;}
.y46{bottom:749.619113px;}
.y1a{bottom:751.130825px;}
.y9a{bottom:755.999969px;}
.yc7{bottom:759.689949px;}
.y54{bottom:763.874968px;}
.ya8{bottom:764.999968px;}
.y34{bottom:766.494112px;}
.yb{bottom:768.689946px;}
.yd0{bottom:777.744112px;}
.y2a{bottom:795.374967px;}
.y84{bottom:799.874967px;}
.y45{bottom:808.119110px;}
.y64{bottom:817.874966px;}
.y53{bottom:822.374966px;}
.ya7{bottom:823.499966px;}
.ya{bottom:827.189943px;}
.ybe{bottom:829.439946px;}
.y19{bottom:838.880821px;}
.y83{bottom:858.374964px;}
.y63{bottom:876.374963px;}
.ybd{bottom:887.939944px;}
.y18{bottom:897.380819px;}
.h2f{height:52.631101px;}
.hc{height:59.849998px;}
.h28{height:64.124997px;}
.h15{height:68.399997px;}
.h19{height:72.674997px;}
.h5{height:76.949997px;}
.hb{height:85.499996px;}
.h14{height:94.049996px;}
.h6{height:102.599996px;}
.h10{height:119.699995px;}
.h2e{height:122.399995px;}
.h4{height:153.899994px;}
.h9{height:170.999993px;}
.ha{height:239.399990px;}
.h3{height:307.799987px;}
.h2{height:824.624966px;}
.h1{height:825.000000px;}
.h0{height:825.120030px;}
.h23{height:830.879970px;}
.h24{height:831.000000px;}
.h2b{height:850.499965px;}
.h2a{height:850.500000px;}
.h29{height:850.680000px;}
.h18{height:860.994108px;}
.h17{height:861.000000px;}
.h16{height:861.120030px;}
.h13{height:895.499963px;}
.h12{height:895.500000px;}
.h11{height:895.680000px;}
.h1c{height:896.994107px;}
.h1b{height:897.000000px;}
.h1a{height:897.120030px;}
.h7{height:910.439940px;}
.h8{height:910.500000px;}
.h2d{height:917.999962px;}
.h2c{height:918.000000px;}
.h1f{height:922.499962px;}
.h1e{height:922.500000px;}
.h1d{height:922.680000px;}
.h27{height:958.499960px;}
.h26{height:958.500000px;}
.h25{height:958.680000px;}
.h22{height:976.499959px;}
.h21{height:976.500000px;}
.h20{height:976.680000px;}
.h30{height:982.439940px;}
.h31{height:982.500000px;}
.he{height:997.500000px;}
.hf{height:997.505814px;}
.hd{height:997.559970px;}
.w1{width:1439.999940px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:56.249998px;}
.x1b{left:61.874997px;}
.x7a{left:62.999997px;}
.x7{left:67.499997px;}
.x70{left:69.187497px;}
.x3{left:78.749997px;}
.x23{left:80.999997px;}
.x39{left:82.124997px;}
.x5a{left:84.374996px;}
.x1c{left:86.624996px;}
.x11{left:89.999996px;}
.x74{left:109.124995px;}
.x58{left:115.593745px;}
.x7d{left:116.999995px;}
.x59{left:133.734369px;}
.x29{left:150.749994px;}
.x7b{left:160.874993px;}
.x63{left:165.234368px;}
.x26{left:168.749993px;}
.x3e{left:169.874993px;}
.x4e{left:179.999993px;}
.x62{left:181.406242px;}
.x5{left:197.999992px;}
.x27{left:200.249992px;}
.x41{left:205.312491px;}
.x42{left:208.687491px;}
.x13{left:213.749991px;}
.x43{left:228.937490px;}
.x72{left:241.874990px;}
.x40{left:249.749990px;}
.x12{left:257.624989px;}
.x4c{left:267.749989px;}
.x4b{left:273.374989px;}
.x24{left:281.249988px;}
.x3a{left:287.999988px;}
.x8{left:298.124988px;}
.x68{left:305.999987px;}
.x7f{left:308.249987px;}
.x1d{left:317.249987px;}
.x2a{left:321.749987px;}
.x20{left:340.874986px;}
.x28{left:361.124985px;}
.x77{left:379.124984px;}
.xe{left:386.999984px;}
.x5c{left:392.343734px;}
.x7e{left:402.749983px;}
.x6b{left:422.999982px;}
.x25{left:427.499982px;}
.x1e{left:430.874982px;}
.x73{left:433.124982px;}
.x7c{left:438.749982px;}
.xc{left:440.999982px;}
.x5b{left:447.328106px;}
.x4f{left:453.374981px;}
.x2b{left:454.499981px;}
.x6c{left:456.749981px;}
.x64{left:466.453106px;}
.x4{left:476.999980px;}
.xa{left:479.249980px;}
.x4d{left:518.624978px;}
.x9{left:529.874978px;}
.x14{left:536.238259px;}
.x2c{left:543.744124px;}
.x80{left:572.624976px;}
.xf{left:591.749975px;}
.x1f{left:610.874975px;}
.x21{left:611.999975px;}
.x46{left:638.437473px;}
.x47{left:643.499973px;}
.x44{left:651.937473px;}
.x45{left:653.062473px;}
.x6a{left:669.744118px;}
.x2e{left:689.994118px;}
.xd{left:694.124971px;}
.x1{left:715.499970px;}
.x2d{left:721.494116px;}
.x30{left:723.744116px;}
.x36{left:732.744116px;}
.x3b{left:751.499969px;}
.x51{left:753.591771px;}
.x5f{left:756.562468px;}
.x82{left:759.937468px;}
.x75{left:762.187468px;}
.x16{left:763.488249px;}
.x33{left:777.744114px;}
.x37{left:782.244114px;}
.x52{left:791.279270px;}
.x6d{left:793.494113px;}
.x5e{left:798.046842px;}
.x15{left:814.113247px;}
.x66{left:817.171841px;}
.x5d{left:826.593716px;}
.x65{left:838.406215px;}
.x34{left:850.869111px;}
.x31{left:856.494111px;}
.x2f{left:864.369110px;}
.xb{left:874.124964px;}
.x50{left:902.144494px;}
.x57{left:926.331993px;}
.x53{left:927.456993px;}
.x55{left:933.644492px;}
.x56{left:953.894492px;}
.x79{left:964.687460px;}
.x17{left:982.494105px;}
.x81{left:983.531209px;}
.x3f{left:994.499959px;}
.x54{left:999.456990px;}
.x38{left:1007.244104px;}
.x32{left:1022.994104px;}
.x69{left:1033.488238px;}
.x3c{left:1060.874956px;}
.x61{left:1064.531206px;}
.x76{left:1071.562455px;}
.x71{left:1072.687455px;}
.x48{left:1074.937455px;}
.x35{left:1081.494101px;}
.x4a{left:1091.812455px;}
.x6e{left:1095.363236px;}
.x49{left:1103.624954px;}
.x67{left:1121.765578px;}
.x60{left:1125.140578px;}
.x19{left:1126.494099px;}
.x18{left:1154.619098px;}
.x6f{left:1170.755816px;}
.x10{left:1174.499951px;}
.x22{left:1180.124951px;}
.x6{left:1185.749951px;}
.x3d{left:1217.249949px;}
.x78{left:1281.937447px;}
.x1a{left:1287.369093px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:47.999998pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.921875pt;}
.ws1{word-spacing:-0.921875pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:478.875000pt;}
._5{margin-left:-13.234374pt;}
._10{margin-left:-10.734375pt;}
._8{margin-left:-9.031250pt;}
._13{margin-left:-6.683593pt;}
._f{margin-left:-5.570312pt;}
._3{margin-left:-4.640625pt;}
._7{margin-left:-3.289062pt;}
._0{margin-left:-1.843750pt;}
._4{margin-left:-0.890625pt;}
._2{width:0.906250pt;}
._1{width:2.265625pt;}
._6{width:3.976562pt;}
._e{width:5.750000pt;}
._15{width:157.546848pt;}
._16{width:168.390598pt;}
._14{width:245.343760pt;}
._c{width:264.062489pt;}
._a{width:404.937483pt;}
._b{width:508.445291pt;}
._9{width:531.874978pt;}
._d{width:628.212864pt;}
._12{width:629.183568pt;}
._18{width:637.968703pt;}
._17{width:692.874991pt;}
._11{width:718.628896pt;}
.fs7{font-size:55.999998pt;}
.fsc{font-size:59.999998pt;}
.fsa{font-size:63.999997pt;}
.fsb{font-size:67.999997pt;}
.fs2{font-size:71.999997pt;}
.fs6{font-size:79.999997pt;}
.fs9{font-size:87.999996pt;}
.fs3{font-size:95.999996pt;}
.fs8{font-size:111.999995pt;}
.fs1{font-size:143.999994pt;}
.fs4{font-size:159.999993pt;}
.fs5{font-size:223.999991pt;}
.fs0{font-size:287.999988pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:0.000034pt;}
.y17{bottom:0.048138pt;}
.y33{bottom:0.111931pt;}
.y44{bottom:0.111932pt;}
.y99{bottom:0.160031pt;}
.y29{bottom:0.160033pt;}
.y52{bottom:0.160034pt;}
.y62{bottom:0.160036pt;}
.y1{bottom:0.440057pt;}
.y16{bottom:41.279979pt;}
.ye2{bottom:42.328126pt;}
.y51{bottom:46.328126pt;}
.ya5{bottom:50.999998pt;}
.ybf{bottom:51.279981pt;}
.y43{bottom:51.328126pt;}
.y7e{bottom:51.560002pt;}
.ybc{bottom:51.999998pt;}
.y32{bottom:55.999998pt;}
.y28{bottom:56.671870pt;}
.y61{bottom:56.999998pt;}
.y9{bottom:69.999997pt;}
.y15{bottom:98.279976pt;}
.y7d{bottom:104.560000pt;}
.ybb{bottom:107.999995pt;}
.ye1{bottom:108.328123pt;}
.y8{bottom:110.999995pt;}
.y31{bottom:113.999995pt;}
.ye7{bottom:119.328123pt;}
.y27{bottom:121.671867pt;}
.y7c{bottom:128.559999pt;}
.y14{bottom:129.279975pt;}
.y60{bottom:129.999995pt;}
.yce{bottom:132.279978pt;}
.y42{bottom:134.328122pt;}
.yba{bottom:134.999994pt;}
.ye0{bottom:135.328122pt;}
.y30{bottom:137.999994pt;}
.y50{bottom:141.328122pt;}
.ya4{bottom:147.999994pt;}
.ye6{bottom:150.328122pt;}
.y26{bottom:150.671866pt;}
.y7b{bottom:152.559998pt;}
.ycd{bottom:157.279976pt;}
.y13{bottom:159.279974pt;}
.y91{bottom:159.999993pt;}
.y73{bottom:160.999993pt;}
.y41{bottom:161.328121pt;}
.y2f{bottom:161.999993pt;}
.ydf{bottom:162.328121pt;}
.y98{bottom:163.999993pt;}
.ya3{bottom:169.999993pt;}
.y4f{bottom:175.328121pt;}
.y25{bottom:179.671865pt;}
.ye5{bottom:182.328120pt;}
.ycc{bottom:183.279975pt;}
.y7a{bottom:185.559996pt;}
.y2e{bottom:185.999992pt;}
.y72{bottom:187.999992pt;}
.y40{bottom:188.328120pt;}
.y5f{bottom:188.999992pt;}
.yde{bottom:189.328120pt;}
.y12{bottom:190.279972pt;}
.y90{bottom:190.999992pt;}
.ya2{bottom:192.999992pt;}
.yb9{bottom:195.999992pt;}
.yb7{bottom:205.999991pt;}
.yb8{bottom:207.999991pt;}
.ycb{bottom:208.279974pt;}
.y4e{bottom:209.328119pt;}
.y2d{bottom:209.999991pt;}
.ye4{bottom:214.328119pt;}
.y71{bottom:214.999991pt;}
.y3f{bottom:216.328119pt;}
.y8f{bottom:220.999991pt;}
.ydd{bottom:225.328119pt;}
.yca{bottom:234.279973pt;}
.y3e{bottom:243.328118pt;}
.ye3{bottom:245.328118pt;}
.y7{bottom:245.999990pt;}
.y2c{bottom:247.999990pt;}
.y8e{bottom:251.999989pt;}
.y11{bottom:269.279969pt;}
.yc9{bottom:269.279972pt;}
.y24{bottom:269.671861pt;}
.y79{bottom:270.559993pt;}
.ydc{bottom:272.328117pt;}
.yb6{bottom:275.999989pt;}
.ya1{bottom:282.999988pt;}
.y3d{bottom:283.328116pt;}
.yb4{bottom:285.999988pt;}
.y4d{bottom:291.328116pt;}
.y78{bottom:294.559992pt;}
.y6{bottom:295.999988pt;}
.y23{bottom:298.671860pt;}
.y10{bottom:299.279968pt;}
.yb5{bottom:299.999987pt;}
.ydb{bottom:300.328115pt;}
.y70{bottom:301.999987pt;}
.yc8{bottom:308.279970pt;}
.y5e{bottom:309.999987pt;}
.y97{bottom:311.999987pt;}
.y77{bottom:318.559991pt;}
.y8d{bottom:320.999987pt;}
.yda{bottom:327.328114pt;}
.y6d{bottom:327.999986pt;}
.y6f{bottom:329.999986pt;}
.y4c{bottom:336.328114pt;}
.y5d{bottom:339.999986pt;}
.y22{bottom:340.671858pt;}
.y5{bottom:346.999986pt;}
.y8c{bottom:350.999985pt;}
.y76{bottom:351.559989pt;}
.yf{bottom:352.279966pt;}
.yd9{bottom:354.328113pt;}
.yb3{bottom:355.999985pt;}
.y6e{bottom:356.999985pt;}
.y3c{bottom:359.328113pt;}
.y96{bottom:362.999985pt;}
.ycf{bottom:365.279968pt;}
.yb0{bottom:365.999985pt;}
.yb1{bottom:367.999985pt;}
.y5c{bottom:370.999985pt;}
.ya0{bottom:376.999984pt;}
.yb2{bottom:379.999984pt;}
.yd8{bottom:381.328112pt;}
.y8b{bottom:381.999984pt;}
.y3b{bottom:386.328112pt;}
.y9f{bottom:398.999983pt;}
.y5b{bottom:400.999983pt;}
.y21{bottom:404.671855pt;}
.y8a{bottom:412.999983pt;}
.y3a{bottom:413.328111pt;}
.yd7{bottom:417.328111pt;}
.y9e{bottom:421.999982pt;}
.y4b{bottom:425.328110pt;}
.y82{bottom:427.559986pt;}
.y4{bottom:432.999982pt;}
.y20{bottom:433.671854pt;}
.yaf{bottom:435.999982pt;}
.y39{bottom:441.328110pt;}
.yc6{bottom:442.279965pt;}
.y6c{bottom:443.999982pt;}
.yad{bottom:445.999981pt;}
.y81{bottom:450.559985pt;}
.y5a{bottom:456.999981pt;}
.y4a{bottom:459.328109pt;}
.yae{bottom:459.999981pt;}
.y95{bottom:460.999981pt;}
.y1f{bottom:462.671853pt;}
.yd6{bottom:464.328109pt;}
.y9d{bottom:466.999981pt;}
.yc5{bottom:467.279964pt;}
.y38{bottom:468.328108pt;}
.y69{bottom:468.999980pt;}
.y6b{bottom:470.999980pt;}
.y80{bottom:472.559984pt;}
.y89{bottom:480.999980pt;}
.ye{bottom:481.279960pt;}
.y59{bottom:487.999980pt;}
.yd5{bottom:492.328107pt;}
.yc4{bottom:493.279962pt;}
.y49{bottom:493.328107pt;}
.y37{bottom:495.328107pt;}
.y6a{bottom:497.999979pt;}
.y7f{bottom:503.559983pt;}
.y1e{bottom:504.671851pt;}
.yd{bottom:511.279959pt;}
.y88{bottom:511.999979pt;}
.y94{bottom:512.999979pt;}
.yac{bottom:515.999979pt;}
.y58{bottom:517.999978pt;}
.yc3{bottom:518.279961pt;}
.yd4{bottom:519.328106pt;}
.y3{bottom:519.999978pt;}
.yaa{bottom:525.999978pt;}
.yab{bottom:527.999978pt;}
.y9c{bottom:534.999978pt;}
.y36{bottom:535.328106pt;}
.y48{bottom:541.328105pt;}
.y87{bottom:542.999977pt;}
.yc2{bottom:544.279960pt;}
.yd3{bottom:546.328105pt;}
.y57{bottom:548.999977pt;}
.yc{bottom:564.279957pt;}
.y93{bottom:565.999976pt;}
.y1d{bottom:567.671848pt;}
.y86{bottom:572.999976pt;}
.y56{bottom:578.999976pt;}
.yc1{bottom:579.279959pt;}
.yd2{bottom:582.328104pt;}
.y68{bottom:585.999976pt;}
.y47{bottom:586.328104pt;}
.y1c{bottom:596.671847pt;}
.ya9{bottom:597.999975pt;}
.y75{bottom:602.559979pt;}
.y85{bottom:603.999975pt;}
.y2{bottom:605.999975pt;}
.y55{bottom:609.999975pt;}
.y65{bottom:610.999975pt;}
.y67{bottom:612.999974pt;}
.y92{bottom:616.999974pt;}
.yc0{bottom:618.279957pt;}
.y9b{bottom:619.999974pt;}
.y1b{bottom:625.671846pt;}
.y35{bottom:629.328102pt;}
.yd1{bottom:639.328101pt;}
.y66{bottom:639.999973pt;}
.y74{bottom:654.559977pt;}
.y2b{bottom:654.999973pt;}
.y46{bottom:666.328100pt;}
.y1a{bottom:667.671844pt;}
.y9a{bottom:671.999972pt;}
.yc7{bottom:675.279955pt;}
.y54{bottom:678.999972pt;}
.ya8{bottom:679.999972pt;}
.y34{bottom:681.328100pt;}
.yb{bottom:683.279952pt;}
.yd0{bottom:691.328099pt;}
.y2a{bottom:706.999971pt;}
.y84{bottom:710.999970pt;}
.y45{bottom:718.328098pt;}
.y64{bottom:726.999970pt;}
.y53{bottom:730.999970pt;}
.ya7{bottom:731.999970pt;}
.ya{bottom:735.279950pt;}
.ybe{bottom:737.279952pt;}
.y19{bottom:745.671841pt;}
.y83{bottom:762.999968pt;}
.y63{bottom:778.999968pt;}
.ybd{bottom:789.279950pt;}
.y18{bottom:797.671839pt;}
.h2f{height:46.783201pt;}
.hc{height:53.199998pt;}
.h28{height:56.999998pt;}
.h15{height:60.799997pt;}
.h19{height:64.599997pt;}
.h5{height:68.399997pt;}
.hb{height:75.999997pt;}
.h14{height:83.599997pt;}
.h6{height:91.199996pt;}
.h10{height:106.399996pt;}
.h2e{height:108.799995pt;}
.h4{height:136.799994pt;}
.h9{height:151.999994pt;}
.ha{height:212.799991pt;}
.h3{height:273.599989pt;}
.h2{height:732.999969pt;}
.h1{height:733.333333pt;}
.h0{height:733.440027pt;}
.h23{height:738.559973pt;}
.h24{height:738.666667pt;}
.h2b{height:755.999969pt;}
.h2a{height:756.000000pt;}
.h29{height:756.160000pt;}
.h18{height:765.328096pt;}
.h17{height:765.333333pt;}
.h16{height:765.440027pt;}
.h13{height:795.999967pt;}
.h12{height:796.000000pt;}
.h11{height:796.160000pt;}
.h1c{height:797.328095pt;}
.h1b{height:797.333333pt;}
.h1a{height:797.440027pt;}
.h7{height:809.279947pt;}
.h8{height:809.333333pt;}
.h2d{height:815.999966pt;}
.h2c{height:816.000000pt;}
.h1f{height:819.999966pt;}
.h1e{height:820.000000pt;}
.h1d{height:820.160000pt;}
.h27{height:851.999965pt;}
.h26{height:852.000000pt;}
.h25{height:852.160000pt;}
.h22{height:867.999964pt;}
.h21{height:868.000000pt;}
.h20{height:868.160000pt;}
.h30{height:873.279947pt;}
.h31{height:873.333333pt;}
.he{height:886.666667pt;}
.hf{height:886.671835pt;}
.hd{height:886.719973pt;}
.w1{width:1279.999947pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:49.999998pt;}
.x1b{left:54.999998pt;}
.x7a{left:55.999998pt;}
.x7{left:59.999998pt;}
.x70{left:61.499997pt;}
.x3{left:69.999997pt;}
.x23{left:71.999997pt;}
.x39{left:72.999997pt;}
.x5a{left:74.999997pt;}
.x1c{left:76.999997pt;}
.x11{left:79.999997pt;}
.x74{left:96.999996pt;}
.x58{left:102.749996pt;}
.x7d{left:103.999996pt;}
.x59{left:118.874995pt;}
.x29{left:133.999994pt;}
.x7b{left:142.999994pt;}
.x63{left:146.874994pt;}
.x26{left:149.999994pt;}
.x3e{left:150.999994pt;}
.x4e{left:159.999993pt;}
.x62{left:161.249993pt;}
.x5{left:175.999993pt;}
.x27{left:177.999993pt;}
.x41{left:182.499992pt;}
.x42{left:185.499992pt;}
.x13{left:189.999992pt;}
.x43{left:203.499992pt;}
.x72{left:214.999991pt;}
.x40{left:221.999991pt;}
.x12{left:228.999990pt;}
.x4c{left:237.999990pt;}
.x4b{left:242.999990pt;}
.x24{left:249.999990pt;}
.x3a{left:255.999989pt;}
.x8{left:264.999989pt;}
.x68{left:271.999989pt;}
.x7f{left:273.999989pt;}
.x1d{left:281.999988pt;}
.x2a{left:285.999988pt;}
.x20{left:302.999987pt;}
.x28{left:320.999987pt;}
.x77{left:336.999986pt;}
.xe{left:343.999986pt;}
.x5c{left:348.749985pt;}
.x7e{left:357.999985pt;}
.x6b{left:375.999984pt;}
.x25{left:379.999984pt;}
.x1e{left:382.999984pt;}
.x73{left:384.999984pt;}
.x7c{left:389.999984pt;}
.xc{left:391.999984pt;}
.x5b{left:397.624983pt;}
.x4f{left:402.999983pt;}
.x2b{left:403.999983pt;}
.x6c{left:405.999983pt;}
.x64{left:414.624983pt;}
.x4{left:423.999982pt;}
.xa{left:425.999982pt;}
.x4d{left:460.999981pt;}
.x9{left:470.999980pt;}
.x14{left:476.656230pt;}
.x2c{left:483.328110pt;}
.x80{left:508.999979pt;}
.xf{left:525.999978pt;}
.x1f{left:542.999977pt;}
.x21{left:543.999977pt;}
.x46{left:567.499976pt;}
.x47{left:571.999976pt;}
.x44{left:579.499976pt;}
.x45{left:580.499976pt;}
.x6a{left:595.328105pt;}
.x2e{left:613.328104pt;}
.xd{left:616.999974pt;}
.x1{left:635.999974pt;}
.x2d{left:641.328103pt;}
.x30{left:643.328103pt;}
.x36{left:651.328103pt;}
.x3b{left:667.999972pt;}
.x51{left:669.859352pt;}
.x5f{left:672.499972pt;}
.x82{left:675.499972pt;}
.x75{left:677.499972pt;}
.x16{left:678.656222pt;}
.x33{left:691.328101pt;}
.x37{left:695.328101pt;}
.x52{left:703.359351pt;}
.x6d{left:705.328101pt;}
.x5e{left:709.374970pt;}
.x15{left:723.656220pt;}
.x66{left:726.374970pt;}
.x5d{left:734.749969pt;}
.x65{left:745.249969pt;}
.x34{left:756.328098pt;}
.x31{left:761.328098pt;}
.x2f{left:768.328098pt;}
.xb{left:776.999968pt;}
.x50{left:801.906217pt;}
.x57{left:823.406216pt;}
.x53{left:824.406216pt;}
.x55{left:829.906215pt;}
.x56{left:847.906215pt;}
.x79{left:857.499964pt;}
.x17{left:873.328094pt;}
.x81{left:874.249964pt;}
.x3f{left:883.999963pt;}
.x54{left:888.406213pt;}
.x38{left:895.328093pt;}
.x32{left:909.328092pt;}
.x69{left:918.656212pt;}
.x3c{left:942.999961pt;}
.x61{left:946.249961pt;}
.x76{left:952.499960pt;}
.x71{left:953.499960pt;}
.x48{left:955.499960pt;}
.x35{left:961.328090pt;}
.x4a{left:970.499960pt;}
.x6e{left:973.656209pt;}
.x49{left:980.999959pt;}
.x67{left:997.124958pt;}
.x60{left:1000.124958pt;}
.x19{left:1001.328088pt;}
.x18{left:1026.328087pt;}
.x6f{left:1040.671837pt;}
.x10{left:1043.999957pt;}
.x22{left:1048.999956pt;}
.x6{left:1053.999956pt;}
.x3d{left:1081.999955pt;}
.x78{left:1139.499953pt;}
.x1a{left:1144.328082pt;}
}




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