
    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_4395014505e1a142fd76a02f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_2f1d7779e4df279b812d4af6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_2167d09de5f2213030cab61a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_1919264eb861104de878fa0b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_285cb6d36a7a6fec9c709990.woff')format("woff");}.ff5{font-family:ff5;line-height:0.000000;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_d3edc6100641fd27f485c157.woff')format("woff");}.ff6{font-family:ff6;line-height:0.000000;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:ff7;src:url('chunks/assets/font_d8f656914fb94ed3e1365afc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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.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);}
.m2{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);}
.m3{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);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.021282px;}
.ls2{letter-spacing:33.295427px;}
.ls1{letter-spacing:34.015846px;}
.ls3{letter-spacing:134.875146px;}
.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:-17.999993px;}
.ws0{word-spacing:0.000000px;}
._1d{margin-left:-5.641336px;}
._19{margin-left:-4.307246px;}
._12{margin-left:-2.941280px;}
._1{margin-left:-1.465691px;}
._0{width:1.025999px;}
._4{width:2.027304px;}
._11{width:3.444487px;}
._10{width:5.193572px;}
._8{width:7.167257px;}
._7{width:8.339383px;}
._15{width:10.084880px;}
._14{width:11.158827px;}
._2{width:12.709010px;}
._3{width:13.963362px;}
._13{width:15.724115px;}
._9{width:16.994930px;}
._c{width:19.927406px;}
._d{width:21.123388px;}
._5{width:22.141868px;}
._6{width:23.498868px;}
._a{width:24.707338px;}
._b{width:25.731911px;}
._17{width:26.758224px;}
._16{width:28.086009px;}
._1e{width:29.291167px;}
._18{width:31.027820px;}
._e{width:32.195987px;}
._f{width:33.594264px;}
._1c{width:35.120086px;}
._1a{width:36.884541px;}
._1b{width:37.956570px;}
._22{width:79.052444px;}
._21{width:80.062564px;}
._24{width:81.180167px;}
._1f{width:89.879804px;}
._20{width:91.053948px;}
._23{width:185.416005px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs3{font-size:81.359967px;}
.fs1{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y1{bottom:67.620273px;}
.yac{bottom:110.459956px;}
.y100{bottom:113.519955px;}
.ya4{bottom:119.459952px;}
.y108{bottom:120.539952px;}
.ye0{bottom:121.619951px;}
.y110{bottom:122.519951px;}
.y28{bottom:124.499950px;}
.ycf{bottom:132.599947px;}
.y6a{bottom:134.579946px;}
.y122{bottom:138.719945px;}
.yab{bottom:141.599943px;}
.yff{bottom:143.579943px;}
.y27{bottom:149.339940px;}
.ya3{bottom:150.599940px;}
.ydf{bottom:151.499939px;}
.y10f{bottom:152.579939px;}
.y49{bottom:155.459938px;}
.y121{bottom:159.419936px;}
.y148{bottom:161.399935px;}
.y69{bottom:163.559935px;}
.y88{bottom:167.159933px;}
.ybc{bottom:172.559931px;}
.yfe{bottom:173.639931px;}
.y26{bottom:174.179930px;}
.y107{bottom:180.479928px;}
.ya2{bottom:181.559927px;}
.y147{bottom:182.099927px;}
.y10e{bottom:182.639927px;}
.y48{bottom:186.599925px;}
.y120{bottom:191.999923px;}
.yce{bottom:194.699922px;}
.y87{bottom:198.119921px;}
.y25{bottom:199.019920px;}
.y68{bottom:201.539919px;}
.ybb{bottom:203.699919px;}
.y106{bottom:210.539916px;}
.ya1{bottom:212.699915px;}
.y146{bottom:214.859914px;}
.y47{bottom:217.559913px;}
.yde{bottom:221.699911px;}
.y24{bottom:223.859910px;}
.ycd{bottom:225.659910px;}
.y86{bottom:229.079908px;}
.y67{bottom:230.519908px;}
.y11f{bottom:233.399907px;}
.yfd{bottom:233.579907px;}
.yba{bottom:234.659906px;}
.y145{bottom:235.559906px;}
.y105{bottom:241.499903px;}
.y10d{bottom:242.579903px;}
.ya0{bottom:243.659903px;}
.y23{bottom:248.699901px;}
.ydd{bottom:252.659899px;}
.ycc{bottom:256.619897px;}
.y66{bottom:259.499896px;}
.y85{bottom:260.219896px;}
.yfc{bottom:263.639895px;}
.yb9{bottom:265.619894px;}
.y11e{bottom:266.159894px;}
.y144{bottom:268.319893px;}
.y104{bottom:272.639891px;}
.y22{bottom:273.539891px;}
.y9f{bottom:274.619890px;}
.y46{bottom:279.659888px;}
.ydc{bottom:283.619887px;}
.y11d{bottom:286.859885px;}
.ycb{bottom:287.759885px;}
.y65{bottom:288.479885px;}
.y143{bottom:289.019884px;}
.y84{bottom:291.179884px;}
.yb8{bottom:296.759881px;}
.y21{bottom:298.379881px;}
.yfb{bottom:302.699879px;}
.y9e{bottom:305.759878px;}
.y11c{bottom:307.559877px;}
.y45{bottom:310.799876px;}
.ydb{bottom:314.759874px;}
.y64{bottom:317.459873px;}
.y142{bottom:321.599871px;}
.y83{bottom:322.319871px;}
.y20{bottom:323.219871px;}
.yc8{bottom:327.719869px;}
.yfa{bottom:332.579867px;}
.y9d{bottom:336.719865px;}
.y11b{bottom:340.319864px;}
.y141{bottom:342.299863px;}
.yda{bottom:345.719862px;}
.y63{bottom:346.439861px;}
.y44{bottom:350.759860px;}
.y82{bottom:353.279859px;}
.yc7{bottom:358.859856px;}
.y1f{bottom:360.119856px;}
.y11a{bottom:361.019856px;}
.yf9{bottom:362.639855px;}
.yb7{bottom:367.859853px;}
.y140{bottom:375.059850px;}
.y62{bottom:375.419850px;}
.y9c{bottom:376.859849px;}
.y43{bottom:381.899847px;}
.y81{bottom:384.419846px;}
.y1e{bottom:385.319846px;}
.yc6{bottom:389.819844px;}
.yf8{bottom:392.699843px;}
.y119{bottom:393.599843px;}
.y13f{bottom:395.759842px;}
.yb6{bottom:398.819840px;}
.y61{bottom:404.399838px;}
.y9b{bottom:407.819837px;}
.y1d{bottom:410.159836px;}
.y42{bottom:412.859835px;}
.y118{bottom:414.299834px;}
.y80{bottom:415.379834px;}
.yc5{bottom:420.959832px;}
.yf7{bottom:422.759831px;}
.y13e{bottom:428.519829px;}
.yb5{bottom:429.959828px;}
.y10c{bottom:431.759827px;}
.y60{bottom:433.379827px;}
.y9a{bottom:438.959824px;}
.y1c{bottom:443.999822px;}
.y117{bottom:447.059821px;}
.y13d{bottom:449.219820px;}
.yca{bottom:451.919819px;}
.yf6{bottom:452.639819px;}
.y7f{bottom:455.519818px;}
.yb4{bottom:460.919816px;}
.y10b{bottom:461.639815px;}
.y116{bottom:467.759813px;}
.y1b{bottom:468.839812px;}
.y99{bottom:469.919812px;}
.y5f{bottom:471.359811px;}
.y41{bottom:474.959810px;}
.yd9{bottom:478.919808px;}
.y13c{bottom:481.799807px;}
.y7e{bottom:486.479805px;}
.y115{bottom:488.459805px;}
.yf5{bottom:491.699803px;}
.yb3{bottom:492.059803px;}
.y1a{bottom:493.679803px;}
.y5e{bottom:500.339800px;}
.y98{bottom:501.059800px;}
.y13b{bottom:502.499799px;}
.y40{bottom:506.099798px;}
.yd8{bottom:510.059796px;}
.y7d{bottom:517.619793px;}
.y19{bottom:518.519793px;}
.y114{bottom:521.039792px;}
.yf4{bottom:521.759791px;}
.yb2{bottom:523.019791px;}
.y13a{bottom:523.199791px;}
.y5d{bottom:529.319788px;}
.y97{bottom:532.019787px;}
.y3f{bottom:537.059785px;}
.yd7{bottom:541.019784px;}
.y113{bottom:541.739783px;}
.y18{bottom:543.359783px;}
.y7c{bottom:548.579781px;}
.yf3{bottom:551.819779px;}
.yc4{bottom:554.159778px;}
.y139{bottom:555.959778px;}
.y5c{bottom:558.299777px;}
.y96{bottom:563.159775px;}
.y17{bottom:568.199773px;}
.y112{bottom:571.439771px;}
.yd6{bottom:572.159771px;}
.y138{bottom:576.659769px;}
.y7b{bottom:579.719768px;}
.yf2{bottom:581.699767px;}
.yc3{bottom:585.119766px;}
.y5b{bottom:587.279765px;}
.y16{bottom:593.039763px;}
.y95{bottom:594.119762px;}
.y137{bottom:597.359761px;}
.y3e{bottom:599.159760px;}
.y111{bottom:602.759759px;}
.yd5{bottom:603.119759px;}
.y7a{bottom:610.679756px;}
.yf1{bottom:611.759755px;}
.y5a{bottom:616.259753px;}
.y15{bottom:617.879753px;}
.yaa{bottom:625.259750px;}
.y136{bottom:629.939748px;}
.y3d{bottom:630.299748px;}
.y94{bottom:634.259746px;}
.yf0{bottom:641.819743px;}
.y14{bottom:642.719743px;}
.y59{bottom:645.239742px;}
.yc2{bottom:647.219741px;}
.y135{bottom:650.639740px;}
.y79{bottom:650.819740px;}
.ya9{bottom:656.219738px;}
.y3c{bottom:661.259735px;}
.y93{bottom:665.219734px;}
.y13{bottom:667.559733px;}
.yef{bottom:671.879731px;}
.yc1{bottom:678.359729px;}
.y103{bottom:680.879728px;}
.y78{bottom:681.779727px;}
.y3b{bottom:682.499727px;}
.y58{bottom:683.219727px;}
.y134{bottom:683.399727px;}
.ya8{bottom:687.359725px;}
.y12{bottom:692.399723px;}
.y92{bottom:696.359721px;}
.yee{bottom:701.759719px;}
.y133{bottom:704.099718px;}
.y3a{bottom:706.259717px;}
.y102{bottom:710.759716px;}
.y57{bottom:712.199715px;}
.y77{bottom:712.919715px;}
.y11{bottom:717.239713px;}
.yb1{bottom:718.319713px;}
.y91{bottom:727.319709px;}
.y39{bottom:733.619707px;}
.yd4{bottom:736.319705px;}
.y132{bottom:736.859705px;}
.yed{bottom:740.819704px;}
.y56{bottom:741.179704px;}
.y10{bottom:742.079703px;}
.y76{bottom:743.879702px;}
.yb0{bottom:749.459700px;}
.y131{bottom:757.559697px;}
.y38{bottom:758.459697px;}
.yf{bottom:766.919693px;}
.yd3{bottom:767.459693px;}
.y55{bottom:770.159692px;}
.yec{bottom:770.879692px;}
.y75{bottom:775.019690px;}
.yaf{bottom:780.419688px;}
.y90{bottom:789.419684px;}
.y130{bottom:790.139684px;}
.ye{bottom:791.759683px;}
.y37{bottom:792.299683px;}
.yd2{bottom:798.419681px;}
.y54{bottom:799.139680px;}
.yeb{bottom:800.759680px;}
.y74{bottom:805.979678px;}
.y12f{bottom:810.839676px;}
.yc0{bottom:811.559675px;}
.yd{bottom:816.599673px;}
.y36{bottom:817.139673px;}
.y8f{bottom:820.559672px;}
.y53{bottom:828.119669px;}
.yd1{bottom:829.559668px;}
.yea{bottom:830.819668px;}
.y12e{bottom:831.539667px;}
.y73{bottom:837.119665px;}
.yc{bottom:841.439663px;}
.y35{bottom:841.979663px;}
.ybf{bottom:842.519663px;}
.y8e{bottom:851.519659px;}
.yd0{bottom:860.519656px;}
.ye9{bottom:860.879656px;}
.y12d{bottom:864.299654px;}
.y52{bottom:866.099654px;}
.yb{bottom:866.279653px;}
.y34{bottom:866.819653px;}
.y72{bottom:868.079653px;}
.ybe{bottom:873.659651px;}
.ya7{bottom:882.659647px;}
.y12c{bottom:884.999646px;}
.ye8{bottom:890.939644px;}
.ya{bottom:891.119644px;}
.y33{bottom:891.659643px;}
.y51{bottom:895.079642px;}
.y71{bottom:899.219640px;}
.y12b{bottom:905.699638px;}
.ya6{bottom:913.619635px;}
.y9{bottom:915.959634px;}
.y32{bottom:916.499633px;}
.ye7{bottom:920.819632px;}
.y8d{bottom:922.619631px;}
.y50{bottom:924.059630px;}
.y101{bottom:929.819628px;}
.y70{bottom:937.199625px;}
.y8{bottom:938.279625px;}
.y12a{bottom:938.459625px;}
.y31{bottom:941.339623px;}
.ya5{bottom:944.759622px;}
.y10a{bottom:950.879620px;}
.y4f{bottom:953.039619px;}
.y8c{bottom:953.759618px;}
.y129{bottom:959.159616px;}
.ye6{bottom:959.879616px;}
.y7{bottom:960.059616px;}
.y30{bottom:966.179614px;}
.yae{bottom:975.719610px;}
.y109{bottom:980.939608px;}
.y6{bottom:981.839607px;}
.y4e{bottom:982.019607px;}
.y8b{bottom:984.719606px;}
.ye5{bottom:989.939604px;}
.y2f{bottom:991.019604px;}
.y128{bottom:991.739603px;}
.y6f{bottom:995.159602px;}
.y5{bottom:1003.439599px;}
.yad{bottom:1006.859597px;}
.y4d{bottom:1010.999596px;}
.y127{bottom:1012.439595px;}
.y2e{bottom:1015.859594px;}
.ye4{bottom:1019.999592px;}
.y6e{bottom:1024.139590px;}
.y126{bottom:1033.139587px;}
.y4{bottom:1034.579586px;}
.ybd{bottom:1037.819585px;}
.y4c{bottom:1039.979584px;}
.y2d{bottom:1040.699584px;}
.y8a{bottom:1046.819581px;}
.ye3{bottom:1049.879580px;}
.y6d{bottom:1053.119579px;}
.y2c{bottom:1065.539574px;}
.y125{bottom:1065.899574px;}
.y4b{bottom:1068.959572px;}
.y89{bottom:1077.959569px;}
.ye2{bottom:1079.939568px;}
.y3{bottom:1080.299568px;}
.y6c{bottom:1082.099567px;}
.y124{bottom:1086.599565px;}
.y2b{bottom:1090.379564px;}
.yc9{bottom:1099.919560px;}
.y4a{bottom:1108.919556px;}
.ye1{bottom:1109.999556px;}
.y6b{bottom:1111.079556px;}
.y2a{bottom:1115.219554px;}
.y123{bottom:1119.359552px;}
.y2{bottom:1122.599551px;}
.y29{bottom:1140.059544px;}
.h1{height:45.573102px;}
.h8{height:47.988262px;}
.h4{height:49.175980px;}
.h5{height:49.535980px;}
.h6{height:50.484355px;}
.h3{height:51.335979px;}
.h7{height:57.047321px;}
.h2{height:100.968710px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:106.200091px;}
.x3{left:124.199971px;}
.xa{left:133.199937px;}
.xc{left:140.219361px;}
.xb{left:159.299369px;}
.x2{left:162.179935px;}
.x9{left:438.119825px;}
.x1{left:442.259823px;}
.x6{left:444.239594px;}
.x7{left:521.099490px;}
.x4{left:578.519769px;}
.x5{left:697.140194px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.018917pt;}
.ls2{letter-spacing:29.595935pt;}
.ls1{letter-spacing:30.236308pt;}
.ls3{letter-spacing:119.889019pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:0.000000pt;}
._1d{margin-left:-5.014521pt;}
._19{margin-left:-3.828663pt;}
._12{margin-left:-2.614471pt;}
._1{margin-left:-1.302837pt;}
._0{width:0.911999pt;}
._4{width:1.802048pt;}
._11{width:3.061766pt;}
._10{width:4.616509pt;}
._8{width:6.370895pt;}
._7{width:7.412785pt;}
._15{width:8.964337pt;}
._14{width:9.918957pt;}
._2{width:11.296898pt;}
._3{width:12.411878pt;}
._13{width:13.976991pt;}
._9{width:15.106605pt;}
._c{width:17.713250pt;}
._d{width:18.776345pt;}
._5{width:19.681661pt;}
._6{width:20.887883pt;}
._a{width:21.962078pt;}
._b{width:22.872810pt;}
._17{width:23.785088pt;}
._16{width:24.965341pt;}
._1e{width:26.036593pt;}
._18{width:27.580284pt;}
._e{width:28.618655pt;}
._f{width:29.861568pt;}
._1c{width:31.217855pt;}
._1a{width:32.786259pt;}
._1b{width:33.739173pt;}
._22{width:70.268839pt;}
._21{width:71.166724pt;}
._24{width:72.160149pt;}
._1f{width:79.893159pt;}
._20{width:80.936843pt;}
._23{width:164.814226pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs3{font-size:72.319971pt;}
.fs1{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.106909pt;}
.yac{bottom:98.186627pt;}
.y100{bottom:100.906626pt;}
.ya4{bottom:106.186624pt;}
.y108{bottom:107.146624pt;}
.ye0{bottom:108.106623pt;}
.y110{bottom:108.906623pt;}
.y28{bottom:110.666622pt;}
.ycf{bottom:117.866620pt;}
.y6a{bottom:119.626619pt;}
.y122{bottom:123.306617pt;}
.yab{bottom:125.866616pt;}
.yff{bottom:127.626616pt;}
.y27{bottom:132.746614pt;}
.ya3{bottom:133.866613pt;}
.ydf{bottom:134.666613pt;}
.y10f{bottom:135.626612pt;}
.y49{bottom:138.186611pt;}
.y121{bottom:141.706610pt;}
.y148{bottom:143.466609pt;}
.y69{bottom:145.386609pt;}
.y88{bottom:148.586607pt;}
.ybc{bottom:153.386605pt;}
.yfe{bottom:154.346605pt;}
.y26{bottom:154.826605pt;}
.y107{bottom:160.426602pt;}
.ya2{bottom:161.386602pt;}
.y147{bottom:161.866602pt;}
.y10e{bottom:162.346602pt;}
.y48{bottom:165.866600pt;}
.y120{bottom:170.666598pt;}
.yce{bottom:173.066597pt;}
.y87{bottom:176.106596pt;}
.y25{bottom:176.906596pt;}
.y68{bottom:179.146595pt;}
.ybb{bottom:181.066594pt;}
.y106{bottom:187.146592pt;}
.ya1{bottom:189.066591pt;}
.y146{bottom:190.986590pt;}
.y47{bottom:193.386589pt;}
.yde{bottom:197.066588pt;}
.y24{bottom:198.986587pt;}
.ycd{bottom:200.586586pt;}
.y86{bottom:203.626585pt;}
.y67{bottom:204.906585pt;}
.y11f{bottom:207.466584pt;}
.yfd{bottom:207.626584pt;}
.yba{bottom:208.586583pt;}
.y145{bottom:209.386583pt;}
.y105{bottom:214.666581pt;}
.y10d{bottom:215.626580pt;}
.ya0{bottom:216.586580pt;}
.y23{bottom:221.066578pt;}
.ydd{bottom:224.586577pt;}
.ycc{bottom:228.106575pt;}
.y66{bottom:230.666574pt;}
.y85{bottom:231.306574pt;}
.yfc{bottom:234.346573pt;}
.yb9{bottom:236.106572pt;}
.y11e{bottom:236.586572pt;}
.y144{bottom:238.506571pt;}
.y104{bottom:242.346570pt;}
.y22{bottom:243.146569pt;}
.y9f{bottom:244.106569pt;}
.y46{bottom:248.586567pt;}
.ydc{bottom:252.106566pt;}
.y11d{bottom:254.986565pt;}
.ycb{bottom:255.786564pt;}
.y65{bottom:256.426564pt;}
.y143{bottom:256.906564pt;}
.y84{bottom:258.826563pt;}
.yb8{bottom:263.786561pt;}
.y21{bottom:265.226561pt;}
.yfb{bottom:269.066559pt;}
.y9e{bottom:271.786558pt;}
.y11c{bottom:273.386557pt;}
.y45{bottom:276.266556pt;}
.ydb{bottom:279.786555pt;}
.y64{bottom:282.186554pt;}
.y142{bottom:285.866552pt;}
.y83{bottom:286.506552pt;}
.y20{bottom:287.306552pt;}
.yc8{bottom:291.306550pt;}
.yfa{bottom:295.626548pt;}
.y9d{bottom:299.306547pt;}
.y11b{bottom:302.506546pt;}
.y141{bottom:304.266545pt;}
.yda{bottom:307.306544pt;}
.y63{bottom:307.946543pt;}
.y44{bottom:311.786542pt;}
.y82{bottom:314.026541pt;}
.yc7{bottom:318.986539pt;}
.y1f{bottom:320.106539pt;}
.y11a{bottom:320.906538pt;}
.yf9{bottom:322.346538pt;}
.yb7{bottom:326.986536pt;}
.y140{bottom:333.386533pt;}
.y62{bottom:333.706533pt;}
.y9c{bottom:334.986533pt;}
.y43{bottom:339.466531pt;}
.y81{bottom:341.706530pt;}
.y1e{bottom:342.506530pt;}
.yc6{bottom:346.506528pt;}
.yf8{bottom:349.066527pt;}
.y119{bottom:349.866527pt;}
.y13f{bottom:351.786526pt;}
.yb6{bottom:354.506525pt;}
.y61{bottom:359.466523pt;}
.y9b{bottom:362.506522pt;}
.y1d{bottom:364.586521pt;}
.y42{bottom:366.986520pt;}
.y118{bottom:368.266519pt;}
.y80{bottom:369.226519pt;}
.yc5{bottom:374.186517pt;}
.yf7{bottom:375.786516pt;}
.y13e{bottom:380.906514pt;}
.yb5{bottom:382.186514pt;}
.y10c{bottom:383.786513pt;}
.y60{bottom:385.226513pt;}
.y9a{bottom:390.186511pt;}
.y1c{bottom:394.666509pt;}
.y117{bottom:397.386508pt;}
.y13d{bottom:399.306507pt;}
.yca{bottom:401.706506pt;}
.yf6{bottom:402.346506pt;}
.y7f{bottom:404.906505pt;}
.yb4{bottom:409.706503pt;}
.y10b{bottom:410.346503pt;}
.y116{bottom:415.786500pt;}
.y1b{bottom:416.746500pt;}
.y99{bottom:417.706500pt;}
.y5f{bottom:418.986499pt;}
.y41{bottom:422.186498pt;}
.yd9{bottom:425.706496pt;}
.y13c{bottom:428.266495pt;}
.y7e{bottom:432.426494pt;}
.y115{bottom:434.186493pt;}
.yf5{bottom:437.066492pt;}
.yb3{bottom:437.386492pt;}
.y1a{bottom:438.826491pt;}
.y5e{bottom:444.746489pt;}
.y98{bottom:445.386489pt;}
.y13b{bottom:446.666488pt;}
.y40{bottom:449.866487pt;}
.yd8{bottom:453.386485pt;}
.y7d{bottom:460.106483pt;}
.y19{bottom:460.906482pt;}
.y114{bottom:463.146481pt;}
.yf4{bottom:463.786481pt;}
.yb2{bottom:464.906481pt;}
.y13a{bottom:465.066481pt;}
.y5d{bottom:470.506478pt;}
.y97{bottom:472.906478pt;}
.y3f{bottom:477.386476pt;}
.yd7{bottom:480.906474pt;}
.y113{bottom:481.546474pt;}
.y18{bottom:482.986473pt;}
.y7c{bottom:487.626472pt;}
.yf3{bottom:490.506470pt;}
.yc4{bottom:492.586470pt;}
.y139{bottom:494.186469pt;}
.y5c{bottom:496.266468pt;}
.y96{bottom:500.586466pt;}
.y17{bottom:505.066465pt;}
.y112{bottom:507.946463pt;}
.yd6{bottom:508.586463pt;}
.y138{bottom:512.586462pt;}
.y7b{bottom:515.306461pt;}
.yf2{bottom:517.066460pt;}
.yc3{bottom:520.106459pt;}
.y5b{bottom:522.026458pt;}
.y16{bottom:527.146456pt;}
.y95{bottom:528.106455pt;}
.y137{bottom:530.986454pt;}
.y3e{bottom:532.586454pt;}
.y111{bottom:535.786452pt;}
.yd5{bottom:536.106452pt;}
.y7a{bottom:542.826450pt;}
.yf1{bottom:543.786449pt;}
.y5a{bottom:547.786448pt;}
.y15{bottom:549.226447pt;}
.yaa{bottom:555.786444pt;}
.y136{bottom:559.946443pt;}
.y3d{bottom:560.266443pt;}
.y94{bottom:563.786441pt;}
.yf0{bottom:570.506438pt;}
.y14{bottom:571.306438pt;}
.y59{bottom:573.546437pt;}
.yc2{bottom:575.306437pt;}
.y135{bottom:578.346435pt;}
.y79{bottom:578.506435pt;}
.ya9{bottom:583.306433pt;}
.y3c{bottom:587.786432pt;}
.y93{bottom:591.306430pt;}
.y13{bottom:593.386429pt;}
.yef{bottom:597.226428pt;}
.yc1{bottom:602.986425pt;}
.y103{bottom:605.226425pt;}
.y78{bottom:606.026424pt;}
.y3b{bottom:606.666424pt;}
.y58{bottom:607.306424pt;}
.y134{bottom:607.466424pt;}
.ya8{bottom:610.986422pt;}
.y12{bottom:615.466420pt;}
.y92{bottom:618.986419pt;}
.yee{bottom:623.786417pt;}
.y133{bottom:625.866416pt;}
.y3a{bottom:627.786416pt;}
.y102{bottom:631.786414pt;}
.y57{bottom:633.066413pt;}
.y77{bottom:633.706413pt;}
.y11{bottom:637.546412pt;}
.yb1{bottom:638.506411pt;}
.y91{bottom:646.506408pt;}
.y39{bottom:652.106406pt;}
.yd4{bottom:654.506405pt;}
.y132{bottom:654.986405pt;}
.yed{bottom:658.506403pt;}
.y56{bottom:658.826403pt;}
.y10{bottom:659.626403pt;}
.y76{bottom:661.226402pt;}
.yb0{bottom:666.186400pt;}
.y131{bottom:673.386397pt;}
.y38{bottom:674.186397pt;}
.yf{bottom:681.706394pt;}
.yd3{bottom:682.186394pt;}
.y55{bottom:684.586393pt;}
.yec{bottom:685.226393pt;}
.y75{bottom:688.906391pt;}
.yaf{bottom:693.706389pt;}
.y90{bottom:701.706386pt;}
.y130{bottom:702.346386pt;}
.ye{bottom:703.786385pt;}
.y37{bottom:704.266385pt;}
.yd2{bottom:709.706383pt;}
.y54{bottom:710.346383pt;}
.yeb{bottom:711.786382pt;}
.y74{bottom:716.426380pt;}
.y12f{bottom:720.746378pt;}
.yc0{bottom:721.386378pt;}
.yd{bottom:725.866376pt;}
.y36{bottom:726.346376pt;}
.y8f{bottom:729.386375pt;}
.y53{bottom:736.106372pt;}
.yd1{bottom:737.386372pt;}
.yea{bottom:738.506371pt;}
.y12e{bottom:739.146371pt;}
.y73{bottom:744.106369pt;}
.yc{bottom:747.946367pt;}
.y35{bottom:748.426367pt;}
.ybf{bottom:748.906367pt;}
.y8e{bottom:756.906364pt;}
.yd0{bottom:764.906361pt;}
.ye9{bottom:765.226361pt;}
.y12d{bottom:768.266359pt;}
.y52{bottom:769.866359pt;}
.yb{bottom:770.026359pt;}
.y34{bottom:770.506358pt;}
.y72{bottom:771.626358pt;}
.ybe{bottom:776.586356pt;}
.ya7{bottom:784.586353pt;}
.y12c{bottom:786.666352pt;}
.ye8{bottom:791.946350pt;}
.ya{bottom:792.106350pt;}
.y33{bottom:792.586350pt;}
.y51{bottom:795.626348pt;}
.y71{bottom:799.306347pt;}
.y12b{bottom:805.066345pt;}
.ya6{bottom:812.106342pt;}
.y9{bottom:814.186341pt;}
.y32{bottom:814.666341pt;}
.ye7{bottom:818.506339pt;}
.y8d{bottom:820.106339pt;}
.y50{bottom:821.386338pt;}
.y101{bottom:826.506336pt;}
.y70{bottom:833.066333pt;}
.y8{bottom:834.026333pt;}
.y12a{bottom:834.186333pt;}
.y31{bottom:836.746332pt;}
.ya5{bottom:839.786331pt;}
.y10a{bottom:845.226329pt;}
.y4f{bottom:847.146328pt;}
.y8c{bottom:847.786328pt;}
.y129{bottom:852.586326pt;}
.ye6{bottom:853.226325pt;}
.y7{bottom:853.386325pt;}
.y30{bottom:858.826323pt;}
.yae{bottom:867.306320pt;}
.y109{bottom:871.946318pt;}
.y6{bottom:872.746318pt;}
.y4e{bottom:872.906318pt;}
.y8b{bottom:875.306317pt;}
.ye5{bottom:879.946315pt;}
.y2f{bottom:880.906314pt;}
.y128{bottom:881.546314pt;}
.y6f{bottom:884.586313pt;}
.y5{bottom:891.946310pt;}
.yad{bottom:894.986309pt;}
.y4d{bottom:898.666307pt;}
.y127{bottom:899.946307pt;}
.y2e{bottom:902.986305pt;}
.ye4{bottom:906.666304pt;}
.y6e{bottom:910.346303pt;}
.y126{bottom:918.346299pt;}
.y4{bottom:919.626299pt;}
.ybd{bottom:922.506298pt;}
.y4c{bottom:924.426297pt;}
.y2d{bottom:925.066297pt;}
.y8a{bottom:930.506294pt;}
.ye3{bottom:933.226293pt;}
.y6d{bottom:936.106292pt;}
.y2c{bottom:947.146288pt;}
.y125{bottom:947.466288pt;}
.y4b{bottom:950.186287pt;}
.y89{bottom:958.186283pt;}
.ye2{bottom:959.946283pt;}
.y3{bottom:960.266283pt;}
.y6c{bottom:961.866282pt;}
.y124{bottom:965.866280pt;}
.y2b{bottom:969.226279pt;}
.yc9{bottom:977.706276pt;}
.y4a{bottom:985.706272pt;}
.ye1{bottom:986.666272pt;}
.y6b{bottom:987.626272pt;}
.y2a{bottom:991.306270pt;}
.y123{bottom:994.986269pt;}
.y2{bottom:997.866268pt;}
.y29{bottom:1013.386261pt;}
.h1{height:40.509424pt;}
.h8{height:42.656233pt;}
.h4{height:43.711983pt;}
.h5{height:44.031982pt;}
.h6{height:44.874982pt;}
.h3{height:45.631982pt;}
.h7{height:50.708730pt;}
.h2{height:89.749964pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:94.400081pt;}
.x3{left:110.399974pt;}
.xa{left:118.399944pt;}
.xc{left:124.639432pt;}
.xb{left:141.599439pt;}
.x2{left:144.159942pt;}
.x9{left:389.439844pt;}
.x1{left:393.119843pt;}
.x6{left:394.879639pt;}
.x7{left:463.199546pt;}
.x4{left:514.239794pt;}
.x5{left:619.680172pt;}
}




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