
    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_6e5dc0e046cc901b4d6d436a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_49cf081f56db98e41f2e8355.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_6e1084a6a916be5edb73bb1c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_58a62ae581341ff73fd87b4f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_36a71f4c7831b7e5377296e2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v8{vertical-align:-316.946052px;}
.v4{vertical-align:-251.983116px;}
.v5{vertical-align:-34.468350px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:20.460522px;}
.v1{vertical-align:56.573054px;}
.v9{vertical-align:129.332094px;}
.v2{vertical-align:150.000098px;}
.v6{vertical-align:171.064914px;}
.v3{vertical-align:183.426612px;}
.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:-421.176180px;}
.ws4{word-spacing:-239.999814px;}
.ws6{word-spacing:-71.100048px;}
.ws9{word-spacing:-63.599951px;}
.wsc{word-spacing:-56.879956px;}
.ws8{word-spacing:-37.279901px;}
.ws1{word-spacing:-31.800021px;}
.ws7{word-spacing:-28.836150px;}
.ws11{word-spacing:0.000000px;}
.ws2{word-spacing:617.381055px;}
.ws3{word-spacing:672.205367px;}
.wsb{word-spacing:804.016149px;}
.wsd{word-spacing:818.115322px;}
.wse{word-spacing:852.315819px;}
.ws5{word-spacing:898.729601px;}
.ws10{word-spacing:1172.955716px;}
.wsa{word-spacing:1209.256961px;}
.wsf{word-spacing:1392.138569px;}
._f{margin-left:-7242.080616px;}
._d{margin-left:-4562.989836px;}
._10{margin-left:-4386.476773px;}
._e{margin-left:-4334.186682px;}
._11{margin-left:-14.910557px;}
._0{margin-left:-12.635285px;}
._5{margin-left:-10.500007px;}
._1{margin-left:-8.423524px;}
._6{margin-left:-6.230597px;}
._3{margin-left:-5.054114px;}
._2{margin-left:-3.369409px;}
._7{margin-left:-2.329408px;}
._4{margin-left:-1.263529px;}
._b{width:1.562355px;}
._a{width:2.652694px;}
._8{width:5.517425px;}
._9{width:1165.835524px;}
._c{width:1168.194531px;}
.fc8{color:transparent;}
.fc6{color:rgb(64,143,248);}
.fc5{color:rgb(206,212,220);}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(20,41,79);}
.fc7{color:rgb(179,179,179);}
.fc4{color:rgb(26,26,26);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:115.344600px;}
.fs2{font-size:120.000078px;}
.fs9{font-size:131.999976px;}
.fs6{font-size:149.119602px;}
.fs3{font-size:179.812344px;}
.fs8{font-size:215.999994px;}
.fs7{font-size:216.000000px;}
.fs4{font-size:239.999814px;}
.fs1{font-size:300.000204px;}
.fs0{font-size:421.176180px;}
.y0{bottom:0.000000px;}
.y33{bottom:21.515433px;}
.y34{bottom:56.364610px;}
.y32{bottom:124.675051px;}
.y41{bottom:237.165585px;}
.y31{bottom:249.766252px;}
.y30{bottom:278.147108px;}
.y2f{bottom:306.527964px;}
.y3d{bottom:462.119329px;}
.y3c{bottom:494.655682px;}
.y40{bottom:687.636048px;}
.y3f{bottom:720.172142px;}
.y42{bottom:944.523760px;}
.y45{bottom:1278.939132px;}
.y43{bottom:1372.325183px;}
.y44{bottom:1526.532731px;}
.y3b{bottom:1659.569727px;}
.y49{bottom:1798.083102px;}
.y47{bottom:1892.131456px;}
.y46{bottom:1957.534516px;}
.y28{bottom:2259.054984px;}
.y20{bottom:2339.063601px;}
.y19{bottom:2367.623953px;}
.yb{bottom:2367.623957px;}
.y1f{bottom:2376.563625px;}
.yc{bottom:2453.704513px;}
.y1a{bottom:2456.974721px;}
.y25{bottom:2475.745872px;}
.y6{bottom:2502.893137px;}
.y24{bottom:2513.245897px;}
.y1c{bottom:2521.809490px;}
.y1e{bottom:2526.339664px;}
.y21{bottom:2540.482928px;}
.y5{bottom:2540.544481px;}
.y14{bottom:2543.271725px;}
.y7{bottom:2546.023152px;}
.y18{bottom:2546.205069px;}
.ya{bottom:2546.205073px;}
.y23{bottom:2550.745921px;}
.y1b{bottom:2559.309515px;}
.y1d{bottom:2563.839689px;}
.y4{bottom:2578.195826px;}
.y22{bottom:2588.245946px;}
.y9{bottom:2632.090479px;}
.y17{bottom:2635.450478px;}
.y29{bottom:2656.149500px;}
.y15{bottom:2665.220486px;}
.y16{bottom:2724.845885px;}
.y8{bottom:2724.845888px;}
.y27{bottom:2727.849078px;}
.y26{bottom:2765.349102px;}
.y13{bottom:2809.582662px;}
.y12{bottom:2847.234006px;}
.y11{bottom:2884.885351px;}
.y10{bottom:2922.536695px;}
.yf{bottom:2960.188040px;}
.ye{bottom:3021.819148px;}
.yd{bottom:3059.470493px;}
.y37{bottom:3190.977264px;}
.y36{bottom:3350.185908px;}
.y35{bottom:3380.924183px;}
.y48{bottom:3522.656381px;}
.y3a{bottom:3605.445499px;}
.y39{bottom:3691.388113px;}
.y38{bottom:3783.968055px;}
.y3e{bottom:3863.214054px;}
.y2d{bottom:4052.509558px;}
.y2c{bottom:4081.955487px;}
.y2b{bottom:4277.265328px;}
.y2e{bottom:4298.561219px;}
.y2a{bottom:4346.265275px;}
.y3{bottom:4535.722911px;}
.y2{bottom:4726.732919px;}
.y1{bottom:4847.821071px;}
.ha{height:80.741220px;}
.h10{height:92.399983px;}
.hc{height:104.383721px;}
.h4{height:126.000082px;}
.hd{height:151.200000px;}
.h6{height:182.573135px;}
.h5{height:188.802961px;}
.hb{height:210.609000px;}
.h8{height:251.999805px;}
.h7{height:276.000179px;}
.h3{height:315.000214px;}
.h11{height:381.331899px;}
.he{height:423.064719px;}
.hf{height:423.065757px;}
.h9{height:435.426417px;}
.h2{height:442.234989px;}
.h0{height:5055.590552px;}
.h1{height:5055.750000px;}
.w2{width:714.685500px;}
.w0{width:3575.905512px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x30{left:242.725928px;}
.x3b{left:244.563573px;}
.x34{left:246.251139px;}
.x35{left:254.801027px;}
.x2f{left:258.513278px;}
.x4{left:260.820932px;}
.x6{left:263.940994px;}
.x28{left:282.025911px;}
.x10{left:284.947646px;}
.x26{left:302.688503px;}
.x33{left:304.000998px;}
.x37{left:316.000851px;}
.x5{left:332.490678px;}
.x2d{left:349.186042px;}
.x7{left:557.679900px;}
.x2c{left:678.128444px;}
.xa{left:764.398641px;}
.x8{left:772.018609px;}
.x9{left:792.208569px;}
.xb{left:795.868631px;}
.x27{left:869.521136px;}
.x25{left:896.874886px;}
.x31{left:905.805279px;}
.x32{left:908.697301px;}
.x3a{left:965.993316px;}
.x2e{left:991.327810px;}
.xd{left:1062.127198px;}
.xc{left:1083.592122px;}
.xe{left:1096.946893px;}
.xf{left:1104.747267px;}
.x36{left:1143.430734px;}
.x3{left:1369.640943px;}
.x13{left:1494.507626px;}
.x11{left:1502.877524px;}
.x12{left:1521.792464px;}
.x14{left:1525.437556px;}
.x23{left:1828.415229px;}
.x15{left:1860.856458px;}
.x16{left:1870.396464px;}
.x1{left:1968.573456px;}
.x2{left:2084.185791px;}
.x18{left:2139.880813px;}
.x1a{left:2155.514580px;}
.x19{left:2160.419613px;}
.x17{left:2182.495781px;}
.x39{left:2328.691092px;}
.x1b{left:2460.290980px;}
.x29{left:2510.017895px;}
.x2b{left:2544.967308px;}
.x2a{left:2561.115437px;}
.x1c{left:2758.177755px;}
.x38{left:2996.924138px;}
.x21{left:3067.038800px;}
.x22{left:3075.378805px;}
.x20{left:3095.596562px;}
.x1d{left:3149.506447px;}
.x1f{left:3155.206631px;}
.x1e{left:3190.726324px;}
.x24{left:3194.915223px;}
@media print{
.v8{vertical-align:-281.729824pt;}
.v4{vertical-align:-223.984992pt;}
.v5{vertical-align:-30.638533pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:18.187131pt;}
.v1{vertical-align:50.287159pt;}
.v9{vertical-align:114.961861pt;}
.v2{vertical-align:133.333420pt;}
.v6{vertical-align:152.057701pt;}
.v3{vertical-align:163.045877pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-374.378827pt;}
.ws4{word-spacing:-213.333168pt;}
.ws6{word-spacing:-63.200043pt;}
.ws9{word-spacing:-56.533290pt;}
.wsc{word-spacing:-50.559961pt;}
.ws8{word-spacing:-33.137689pt;}
.ws1{word-spacing:-28.266685pt;}
.ws7{word-spacing:-25.632133pt;}
.ws11{word-spacing:0.000000pt;}
.ws2{word-spacing:548.783160pt;}
.ws3{word-spacing:597.515881pt;}
.wsb{word-spacing:714.681021pt;}
.wsd{word-spacing:727.213620pt;}
.wse{word-spacing:757.614061pt;}
.ws5{word-spacing:798.870757pt;}
.ws10{word-spacing:1042.627303pt;}
.wsa{word-spacing:1074.895076pt;}
.wsf{word-spacing:1237.456506pt;}
._f{margin-left:-6437.404992pt;}
._d{margin-left:-4055.990965pt;}
._10{margin-left:-3899.090464pt;}
._e{margin-left:-3852.610384pt;}
._11{margin-left:-13.253828pt;}
._0{margin-left:-11.231365pt;}
._5{margin-left:-9.333340pt;}
._1{margin-left:-7.487577pt;}
._6{margin-left:-5.538308pt;}
._3{margin-left:-4.492546pt;}
._2{margin-left:-2.995031pt;}
._7{margin-left:-2.070585pt;}
._4{margin-left:-1.123136pt;}
._b{width:1.388760pt;}
._a{width:2.357950pt;}
._8{width:4.904378pt;}
._9{width:1036.298243pt;}
._c{width:1038.395138pt;}
.fs5{font-size:102.528533pt;}
.fs2{font-size:106.666736pt;}
.fs9{font-size:117.333312pt;}
.fs6{font-size:132.550757pt;}
.fs3{font-size:159.833195pt;}
.fs8{font-size:191.999995pt;}
.fs7{font-size:192.000000pt;}
.fs4{font-size:213.333168pt;}
.fs1{font-size:266.666848pt;}
.fs0{font-size:374.378827pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:19.124829pt;}
.y34{bottom:50.101876pt;}
.y32{bottom:110.822268pt;}
.y41{bottom:210.813853pt;}
.y31{bottom:222.014446pt;}
.y30{bottom:247.241874pt;}
.y2f{bottom:272.469301pt;}
.y3d{bottom:410.772737pt;}
.y3c{bottom:439.693940pt;}
.y40{bottom:611.232043pt;}
.y3f{bottom:640.153015pt;}
.y42{bottom:839.576676pt;}
.y45{bottom:1136.834784pt;}
.y43{bottom:1219.844607pt;}
.y44{bottom:1356.917983pt;}
.y3b{bottom:1475.173091pt;}
.y49{bottom:1598.296091pt;}
.y47{bottom:1681.894627pt;}
.y46{bottom:1740.030681pt;}
.y28{bottom:2008.048875pt;}
.y20{bottom:2079.167645pt;}
.y19{bottom:2104.554625pt;}
.yb{bottom:2104.554629pt;}
.y1f{bottom:2112.501000pt;}
.yc{bottom:2181.070678pt;}
.y1a{bottom:2183.977530pt;}
.y25{bottom:2200.662998pt;}
.y6{bottom:2224.793899pt;}
.y24{bottom:2233.996353pt;}
.y1c{bottom:2241.608436pt;}
.y1e{bottom:2245.635257pt;}
.y21{bottom:2258.207047pt;}
.y5{bottom:2258.261761pt;}
.y14{bottom:2260.685977pt;}
.y7{bottom:2263.131691pt;}
.y18{bottom:2263.293395pt;}
.ya{bottom:2263.293398pt;}
.y23{bottom:2267.329708pt;}
.y1b{bottom:2274.941791pt;}
.y1d{bottom:2278.968612pt;}
.y4{bottom:2291.729623pt;}
.y22{bottom:2300.663063pt;}
.y9{bottom:2339.635981pt;}
.y17{bottom:2342.622647pt;}
.y29{bottom:2361.021777pt;}
.y15{bottom:2369.084876pt;}
.y16{bottom:2422.085231pt;}
.y8{bottom:2422.085234pt;}
.y27{bottom:2424.754736pt;}
.y26{bottom:2458.088091pt;}
.y13{bottom:2497.406810pt;}
.y12{bottom:2530.874672pt;}
.y11{bottom:2564.342534pt;}
.y10{bottom:2597.810396pt;}
.yf{bottom:2631.278257pt;}
.ye{bottom:2686.061465pt;}
.yd{bottom:2719.529327pt;}
.y37{bottom:2836.424234pt;}
.y36{bottom:2977.943029pt;}
.y35{bottom:3005.265940pt;}
.y48{bottom:3131.250116pt;}
.y3a{bottom:3204.840444pt;}
.y39{bottom:3281.233878pt;}
.y38{bottom:3363.527160pt;}
.y3e{bottom:3433.968048pt;}
.y2d{bottom:3602.230719pt;}
.y2c{bottom:3628.404877pt;}
.y2b{bottom:3802.013625pt;}
.y2e{bottom:3820.943305pt;}
.y2a{bottom:3863.346911pt;}
.y3{bottom:4031.753699pt;}
.y2{bottom:4201.540373pt;}
.y1{bottom:4309.174285pt;}
.ha{height:71.769973pt;}
.h10{height:82.133318pt;}
.hc{height:92.785530pt;}
.h4{height:112.000073pt;}
.hd{height:134.400000pt;}
.h6{height:162.287231pt;}
.h5{height:167.824854pt;}
.hb{height:187.208000pt;}
.h8{height:223.999826pt;}
.h7{height:245.333493pt;}
.h3{height:280.000190pt;}
.h11{height:338.961688pt;}
.he{height:376.057528pt;}
.hf{height:376.058450pt;}
.h9{height:387.045704pt;}
.h2{height:393.097768pt;}
.h0{height:4493.858268pt;}
.h1{height:4494.000000pt;}
.w2{width:635.276000pt;}
.w0{width:3178.582677pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x30{left:215.756380pt;}
.x3b{left:217.389843pt;}
.x34{left:218.889901pt;}
.x35{left:226.489801pt;}
.x2f{left:229.789580pt;}
.x4{left:231.840828pt;}
.x6{left:234.614216pt;}
.x28{left:250.689699pt;}
.x10{left:253.286796pt;}
.x26{left:269.056447pt;}
.x33{left:270.223109pt;}
.x37{left:280.889645pt;}
.x5{left:295.547269pt;}
.x2d{left:310.387593pt;}
.x7{left:495.715467pt;}
.x2c{left:602.780839pt;}
.xa{left:679.465458pt;}
.x8{left:686.238764pt;}
.x9{left:704.185394pt;}
.xb{left:707.438783pt;}
.x27{left:772.907676pt;}
.x25{left:797.222121pt;}
.x31{left:805.160248pt;}
.x32{left:807.730934pt;}
.x3a{left:858.660725pt;}
.x2e{left:881.180276pt;}
.xd{left:944.113065pt;}
.xc{left:963.192997pt;}
.xe{left:975.063905pt;}
.xf{left:981.997571pt;}
.x36{left:1016.382875pt;}
.x3{left:1217.458616pt;}
.x13{left:1328.451223pt;}
.x11{left:1335.891132pt;}
.x12{left:1352.704412pt;}
.x14{left:1355.944494pt;}
.x23{left:1625.257981pt;}
.x15{left:1654.094629pt;}
.x16{left:1662.574635pt;}
.x1{left:1749.843072pt;}
.x2{left:1852.609592pt;}
.x18{left:1902.116278pt;}
.x1a{left:1916.012960pt;}
.x19{left:1920.372989pt;}
.x17{left:1939.996249pt;}
.x39{left:2069.947637pt;}
.x1b{left:2186.925316pt;}
.x29{left:2231.127017pt;}
.x2b{left:2262.193163pt;}
.x2a{left:2276.547055pt;}
.x1c{left:2451.713560pt;}
.x38{left:2663.932567pt;}
.x21{left:2726.256711pt;}
.x22{left:2733.670049pt;}
.x20{left:2751.641389pt;}
.x1d{left:2799.561287pt;}
.x1f{left:2804.628117pt;}
.x1e{left:2836.201177pt;}
.x24{left:2839.924643pt;}
}




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