
    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_4edb814c205c3639b8b9a0c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.863770;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_58a2d9852bc0cbb2ed94283f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9d18b9cb22556017c95553c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_02c91c38170f338518459c79.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.180000px;}
.ls4{letter-spacing:94.715962px;}
.ls2{letter-spacing:98.999960px;}
.ls1{letter-spacing:105.299958px;}
.ls6{letter-spacing:119.915952px;}
.ls5{letter-spacing:124.199950px;}
.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;}
}
.ws12{word-spacing:-59.718216px;}
.ws9{word-spacing:-54.185738px;}
.wsb{word-spacing:-43.446223px;}
.wsd{word-spacing:-40.859984px;}
.ws5{word-spacing:-40.679984px;}
.ws4{word-spacing:-36.611985px;}
.ws10{word-spacing:-27.174229px;}
.wsf{word-spacing:-24.407990px;}
.ws13{word-spacing:-2.087918px;}
.ws0{word-spacing:-1.930448px;}
.wse{word-spacing:-1.902983px;}
.ws11{word-spacing:-1.737312px;}
.ws3{word-spacing:-1.367927px;}
.wsa{word-spacing:-0.540000px;}
.wsc{word-spacing:-0.210887px;}
.ws14{word-spacing:-0.015023px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.053965px;}
.ws8{word-spacing:0.082944px;}
.ws7{word-spacing:1.067547px;}
.ws6{word-spacing:1.090769px;}
._d{margin-left:-19.025815px;}
._17{margin-left:-17.065847px;}
._19{margin-left:-15.224433px;}
._9{margin-left:-14.147959px;}
._4{margin-left:-12.802990px;}
._22{margin-left:-11.669198px;}
._15{margin-left:-10.187931px;}
._8{margin-left:-8.344334px;}
._1f{margin-left:-7.013396px;}
._16{margin-left:-5.930124px;}
._e{margin-left:-4.825551px;}
._1{margin-left:-3.613003px;}
._0{margin-left:-2.077003px;}
._5{margin-left:-1.010085px;}
._3{width:1.100424px;}
._1a{width:2.631533px;}
._1b{width:5.059640px;}
._18{width:8.308011px;}
._1e{width:23.103982px;}
._21{width:24.493379px;}
._1c{width:25.632008px;}
._1d{width:26.648875px;}
._20{width:28.481405px;}
._7{width:33.505127px;}
._6{width:35.107116px;}
._a{width:36.311072px;}
._c{width:39.330570px;}
._11{width:41.668358px;}
._2{width:42.729374px;}
._10{width:44.458839px;}
._13{width:46.046515px;}
._14{width:50.476356px;}
._f{width:55.244139px;}
._b{width:57.303513px;}
._12{width:58.639189px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:107.999957px;}
.fs8{font-size:120.239952px;}
.fs1{font-size:143.999942px;}
.fs3{font-size:161.999935px;}
.fs5{font-size:179.999928px;}
.fs0{font-size:192.239923px;}
.fs6{font-size:215.999914px;}
.fs4{font-size:239.759904px;}
.fs2{font-size:264.239894px;}
.y0{bottom:0.000000px;}
.y62{bottom:156.840294px;}
.y37{bottom:160.080293px;}
.y50{bottom:164.400291px;}
.y2f{bottom:168.360290px;}
.y23{bottom:174.120287px;}
.yf{bottom:180.600285px;}
.y1b{bottom:181.680284px;}
.y4f{bottom:190.320281px;}
.y36{bottom:203.280276px;}
.y2e{bottom:212.100272px;}
.y4e{bottom:216.240271px;}
.ye{bottom:219.480269px;}
.y3a{bottom:220.200269px;}
.y1a{bottom:224.880267px;}
.y5a{bottom:232.080264px;}
.y40{bottom:235.680263px;}
.y22{bottom:243.240260px;}
.y35{bottom:246.480258px;}
.y2d{bottom:255.840255px;}
.y59{bottom:260.880253px;}
.y68{bottom:261.600252px;}
.yd{bottom:268.080250px;}
.y61{bottom:272.040248px;}
.y19{bottom:278.880245px;}
.y4d{bottom:281.040245px;}
.y39{bottom:289.320241px;}
.y58{bottom:296.880238px;}
.y34{bottom:300.480237px;}
.y21{bottom:300.840237px;}
.y2c{bottom:309.300233px;}
.y4c{bottom:313.440232px;}
.yc{bottom:316.680230px;}
.y3f{bottom:322.080228px;}
.y67{bottom:326.400226px;}
.y18{bottom:332.880224px;}
.y60{bottom:335.400223px;}
.y4b{bottom:339.360221px;}
.y6a{bottom:341.880220px;}
.y33{bottom:343.680220px;}
.y66{bottom:352.320216px;}
.y38{bottom:358.440214px;}
.y57{bottom:361.680212px;}
.y2b{bottom:362.760212px;}
.yb{bottom:365.280211px;}
.y20{bottom:369.960209px;}
.y17{bottom:376.080207px;}
.y65{bottom:378.240206px;}
.y32{bottom:386.880202px;}
.y56{bottom:397.680198px;}
.y5f{bottom:398.760197px;}
.y4a{bottom:404.160195px;}
.y64{bottom:410.640193px;}
.ya{bottom:413.880191px;}
.y24{bottom:416.040191px;}
.y2a{bottom:416.220191px;}
.y3e{bottom:419.280189px;}
.y1f{bottom:427.560186px;}
.y16{bottom:430.080185px;}
.y55{bottom:433.680184px;}
.y49{bottom:436.560182px;}
.y31{bottom:440.880181px;}
.y5e{bottom:450.600177px;}
.y9{bottom:452.760176px;}
.y29{bottom:459.960173px;}
.y3d{bottom:462.480172px;}
.y4{bottom:466.800170px;}
.y15{bottom:473.280168px;}
.y30{bottom:484.080163px;}
.y1e{bottom:485.160163px;}
.y69{bottom:490.740161px;}
.y48{bottom:494.880159px;}
.y54{bottom:498.480158px;}
.y5d{bottom:502.440156px;}
.y3c{bottom:516.480150px;}
.y47{bottom:520.800149px;}
.y14{bottom:527.280146px;}
.y3{bottom:528.180146px;}
.y53{bottom:534.480143px;}
.y1d{bottom:542.760140px;}
.y8{bottom:549.960137px;}
.y46{bottom:553.200136px;}
.y5c{bottom:554.280135px;}
.y28{bottom:566.880130px;}
.y3b{bottom:570.480129px;}
.y45{bottom:579.120125px;}
.y13{bottom:581.280124px;}
.y2{bottom:585.780123px;}
.y7{bottom:588.840121px;}
.y44{bottom:605.040115px;}
.y52{bottom:606.480114px;}
.y63{bottom:611.520112px;}
.y1c{bottom:611.880112px;}
.y5b{bottom:617.640110px;}
.y27{bottom:620.340109px;}
.y12{bottom:624.480107px;}
.y6{bottom:627.720106px;}
.y51{bottom:635.280103px;}
.y43{bottom:637.440102px;}
.y1{bottom:643.380100px;}
.y11{bottom:695.220079px;}
.y26{bottom:700.800077px;}
.y42{bottom:706.380074px;}
.y5{bottom:729.240065px;}
.y41{bottom:763.980051px;}
.y25{bottom:765.600051px;}
.y10{bottom:767.220050px;}
.hd{height:77.519500px;}
.h10{height:82.195280px;}
.hf{height:86.305044px;}
.h2{height:98.718711px;}
.hc{height:112.640580px;}
.h5{height:116.279250px;}
.he{height:125.406512px;}
.h8{height:129.199167px;}
.h1{height:131.789479px;}
.ha{height:137.984710px;}
.hb{height:148.078066px;}
.h6{height:164.366653px;}
.h4{height:168.960870px;}
.h3{height:181.148834px;}
.h7{height:187.734300px;}
.h11{height:189.664377px;}
.h9{height:200.500232px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x6{left:156.226438px;}
.x12{left:162.886435px;}
.xd{left:166.306433px;}
.xa{left:177.286429px;}
.x1{left:192.226423px;}
.x7{left:196.726421px;}
.xf{left:201.586419px;}
.x11{left:205.366418px;}
.x2{left:231.466407px;}
.xb{left:233.086407px;}
.x8{left:234.166406px;}
.xc{left:244.786402px;}
.x15{left:259.006396px;}
.x14{left:265.666394px;}
.xe{left:274.306390px;}
.x9{left:301.666379px;}
.x3{left:344.866362px;}
.x4{left:349.006360px;}
.x5{left:350.266360px;}
.x13{left:366.646353px;}
.x16{left:402.466339px;}
.x17{left:460.786316px;}
.x18{left:481.126308px;}
.x10{left:482.926307px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls4{letter-spacing:84.191966pt;}
.ls2{letter-spacing:87.999965pt;}
.ls1{letter-spacing:93.599963pt;}
.ls6{letter-spacing:106.591957pt;}
.ls5{letter-spacing:110.399956pt;}
.ws12{word-spacing:-53.082859pt;}
.ws9{word-spacing:-48.165101pt;}
.wsb{word-spacing:-38.618865pt;}
.wsd{word-spacing:-36.319985pt;}
.ws5{word-spacing:-36.159986pt;}
.ws4{word-spacing:-32.543987pt;}
.ws10{word-spacing:-24.154870pt;}
.wsf{word-spacing:-21.695991pt;}
.ws13{word-spacing:-1.855927pt;}
.ws0{word-spacing:-1.715954pt;}
.wse{word-spacing:-1.691540pt;}
.ws11{word-spacing:-1.544277pt;}
.ws3{word-spacing:-1.215936pt;}
.wsa{word-spacing:-0.480000pt;}
.wsc{word-spacing:-0.187455pt;}
.ws14{word-spacing:-0.013354pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.047969pt;}
.ws8{word-spacing:0.073728pt;}
.ws7{word-spacing:0.948931pt;}
.ws6{word-spacing:0.969573pt;}
._d{margin-left:-16.911836pt;}
._17{margin-left:-15.169642pt;}
._19{margin-left:-13.532829pt;}
._9{margin-left:-12.575964pt;}
._4{margin-left:-11.380436pt;}
._22{margin-left:-10.372620pt;}
._15{margin-left:-9.055939pt;}
._8{margin-left:-7.417186pt;}
._1f{margin-left:-6.234129pt;}
._16{margin-left:-5.271221pt;}
._e{margin-left:-4.289378pt;}
._1{margin-left:-3.211558pt;}
._0{margin-left:-1.846225pt;}
._5{margin-left:-0.897853pt;}
._3{width:0.978155pt;}
._1a{width:2.339140pt;}
._1b{width:4.497458pt;}
._18{width:7.384899pt;}
._1e{width:20.536873pt;}
._21{width:21.771893pt;}
._1c{width:22.784007pt;}
._1d{width:23.687889pt;}
._20{width:25.316804pt;}
._7{width:29.782335pt;}
._6{width:31.206326pt;}
._a{width:32.276508pt;}
._c{width:34.960507pt;}
._11{width:37.038541pt;}
._2{width:37.981666pt;}
._10{width:39.518968pt;}
._13{width:40.930235pt;}
._14{width:44.867872pt;}
._f{width:49.105901pt;}
._b{width:50.936456pt;}
._12{width:52.123723pt;}
.fs7{font-size:95.999962pt;}
.fs8{font-size:106.879957pt;}
.fs1{font-size:127.999949pt;}
.fs3{font-size:143.999942pt;}
.fs5{font-size:159.999936pt;}
.fs0{font-size:170.879932pt;}
.fs6{font-size:191.999923pt;}
.fs4{font-size:213.119915pt;}
.fs2{font-size:234.879906pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:139.413595pt;}
.y37{bottom:142.293594pt;}
.y50{bottom:146.133592pt;}
.y2f{bottom:149.653591pt;}
.y23{bottom:154.773589pt;}
.yf{bottom:160.533586pt;}
.y1b{bottom:161.493586pt;}
.y4f{bottom:169.173583pt;}
.y36{bottom:180.693578pt;}
.y2e{bottom:188.533575pt;}
.y4e{bottom:192.213574pt;}
.ye{bottom:195.093573pt;}
.y3a{bottom:195.733572pt;}
.y1a{bottom:199.893571pt;}
.y5a{bottom:206.293568pt;}
.y40{bottom:209.493567pt;}
.y22{bottom:216.213564pt;}
.y35{bottom:219.093563pt;}
.y2d{bottom:227.413560pt;}
.y59{bottom:231.893558pt;}
.y68{bottom:232.533558pt;}
.yd{bottom:238.293555pt;}
.y61{bottom:241.813554pt;}
.y19{bottom:247.893552pt;}
.y4d{bottom:249.813551pt;}
.y39{bottom:257.173548pt;}
.y58{bottom:263.893545pt;}
.y34{bottom:267.093544pt;}
.y21{bottom:267.413544pt;}
.y2c{bottom:274.933541pt;}
.y4c{bottom:278.613539pt;}
.yc{bottom:281.493538pt;}
.y3f{bottom:286.293536pt;}
.y67{bottom:290.133535pt;}
.y18{bottom:295.893532pt;}
.y60{bottom:298.133531pt;}
.y4b{bottom:301.653530pt;}
.y6a{bottom:303.893529pt;}
.y33{bottom:305.493528pt;}
.y66{bottom:313.173525pt;}
.y38{bottom:318.613523pt;}
.y57{bottom:321.493522pt;}
.y2b{bottom:322.453522pt;}
.yb{bottom:324.693521pt;}
.y20{bottom:328.853519pt;}
.y17{bottom:334.293517pt;}
.y65{bottom:336.213516pt;}
.y32{bottom:343.893513pt;}
.y56{bottom:353.493509pt;}
.y5f{bottom:354.453509pt;}
.y4a{bottom:359.253507pt;}
.y64{bottom:365.013505pt;}
.ya{bottom:367.893504pt;}
.y24{bottom:369.813503pt;}
.y2a{bottom:369.973503pt;}
.y3e{bottom:372.693502pt;}
.y1f{bottom:380.053499pt;}
.y16{bottom:382.293498pt;}
.y55{bottom:385.493496pt;}
.y49{bottom:388.053495pt;}
.y31{bottom:391.893494pt;}
.y5e{bottom:400.533490pt;}
.y9{bottom:402.453490pt;}
.y29{bottom:408.853487pt;}
.y3d{bottom:411.093486pt;}
.y4{bottom:414.933485pt;}
.y15{bottom:420.693482pt;}
.y30{bottom:430.293479pt;}
.y1e{bottom:431.253478pt;}
.y69{bottom:436.213476pt;}
.y48{bottom:439.893475pt;}
.y54{bottom:443.093473pt;}
.y5d{bottom:446.613472pt;}
.y3c{bottom:459.093467pt;}
.y47{bottom:462.933465pt;}
.y14{bottom:468.693463pt;}
.y3{bottom:469.493463pt;}
.y53{bottom:475.093461pt;}
.y1d{bottom:482.453458pt;}
.y8{bottom:488.853455pt;}
.y46{bottom:491.733454pt;}
.y5c{bottom:492.693454pt;}
.y28{bottom:503.893449pt;}
.y3b{bottom:507.093448pt;}
.y45{bottom:514.773445pt;}
.y13{bottom:516.693444pt;}
.y2{bottom:520.693442pt;}
.y7{bottom:523.413441pt;}
.y44{bottom:537.813436pt;}
.y52{bottom:539.093435pt;}
.y63{bottom:543.573433pt;}
.y1c{bottom:543.893433pt;}
.y5b{bottom:549.013431pt;}
.y27{bottom:551.413430pt;}
.y12{bottom:555.093429pt;}
.y6{bottom:557.973427pt;}
.y51{bottom:564.693425pt;}
.y43{bottom:566.613424pt;}
.y1{bottom:571.893422pt;}
.y11{bottom:617.973403pt;}
.y26{bottom:622.933401pt;}
.y42{bottom:627.893400pt;}
.y5{bottom:648.213391pt;}
.y41{bottom:679.093379pt;}
.y25{bottom:680.533378pt;}
.y10{bottom:681.973378pt;}
.hd{height:68.906222pt;}
.h10{height:73.062471pt;}
.hf{height:76.715594pt;}
.h2{height:87.749965pt;}
.hc{height:100.124960pt;}
.h5{height:103.359334pt;}
.he{height:111.472455pt;}
.h8{height:114.843704pt;}
.h1{height:117.146203pt;}
.ha{height:122.653076pt;}
.hb{height:131.624947pt;}
.h6{height:146.103692pt;}
.h4{height:150.187440pt;}
.h3{height:161.021186pt;}
.h7{height:166.874933pt;}
.h11{height:168.590558pt;}
.h9{height:178.222429pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x6{left:138.867944pt;}
.x12{left:144.787942pt;}
.xd{left:147.827941pt;}
.xa{left:157.587937pt;}
.x1{left:170.867932pt;}
.x7{left:174.867930pt;}
.xf{left:179.187928pt;}
.x11{left:182.547927pt;}
.x2{left:205.747918pt;}
.xb{left:207.187917pt;}
.x8{left:208.147917pt;}
.xc{left:217.587913pt;}
.x15{left:230.227908pt;}
.x14{left:236.147906pt;}
.xe{left:243.827902pt;}
.x9{left:268.147893pt;}
.x3{left:306.547877pt;}
.x4{left:310.227876pt;}
.x5{left:311.347875pt;}
.x13{left:325.907870pt;}
.x16{left:357.747857pt;}
.x17{left:409.587836pt;}
.x18{left:427.667829pt;}
.x10{left:429.267828pt;}
}




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