
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_420a0a033162f714a858de46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d72632fbf0f5955eb8beec19.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.007000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_979e9c12cfb2b3e5d98c2575.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.007000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
}
.ws0{word-spacing:-115.444419px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-4.321225px;}
._2{margin-left:-2.168824px;}
._1{margin-left:-1.071710px;}
._0{width:1.043556px;}
._10{width:3.286485px;}
._5{width:5.309898px;}
._4{width:6.617563px;}
._b{width:9.425706px;}
._f{width:12.909895px;}
._e{width:14.172024px;}
._d{width:16.394556px;}
._a{width:19.934886px;}
._9{width:23.399292px;}
._8{width:24.688169px;}
._12{width:31.175746px;}
._11{width:34.227410px;}
._6{width:37.485390px;}
._13{width:43.936127px;}
._7{width:50.402405px;}
._c{width:58.557181px;}
.fc5{color:transparent;}
.fc4{color:rgb(21,86,142);}
.fc2{color:rgb(50,235,255);}
.fc6{color:rgb(20,86,141);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(12,94,146);}
.fs1{font-size:36.013569px;}
.fs4{font-size:42.000824px;}
.fs5{font-size:52.129641px;}
.fs6{font-size:60.007609px;}
.fsa{font-size:65.994864px;}
.fsb{font-size:66.039883px;}
.fs7{font-size:72.027138px;}
.fs8{font-size:78.014394px;}
.fs0{font-size:84.001650px;}
.fs9{font-size:96.021179px;}
.fs3{font-size:117.044099px;}
.fs2{font-size:205.052254px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000016px;}
.y7{bottom:43.182611px;}
.y4b{bottom:50.871347px;}
.y6{bottom:53.311427px;}
.y5{bottom:63.440244px;}
.y4a{bottom:73.379828px;}
.y4{bottom:73.569060px;}
.y1e{bottom:78.779023px;}
.y3{bottom:83.697876px;}
.y1d{bottom:95.660383px;}
.y49{bottom:95.888309px;}
.yd{bottom:99.000383px;}
.y58{bottom:107.408913px;}
.y48{bottom:118.396789px;}
.y57{bottom:129.917394px;}
.y47{bottom:140.905270px;}
.y12{bottom:141.348313px;}
.y46{bottom:163.413751px;}
.y56{bottom:179.919930px;}
.y45{bottom:185.922231px;}
.y11{bottom:187.725959px;}
.y55{bottom:202.428411px;}
.y44{bottom:231.296748px;}
.yf{bottom:234.102417px;}
.y54{bottom:253.297265px;}
.y43{bottom:253.805229px;}
.y53{bottom:275.805746px;}
.y42{bottom:276.313710px;}
.ye{bottom:283.240644px;}
.y41{bottom:298.822190px;}
.y40{bottom:321.330671px;}
.y21{bottom:324.051696px;}
.y52{bottom:326.674593px;}
.y20{bottom:340.933057px;}
.y51{bottom:349.183074px;}
.y1f{bottom:357.814417px;}
.y3f{bottom:362.973950px;}
.y50{bottom:371.691555px;}
.y3e{bottom:385.482431px;}
.y4f{bottom:394.200035px;}
.y16{bottom:403.330340px;}
.y3d{bottom:407.990911px;}
.y15{bottom:417.960852px;}
.y4e{bottom:444.202593px;}
.y2e{bottom:451.890914px;}
.y1b{bottom:457.584399px;}
.y4d{bottom:466.711074px;}
.y66{bottom:469.224538px;}
.y2d{bottom:474.270370px;}
.y1a{bottom:474.465760px;}
.y3c{bottom:484.539152px;}
.y19{bottom:491.347120px;}
.y65{bottom:493.983866px;}
.y2c{bottom:499.029699px;}
.y3b{bottom:504.796785px;}
.y64{bottom:518.743195px;}
.y3a{bottom:525.054418px;}
.y2b{bottom:530.316481px;}
.y4c{bottom:535.159897px;}
.y14{bottom:537.035075px;}
.yc{bottom:538.958582px;}
.y63{bottom:543.502524px;}
.y39{bottom:545.312050px;}
.y2a{bottom:555.075810px;}
.y38{bottom:565.569683px;}
.y62{bottom:568.261853px;}
.yb{bottom:573.846727px;}
.y29{bottom:579.835139px;}
.y18{bottom:583.411530px;}
.y37{bottom:589.911121px;}
.y61{bottom:593.021181px;}
.y28{bottom:604.594467px;}
.ya{bottom:608.734872px;}
.y36{bottom:610.168754px;}
.y60{bottom:617.780510px;}
.y1c{bottom:629.789147px;}
.y35{bottom:630.426387px;}
.y5f{bottom:642.539839px;}
.y9{bottom:643.623017px;}
.y34{bottom:650.684019px;}
.y5e{bottom:667.299168px;}
.y33{bottom:670.941652px;}
.y13{bottom:676.165619px;}
.y31{bottom:683.730537px;}
.y32{bottom:691.199284px;}
.y5d{bottom:692.058496px;}
.y27{bottom:703.322909px;}
.y5c{bottom:716.817825px;}
.y10{bottom:722.542095px;}
.y26{bottom:723.580542px;}
.y5b{bottom:741.577154px;}
.y25{bottom:743.838175px;}
.y24{bottom:764.095807px;}
.y5a{bottom:766.336482px;}
.y17{bottom:768.919680px;}
.y2f{bottom:783.045439px;}
.y8{bottom:784.079207px;}
.y23{bottom:784.353440px;}
.y59{bottom:791.095811px;}
.y22{bottom:804.611072px;}
.y30{bottom:834.873687px;}
.y2{bottom:839.223602px;}
.h4{height:34.212891px;}
.h7{height:39.900783px;}
.h8{height:49.523159px;}
.h9{height:57.007229px;}
.hd{height:62.695121px;}
.he{height:62.737889px;}
.ha{height:68.425781px;}
.hb{height:74.113674px;}
.h3{height:79.801567px;}
.hc{height:91.220120px;}
.h6{height:94.103456px;}
.h5{height:144.561839px;}
.h2{height:893.249963px;}
.h0{height:893.249979px;}
.h1{height:893.250000px;}
.w2{width:1263.374947px;}
.w0{width:1263.375000px;}
.w1{width:1263.750000px;}
.x0{left:0.000000px;}
.x24{left:36.013569px;}
.x26{left:64.377772px;}
.x2a{left:83.914430px;}
.x1{left:90.656841px;}
.x30{left:104.138862px;}
.x2b{left:106.479190px;}
.x20{left:130.402283px;}
.x21{left:142.852318px;}
.x23{left:152.251856px;}
.x27{left:155.308517px;}
.xb{left:163.179738px;}
.x2d{left:184.872008px;}
.x2e{left:189.883662px;}
.x29{left:222.869128px;}
.xc{left:237.909724px;}
.x28{left:254.117236px;}
.x2f{left:266.535589px;}
.x31{left:301.387015px;}
.x2c{left:306.558481px;}
.x25{left:359.643318px;}
.x33{left:465.136634px;}
.xd{left:479.223218px;}
.x3{left:492.763393px;}
.x5{left:503.138396px;}
.x2{left:506.233312px;}
.x4{left:510.664669px;}
.x32{left:513.459558px;}
.xa{left:518.526101px;}
.x1d{left:523.964891px;}
.x7{left:526.885160px;}
.x6{left:532.346666px;}
.x1c{left:535.518072px;}
.x36{left:536.829662px;}
.x1f{left:542.951319px;}
.x1e{left:546.983330px;}
.x34{left:550.791954px;}
.x1a{left:553.202263px;}
.x37{left:556.808607px;}
.x16{left:560.253748px;}
.x1b{left:563.266809px;}
.xe{left:575.605235px;}
.xf{left:579.790406px;}
.x12{left:596.689351px;}
.x10{left:598.184055px;}
.x13{left:600.874522px;}
.x11{left:602.369226px;}
.x14{left:610.024362px;}
.x17{left:621.589358px;}
.x18{left:625.774528px;}
.x35{left:627.901085px;}
.x15{left:648.370933px;}
.x19{left:702.303363px;}
.x38{left:870.631488px;}
.x9{left:872.177220px;}
.x44{left:911.269846px;}
.x45{left:943.168584px;}
.x40{left:959.170707px;}
.x3c{left:964.059267px;}
.x8{left:977.354239px;}
.x22{left:1021.883321px;}
.x42{left:1034.679625px;}
.x3b{left:1050.681748px;}
.x39{left:1067.176250px;}
.x41{left:1069.972220px;}
.x3d{left:1091.706971px;}
.x3e{left:1112.404228px;}
.x43{left:1119.191942px;}
.x3a{left:1148.101272px;}
.x3f{left:1192.397253px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-102.617262pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-3.841089pt;}
._2{margin-left:-1.927844pt;}
._1{margin-left:-0.952631pt;}
._0{width:0.927605pt;}
._10{width:2.921320pt;}
._5{width:4.719909pt;}
._4{width:5.882278pt;}
._b{width:8.378405pt;}
._f{width:11.475462pt;}
._e{width:12.597355pt;}
._d{width:14.572939pt;}
._a{width:17.719898pt;}
._9{width:20.799371pt;}
._8{width:21.945039pt;}
._12{width:27.711775pt;}
._11{width:30.424365pt;}
._6{width:33.320346pt;}
._13{width:39.054335pt;}
._7{width:44.802138pt;}
._c{width:52.050828pt;}
.fs1{font-size:32.012061pt;}
.fs4{font-size:37.334066pt;}
.fs5{font-size:46.337458pt;}
.fs6{font-size:53.340097pt;}
.fsa{font-size:58.662102pt;}
.fsb{font-size:58.702118pt;}
.fs7{font-size:64.024123pt;}
.fs8{font-size:69.346128pt;}
.fs0{font-size:74.668133pt;}
.fs9{font-size:85.352159pt;}
.fs3{font-size:104.039200pt;}
.fs2{font-size:182.268671pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000014pt;}
.y7{bottom:38.384543pt;}
.y4b{bottom:45.218975pt;}
.y6{bottom:47.387935pt;}
.y5{bottom:56.391328pt;}
.y4a{bottom:65.226514pt;}
.y4{bottom:65.394720pt;}
.y1e{bottom:70.025798pt;}
.y3{bottom:74.398112pt;}
.y1d{bottom:85.031452pt;}
.y49{bottom:85.234052pt;}
.yd{bottom:88.000341pt;}
.y58{bottom:95.474589pt;}
.y48{bottom:105.241590pt;}
.y57{bottom:115.482128pt;}
.y47{bottom:125.249129pt;}
.y12{bottom:125.642945pt;}
.y46{bottom:145.256667pt;}
.y56{bottom:159.928827pt;}
.y45{bottom:165.264206pt;}
.y11{bottom:166.867519pt;}
.y55{bottom:179.936365pt;}
.y44{bottom:205.597110pt;}
.yf{bottom:208.091038pt;}
.y54{bottom:225.153125pt;}
.y43{bottom:225.604648pt;}
.y53{bottom:245.160663pt;}
.y42{bottom:245.612186pt;}
.ye{bottom:251.769462pt;}
.y41{bottom:265.619725pt;}
.y40{bottom:285.627263pt;}
.y21{bottom:288.045952pt;}
.y52{bottom:290.377416pt;}
.y20{bottom:303.051606pt;}
.y51{bottom:310.384955pt;}
.y1f{bottom:318.057260pt;}
.y3f{bottom:322.643511pt;}
.y50{bottom:330.392493pt;}
.y3e{bottom:342.651049pt;}
.y4f{bottom:350.400031pt;}
.y16{bottom:358.515858pt;}
.y3d{bottom:362.658588pt;}
.y15{bottom:371.520758pt;}
.y4e{bottom:394.846750pt;}
.y2e{bottom:401.680812pt;}
.y1b{bottom:406.741688pt;}
.y4d{bottom:414.854288pt;}
.y66{bottom:417.088478pt;}
.y2d{bottom:421.573662pt;}
.y1a{bottom:421.747342pt;}
.y3c{bottom:430.701469pt;}
.y19{bottom:436.752996pt;}
.y65{bottom:439.096770pt;}
.y2c{bottom:443.581955pt;}
.y3b{bottom:448.708253pt;}
.y64{bottom:461.105062pt;}
.y3a{bottom:466.715038pt;}
.y2b{bottom:471.392428pt;}
.y4c{bottom:475.697686pt;}
.y14{bottom:477.364511pt;}
.yc{bottom:479.074295pt;}
.y63{bottom:483.113355pt;}
.y39{bottom:484.721822pt;}
.y2a{bottom:493.400720pt;}
.y38{bottom:502.728607pt;}
.y62{bottom:505.121647pt;}
.yb{bottom:510.085979pt;}
.y29{bottom:515.409012pt;}
.y18{bottom:518.588026pt;}
.y37{bottom:524.365441pt;}
.y61{bottom:527.129939pt;}
.y28{bottom:537.417304pt;}
.ya{bottom:541.097664pt;}
.y36{bottom:542.372226pt;}
.y60{bottom:549.138231pt;}
.y1c{bottom:559.812575pt;}
.y35{bottom:560.379010pt;}
.y5f{bottom:571.146523pt;}
.y9{bottom:572.109348pt;}
.y34{bottom:578.385795pt;}
.y5e{bottom:593.154816pt;}
.y33{bottom:596.392579pt;}
.y13{bottom:601.036106pt;}
.y31{bottom:607.760478pt;}
.y32{bottom:614.399364pt;}
.y5d{bottom:615.163108pt;}
.y27{bottom:625.175920pt;}
.y5c{bottom:637.171400pt;}
.y10{bottom:642.259640pt;}
.y26{bottom:643.182704pt;}
.y5b{bottom:659.179692pt;}
.y25{bottom:661.189489pt;}
.y24{bottom:679.196273pt;}
.y5a{bottom:681.187984pt;}
.y17{bottom:683.484160pt;}
.y2f{bottom:696.040390pt;}
.y8{bottom:696.959295pt;}
.y23{bottom:697.203058pt;}
.y59{bottom:703.196277pt;}
.y22{bottom:715.209842pt;}
.y30{bottom:742.109944pt;}
.y2{bottom:745.976535pt;}
.h4{height:30.411458pt;}
.h7{height:35.467363pt;}
.h8{height:44.020586pt;}
.h9{height:50.673092pt;}
.hd{height:55.728997pt;}
.he{height:55.767012pt;}
.ha{height:60.822917pt;}
.hb{height:65.878822pt;}
.h3{height:70.934727pt;}
.hc{height:81.084551pt;}
.h6{height:83.647516pt;}
.h5{height:128.499413pt;}
.h2{height:793.999967pt;}
.h0{height:793.999981pt;}
.h1{height:794.000000pt;}
.w2{width:1122.999953pt;}
.w0{width:1123.000000pt;}
.w1{width:1123.333333pt;}
.x0{left:0.000000pt;}
.x24{left:32.012062pt;}
.x26{left:57.224686pt;}
.x2a{left:74.590604pt;}
.x1{left:80.583859pt;}
.x30{left:92.567878pt;}
.x2b{left:94.648169pt;}
.x20{left:115.913141pt;}
.x21{left:126.979838pt;}
.x23{left:135.334983pt;}
.x27{left:138.052015pt;}
.xb{left:145.048656pt;}
.x2d{left:164.330674pt;}
.x2e{left:168.785477pt;}
.x29{left:198.105892pt;}
.xc{left:211.475310pt;}
.x28{left:225.881987pt;}
.x2f{left:236.920524pt;}
.x31{left:267.899569pt;}
.x2c{left:272.496428pt;}
.x25{left:319.682949pt;}
.x33{left:413.454786pt;}
.xd{left:425.976193pt;}
.x3{left:438.011905pt;}
.x5{left:447.234130pt;}
.x2{left:449.985166pt;}
.x4{left:453.924150pt;}
.x32{left:456.408496pt;}
.xa{left:460.912090pt;}
.x1d{left:465.746570pt;}
.x7{left:468.342364pt;}
.x6{left:473.197037pt;}
.x1c{left:476.016064pt;}
.x36{left:477.181922pt;}
.x1f{left:482.623395pt;}
.x1e{left:486.207404pt;}
.x34{left:489.592848pt;}
.x1a{left:491.735345pt;}
.x37{left:494.940984pt;}
.x16{left:498.003332pt;}
.x1b{left:500.681608pt;}
.xe{left:511.649098pt;}
.xf{left:515.369250pt;}
.x12{left:530.390534pt;}
.x10{left:531.719160pt;}
.x13{left:534.110686pt;}
.x11{left:535.439312pt;}
.x14{left:542.243877pt;}
.x17{left:552.523874pt;}
.x18{left:556.244025pt;}
.x35{left:558.134298pt;}
.x15{left:576.329718pt;}
.x19{left:624.269656pt;}
.x38{left:773.894656pt;}
.x9{left:775.268640pt;}
.x44{left:810.017641pt;}
.x45{left:838.372074pt;}
.x40{left:852.596184pt;}
.x3c{left:856.941571pt;}
.x8{left:868.759324pt;}
.x22{left:908.340730pt;}
.x42{left:919.715222pt;}
.x3b{left:933.939332pt;}
.x39{left:948.601111pt;}
.x41{left:951.086417pt;}
.x3d{left:970.406197pt;}
.x3e{left:988.803758pt;}
.x43{left:994.837282pt;}
.x3a{left:1020.534464pt;}
.x3f{left:1059.908669pt;}
}




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