
    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_d1e74be60bea51e4442d396e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_b9e039ccd4abdf7155005e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_bafa4d568c1d94913c70c1c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.851074;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_828b063a43f9696206b9cbc0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_1cdb7c301c5076c8c1f906d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_f453bbaf356d842909e65197.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m3{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-80.639968px;}
.v2{vertical-align:-79.199968px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.260520px;}
.ls3{letter-spacing:0.322209px;}
.ls5{letter-spacing:0.490500px;}
.ls2{letter-spacing:17.780213px;}
.ls4{letter-spacing:53.279199px;}
.ls1{letter-spacing:189.237224px;}
.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;}
}
.ws2{word-spacing:-17.519693px;}
.ws0{word-spacing:-16.117794px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-2.232908px;}
._1{margin-left:-1.126807px;}
._0{width:1.330612px;}
._a{width:2.627649px;}
._1c{width:4.397875px;}
._e{width:5.563873px;}
._6{width:6.873342px;}
._7{width:7.955557px;}
._12{width:9.250901px;}
._13{width:10.369770px;}
._16{width:11.395738px;}
._15{width:12.406130px;}
._17{width:13.622578px;}
._c{width:15.250824px;}
._1f{width:16.433579px;}
._b{width:18.685729px;}
._4{width:19.971763px;}
._9{width:21.042192px;}
._8{width:22.078530px;}
._11{width:23.343868px;}
._f{width:24.525277px;}
._10{width:25.656567px;}
._1b{width:26.662604px;}
._1a{width:27.896372px;}
._d{width:29.705493px;}
._14{width:39.759589px;}
._1e{width:47.650552px;}
._1d{width:48.788116px;}
._2{width:53.134454px;}
._18{width:77.627873px;}
._19{width:79.566340px;}
._5{width:83.857761px;}
.fc5{color:rgb(0,128,0);}
.fc3{color:transparent;}
.fc4{color:rgb(51,51,153);}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(0,0,144);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:52.559979px;}
.fs1{font-size:58.165177px;}
.fs5{font-size:64.471174px;}
.fs2{font-size:70.078772px;}
.fs4{font-size:81.992967px;}
.fs3{font-size:87.598165px;}
.fs6{font-size:93.206363px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.600021px;}
.y3{bottom:93.540240px;}
.y2{bottom:97.140261px;}
.y1{bottom:97.860261px;}
.y6d{bottom:178.319929px;}
.y25{bottom:185.879926px;}
.y4b{bottom:194.159922px;}
.y8b{bottom:196.499921px;}
.y6c{bottom:198.479921px;}
.y24{bottom:209.459916px;}
.y4a{bottom:218.639913px;}
.y8a{bottom:220.439912px;}
.y23{bottom:233.039907px;}
.y49{bottom:238.799904px;}
.y89{bottom:241.859903px;}
.y22{bottom:256.439897px;}
.y48{bottom:258.959896px;}
.y88{bottom:262.019895px;}
.y6b{bottom:279.119888px;}
.y21{bottom:279.839888px;}
.y87{bottom:282.539887px;}
.y47{bottom:299.279880px;}
.y86{bottom:302.699879px;}
.y20{bottom:303.419879px;}
.y46{bottom:319.259872px;}
.y85{bottom:322.859871px;}
.y1f{bottom:326.819869px;}
.y45{bottom:339.419864px;}
.y84{bottom:343.019863px;}
.y1e{bottom:350.399860px;}
.y83{bottom:362.819855px;}
.y44{bottom:364.079854px;}
.y1d{bottom:373.979850px;}
.y6a{bottom:379.379848px;}
.y82{bottom:382.979847px;}
.y43{bottom:388.559845px;}
.y1c{bottom:397.559841px;}
.y69{bottom:399.899840px;}
.y81{bottom:403.139839px;}
.y42{bottom:408.719837px;}
.y68{bottom:419.699832px;}
.y1b{bottom:420.959832px;}
.y41{bottom:428.879828px;}
.y67{bottom:440.219824px;}
.y80{bottom:443.459823px;}
.y1a{bottom:444.359822px;}
.y40{bottom:453.359819px;}
.y66{bottom:460.379816px;}
.y7f{bottom:463.799814px;}
.y19{bottom:467.939813px;}
.y3f{bottom:473.519811px;}
.y65{bottom:480.539808px;}
.y7e{bottom:483.959806px;}
.y18{bottom:491.339803px;}
.y3e{bottom:493.679803px;}
.y64{bottom:500.699800px;}
.y7d{bottom:503.759798px;}
.y17{bottom:515.099794px;}
.y3d{bottom:518.159793px;}
.y63{bottom:520.859792px;}
.y7c{bottom:524.279790px;}
.y3c{bottom:538.319785px;}
.y62{bottom:541.019784px;}
.y7b{bottom:544.439782px;}
.y61{bottom:561.179776px;}
.y3b{bottom:562.799775px;}
.y7a{bottom:564.599774px;}
.y16{bottom:565.859774px;}
.y79{bottom:584.759766px;}
.y60{bottom:585.659766px;}
.y3a{bottom:587.459765px;}
.y78{bottom:604.919758px;}
.y5f{bottom:605.819758px;}
.y39{bottom:611.939755px;}
.y15{bottom:619.679752px;}
.y77{bottom:625.079750px;}
.y5e{bottom:630.299748px;}
.y38{bottom:636.419745px;}
.y76{bottom:645.239742px;}
.y5d{bottom:650.459740px;}
.y37{bottom:656.579737px;}
.y75{bottom:665.039734px;}
.y14{bottom:673.499731px;}
.y5c{bottom:674.939730px;}
.y36{bottom:681.059728px;}
.y74{bottom:685.559726px;}
.y5b{bottom:699.599720px;}
.y35{bottom:701.219720px;}
.y73{bottom:705.719718px;}
.y5a{bottom:719.759712px;}
.y34{bottom:725.879710px;}
.y13{bottom:726.959709px;}
.y59{bottom:744.239702px;}
.y33{bottom:746.039702px;}
.y12{bottom:752.699699px;}
.y58{bottom:764.399694px;}
.y32{bottom:766.019694px;}
.y11{bottom:772.859691px;}
.y57{bottom:784.559686px;}
.y31{bottom:786.179686px;}
.y10{bottom:793.019683px;}
.y30{bottom:806.339677px;}
.y56{bottom:809.039676px;}
.yf{bottom:813.179675px;}
.y2f{bottom:826.499669px;}
.y55{bottom:829.199668px;}
.ye{bottom:833.339667px;}
.y2e{bottom:846.659661px;}
.yd{bottom:853.499659px;}
.y54{bottom:853.679659px;}
.y2d{bottom:866.819653px;}
.yc{bottom:873.659651px;}
.y53{bottom:873.839650px;}
.y2c{bottom:886.979645px;}
.yb{bottom:893.819642px;}
.y52{bottom:898.319641px;}
.y72{bottom:907.139637px;}
.ya{bottom:915.419634px;}
.y51{bottom:918.479633px;}
.y2b{bottom:927.299629px;}
.y50{bottom:938.639625px;}
.y9{bottom:938.819624px;}
.y71{bottom:947.099621px;}
.y2a{bottom:947.459621px;}
.y4f{bottom:958.799616px;}
.y8{bottom:961.499615px;}
.y29{bottom:967.259613px;}
.y70{bottom:967.619613px;}
.y7{bottom:978.239609px;}
.y4e{bottom:983.279607px;}
.y28{bottom:987.419605px;}
.y6f{bottom:987.779605px;}
.y6{bottom:995.339602px;}
.y4d{bottom:1003.439599px;}
.y27{bottom:1007.579597px;}
.y6e{bottom:1007.939597px;}
.y26{bottom:1028.099589px;}
.y5{bottom:1047.899581px;}
.y4c{bottom:1048.259581px;}
.h3{height:16.560000px;}
.h1{height:52.970604px;}
.h7{height:54.019792px;}
.h2{height:57.085940px;}
.h6{height:68.701139px;}
.ha{height:68.744264px;}
.hb{height:68.778482px;}
.h4{height:70.626262px;}
.hc{height:73.089969px;}
.h5{height:73.397681px;}
.h9{height:82.633537px;}
.h8{height:93.934537px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:119.159952px;}
.x1{left:124.199950px;}
.xf{left:138.059945px;}
.x13{left:150.839940px;}
.x15{left:175.859930px;}
.x10{left:177.659915px;}
.x16{left:202.139919px;}
.x7{left:238.859904px;}
.x8{left:252.539899px;}
.x12{left:254.699742px;}
.x6{left:298.079881px;}
.x11{left:306.539752px;}
.x14{left:354.240318px;}
.x9{left:428.579829px;}
.xa{left:442.432323px;}
.xe{left:446.759821px;}
.x4{left:492.119803px;}
.xb{left:523.799790px;}
.xc{left:537.119785px;}
.xd{left:654.479738px;}
.x2{left:761.939695px;}
.x3{left:769.320000px;}
@media print{
.v1{vertical-align:-71.679971pt;}
.v2{vertical-align:-70.399972pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.231573pt;}
.ls3{letter-spacing:0.286408pt;}
.ls5{letter-spacing:0.436000pt;}
.ls2{letter-spacing:15.804634pt;}
.ls4{letter-spacing:47.359288pt;}
.ls1{letter-spacing:168.210866pt;}
.ws2{word-spacing:-15.573060pt;}
.ws0{word-spacing:-14.326928pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-1.984807pt;}
._1{margin-left:-1.001606pt;}
._0{width:1.182766pt;}
._a{width:2.335688pt;}
._1c{width:3.909223pt;}
._e{width:4.945665pt;}
._6{width:6.109638pt;}
._7{width:7.071606pt;}
._12{width:8.223023pt;}
._13{width:9.217573pt;}
._16{width:10.129545pt;}
._15{width:11.027671pt;}
._17{width:12.108958pt;}
._c{width:13.556288pt;}
._1f{width:14.607626pt;}
._b{width:16.609537pt;}
._4{width:17.752678pt;}
._9{width:18.704170pt;}
._8{width:19.625360pt;}
._11{width:20.750105pt;}
._f{width:21.800246pt;}
._10{width:22.805838pt;}
._1b{width:23.700092pt;}
._1a{width:24.796776pt;}
._d{width:26.404883pt;}
._14{width:35.341857pt;}
._1e{width:42.356046pt;}
._1d{width:43.367214pt;}
._2{width:47.230626pt;}
._18{width:69.002554pt;}
._19{width:70.725635pt;}
._5{width:74.540232pt;}
.fs0{font-size:46.719981pt;}
.fs1{font-size:51.702379pt;}
.fs5{font-size:57.307710pt;}
.fs2{font-size:62.292242pt;}
.fs4{font-size:72.882638pt;}
.fs3{font-size:77.865036pt;}
.fs6{font-size:82.850100pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.200019pt;}
.y3{bottom:83.146880pt;}
.y2{bottom:86.346899pt;}
.y1{bottom:86.986899pt;}
.y6d{bottom:158.506603pt;}
.y25{bottom:165.226601pt;}
.y4b{bottom:172.586598pt;}
.y8b{bottom:174.666597pt;}
.y6c{bottom:176.426596pt;}
.y24{bottom:186.186592pt;}
.y4a{bottom:194.346589pt;}
.y8a{bottom:195.946588pt;}
.y23{bottom:207.146584pt;}
.y49{bottom:212.266582pt;}
.y89{bottom:214.986581pt;}
.y22{bottom:227.946575pt;}
.y48{bottom:230.186575pt;}
.y88{bottom:232.906574pt;}
.y6b{bottom:248.106567pt;}
.y21{bottom:248.746567pt;}
.y87{bottom:251.146566pt;}
.y47{bottom:266.026560pt;}
.y86{bottom:269.066559pt;}
.y20{bottom:269.706559pt;}
.y46{bottom:283.786553pt;}
.y85{bottom:286.986552pt;}
.y1f{bottom:290.506550pt;}
.y45{bottom:301.706546pt;}
.y84{bottom:304.906545pt;}
.y1e{bottom:311.466542pt;}
.y83{bottom:322.506538pt;}
.y44{bottom:323.626537pt;}
.y1d{bottom:332.426534pt;}
.y6a{bottom:337.226532pt;}
.y82{bottom:340.426530pt;}
.y43{bottom:345.386529pt;}
.y1c{bottom:353.386525pt;}
.y69{bottom:355.466524pt;}
.y81{bottom:358.346523pt;}
.y42{bottom:363.306521pt;}
.y68{bottom:373.066517pt;}
.y1b{bottom:374.186517pt;}
.y41{bottom:381.226514pt;}
.y67{bottom:391.306510pt;}
.y80{bottom:394.186509pt;}
.y1a{bottom:394.986509pt;}
.y40{bottom:402.986505pt;}
.y66{bottom:409.226503pt;}
.y7f{bottom:412.266502pt;}
.y19{bottom:415.946500pt;}
.y3f{bottom:420.906498pt;}
.y65{bottom:427.146496pt;}
.y7e{bottom:430.186495pt;}
.y18{bottom:436.746492pt;}
.y3e{bottom:438.826491pt;}
.y64{bottom:445.066489pt;}
.y7d{bottom:447.786488pt;}
.y17{bottom:457.866484pt;}
.y3d{bottom:460.586482pt;}
.y63{bottom:462.986481pt;}
.y7c{bottom:466.026480pt;}
.y3c{bottom:478.506475pt;}
.y62{bottom:480.906474pt;}
.y7b{bottom:483.946473pt;}
.y61{bottom:498.826467pt;}
.y3b{bottom:500.266467pt;}
.y7a{bottom:501.866466pt;}
.y16{bottom:502.986465pt;}
.y79{bottom:519.786459pt;}
.y60{bottom:520.586458pt;}
.y3a{bottom:522.186458pt;}
.y78{bottom:537.706452pt;}
.y5f{bottom:538.506451pt;}
.y39{bottom:543.946449pt;}
.y15{bottom:550.826446pt;}
.y77{bottom:555.626444pt;}
.y5e{bottom:560.266443pt;}
.y38{bottom:565.706440pt;}
.y76{bottom:573.546437pt;}
.y5d{bottom:578.186435pt;}
.y37{bottom:583.626433pt;}
.y75{bottom:591.146430pt;}
.y14{bottom:598.666427pt;}
.y5c{bottom:599.946427pt;}
.y36{bottom:605.386425pt;}
.y74{bottom:609.386423pt;}
.y5b{bottom:621.866418pt;}
.y35{bottom:623.306417pt;}
.y73{bottom:627.306416pt;}
.y5a{bottom:639.786411pt;}
.y34{bottom:645.226409pt;}
.y13{bottom:646.186408pt;}
.y59{bottom:661.546402pt;}
.y33{bottom:663.146401pt;}
.y12{bottom:669.066399pt;}
.y58{bottom:679.466395pt;}
.y32{bottom:680.906394pt;}
.y11{bottom:686.986392pt;}
.y57{bottom:697.386388pt;}
.y31{bottom:698.826387pt;}
.y10{bottom:704.906385pt;}
.y30{bottom:716.746380pt;}
.y56{bottom:719.146379pt;}
.yf{bottom:722.826378pt;}
.y2f{bottom:734.666373pt;}
.y55{bottom:737.066372pt;}
.ye{bottom:740.746370pt;}
.y2e{bottom:752.586366pt;}
.yd{bottom:758.666363pt;}
.y54{bottom:758.826363pt;}
.y2d{bottom:770.506358pt;}
.yc{bottom:776.586356pt;}
.y53{bottom:776.746356pt;}
.y2c{bottom:788.426351pt;}
.yb{bottom:794.506349pt;}
.y52{bottom:798.506347pt;}
.y72{bottom:806.346344pt;}
.ya{bottom:813.706341pt;}
.y51{bottom:816.426340pt;}
.y2b{bottom:824.266337pt;}
.y50{bottom:834.346333pt;}
.y9{bottom:834.506333pt;}
.y71{bottom:841.866330pt;}
.y2a{bottom:842.186330pt;}
.y4f{bottom:852.266326pt;}
.y8{bottom:854.666325pt;}
.y29{bottom:859.786323pt;}
.y70{bottom:860.106323pt;}
.y7{bottom:869.546319pt;}
.y4e{bottom:874.026317pt;}
.y28{bottom:877.706316pt;}
.y6f{bottom:878.026315pt;}
.y6{bottom:884.746313pt;}
.y4d{bottom:891.946310pt;}
.y27{bottom:895.626308pt;}
.y6e{bottom:895.946308pt;}
.y26{bottom:913.866301pt;}
.y5{bottom:931.466294pt;}
.y4c{bottom:931.786294pt;}
.h3{height:14.720000pt;}
.h1{height:47.084981pt;}
.h7{height:48.017593pt;}
.h2{height:50.743058pt;}
.h6{height:61.067679pt;}
.ha{height:61.106013pt;}
.hb{height:61.136429pt;}
.h4{height:62.778900pt;}
.hc{height:64.968862pt;}
.h5{height:65.242383pt;}
.h9{height:73.452033pt;}
.h8{height:83.497367pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:105.919958pt;}
.x1{left:110.399956pt;}
.xf{left:122.719951pt;}
.x13{left:134.079946pt;}
.x15{left:156.319937pt;}
.x10{left:157.919924pt;}
.x16{left:179.679928pt;}
.x7{left:212.319915pt;}
.x8{left:224.479910pt;}
.x12{left:226.399771pt;}
.x6{left:264.959894pt;}
.x11{left:272.479779pt;}
.x14{left:314.880282pt;}
.x9{left:380.959848pt;}
.xa{left:393.273176pt;}
.xe{left:397.119841pt;}
.x4{left:437.439825pt;}
.xb{left:465.599814pt;}
.xc{left:477.439809pt;}
.xd{left:581.759767pt;}
.x2{left:677.279729pt;}
.x3{left:683.840000pt;}
}




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