
    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_b71cdef6612ef39be9a434e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_dd5cb2ba6213db4244c97456.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061000;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_1d10b78e44b8dbef9ae6b63f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123000;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_752ddee8346a5aeb558dfef9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.062000;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_cabe1bc18d7e9b0ac863fde5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061000;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_bfe068a7edffb2ff8dd90405.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061000;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_2c4d539df3a96af1af8665b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws8{word-spacing:-42.682588px;}
.ws0{word-spacing:-20.992499px;}
.ws1{word-spacing:-16.492499px;}
.ws4{word-spacing:-14.996249px;}
.ws5{word-spacing:-12.078500px;}
.ws6{word-spacing:-10.500723px;}
.ws7{word-spacing:-10.500131px;}
.ws3{word-spacing:-6.993414px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-1.008947px;}
._e{width:1.042271px;}
._4{width:2.606050px;}
._10{width:3.877890px;}
._14{width:5.533386px;}
._13{width:6.991779px;}
._f{width:8.262325px;}
._d{width:9.291570px;}
._19{width:11.103760px;}
._2{width:13.097033px;}
._a{width:14.585529px;}
._3{width:17.559649px;}
._24{width:18.602728px;}
._16{width:19.715250px;}
._0{width:20.862806px;}
._1f{width:22.118689px;}
._25{width:23.600291px;}
._1c{width:24.813887px;}
._5{width:26.165403px;}
._9{width:27.520415px;}
._7{width:28.794642px;}
._20{width:29.824858px;}
._15{width:30.953645px;}
._1{width:32.372800px;}
._17{width:34.211651px;}
._1a{width:35.669486px;}
._8{width:37.324559px;}
._12{width:38.642275px;}
._26{width:39.645670px;}
._c{width:41.415127px;}
._1b{width:43.110322px;}
._1d{width:44.507626px;}
._2a{width:46.435394px;}
._2c{width:49.978262px;}
._2d{width:51.363090px;}
._29{width:52.932586px;}
._30{width:54.426520px;}
._b{width:57.609423px;}
._11{width:58.690767px;}
._23{width:60.590556px;}
._2b{width:62.559573px;}
._2e{width:64.245727px;}
._1e{width:68.244682px;}
._27{width:69.796293px;}
._2f{width:77.000855px;}
._21{width:90.926656px;}
._18{width:110.999026px;}
._22{width:124.797510px;}
._28{width:217.392917px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs4{font-size:18.668471px;}
.fs2{font-size:27.973655px;}
.fs5{font-size:29.739314px;}
.fs7{font-size:42.000523px;}
.fs6{font-size:42.002892px;}
.fs3{font-size:59.984997px;}
.fs1{font-size:65.969996px;}
.fs0{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y8b{bottom:5.720482px;}
.y8a{bottom:15.633587px;}
.y89{bottom:25.546692px;}
.y86{bottom:30.015019px;}
.y88{bottom:35.459796px;}
.y82{bottom:35.977753px;}
.y87{bottom:45.372901px;}
.y81{bottom:54.326772px;}
.y85{bottom:55.199585px;}
.y2c{bottom:68.173086px;}
.y80{bottom:71.458487px;}
.y2b{bottom:90.673085px;}
.y7e{bottom:94.406698px;}
.y60{bottom:101.928963px;}
.y2a{bottom:113.173084px;}
.y7d{bottom:116.906698px;}
.y5b{bottom:124.428962px;}
.y7c{bottom:139.406697px;}
.y8c{bottom:144.297559px;}
.y5a{bottom:146.928961px;}
.y29{bottom:158.173082px;}
.y7b{bottom:161.906696px;}
.y59{bottom:169.428960px;}
.y28{bottom:180.673081px;}
.y7a{bottom:184.406695px;}
.y8e{bottom:187.946728px;}
.y58{bottom:191.928959px;}
.y8d{bottom:201.946902px;}
.y27{bottom:203.173080px;}
.y79{bottom:206.906694px;}
.y57{bottom:214.428958px;}
.y26{bottom:225.673079px;}
.y83{bottom:227.002239px;}
.y56{bottom:236.928957px;}
.y25{bottom:248.173078px;}
.y78{bottom:251.906692px;}
.y55{bottom:259.428956px;}
.y24{bottom:270.673077px;}
.y77{bottom:274.406691px;}
.y54{bottom:281.928955px;}
.y8f{bottom:282.991035px;}
.y23{bottom:293.173076px;}
.y76{bottom:296.906690px;}
.y53{bottom:304.428955px;}
.y84{bottom:307.187915px;}
.y22{bottom:315.673075px;}
.y75{bottom:319.406689px;}
.y52{bottom:326.928954px;}
.y21{bottom:338.173074px;}
.y74{bottom:341.906688px;}
.y51{bottom:349.428953px;}
.yb1{bottom:355.347835px;}
.y20{bottom:360.673073px;}
.y73{bottom:364.406687px;}
.y50{bottom:371.928952px;}
.yb0{bottom:377.847834px;}
.y1f{bottom:383.173072px;}
.y72{bottom:386.906686px;}
.y4f{bottom:394.428951px;}
.yaf{bottom:400.347833px;}
.y1e{bottom:405.673071px;}
.y71{bottom:409.406685px;}
.y4e{bottom:416.928950px;}
.yae{bottom:422.847832px;}
.y1d{bottom:428.173071px;}
.y70{bottom:431.906684px;}
.y5f{bottom:439.428949px;}
.yad{bottom:445.347831px;}
.y1c{bottom:450.673070px;}
.y6f{bottom:454.406683px;}
.y4d{bottom:461.928948px;}
.yac{bottom:467.847830px;}
.y1b{bottom:473.173069px;}
.y6e{bottom:476.906683px;}
.y4c{bottom:484.428947px;}
.yab{bottom:490.347829px;}
.y1a{bottom:495.673068px;}
.y6d{bottom:499.406682px;}
.y4b{bottom:506.928946px;}
.yaa{bottom:512.847828px;}
.y19{bottom:518.173067px;}
.y6c{bottom:521.906681px;}
.y4a{bottom:529.428945px;}
.ya9{bottom:535.347827px;}
.y18{bottom:540.673066px;}
.y6b{bottom:544.406680px;}
.y49{bottom:551.928944px;}
.ya8{bottom:557.847826px;}
.y2f{bottom:563.173065px;}
.y6a{bottom:566.906679px;}
.y48{bottom:574.428943px;}
.ya7{bottom:580.347825px;}
.y17{bottom:585.673064px;}
.y7f{bottom:589.406678px;}
.y5e{bottom:596.928942px;}
.ya6{bottom:602.847824px;}
.y2e{bottom:608.173063px;}
.y69{bottom:611.906677px;}
.y47{bottom:619.428941px;}
.ya5{bottom:625.347824px;}
.y16{bottom:630.673062px;}
.y68{bottom:634.406676px;}
.y46{bottom:641.928940px;}
.ya4{bottom:647.847823px;}
.y15{bottom:653.173061px;}
.y67{bottom:656.906675px;}
.y45{bottom:664.428940px;}
.ya3{bottom:670.347822px;}
.y14{bottom:675.673060px;}
.y66{bottom:679.406674px;}
.y44{bottom:686.928939px;}
.ya2{bottom:692.847821px;}
.y13{bottom:698.173059px;}
.y65{bottom:701.906673px;}
.y43{bottom:709.428938px;}
.ya1{bottom:715.347820px;}
.y12{bottom:720.673058px;}
.y64{bottom:724.406672px;}
.y42{bottom:731.928937px;}
.ya0{bottom:737.847819px;}
.y11{bottom:743.173057px;}
.y63{bottom:746.906671px;}
.y41{bottom:754.428936px;}
.y9f{bottom:760.347818px;}
.y10{bottom:765.673056px;}
.y62{bottom:769.406670px;}
.y40{bottom:776.928935px;}
.y9e{bottom:782.847817px;}
.yf{bottom:788.173056px;}
.y61{bottom:791.906669px;}
.y3f{bottom:799.428934px;}
.y9d{bottom:805.347816px;}
.ye{bottom:810.673055px;}
.y3e{bottom:821.928933px;}
.yb4{bottom:827.847815px;}
.yd{bottom:833.173054px;}
.y3d{bottom:844.428932px;}
.y9c{bottom:850.347814px;}
.yc{bottom:855.673053px;}
.y5d{bottom:866.928931px;}
.y9b{bottom:872.847813px;}
.yb{bottom:878.173052px;}
.y3c{bottom:889.428930px;}
.y9a{bottom:895.347812px;}
.ya{bottom:900.673051px;}
.y5c{bottom:911.928929px;}
.y99{bottom:917.847811px;}
.y9{bottom:923.173050px;}
.y3b{bottom:934.428928px;}
.y98{bottom:940.347810px;}
.y8{bottom:945.673049px;}
.y3a{bottom:956.928927px;}
.y97{bottom:962.847809px;}
.y7{bottom:968.173048px;}
.y39{bottom:979.428926px;}
.y96{bottom:985.347809px;}
.y6{bottom:990.673047px;}
.y38{bottom:1001.928925px;}
.yb3{bottom:1007.847808px;}
.y5{bottom:1013.173046px;}
.y37{bottom:1024.428925px;}
.y95{bottom:1030.347807px;}
.y2d{bottom:1035.673045px;}
.y36{bottom:1046.928924px;}
.yb2{bottom:1052.847806px;}
.y4{bottom:1058.173044px;}
.y35{bottom:1069.428923px;}
.y94{bottom:1075.347805px;}
.y34{bottom:1091.928922px;}
.y93{bottom:1097.847804px;}
.y30{bottom:1102.041793px;}
.y33{bottom:1114.428921px;}
.y92{bottom:1120.347803px;}
.y32{bottom:1136.928920px;}
.y91{bottom:1142.847802px;}
.y3{bottom:1147.697751px;}
.y31{bottom:1159.428919px;}
.y90{bottom:1165.347801px;}
.y2{bottom:1176.947749px;}
.h9{height:15.457494px;}
.h7{height:22.742582px;}
.hb{height:24.178062px;}
.hd{height:34.146425px;}
.hc{height:34.148351px;}
.h8{height:48.767803px;}
.h5{height:53.633607px;}
.ha{height:53.639998px;}
.h4{height:54.623157px;}
.h6{height:57.723747px;}
.h3{height:69.527157px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:43.535941px;}
.xe{left:45.007732px;}
.x9{left:49.006937px;}
.xa{left:50.881715px;}
.xd{left:53.371651px;}
.x1{left:58.494925px;}
.x5{left:71.573049px;}
.xb{left:119.519995px;}
.xc{left:127.235486px;}
.x2{left:416.297644px;}
.x4{left:469.058798px;}
.x6{left:497.095906px;}
.x8{left:618.425974px;}
.x7{left:620.329942px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8{word-spacing:-37.940078pt;}
.ws0{word-spacing:-18.659999pt;}
.ws1{word-spacing:-14.659999pt;}
.ws4{word-spacing:-13.329999pt;}
.ws5{word-spacing:-10.736445pt;}
.ws6{word-spacing:-9.333976pt;}
.ws7{word-spacing:-9.333449pt;}
.ws3{word-spacing:-6.216368pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-0.896842pt;}
._e{width:0.926463pt;}
._4{width:2.316489pt;}
._10{width:3.447013pt;}
._14{width:4.918565pt;}
._13{width:6.214915pt;}
._f{width:7.344289pt;}
._d{width:8.259173pt;}
._19{width:9.870009pt;}
._2{width:11.641807pt;}
._a{width:12.964914pt;}
._3{width:15.608577pt;}
._24{width:16.535759pt;}
._16{width:17.524667pt;}
._0{width:18.544717pt;}
._1f{width:19.661057pt;}
._25{width:20.978036pt;}
._1c{width:22.056789pt;}
._5{width:23.258136pt;}
._9{width:24.462591pt;}
._7{width:25.595237pt;}
._20{width:26.510985pt;}
._15{width:27.514351pt;}
._1{width:28.775822pt;}
._17{width:30.410357pt;}
._1a{width:31.706210pt;}
._8{width:33.177386pt;}
._12{width:34.348689pt;}
._26{width:35.240596pt;}
._c{width:36.813446pt;}
._1b{width:38.320286pt;}
._1d{width:39.562334pt;}
._2a{width:41.275906pt;}
._2c{width:44.425122pt;}
._2d{width:45.656080pt;}
._29{width:47.051188pt;}
._30{width:48.379129pt;}
._b{width:51.208376pt;}
._11{width:52.169571pt;}
._23{width:53.858272pt;}
._2b{width:55.608510pt;}
._2e{width:57.107313pt;}
._1e{width:60.661940pt;}
._27{width:62.041150pt;}
._2f{width:68.445205pt;}
._21{width:80.823694pt;}
._18{width:98.665801pt;}
._22{width:110.931120pt;}
._28{width:193.238148pt;}
.fs4{font-size:16.594196pt;}
.fs2{font-size:24.865471pt;}
.fs5{font-size:26.434946pt;}
.fs7{font-size:37.333798pt;}
.fs6{font-size:37.335904pt;}
.fs3{font-size:53.319997pt;}
.fs1{font-size:58.639997pt;}
.fs0{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y8b{bottom:5.084873pt;}
.y8a{bottom:13.896522pt;}
.y89{bottom:22.708170pt;}
.y86{bottom:26.680017pt;}
.y88{bottom:31.519819pt;}
.y82{bottom:31.980225pt;}
.y87{bottom:40.331468pt;}
.y81{bottom:48.290464pt;}
.y85{bottom:49.066298pt;}
.y2c{bottom:60.598298pt;}
.y80{bottom:63.518656pt;}
.y2b{bottom:80.598297pt;}
.y7e{bottom:83.917065pt;}
.y60{bottom:90.603523pt;}
.y2a{bottom:100.598297pt;}
.y7d{bottom:103.917064pt;}
.y5b{bottom:110.603522pt;}
.y7c{bottom:123.917064pt;}
.y8c{bottom:128.264497pt;}
.y5a{bottom:130.603521pt;}
.y29{bottom:140.598295pt;}
.y7b{bottom:143.917063pt;}
.y59{bottom:150.603520pt;}
.y28{bottom:160.598294pt;}
.y7a{bottom:163.917062pt;}
.y8e{bottom:167.063758pt;}
.y58{bottom:170.603519pt;}
.y8d{bottom:179.508358pt;}
.y27{bottom:180.598293pt;}
.y79{bottom:183.917061pt;}
.y57{bottom:190.603518pt;}
.y26{bottom:200.598292pt;}
.y83{bottom:201.779768pt;}
.y56{bottom:210.603518pt;}
.y25{bottom:220.598292pt;}
.y78{bottom:223.917059pt;}
.y55{bottom:230.603517pt;}
.y24{bottom:240.598291pt;}
.y77{bottom:243.917059pt;}
.y54{bottom:250.603516pt;}
.y8f{bottom:251.547587pt;}
.y23{bottom:260.598290pt;}
.y76{bottom:263.917058pt;}
.y53{bottom:270.603515pt;}
.y84{bottom:273.055925pt;}
.y22{bottom:280.598289pt;}
.y75{bottom:283.917057pt;}
.y52{bottom:290.603514pt;}
.y21{bottom:300.598288pt;}
.y74{bottom:303.917056pt;}
.y51{bottom:310.603513pt;}
.yb1{bottom:315.864742pt;}
.y20{bottom:320.598287pt;}
.y73{bottom:323.917055pt;}
.y50{bottom:330.603513pt;}
.yb0{bottom:335.864741pt;}
.y1f{bottom:340.598287pt;}
.y72{bottom:343.917054pt;}
.y4f{bottom:350.603512pt;}
.yaf{bottom:355.864740pt;}
.y1e{bottom:360.598286pt;}
.y71{bottom:363.917054pt;}
.y4e{bottom:370.603511pt;}
.yae{bottom:375.864740pt;}
.y1d{bottom:380.598285pt;}
.y70{bottom:383.917053pt;}
.y5f{bottom:390.603510pt;}
.yad{bottom:395.864739pt;}
.y1c{bottom:400.598284pt;}
.y6f{bottom:403.917052pt;}
.y4d{bottom:410.603509pt;}
.yac{bottom:415.864738pt;}
.y1b{bottom:420.598283pt;}
.y6e{bottom:423.917051pt;}
.y4c{bottom:430.603508pt;}
.yab{bottom:435.864737pt;}
.y1a{bottom:440.598282pt;}
.y6d{bottom:443.917050pt;}
.y4b{bottom:450.603508pt;}
.yaa{bottom:455.864736pt;}
.y19{bottom:460.598282pt;}
.y6c{bottom:463.917049pt;}
.y4a{bottom:470.603507pt;}
.ya9{bottom:475.864735pt;}
.y18{bottom:480.598281pt;}
.y6b{bottom:483.917049pt;}
.y49{bottom:490.603506pt;}
.ya8{bottom:495.864735pt;}
.y2f{bottom:500.598280pt;}
.y6a{bottom:503.917048pt;}
.y48{bottom:510.603505pt;}
.ya7{bottom:515.864734pt;}
.y17{bottom:520.598279pt;}
.y7f{bottom:523.917047pt;}
.y5e{bottom:530.603504pt;}
.ya6{bottom:535.864733pt;}
.y2e{bottom:540.598278pt;}
.y69{bottom:543.917046pt;}
.y47{bottom:550.603503pt;}
.ya5{bottom:555.864732pt;}
.y16{bottom:560.598277pt;}
.y68{bottom:563.917045pt;}
.y46{bottom:570.603503pt;}
.ya4{bottom:575.864731pt;}
.y15{bottom:580.598277pt;}
.y67{bottom:583.917044pt;}
.y45{bottom:590.603502pt;}
.ya3{bottom:595.864730pt;}
.y14{bottom:600.598276pt;}
.y66{bottom:603.917044pt;}
.y44{bottom:610.603501pt;}
.ya2{bottom:615.864730pt;}
.y13{bottom:620.598275pt;}
.y65{bottom:623.917043pt;}
.y43{bottom:630.603500pt;}
.ya1{bottom:635.864729pt;}
.y12{bottom:640.598274pt;}
.y64{bottom:643.917042pt;}
.y42{bottom:650.603499pt;}
.ya0{bottom:655.864728pt;}
.y11{bottom:660.598273pt;}
.y63{bottom:663.917041pt;}
.y41{bottom:670.603498pt;}
.y9f{bottom:675.864727pt;}
.y10{bottom:680.598272pt;}
.y62{bottom:683.917040pt;}
.y40{bottom:690.603498pt;}
.y9e{bottom:695.864726pt;}
.yf{bottom:700.598272pt;}
.y61{bottom:703.917039pt;}
.y3f{bottom:710.603497pt;}
.y9d{bottom:715.864725pt;}
.ye{bottom:720.598271pt;}
.y3e{bottom:730.603496pt;}
.yb4{bottom:735.864725pt;}
.yd{bottom:740.598270pt;}
.y3d{bottom:750.603495pt;}
.y9c{bottom:755.864724pt;}
.yc{bottom:760.598269pt;}
.y5d{bottom:770.603494pt;}
.y9b{bottom:775.864723pt;}
.yb{bottom:780.598268pt;}
.y3c{bottom:790.603493pt;}
.y9a{bottom:795.864722pt;}
.ya{bottom:800.598267pt;}
.y5c{bottom:810.603493pt;}
.y99{bottom:815.864721pt;}
.y9{bottom:820.598267pt;}
.y3b{bottom:830.603492pt;}
.y98{bottom:835.864720pt;}
.y8{bottom:840.598266pt;}
.y3a{bottom:850.603491pt;}
.y97{bottom:855.864720pt;}
.y7{bottom:860.598265pt;}
.y39{bottom:870.603490pt;}
.y96{bottom:875.864719pt;}
.y6{bottom:880.598264pt;}
.y38{bottom:890.603489pt;}
.yb3{bottom:895.864718pt;}
.y5{bottom:900.598263pt;}
.y37{bottom:910.603488pt;}
.y95{bottom:915.864717pt;}
.y2d{bottom:920.598262pt;}
.y36{bottom:930.603488pt;}
.yb2{bottom:935.864716pt;}
.y4{bottom:940.598262pt;}
.y35{bottom:950.603487pt;}
.y94{bottom:955.864715pt;}
.y34{bottom:970.603486pt;}
.y93{bottom:975.864715pt;}
.y30{bottom:979.592705pt;}
.y33{bottom:990.603485pt;}
.y92{bottom:995.864714pt;}
.y32{bottom:1010.603484pt;}
.y91{bottom:1015.864713pt;}
.y3{bottom:1020.175778pt;}
.y31{bottom:1030.603483pt;}
.y90{bottom:1035.864712pt;}
.y2{bottom:1046.175777pt;}
.h9{height:13.739994pt;}
.h7{height:20.215628pt;}
.hb{height:21.491611pt;}
.hd{height:30.352378pt;}
.hc{height:30.354090pt;}
.h8{height:43.349158pt;}
.h5{height:47.674317pt;}
.ha{height:47.679998pt;}
.h4{height:48.553917pt;}
.h6{height:51.309997pt;}
.h3{height:61.801917pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:38.698614pt;}
.xe{left:40.006873pt;}
.x9{left:43.561722pt;}
.xa{left:45.228191pt;}
.xd{left:47.441468pt;}
.x1{left:51.995489pt;}
.x5{left:63.620488pt;}
.xb{left:106.239996pt;}
.xc{left:113.098210pt;}
.x2{left:370.042350pt;}
.x4{left:416.941154pt;}
.x6{left:441.863028pt;}
.x8{left:549.711977pt;}
.x7{left:551.404393pt;}
}




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