
    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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_420a0a033162f714a858de46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_b96b882349379eefc4a7ed00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.998000;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_75feeca5e8de83e25a1805f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_5be86e2ee7eb3c7a5aca8021.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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:ff8;src:url('chunks/assets/font_02167aee22602537a8dab55b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.007000;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;}
.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;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.432336px;}
.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;}
}
.ws0{word-spacing:-115.444419px;}
.ws1{word-spacing:-28.813826px;}
.ws2{word-spacing:-0.432336px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-8.476472px;}
._0{width:1.321586px;}
._2{width:3.022641px;}
._17{width:4.344642px;}
._1f{width:5.374226px;}
._b{width:6.405004px;}
._5{width:8.864479px;}
._4{width:10.033489px;}
._3{width:11.043279px;}
._20{width:13.339424px;}
._14{width:15.123077px;}
._13{width:16.347277px;}
._21{width:17.374055px;}
._8{width:18.603576px;}
._1a{width:19.971307px;}
._15{width:21.004510px;}
._19{width:22.296061px;}
._d{width:24.362022px;}
._c{width:25.443159px;}
._18{width:30.121669px;}
._1b{width:31.962069px;}
._e{width:33.073368px;}
._7{width:34.106077px;}
._6{width:35.109727px;}
._1e{width:36.268479px;}
._a{width:37.962335px;}
._9{width:51.254142px;}
._16{width:56.393561px;}
._22{width:63.585914px;}
._12{width:73.017602px;}
._11{width:74.386428px;}
._1c{width:86.254146px;}
._f{width:96.138545px;}
._23{width:130.052407px;}
._24{width:131.182110px;}
._1d{width:149.320072px;}
._10{width:174.459609px;}
.fc4{color:transparent;}
.fc3{color:rgb(93,201,225);}
.fc2{color:rgb(14,94,146);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(12,94,146);}
.fs1{font-size:36.013568px;}
.fs4{font-size:42.000824px;}
.fs8{font-size:52.129641px;}
.fs9{font-size:52.167457px;}
.fs5{font-size:54.020354px;}
.fsb{font-size:65.994864px;}
.fs6{font-size:70.586597px;}
.fs7{font-size:72.027138px;}
.fsa{font-size:78.014394px;}
.fs0{font-size:84.001650px;}
.fs3{font-size:109.976437px;}
.fs2{font-size:205.052254px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000016px;}
.y4b{bottom:21.239886px;}
.y8{bottom:27.717166px;}
.y7{bottom:38.221123px;}
.y4a{bottom:42.622943px;}
.y60{bottom:47.166289px;}
.y6{bottom:48.725080px;}
.y17{bottom:56.773505px;}
.y5{bottom:59.229038px;}
.y49{bottom:64.005999px;}
.y5f{bottom:69.674769px;}
.y4{bottom:69.732995px;}
.y3{bottom:80.236952px;}
.y48{bottom:85.389056px;}
.y10{bottom:98.318615px;}
.y47{bottom:106.772113px;}
.y5e{bottom:114.691731px;}
.y2d{bottom:124.166273px;}
.y46{bottom:128.155169px;}
.y5d{bottom:137.200211px;}
.y2c{bottom:141.047633px;}
.y45{bottom:149.538226px;}
.y5c{bottom:159.708692px;}
.y44{bottom:170.921282px;}
.y22{bottom:186.735635px;}
.y43{bottom:192.304339px;}
.y5b{bottom:204.725653px;}
.y38{bottom:223.987321px;}
.y5a{bottom:227.234134px;}
.y21{bottom:233.113209px;}
.y37{bottom:245.370377px;}
.y59{bottom:249.742615px;}
.y36{bottom:266.753434px;}
.y58{bottom:272.251095px;}
.y20{bottom:279.489736px;}
.y35{bottom:288.136491px;}
.y57{bottom:317.268057px;}
.y42{bottom:317.937679px;}
.y1e{bottom:328.626789px;}
.y41{bottom:339.320736px;}
.y56{bottom:339.776537px;}
.y40{bottom:360.703792px;}
.y55{bottom:362.285018px;}
.y30{bottom:375.444990px;}
.y3f{bottom:382.086849px;}
.y54{bottom:384.793499px;}
.y2f{bottom:391.747320px;}
.y2e{bottom:408.049650px;}
.y6e{bottom:419.903368px;}
.y31{bottom:420.546176px;}
.y53{bottom:429.810460px;}
.y6d{bottom:446.913544px;}
.y52{bottom:452.318941px;}
.y2a{bottom:453.390209px;}
.y50{bottom:473.809882px;}
.y6c{bottom:473.923721px;}
.y1d{bottom:474.732929px;}
.y51{bottom:474.827421px;}
.y4f{bottom:494.067515px;}
.y1c{bottom:499.492258px;}
.y6b{bottom:500.933898px;}
.y29{bottom:501.462428px;}
.y4e{bottom:514.325147px;}
.y28{bottom:518.343789px;}
.y1b{bottom:524.251587px;}
.y6a{bottom:527.944075px;}
.y33{bottom:533.642662px;}
.y4d{bottom:534.582780px;}
.y27{bottom:535.225149px;}
.y1a{bottom:549.010915px;}
.y4c{bottom:554.840412px;}
.y69{bottom:554.954252px;}
.y19{bottom:573.770244px;}
.yf{bottom:574.685201px;}
.y24{bottom:580.913083px;}
.y68{bottom:581.964428px;}
.y3e{bottom:586.119299px;}
.y18{bottom:598.529573px;}
.y3d{bottom:606.376932px;}
.ye{bottom:607.322498px;}
.y67{bottom:608.974605px;}
.y3c{bottom:626.634564px;}
.y26{bottom:627.290700px;}
.y66{bottom:635.984782px;}
.yd{bottom:639.959795px;}
.y3b{bottom:646.892197px;}
.y65{bottom:662.994959px;}
.y3a{bottom:667.149829px;}
.yc{bottom:672.597091px;}
.y2b{bottom:673.667176px;}
.y39{bottom:687.407462px;}
.y64{bottom:690.005136px;}
.yb{bottom:705.234388px;}
.y63{bottom:717.015312px;}
.y23{bottom:720.043652px;}
.y16{bottom:721.411040px;}
.y15{bottom:738.292400px;}
.y62{bottom:744.025489px;}
.y14{bottom:755.173761px;}
.y1f{bottom:766.421259px;}
.y61{bottom:771.035666px;}
.y13{bottom:772.055121px;}
.y32{bottom:783.035309px;}
.ya{bottom:784.181621px;}
.y12{bottom:788.936482px;}
.y11{bottom:805.817842px;}
.y25{bottom:812.797724px;}
.y34{bottom:830.938987px;}
.y9{bottom:853.660040px;}
.y2{bottom:853.660044px;}
.h4{height:34.212890px;}
.h7{height:39.900783px;}
.hb{height:49.523159px;}
.hc{height:49.559084px;}
.h8{height:51.319336px;}
.he{height:62.695121px;}
.h9{height:67.057267px;}
.ha{height:68.425781px;}
.hd{height:74.113674px;}
.h3{height:79.801567px;}
.h6{height:88.421055px;}
.h5{height:144.561839px;}
.h2{height:893.249963px;}
.h0{height:893.249979px;}
.h1{height:893.250000px;}
.w2{width:1263.374947px;}
.w0{width:1263.375000px;}
.w1{width:1263.750000px;}
.x0{left:0.000000px;}
.x20{left:21.727261px;}
.x1b{left:59.121901px;}
.x1{left:103.556674px;}
.x1e{left:105.910275px;}
.x1c{left:142.844452px;}
.x19{left:163.192108px;}
.x24{left:174.784929px;}
.x21{left:199.456334px;}
.x1a{left:238.648272px;}
.x22{left:244.561219px;}
.x23{left:341.330107px;}
.x25{left:347.335960px;}
.x26{left:363.989707px;}
.x1f{left:369.804631px;}
.x27{left:460.811317px;}
.x6{left:500.749557px;}
.x4{left:503.164529px;}
.xc{left:505.047943px;}
.x29{left:510.259636px;}
.x2{left:511.898288px;}
.x3{left:514.805634px;}
.x5{left:516.188967px;}
.x8{left:521.045399px;}
.xb{left:522.047613px;}
.x17{left:537.029130px;}
.x28{left:539.889940px;}
.x16{left:547.386548px;}
.x18{left:549.549472px;}
.x2c{left:557.791216px;}
.x12{left:566.453891px;}
.x2a{left:577.239950px;}
.x7{left:579.142372px;}
.x2b{left:586.049910px;}
.xd{left:608.463860px;}
.x14{left:646.165565px;}
.xe{left:656.558153px;}
.x13{left:679.576591px;}
.xf{left:732.911140px;}
.x10{left:766.795580px;}
.x11{left:774.463911px;}
.xa{left:875.944476px;}
.x2d{left:882.276191px;}
.x15{left:945.278205px;}
.x36{left:968.037020px;}
.x39{left:970.903334px;}
.x9{left:977.354239px;}
.x2f{left:996.664993px;}
.x30{left:1002.239359px;}
.x1d{left:1025.038253px;}
.x3b{left:1081.599344px;}
.x32{left:1092.572228px;}
.x34{left:1096.229856px;}
.x37{left:1111.598928px;}
.x2e{left:1176.082203px;}
.x3a{left:1177.893438px;}
.x35{left:1204.675007px;}
.x33{left:1210.812091px;}
.x38{left:1212.746413px;}
.x31{left:1224.000654px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.384299pt;}
.ws0{word-spacing:-102.617262pt;}
.ws1{word-spacing:-25.612290pt;}
.ws2{word-spacing:-0.384299pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-7.534642pt;}
._0{width:1.174743pt;}
._2{width:2.686792pt;}
._17{width:3.861904pt;}
._1f{width:4.777090pt;}
._b{width:5.693337pt;}
._5{width:7.879537pt;}
._4{width:8.918657pt;}
._3{width:9.816248pt;}
._20{width:11.857265pt;}
._14{width:13.442736pt;}
._13{width:14.530913pt;}
._21{width:15.443604pt;}
._8{width:16.536512pt;}
._1a{width:17.752273pt;}
._15{width:18.670675pt;}
._19{width:19.818721pt;}
._d{width:21.655130pt;}
._c{width:22.616141pt;}
._18{width:26.774817pt;}
._1b{width:28.410728pt;}
._e{width:29.398550pt;}
._7{width:30.316513pt;}
._6{width:31.208646pt;}
._1e{width:32.238648pt;}
._a{width:33.744298pt;}
._9{width:45.559237pt;}
._16{width:50.127609pt;}
._22{width:56.520812pt;}
._12{width:64.904535pt;}
._11{width:66.121269pt;}
._1c{width:76.670352pt;}
._f{width:85.456485pt;}
._23{width:115.602139pt;}
._24{width:116.606320pt;}
._1d{width:132.728952pt;}
._10{width:155.075208pt;}
.fs1{font-size:32.012060pt;}
.fs4{font-size:37.334066pt;}
.fs8{font-size:46.337458pt;}
.fs9{font-size:46.371073pt;}
.fs5{font-size:48.018092pt;}
.fsb{font-size:58.662102pt;}
.fs6{font-size:62.743642pt;}
.fs7{font-size:64.024123pt;}
.fsa{font-size:69.346128pt;}
.fs0{font-size:74.668133pt;}
.fs3{font-size:97.756832pt;}
.fs2{font-size:182.268671pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000014pt;}
.y4b{bottom:18.879899pt;}
.y8{bottom:24.637481pt;}
.y7{bottom:33.974332pt;}
.y4a{bottom:37.887060pt;}
.y60{bottom:41.925590pt;}
.y6{bottom:43.311183pt;}
.y17{bottom:50.465337pt;}
.y5{bottom:52.648034pt;}
.y49{bottom:56.894222pt;}
.y5f{bottom:61.933128pt;}
.y4{bottom:61.984885pt;}
.y3{bottom:71.321735pt;}
.y48{bottom:75.901383pt;}
.y10{bottom:87.394325pt;}
.y47{bottom:94.908545pt;}
.y5e{bottom:101.948205pt;}
.y2d{bottom:110.370020pt;}
.y46{bottom:113.915706pt;}
.y5d{bottom:121.955743pt;}
.y2c{bottom:125.375674pt;}
.y45{bottom:132.922867pt;}
.y5c{bottom:141.963282pt;}
.y44{bottom:151.930029pt;}
.y22{bottom:165.987231pt;}
.y43{bottom:170.937190pt;}
.y5b{bottom:181.978358pt;}
.y38{bottom:199.099841pt;}
.y5a{bottom:201.985897pt;}
.y21{bottom:207.211742pt;}
.y37{bottom:218.107002pt;}
.y59{bottom:221.993435pt;}
.y36{bottom:237.114164pt;}
.y58{bottom:242.000974pt;}
.y20{bottom:248.435321pt;}
.y35{bottom:256.121325pt;}
.y57{bottom:282.016050pt;}
.y42{bottom:282.611270pt;}
.y1e{bottom:292.112701pt;}
.y41{bottom:301.618432pt;}
.y56{bottom:302.023589pt;}
.y40{bottom:320.625593pt;}
.y55{bottom:322.031127pt;}
.y30{bottom:333.728880pt;}
.y3f{bottom:339.632754pt;}
.y54{bottom:342.038665pt;}
.y2f{bottom:348.219840pt;}
.y2e{bottom:362.710800pt;}
.y6e{bottom:373.247438pt;}
.y31{bottom:373.818823pt;}
.y53{bottom:382.053742pt;}
.y6d{bottom:397.256484pt;}
.y52{bottom:402.061281pt;}
.y2a{bottom:403.013519pt;}
.y50{bottom:421.164340pt;}
.y6c{bottom:421.265530pt;}
.y1d{bottom:421.984826pt;}
.y51{bottom:422.068819pt;}
.y4f{bottom:439.171124pt;}
.y1c{bottom:443.993118pt;}
.y6b{bottom:445.274576pt;}
.y29{bottom:445.744381pt;}
.y4e{bottom:457.177909pt;}
.y28{bottom:460.750035pt;}
.y1b{bottom:466.001410pt;}
.y6a{bottom:469.283622pt;}
.y33{bottom:474.349033pt;}
.y4d{bottom:475.184693pt;}
.y27{bottom:475.755688pt;}
.y1a{bottom:488.009703pt;}
.y4c{bottom:493.191478pt;}
.y69{bottom:493.292668pt;}
.y19{bottom:510.017995pt;}
.yf{bottom:510.831289pt;}
.y24{bottom:516.367185pt;}
.y68{bottom:517.301714pt;}
.y3e{bottom:520.994933pt;}
.y18{bottom:532.026287pt;}
.y3d{bottom:539.001717pt;}
.ye{bottom:539.842220pt;}
.y67{bottom:541.310760pt;}
.y3c{bottom:557.008502pt;}
.y26{bottom:557.591734pt;}
.y66{bottom:565.319806pt;}
.yd{bottom:568.853151pt;}
.y3b{bottom:575.015286pt;}
.y65{bottom:589.328852pt;}
.y3a{bottom:593.022071pt;}
.yc{bottom:597.864081pt;}
.y2b{bottom:598.815268pt;}
.y39{bottom:611.028855pt;}
.y64{bottom:613.337898pt;}
.yb{bottom:626.875012pt;}
.y63{bottom:637.346944pt;}
.y23{bottom:640.038802pt;}
.y16{bottom:641.254257pt;}
.y15{bottom:656.259911pt;}
.y62{bottom:661.355990pt;}
.y14{bottom:671.265565pt;}
.y1f{bottom:681.263341pt;}
.y61{bottom:685.365036pt;}
.y13{bottom:686.271219pt;}
.y32{bottom:696.031385pt;}
.ya{bottom:697.050330pt;}
.y12{bottom:701.276873pt;}
.y11{bottom:716.282526pt;}
.y25{bottom:722.486866pt;}
.y34{bottom:738.612433pt;}
.y9{bottom:758.808925pt;}
.y2{bottom:758.808928pt;}
.h4{height:30.411457pt;}
.h7{height:35.467363pt;}
.hb{height:44.020586pt;}
.hc{height:44.052519pt;}
.h8{height:45.617187pt;}
.he{height:55.728997pt;}
.h9{height:59.606459pt;}
.ha{height:60.822917pt;}
.hd{height:65.878822pt;}
.h3{height:70.934727pt;}
.h6{height:78.596493pt;}
.h5{height:128.499413pt;}
.h2{height:793.999967pt;}
.h0{height:793.999981pt;}
.h1{height:794.000000pt;}
.w2{width:1122.999953pt;}
.w0{width:1123.000000pt;}
.w1{width:1123.333333pt;}
.x0{left:0.000000pt;}
.x20{left:19.313120pt;}
.x1b{left:52.552801pt;}
.x1{left:92.050377pt;}
.x1e{left:94.142466pt;}
.x1c{left:126.972846pt;}
.x19{left:145.059652pt;}
.x24{left:155.364381pt;}
.x21{left:177.294519pt;}
.x1a{left:212.131798pt;}
.x22{left:217.387750pt;}
.x23{left:303.404539pt;}
.x25{left:308.743076pt;}
.x26{left:323.546406pt;}
.x1f{left:328.715228pt;}
.x27{left:409.610060pt;}
.x6{left:445.110717pt;}
.x4{left:447.257359pt;}
.xc{left:448.931504pt;}
.x29{left:453.564121pt;}
.x2{left:455.020701pt;}
.x3{left:457.605008pt;}
.x5{left:458.834638pt;}
.x8{left:463.151466pt;}
.xb{left:464.042323pt;}
.x17{left:477.359227pt;}
.x28{left:479.902169pt;}
.x16{left:486.565820pt;}
.x18{left:488.488420pt;}
.x2c{left:495.814414pt;}
.x12{left:503.514570pt;}
.x2a{left:513.102178pt;}
.x7{left:514.793220pt;}
.x2b{left:520.933254pt;}
.xd{left:540.856765pt;}
.x14{left:574.369392pt;}
.xe{left:583.607247pt;}
.x13{left:604.068081pt;}
.xf{left:651.476569pt;}
.x10{left:681.596071pt;}
.x11{left:688.412365pt;}
.xa{left:778.617312pt;}
.x2d{left:784.245503pt;}
.x15{left:840.247293pt;}
.x36{left:860.477351pt;}
.x39{left:863.025186pt;}
.x9{left:868.759324pt;}
.x2f{left:885.924439pt;}
.x30{left:890.879430pt;}
.x1d{left:911.145114pt;}
.x3b{left:961.421639pt;}
.x32{left:971.175314pt;}
.x34{left:974.426539pt;}
.x37{left:988.087936pt;}
.x2e{left:1045.406403pt;}
.x3a{left:1047.016389pt;}
.x35{left:1070.822229pt;}
.x33{left:1076.277414pt;}
.x38{left:1077.996812pt;}
.x31{left:1088.000581pt;}
}




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