
    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_024a19d0abf488c8a49493e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_45a947603cb96e28a1d1f7e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_c0ef48b858bfea69a57b3d4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_8bf0d014a6d3cb02baf88ab5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731445;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_0881452309163445816c2387.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:68.135741px;}
.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;}
}
.ws2e{word-spacing:-29.999999px;}
.ws0{word-spacing:-22.499998px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.537794px;}
.ws10{word-spacing:-16.537790px;}
.wsf{word-spacing:-16.535311px;}
.wsa{word-spacing:-16.535161px;}
.wsc{word-spacing:-16.535160px;}
.ws14{word-spacing:-16.535156px;}
.wse{word-spacing:-16.527330px;}
.ws17{word-spacing:-15.024114px;}
.ws47{word-spacing:-15.024052px;}
.ws1f{word-spacing:-15.022786px;}
.ws3d{word-spacing:-15.021441px;}
.ws1c{word-spacing:-15.019054px;}
.ws38{word-spacing:-15.018860px;}
.ws16{word-spacing:-15.018845px;}
.ws18{word-spacing:-15.018835px;}
.ws1e{word-spacing:-15.017670px;}
.ws3b{word-spacing:-15.017668px;}
.ws2{word-spacing:-15.017626px;}
.ws39{word-spacing:-15.017605px;}
.ws20{word-spacing:-15.017581px;}
.ws1b{word-spacing:-15.017579px;}
.ws25{word-spacing:-15.017576px;}
.ws3a{word-spacing:-15.017575px;}
.ws24{word-spacing:-15.017571px;}
.ws2c{word-spacing:-15.017570px;}
.ws36{word-spacing:-15.016254px;}
.ws34{word-spacing:-15.016230px;}
.ws37{word-spacing:-15.016227px;}
.ws15{word-spacing:-15.014947px;}
.ws35{word-spacing:-15.013664px;}
.ws33{word-spacing:-15.013662px;}
.ws42{word-spacing:-15.011786px;}
.ws3c{word-spacing:-15.011741px;}
.ws48{word-spacing:-15.011729px;}
.ws44{word-spacing:-15.011696px;}
.ws3{word-spacing:-13.499988px;}
.ws4{word-spacing:-13.499936px;}
.wsb{word-spacing:-12.048271px;}
.ws9{word-spacing:-12.035317px;}
.ws7{word-spacing:-12.035300px;}
.ws6{word-spacing:-12.035224px;}
.ws8{word-spacing:-12.032370px;}
.ws1a{word-spacing:-10.517662px;}
.ws2b{word-spacing:-10.517582px;}
.ws19{word-spacing:-10.517578px;}
.ws1d{word-spacing:-10.517576px;}
.ws32{word-spacing:-10.517493px;}
.ws21{word-spacing:-10.516200px;}
.ws41{word-spacing:-10.516032px;}
.ws22{word-spacing:-10.514946px;}
.ws2a{word-spacing:-10.513816px;}
.ws45{word-spacing:-10.511716px;}
.wsd{word-spacing:-7.535243px;}
.ws13{word-spacing:-7.532527px;}
.ws3e{word-spacing:-6.021486px;}
.ws28{word-spacing:-6.019054px;}
.ws3f{word-spacing:-6.017651px;}
.ws31{word-spacing:-6.017580px;}
.ws40{word-spacing:-6.017578px;}
.ws49{word-spacing:-6.017538px;}
.ws30{word-spacing:-6.016227px;}
.ws29{word-spacing:-6.013664px;}
.ws23{word-spacing:-6.011719px;}
.ws12{word-spacing:-3.035311px;}
.ws27{word-spacing:-1.513662px;}
.ws43{word-spacing:-1.511719px;}
.ws2f{word-spacing:-1.511684px;}
.ws11{word-spacing:0.000000px;}
.ws2d{word-spacing:2.983774px;}
.ws46{word-spacing:2.987558px;}
.ws26{word-spacing:33.011720px;}
._c{margin-left:-7.979166px;}
._1{margin-left:-6.609375px;}
._f{margin-left:-5.520789px;}
._2{margin-left:-4.473532px;}
._0{margin-left:-3.339843px;}
._3{margin-left:-1.538586px;}
._a{width:14.109480px;}
._9{width:15.370218px;}
._8{width:19.457774px;}
._6{width:20.915402px;}
._b{width:23.938249px;}
._4{width:25.415402px;}
._d{width:27.604728px;}
._e{width:28.861071px;}
._5{width:29.915402px;}
._10{width:32.966813px;}
._7{width:34.415402px;}
._11{width:37.451299px;}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs4{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:59.967584px;}
.y43{bottom:59.967779px;}
.y31{bottom:103.751958px;}
.y30{bottom:123.587763px;}
.y2f{bottom:143.423583px;}
.y2e{bottom:163.259403px;}
.y2d{bottom:183.095208px;}
.y2c{bottom:202.931028px;}
.y2b{bottom:222.766848px;}
.y2a{bottom:242.602653px;}
.y29{bottom:262.438473px;}
.y28{bottom:302.110113px;}
.y27{bottom:321.945918px;}
.y26{bottom:341.781738px;}
.y25{bottom:361.617558px;}
.y24{bottom:381.453363px;}
.y23{bottom:401.289184px;}
.y22{bottom:436.708198px;}
.y21{bottom:493.363214px;}
.y20{bottom:514.599423px;}
.y1f{bottom:534.435243px;}
.y1e{bottom:554.271060px;}
.y10{bottom:771.180403px;}
.y42{bottom:774.389463px;}
.y41{bottom:791.637993px;}
.yf{bottom:793.010699px;}
.y40{bottom:808.886538px;}
.ye{bottom:814.902598px;}
.y3f{bottom:826.135068px;}
.yd{bottom:836.732894px;}
.y3e{bottom:843.383598px;}
.yc{bottom:858.624808px;}
.y3d{bottom:860.632143px;}
.y3c{bottom:877.880673px;}
.yb{bottom:880.455089px;}
.y3b{bottom:895.129218px;}
.y1d{bottom:908.231868px;}
.y3a{bottom:912.377748px;}
.ya{bottom:917.347003px;}
.y1c{bottom:928.067688px;}
.y39{bottom:929.626459px;}
.y9{bottom:939.166393px;}
.y1b{bottom:947.903508px;}
.y8{bottom:960.985798px;}
.y38{bottom:961.875003px;}
.y1a{bottom:967.739509px;}
.y7{bottom:982.805173px;}
.y19{bottom:1002.575225px;}
.y6{bottom:1004.624543px;}
.y18{bottom:1022.411040px;}
.y5{bottom:1041.443940px;}
.y17{bottom:1042.246856px;}
.y16{bottom:1062.082763px;}
.y37{bottom:1065.366210px;}
.y36{bottom:1082.614747px;}
.y15{bottom:1097.501770px;}
.y4{bottom:1105.735760px;}
.y35{bottom:1114.863281px;}
.y3{bottom:1124.171195px;}
.y34{bottom:1132.111815px;}
.y14{bottom:1139.156983px;}
.y2{bottom:1145.173393px;}
.y33{bottom:1149.360169px;}
.y13{bottom:1160.976379px;}
.y1{bottom:1177.194145px;}
.y12{bottom:1182.795777px;}
.y32{bottom:1184.195984px;}
.h4{height:37.520508px;}
.hb{height:40.664061px;}
.h9{height:41.660155px;}
.h3{height:41.689452px;}
.h5{height:44.730470px;}
.ha{height:45.826173px;}
.h6{height:45.858399px;}
.h7{height:47.437501px;}
.h2{height:48.796875px;}
.h1{height:60.996094px;}
.h8{height:75.444390px;}
.hc{height:75.444585px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x5{left:97.200005px;}
.x1{left:121.942537px;}
.x6{left:124.200005px;}
.x7{left:151.200005px;}
.x3{left:244.475355px;}
.x2{left:296.005527px;}
.x4{left:297.528226px;}
.x8{left:786.543406px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:60.565103pt;}
.ws2e{word-spacing:-26.666666pt;}
.ws0{word-spacing:-19.999998pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.700261pt;}
.ws10{word-spacing:-14.700257pt;}
.wsf{word-spacing:-14.698054pt;}
.wsa{word-spacing:-14.697921pt;}
.wsc{word-spacing:-14.697920pt;}
.ws14{word-spacing:-14.697916pt;}
.wse{word-spacing:-14.690960pt;}
.ws17{word-spacing:-13.354768pt;}
.ws47{word-spacing:-13.354713pt;}
.ws1f{word-spacing:-13.353588pt;}
.ws3d{word-spacing:-13.352392pt;}
.ws1c{word-spacing:-13.350270pt;}
.ws38{word-spacing:-13.350097pt;}
.ws16{word-spacing:-13.350085pt;}
.ws18{word-spacing:-13.350076pt;}
.ws1e{word-spacing:-13.349040pt;}
.ws3b{word-spacing:-13.349038pt;}
.ws2{word-spacing:-13.349001pt;}
.ws39{word-spacing:-13.348982pt;}
.ws20{word-spacing:-13.348961pt;}
.ws1b{word-spacing:-13.348959pt;}
.ws25{word-spacing:-13.348957pt;}
.ws3a{word-spacing:-13.348955pt;}
.ws24{word-spacing:-13.348952pt;}
.ws2c{word-spacing:-13.348951pt;}
.ws36{word-spacing:-13.347781pt;}
.ws34{word-spacing:-13.347760pt;}
.ws37{word-spacing:-13.347757pt;}
.ws15{word-spacing:-13.346619pt;}
.ws35{word-spacing:-13.345479pt;}
.ws33{word-spacing:-13.345478pt;}
.ws42{word-spacing:-13.343810pt;}
.ws3c{word-spacing:-13.343770pt;}
.ws48{word-spacing:-13.343759pt;}
.ws44{word-spacing:-13.343729pt;}
.ws3{word-spacing:-11.999990pt;}
.ws4{word-spacing:-11.999943pt;}
.wsb{word-spacing:-10.709574pt;}
.ws9{word-spacing:-10.698060pt;}
.ws7{word-spacing:-10.698045pt;}
.ws6{word-spacing:-10.697977pt;}
.ws8{word-spacing:-10.695440pt;}
.ws1a{word-spacing:-9.349033pt;}
.ws2b{word-spacing:-9.348962pt;}
.ws19{word-spacing:-9.348958pt;}
.ws1d{word-spacing:-9.348957pt;}
.ws32{word-spacing:-9.348883pt;}
.ws21{word-spacing:-9.347733pt;}
.ws41{word-spacing:-9.347584pt;}
.ws22{word-spacing:-9.346618pt;}
.ws2a{word-spacing:-9.345614pt;}
.ws45{word-spacing:-9.343747pt;}
.wsd{word-spacing:-6.697994pt;}
.ws13{word-spacing:-6.695580pt;}
.ws3e{word-spacing:-5.352432pt;}
.ws28{word-spacing:-5.350270pt;}
.ws3f{word-spacing:-5.349023pt;}
.ws31{word-spacing:-5.348960pt;}
.ws40{word-spacing:-5.348958pt;}
.ws49{word-spacing:-5.348923pt;}
.ws30{word-spacing:-5.347757pt;}
.ws29{word-spacing:-5.345479pt;}
.ws23{word-spacing:-5.343750pt;}
.ws12{word-spacing:-2.698054pt;}
.ws27{word-spacing:-1.345477pt;}
.ws43{word-spacing:-1.343750pt;}
.ws2f{word-spacing:-1.343719pt;}
.ws11{word-spacing:0.000000pt;}
.ws2d{word-spacing:2.652244pt;}
.ws46{word-spacing:2.655607pt;}
.ws26{word-spacing:29.343751pt;}
._c{margin-left:-7.092592pt;}
._1{margin-left:-5.875000pt;}
._f{margin-left:-4.907368pt;}
._2{margin-left:-3.976473pt;}
._0{margin-left:-2.968749pt;}
._3{margin-left:-1.367632pt;}
._a{width:12.541760pt;}
._9{width:13.662416pt;}
._8{width:17.295799pt;}
._6{width:18.591469pt;}
._b{width:21.278444pt;}
._4{width:22.591469pt;}
._d{width:24.537536pt;}
._e{width:25.654285pt;}
._5{width:26.591469pt;}
._10{width:29.303834pt;}
._7{width:30.591469pt;}
._11{width:33.290044pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs4{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:53.304519pt;}
.y43{bottom:53.304692pt;}
.y31{bottom:92.223963pt;}
.y30{bottom:109.855790pt;}
.y2f{bottom:127.487630pt;}
.y2e{bottom:145.119470pt;}
.y2d{bottom:162.751296pt;}
.y2c{bottom:180.383136pt;}
.y2b{bottom:198.014976pt;}
.y2a{bottom:215.646803pt;}
.y29{bottom:233.278643pt;}
.y28{bottom:268.542323pt;}
.y27{bottom:286.174150pt;}
.y26{bottom:303.805990pt;}
.y25{bottom:321.437830pt;}
.y24{bottom:339.069656pt;}
.y23{bottom:356.701497pt;}
.y22{bottom:388.185065pt;}
.y21{bottom:438.545079pt;}
.y20{bottom:457.421710pt;}
.y1f{bottom:475.053550pt;}
.y1e{bottom:492.685387pt;}
.y10{bottom:685.493692pt;}
.y42{bottom:688.346190pt;}
.y41{bottom:703.678216pt;}
.yf{bottom:704.898399pt;}
.y40{bottom:719.010256pt;}
.ye{bottom:724.357865pt;}
.y3f{bottom:734.342283pt;}
.yd{bottom:743.762572pt;}
.y3e{bottom:749.674310pt;}
.yc{bottom:763.222052pt;}
.y3d{bottom:765.006350pt;}
.y3c{bottom:780.338376pt;}
.yb{bottom:782.626746pt;}
.y3b{bottom:795.670416pt;}
.y1d{bottom:807.317216pt;}
.y3a{bottom:811.002443pt;}
.ya{bottom:815.419559pt;}
.y1c{bottom:824.949056pt;}
.y39{bottom:826.334630pt;}
.y9{bottom:834.814572pt;}
.y1b{bottom:842.580896pt;}
.y8{bottom:854.209599pt;}
.y38{bottom:855.000003pt;}
.y1a{bottom:860.212897pt;}
.y7{bottom:873.604599pt;}
.y19{bottom:891.177978pt;}
.y6{bottom:892.999594pt;}
.y18{bottom:908.809814pt;}
.y5{bottom:925.727947pt;}
.y17{bottom:926.441650pt;}
.y16{bottom:944.073567pt;}
.y37{bottom:946.992187pt;}
.y36{bottom:962.324219pt;}
.y15{bottom:975.557129pt;}
.y4{bottom:982.876231pt;}
.y35{bottom:990.989583pt;}
.y3{bottom:999.263284pt;}
.y34{bottom:1006.321614pt;}
.y14{bottom:1012.583985pt;}
.y2{bottom:1017.931905pt;}
.y33{bottom:1021.653483pt;}
.y13{bottom:1031.979004pt;}
.y1{bottom:1046.394795pt;}
.y12{bottom:1051.374024pt;}
.y32{bottom:1052.618652pt;}
.h4{height:33.351563pt;}
.hb{height:36.145832pt;}
.h9{height:37.031249pt;}
.h3{height:37.057291pt;}
.h5{height:39.760418pt;}
.ha{height:40.734376pt;}
.h6{height:40.763022pt;}
.h7{height:42.166668pt;}
.h2{height:43.375000pt;}
.h1{height:54.218750pt;}
.h8{height:67.061680pt;}
.hc{height:67.061853pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x5{left:86.400004pt;}
.x1{left:108.393366pt;}
.x6{left:110.400004pt;}
.x7{left:134.400004pt;}
.x3{left:217.311427pt;}
.x2{left:263.116024pt;}
.x4{left:264.469534pt;}
.x8{left:699.149694pt;}
}




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