
    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_c156e6262094030df4d41cdd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_27ab7652c5dc6f50055dc29f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_4946734bff3b0a29e2bb18d4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.715820;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_2525a9f5c8cf1248effd5ce7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.967285;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;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.026640px;}
.ls1{letter-spacing:0.037920px;}
.ls2{letter-spacing:0.164364px;}
.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;}
}
.ws4{word-spacing:-11.546591px;}
.ws3{word-spacing:-11.382227px;}
.ws1{word-spacing:-10.311840px;}
.ws0{word-spacing:-9.772560px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:0.246000px;}
.ws8{word-spacing:54.578372px;}
.ws2{word-spacing:189.712726px;}
.ws7{word-spacing:1021.889626px;}
._3{margin-left:-3.520575px;}
._2{margin-left:-2.226789px;}
._0{margin-left:-1.094713px;}
._1{width:1.129790px;}
._4{width:76.376095px;}
._7{width:193.732450px;}
._5{width:228.139296px;}
._6{width:379.991138px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs1{font-size:35.280000px;}
.fs3{font-size:41.040000px;}
.fs5{font-size:41.091072px;}
.fs0{font-size:51.118080px;}
.fs2{font-size:68.419584px;}
.y0{bottom:0.000000px;}
.ya4{bottom:75.712889px;}
.ya8{bottom:89.460000px;}
.ya3{bottom:131.039400px;}
.ya2{bottom:150.123450px;}
.ya1{bottom:169.201200px;}
.ya0{bottom:188.282100px;}
.y9f{bottom:207.178350px;}
.y2b{bottom:210.418950px;}
.y9e{bottom:226.262400px;}
.y2a{bottom:235.799700px;}
.y9d{bottom:245.337000px;}
.y29{bottom:261.358800px;}
.y78{bottom:261.540450px;}
.y9c{bottom:264.421050px;}
.y9b{bottom:283.501950px;}
.y28{bottom:286.739550px;}
.y40{bottom:295.320374px;}
.y9a{bottom:302.398200px;}
.y42{bottom:302.760000px;}
.y77{bottom:306.897600px;}
.y27{bottom:312.117150px;}
.y99{bottom:321.482250px;}
.y26{bottom:337.504050px;}
.y3f{bottom:344.342400px;}
.y98{bottom:349.922100px;}
.y55{bottom:351.479774px;}
.y76{bottom:352.030650px;}
.ya7{bottom:357.300000px;}
.y57{bottom:358.920000px;}
.y25{bottom:362.881650px;}
.y3e{bottom:363.417000px;}
.y3d{bottom:382.501050px;}
.y24{bottom:388.262400px;}
.y75{bottom:393.663450px;}
.y54{bottom:400.501800px;}
.y79{bottom:401.040000px;}
.y3c{bottom:401.582100px;}
.y61{bottom:412.317285px;}
.y23{bottom:413.639850px;}
.y53{bottom:419.582700px;}
.y3b{bottom:420.659850px;}
.y83{bottom:423.722100px;}
.y60{bottom:424.578270px;}
.yad{bottom:427.141200px;}
.y86{bottom:431.100000px;}
.y5f{bottom:436.829850px;}
.y52{bottom:438.660450px;}
.y22{bottom:439.020600px;}
.y3a{bottom:439.562250px;}
.yb0{bottom:440.820000px;}
.y74{bottom:445.858950px;}
.y5e{bottom:448.905870px;}
.y51{bottom:457.741500px;}
.y39{bottom:458.640150px;}
.y97{bottom:459.000150px;}
.y1a{bottom:459.720000px;}
.y5d{bottom:461.157450px;}
.ya6{bottom:466.380000px;}
.y19{bottom:470.340000px;}
.y73{bottom:471.239550px;}
.y82{bottom:475.545285px;}
.y50{bottom:476.819250px;}
.y38{bottom:477.721050px;}
.y18{bottom:480.780000px;}
.yac{bottom:485.279550px;}
.y5c{bottom:486.718950px;}
.y81{bottom:487.800000px;}
.y17{bottom:491.400000px;}
.y4f{bottom:495.721650px;}
.y37{bottom:496.406820px;}
.y72{bottom:496.623450px;}
.yaf{bottom:499.140000px;}
.y63{bottom:500.220000px;}
.y21{bottom:502.020000px;}
.y80{bottom:508.140000px;}
.y96{bottom:510.772725px;}
.y20{bottom:512.640000px;}
.y4e{bottom:514.799550px;}
.y7f{bottom:518.580000px;}
.y71{bottom:522.001050px;}
.y1f{bottom:523.260000px;}
.y36{bottom:524.521500px;}
.ya5{bottom:524.700000px;}
.y7e{bottom:529.200000px;}
.y5b{bottom:530.820000px;}
.y41{bottom:532.080000px;}
.y1e{bottom:533.880000px;}
.y4d{bottom:533.880450px;}
.yab{bottom:543.599400px;}
.y1d{bottom:544.500000px;}
.y5a{bottom:545.760600px;}
.y70{bottom:547.381800px;}
.y7d{bottom:552.601200px;}
.y4c{bottom:552.961350px;}
.y1c{bottom:554.940000px;}
.yae{bottom:557.460000px;}
.y85{bottom:559.980000px;}
.y35{bottom:562.680000px;}
.y1b{bottom:565.560000px;}
.y95{bottom:566.277900px;}
.y4b{bottom:571.614061px;}
.y6f{bottom:572.762400px;}
.y34{bottom:577.617000px;}
.y56{bottom:582.300000px;}
.y94{bottom:585.360750px;}
.yaa{bottom:588.060000px;}
.y16{bottom:588.962700px;}
.y2d{bottom:596.340000px;}
.y6e{bottom:598.140600px;}
.ya9{bottom:603.002250px;}
.y93{bottom:604.262550px;}
.ya{bottom:622.260000px;}
.y92{bottom:623.339700px;}
.y6d{bottom:623.700450px;}
.y4a{bottom:623.880750px;}
.y9{bottom:634.440000px;}
.y15{bottom:641.159400px;}
.y91{bottom:642.421800px;}
.y49{bottom:642.957900px;}
.y33{bottom:643.859700px;}
.y8{bottom:646.620000px;}
.y6c{bottom:649.079850px;}
.y7c{bottom:656.098500px;}
.y7{bottom:658.800000px;}
.y90{bottom:661.499100px;}
.y48{bottom:662.040150px;}
.y84{bottom:663.480000px;}
.y89{bottom:663.658200px;}
.y14{bottom:666.538800px;}
.y32{bottom:669.239100px;}
.y6{bottom:670.980000px;}
.y8a{bottom:671.040000px;}
.y6b{bottom:674.459250px;}
.y8f{bottom:680.581200px;}
.y47{bottom:680.941950px;}
.y5{bottom:683.160000px;}
.y13{bottom:691.918350px;}
.y31{bottom:694.618500px;}
.y66{bottom:694.980000px;}
.y4{bottom:695.340000px;}
.y8e{bottom:699.478050px;}
.y46{bottom:700.019100px;}
.y59{bottom:703.080000px;}
.y6a{bottom:705.600000px;}
.y7b{bottom:708.104838px;}
.y62{bottom:710.460000px;}
.y88{bottom:715.679550px;}
.y69{bottom:716.220000px;}
.y12{bottom:717.092100px;}
.y8d{bottom:718.560150px;}
.y45{bottom:719.101200px;}
.y30{bottom:719.998050px;}
.y7a{bottom:720.178350px;}
.y3{bottom:720.718200px;}
.y68{bottom:726.840000px;}
.y11{bottom:729.165612px;}
.yb{bottom:734.220000px;}
.y67{bottom:737.280000px;}
.y8c{bottom:737.642400px;}
.y44{bottom:738.178500px;}
.y2f{bottom:740.520000px;}
.y87{bottom:741.239400px;}
.y10{bottom:741.419700px;}
.y2e{bottom:751.140000px;}
.y58{bottom:752.580000px;}
.y65{bottom:755.781414px;}
.y8b{bottom:756.719550px;}
.y43{bottom:756.864870px;}
.yf{bottom:761.760000px;}
.y2{bottom:765.000000px;}
.y64{bottom:768.040518px;}
.y1{bottom:779.757150px;}
.ye{bottom:784.979550px;}
.y2c{bottom:792.540000px;}
.yd{bottom:823.140000px;}
.yc{bottom:838.078350px;}
.h6{height:22.975313px;}
.h3{height:30.852773px;}
.h8{height:31.645195px;}
.h7{height:35.934624px;}
.h5{height:36.811758px;}
.h9{height:36.857568px;}
.h2{height:44.703360px;}
.h4{height:59.833728px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:46.081800px;}
.x27{left:49.321050px;}
.x28{left:67.501500px;}
.x2b{left:170.820000px;}
.x20{left:431.460000px;}
.x21{left:439.920000px;}
.x22{left:471.240000px;}
.x23{left:477.360000px;}
.x2e{left:509.400000px;}
.x24{left:511.020000px;}
.x1{left:537.304200px;}
.x4{left:540.720000px;}
.x25{left:549.180000px;}
.x2d{left:550.620000px;}
.x26{left:553.140000px;}
.x1f{left:567.900000px;}
.x2f{left:572.220000px;}
.x2{left:576.720000px;}
.x7{left:677.520000px;}
.x9{left:680.760600px;}
.x2a{left:699.118200px;}
.xa{left:1060.920000px;}
.x30{left:1062.900000px;}
.xc{left:1064.160000px;}
.xb{left:1065.960000px;}
.x31{left:1071.540000px;}
.x12{left:1098.540000px;}
.xd{left:1100.700000px;}
.x10{left:1101.960000px;}
.xf{left:1103.940000px;}
.xe{left:1105.560000px;}
.x13{left:1106.820000px;}
.x11{left:1108.260000px;}
.x8{left:1112.580000px;}
.x14{left:1141.020000px;}
.x16{left:1142.100000px;}
.x18{left:1144.080000px;}
.x15{left:1145.880000px;}
.x17{left:1150.020000px;}
.x5{left:1168.742400px;}
.x1e{left:1172.160000px;}
.x1d{left:1179.900000px;}
.x1b{left:1182.240000px;}
.x19{left:1184.040000px;}
.x1a{left:1186.380000px;}
.x2c{left:1188.180000px;}
.x1c{left:1189.800000px;}
.x29{left:1199.340000px;}
.x6{left:1205.280000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023680pt;}
.ls1{letter-spacing:0.033707pt;}
.ls2{letter-spacing:0.146102pt;}
.ws4{word-spacing:-10.263637pt;}
.ws3{word-spacing:-10.117535pt;}
.ws1{word-spacing:-9.166080pt;}
.ws0{word-spacing:-8.686720pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:0.218667pt;}
.ws8{word-spacing:48.514108pt;}
.ws2{word-spacing:168.633534pt;}
.ws7{word-spacing:908.346334pt;}
._3{margin-left:-3.129400pt;}
._2{margin-left:-1.979368pt;}
._0{margin-left:-0.973079pt;}
._1{width:1.004258pt;}
._4{width:67.889862pt;}
._7{width:172.206622pt;}
._5{width:202.790485pt;}
._6{width:337.769901pt;}
.fs4{font-size:26.880000pt;}
.fs1{font-size:31.360000pt;}
.fs3{font-size:36.480000pt;}
.fs5{font-size:36.525397pt;}
.fs0{font-size:45.438293pt;}
.fs2{font-size:60.817408pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:67.300345pt;}
.ya8{bottom:79.520000pt;}
.ya3{bottom:116.479467pt;}
.ya2{bottom:133.443067pt;}
.ya1{bottom:150.401067pt;}
.ya0{bottom:167.361867pt;}
.y9f{bottom:184.158533pt;}
.y2b{bottom:187.039067pt;}
.y9e{bottom:201.122133pt;}
.y2a{bottom:209.599733pt;}
.y9d{bottom:218.077333pt;}
.y29{bottom:232.318933pt;}
.y78{bottom:232.480400pt;}
.y9c{bottom:235.040933pt;}
.y9b{bottom:252.001733pt;}
.y28{bottom:254.879600pt;}
.y40{bottom:262.506999pt;}
.y9a{bottom:268.798400pt;}
.y42{bottom:269.120000pt;}
.y77{bottom:272.797867pt;}
.y27{bottom:277.437467pt;}
.y99{bottom:285.762000pt;}
.y26{bottom:300.003600pt;}
.y3f{bottom:306.082133pt;}
.y98{bottom:311.041867pt;}
.y55{bottom:312.426465pt;}
.y76{bottom:312.916133pt;}
.ya7{bottom:317.600000pt;}
.y57{bottom:319.040000pt;}
.y25{bottom:322.561467pt;}
.y3e{bottom:323.037333pt;}
.y3d{bottom:340.000933pt;}
.y24{bottom:345.122133pt;}
.y75{bottom:349.923067pt;}
.y54{bottom:356.001600pt;}
.y79{bottom:356.480000pt;}
.y3c{bottom:356.961867pt;}
.y61{bottom:366.504253pt;}
.y23{bottom:367.679867pt;}
.y53{bottom:372.962400pt;}
.y3b{bottom:373.919867pt;}
.y83{bottom:376.641867pt;}
.y60{bottom:377.402907pt;}
.yad{bottom:379.681067pt;}
.y86{bottom:383.200000pt;}
.y5f{bottom:388.293200pt;}
.y52{bottom:389.920400pt;}
.y22{bottom:390.240533pt;}
.y3a{bottom:390.722000pt;}
.yb0{bottom:391.840000pt;}
.y74{bottom:396.319067pt;}
.y5e{bottom:399.027440pt;}
.y51{bottom:406.881333pt;}
.y39{bottom:407.680133pt;}
.y97{bottom:408.000133pt;}
.y1a{bottom:408.640000pt;}
.y5d{bottom:409.917733pt;}
.ya6{bottom:414.560000pt;}
.y19{bottom:418.080000pt;}
.y73{bottom:418.879600pt;}
.y82{bottom:422.706920pt;}
.y50{bottom:423.839333pt;}
.y38{bottom:424.640933pt;}
.y18{bottom:427.360000pt;}
.yac{bottom:431.359600pt;}
.y5c{bottom:432.639067pt;}
.y81{bottom:433.600000pt;}
.y17{bottom:436.800000pt;}
.y4f{bottom:440.641467pt;}
.y37{bottom:441.250507pt;}
.y72{bottom:441.443067pt;}
.yaf{bottom:443.680000pt;}
.y63{bottom:444.640000pt;}
.y21{bottom:446.240000pt;}
.y80{bottom:451.680000pt;}
.y96{bottom:454.020200pt;}
.y20{bottom:455.680000pt;}
.y4e{bottom:457.599600pt;}
.y7f{bottom:460.960000pt;}
.y71{bottom:464.000933pt;}
.y1f{bottom:465.120000pt;}
.y36{bottom:466.241333pt;}
.ya5{bottom:466.400000pt;}
.y7e{bottom:470.400000pt;}
.y5b{bottom:471.840000pt;}
.y41{bottom:472.960000pt;}
.y1e{bottom:474.560000pt;}
.y4d{bottom:474.560400pt;}
.yab{bottom:483.199467pt;}
.y1d{bottom:484.000000pt;}
.y5a{bottom:485.120533pt;}
.y70{bottom:486.561600pt;}
.y7d{bottom:491.201067pt;}
.y4c{bottom:491.521200pt;}
.y1c{bottom:493.280000pt;}
.yae{bottom:495.520000pt;}
.y85{bottom:497.760000pt;}
.y35{bottom:500.160000pt;}
.y1b{bottom:502.720000pt;}
.y95{bottom:503.358133pt;}
.y4b{bottom:508.101388pt;}
.y6f{bottom:509.122133pt;}
.y34{bottom:513.437333pt;}
.y56{bottom:517.600000pt;}
.y94{bottom:520.320667pt;}
.yaa{bottom:522.720000pt;}
.y16{bottom:523.522400pt;}
.y2d{bottom:530.080000pt;}
.y6e{bottom:531.680533pt;}
.ya9{bottom:536.002000pt;}
.y93{bottom:537.122267pt;}
.ya{bottom:553.120000pt;}
.y92{bottom:554.079733pt;}
.y6d{bottom:554.400400pt;}
.y4a{bottom:554.560667pt;}
.y9{bottom:563.946667pt;}
.y15{bottom:569.919467pt;}
.y91{bottom:571.041600pt;}
.y49{bottom:571.518133pt;}
.y33{bottom:572.319733pt;}
.y8{bottom:574.773333pt;}
.y6c{bottom:576.959867pt;}
.y7c{bottom:583.198667pt;}
.y7{bottom:585.600000pt;}
.y90{bottom:587.999200pt;}
.y48{bottom:588.480133pt;}
.y84{bottom:589.760000pt;}
.y89{bottom:589.918400pt;}
.y14{bottom:592.478933pt;}
.y32{bottom:594.879200pt;}
.y6{bottom:596.426667pt;}
.y8a{bottom:596.480000pt;}
.y6b{bottom:599.519333pt;}
.y8f{bottom:604.961067pt;}
.y47{bottom:605.281733pt;}
.y5{bottom:607.253333pt;}
.y13{bottom:615.038533pt;}
.y31{bottom:617.438667pt;}
.y66{bottom:617.760000pt;}
.y4{bottom:618.080000pt;}
.y8e{bottom:621.758267pt;}
.y46{bottom:622.239200pt;}
.y59{bottom:624.960000pt;}
.y6a{bottom:627.200000pt;}
.y7b{bottom:629.426523pt;}
.y62{bottom:631.520000pt;}
.y88{bottom:636.159600pt;}
.y69{bottom:636.640000pt;}
.y12{bottom:637.415200pt;}
.y8d{bottom:638.720133pt;}
.y45{bottom:639.201067pt;}
.y30{bottom:639.998267pt;}
.y7a{bottom:640.158533pt;}
.y3{bottom:640.638400pt;}
.y68{bottom:646.080000pt;}
.y11{bottom:648.147211pt;}
.yb{bottom:652.640000pt;}
.y67{bottom:655.360000pt;}
.y8c{bottom:655.682133pt;}
.y44{bottom:656.158667pt;}
.y2f{bottom:658.240000pt;}
.y87{bottom:658.879467pt;}
.y10{bottom:659.039733pt;}
.y2e{bottom:667.680000pt;}
.y58{bottom:668.960000pt;}
.y65{bottom:671.805701pt;}
.y8b{bottom:672.639600pt;}
.y43{bottom:672.768773pt;}
.yf{bottom:677.120000pt;}
.y2{bottom:680.000000pt;}
.y64{bottom:682.702683pt;}
.y1{bottom:693.117467pt;}
.ye{bottom:697.759600pt;}
.y2c{bottom:704.480000pt;}
.yd{bottom:731.680000pt;}
.yc{bottom:744.958533pt;}
.h6{height:20.422500pt;}
.h3{height:27.424688pt;}
.h8{height:28.129063pt;}
.h7{height:31.941888pt;}
.h5{height:32.721562pt;}
.h9{height:32.762283pt;}
.h2{height:39.736320pt;}
.h4{height:53.185536pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:40.961600pt;}
.x27{left:43.840933pt;}
.x28{left:60.001333pt;}
.x2b{left:151.840000pt;}
.x20{left:383.520000pt;}
.x21{left:391.040000pt;}
.x22{left:418.880000pt;}
.x23{left:424.320000pt;}
.x2e{left:452.800000pt;}
.x24{left:454.240000pt;}
.x1{left:477.603733pt;}
.x4{left:480.640000pt;}
.x25{left:488.160000pt;}
.x2d{left:489.440000pt;}
.x26{left:491.680000pt;}
.x1f{left:504.800000pt;}
.x2f{left:508.640000pt;}
.x2{left:512.640000pt;}
.x7{left:602.240000pt;}
.x9{left:605.120533pt;}
.x2a{left:621.438400pt;}
.xa{left:943.040000pt;}
.x30{left:944.800000pt;}
.xc{left:945.920000pt;}
.xb{left:947.520000pt;}
.x31{left:952.480000pt;}
.x12{left:976.480000pt;}
.xd{left:978.400000pt;}
.x10{left:979.520000pt;}
.xf{left:981.280000pt;}
.xe{left:982.720000pt;}
.x13{left:983.840000pt;}
.x11{left:985.120000pt;}
.x8{left:988.960000pt;}
.x14{left:1014.240000pt;}
.x16{left:1015.200000pt;}
.x18{left:1016.960000pt;}
.x15{left:1018.560000pt;}
.x17{left:1022.240000pt;}
.x5{left:1038.882133pt;}
.x1e{left:1041.920000pt;}
.x1d{left:1048.800000pt;}
.x1b{left:1050.880000pt;}
.x19{left:1052.480000pt;}
.x1a{left:1054.560000pt;}
.x2c{left:1056.160000pt;}
.x1c{left:1057.600000pt;}
.x29{left:1066.080000pt;}
.x6{left:1071.360000pt;}
}




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