
    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_24d7d07d4ec19e10ee3570fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.012695;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_5633469bb174d55971f14ff8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972000;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_0a41b4ee32e1c62cbd823924.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.998000;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_7335b71446faa394d899b50f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_d84dc92f7d1137d4521e4b19.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_c7d9d5e8eca5e7c63c5e076a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.032715;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_3760d65ae280c4704818e4a5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.746094;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;}
.m5{transform:matrix(0.247388,-0.036045,0.036062,0.247385,0,0);-ms-transform:matrix(0.247388,-0.036045,0.036062,0.247385,0,0);-webkit-transform:matrix(0.247388,-0.036045,0.036062,0.247385,0,0);}
.m6{transform:matrix(0.249173,0.020316,-0.020247,0.249179,0,0);-ms-transform:matrix(0.249173,0.020316,-0.020247,0.249179,0,0);-webkit-transform:matrix(0.249173,0.020316,-0.020247,0.249179,0,0);}
.m4{transform:matrix(0.249302,-0.018670,0.018718,0.249298,0,0);-ms-transform:matrix(0.249302,-0.018670,0.018718,0.249298,0,0);-webkit-transform:matrix(0.249302,-0.018670,0.018718,0.249298,0,0);}
.m3{transform:matrix(0.249469,0.016283,-0.016267,0.249470,0,0);-ms-transform:matrix(0.249469,0.016283,-0.016267,0.249470,0,0);-webkit-transform:matrix(0.249469,0.016283,-0.016267,0.249470,0,0);}
.m2{transform:matrix(0.249479,-0.016128,0.016128,0.249479,0,0);-ms-transform:matrix(0.249479,-0.016128,0.016128,0.249479,0,0);-webkit-transform:matrix(0.249479,-0.016128,0.016128,0.249479,0,0);}
.m1{transform:matrix(0.249685,0.012537,-0.012520,0.249686,0,0);-ms-transform:matrix(0.249685,0.012537,-0.012520,0.249686,0,0);-webkit-transform:matrix(0.249685,0.012537,-0.012520,0.249686,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:117.000013px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144450px;}
.ls4{letter-spacing:0.144495px;}
.ls2{letter-spacing:1.080000px;}
.ls1{letter-spacing:107.976554px;}
.ls0{letter-spacing:107.987075px;}
.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;}
}
.wsb{word-spacing:-90.000003px;}
.wsc{word-spacing:-66.150002px;}
.ws8{word-spacing:-55.080004px;}
.ws6{word-spacing:-55.080003px;}
.ws2{word-spacing:-55.080002px;}
.ws4{word-spacing:-55.080000px;}
.ws7{word-spacing:-54.000004px;}
.ws5{word-spacing:-54.000003px;}
.ws1{word-spacing:-54.000002px;}
.ws3{word-spacing:-54.000000px;}
.ws0{word-spacing:-53.568002px;}
.wsa{word-spacing:-45.000003px;}
.ws9{word-spacing:-45.000002px;}
.wsd{word-spacing:0.000000px;}
._11{margin-left:-3833.247403px;}
._10{margin-left:-3760.556997px;}
._a{margin-left:-16.664851px;}
._e{margin-left:-15.314897px;}
._c{margin-left:-13.972176px;}
._d{margin-left:-10.556088px;}
._f{margin-left:-6.984000px;}
._8{margin-left:-5.703913px;}
._2{margin-left:-4.680000px;}
._3{margin-left:-2.880000px;}
._1{margin-left:-1.620000px;}
._4{width:1.080000px;}
._b{width:2.107448px;}
._5{width:3.180000px;}
._7{width:4.387422px;}
._12{width:5.685130px;}
._6{width:7.049188px;}
._9{width:8.127201px;}
._0{width:108.138519px;}
.fca{color:transparent;}
.fc9{color:rgb(68,1,84);}
.fc7{color:rgb(189,223,38);}
.fc5{color:rgb(66,133,244);}
.fc4{color:rgb(213,94,0);}
.fc8{color:rgb(72,36,117);}
.fc1{color:rgb(1,115,178);}
.fc6{color:rgb(67,67,67);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:180.000006px;}
.fsb{font-size:180.000007px;}
.fsc{font-size:180.000013px;}
.fs3{font-size:208.000025px;}
.fs8{font-size:216.000000px;}
.fs1{font-size:216.000007px;}
.fs9{font-size:216.000011px;}
.fsa{font-size:216.000015px;}
.fse{font-size:252.000008px;}
.fs6{font-size:270.000009px;}
.fs4{font-size:288.000009px;}
.fs2{font-size:312.000022px;}
.fsd{font-size:330.000023px;}
.fs7{font-size:360.000012px;}
.fs5{font-size:660.000036px;}
.y0{bottom:0.000000px;}
.y2{bottom:90.258298px;}
.y3{bottom:113.809269px;}
.y1{bottom:144.258295px;}
.y4{bottom:254.230534px;}
.y26{bottom:448.608029px;}
.y25{bottom:541.983021px;}
.y33{bottom:718.172230px;}
.y32{bottom:772.172228px;}
.y37{bottom:915.709754px;}
.y36{bottom:991.084756px;}
.y2d{bottom:1045.108897px;}
.y2c{bottom:1131.456250px;}
.y35{bottom:1256.761963px;}
.y34{bottom:1337.761972px;}
.y2b{bottom:1366.581257px;}
.y31{bottom:1572.919374px;}
.y2a{bottom:1592.706265px;}
.y30{bottom:1653.919376px;}
.y2f{bottom:1734.919379px;}
.y2e{bottom:1917.453312px;}
.y3e{bottom:2126.322056px;}
.y15{bottom:2128.966909px;}
.y3d{bottom:2207.322059px;}
.y14{bottom:2222.341912px;}
.y3c{bottom:2288.322061px;}
.y13{bottom:2315.716915px;}
.y3b{bottom:2369.322064px;}
.y12{bottom:2409.091929px;}
.y3a{bottom:2450.322067px;}
.y11{bottom:2502.466932px;}
.y39{bottom:2531.322069px;}
.y10{bottom:2595.841935px;}
.y38{bottom:2612.322061px;}
.y29{bottom:2814.350962px;}
.y28{bottom:3493.640317px;}
.y24{bottom:3497.667537px;}
.y27{bottom:3546.250663px;}
.y23{bottom:3555.443316px;}
.y22{bottom:3643.516214px;}
.y1c{bottom:3644.031402px;}
.y1f{bottom:3655.726402px;}
.y19{bottom:3676.747309px;}
.y21{bottom:3703.804358px;}
.y1b{bottom:3709.399779px;}
.y16{bottom:3715.420011px;}
.y1e{bottom:3720.581381px;}
.y18{bottom:3741.717765px;}
.y1a{bottom:3770.991907px;}
.y20{bottom:3775.303353px;}
.y1d{bottom:3789.248830px;}
.y17{bottom:3809.008927px;}
.yf{bottom:3920.106376px;}
.ya{bottom:4102.580111px;}
.y5{bottom:4136.651153px;}
.y9{bottom:4195.955114px;}
.y8{bottom:4289.330117px;}
.ye{bottom:4324.045143px;}
.y7{bottom:4382.705120px;}
.yd{bottom:4405.045145px;}
.y6{bottom:4476.080123px;}
.yc{bottom:4486.045148px;}
.yb{bottom:4746.762392px;}
.h1{height:142.207036px;}
.hf{height:142.380005px;}
.h10{height:142.380010px;}
.h13{height:144.404301px;}
.h2{height:170.648443px;}
.hc{height:170.856000px;}
.hb{height:170.856005px;}
.hd{height:170.856009px;}
.he{height:170.856012px;}
.h14{height:202.166022px;}
.h4{height:209.671882px;}
.h7{height:216.606452px;}
.h15{height:216.738288px;}
.h11{height:227.531257px;}
.h8{height:231.046882px;}
.h5{height:250.300799px;}
.h9{height:250.453143px;}
.h12{height:257.070018px;}
.h3{height:281.528033px;}
.ha{height:284.760009px;}
.h6{height:522.060029px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x26{left:40.705183px;}
.x25{left:109.820176px;}
.x29{left:144.769556px;}
.x2{left:152.763777px;}
.x5{left:181.639572px;}
.xc{left:185.882521px;}
.x1c{left:192.183925px;}
.x22{left:214.446185px;}
.xe{left:228.497154px;}
.x28{left:242.437201px;}
.x27{left:245.733100px;}
.x6{left:255.748344px;}
.xd{left:259.991293px;}
.x10{left:288.297679px;}
.x7{left:296.012462px;}
.x3{left:311.498807px;}
.x23{left:316.806506px;}
.x2a{left:367.361359px;}
.xb{left:406.241822px;}
.x24{left:511.973139px;}
.x1b{left:545.709145px;}
.x1e{left:646.866942px;}
.x1d{left:666.108359px;}
.x1{left:852.846461px;}
.x1f{left:1394.047226px;}
.x11{left:1472.310841px;}
.x12{left:1531.000745px;}
.x20{left:1873.766029px;}
.x8{left:1917.738536px;}
.xa{left:1923.374522px;}
.x9{left:1948.373913px;}
.x13{left:2386.626381px;}
.x15{left:2428.679389px;}
.x14{left:2436.858799px;}
.x21{left:2437.929068px;}
.x4{left:2533.439106px;}
.x2f{left:2543.724891px;}
.x2d{left:2554.436563px;}
.x2b{left:2562.165445px;}
.x2c{left:2573.569252px;}
.x30{left:2620.305095px;}
.x2e{left:2634.510414px;}
.x1a{left:2759.649889px;}
.xf{left:2773.732078px;}
.x19{left:2781.650819px;}
.x31{left:2828.770673px;}
.x17{left:3232.902599px;}
.x18{left:3301.599349px;}
.x16{left:3313.906968px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:104.000011pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128400pt;}
.ls4{letter-spacing:0.128440pt;}
.ls2{letter-spacing:0.960000pt;}
.ls1{letter-spacing:95.979159pt;}
.ls0{letter-spacing:95.988511pt;}
.wsb{word-spacing:-80.000003pt;}
.wsc{word-spacing:-58.800002pt;}
.ws8{word-spacing:-48.960003pt;}
.ws6{word-spacing:-48.960003pt;}
.ws2{word-spacing:-48.960002pt;}
.ws4{word-spacing:-48.960000pt;}
.ws7{word-spacing:-48.000003pt;}
.ws5{word-spacing:-48.000003pt;}
.ws1{word-spacing:-48.000002pt;}
.ws3{word-spacing:-48.000000pt;}
.ws0{word-spacing:-47.616002pt;}
.wsa{word-spacing:-40.000003pt;}
.ws9{word-spacing:-40.000002pt;}
.wsd{word-spacing:0.000000pt;}
._11{margin-left:-3407.331025pt;}
._10{margin-left:-3342.717331pt;}
._a{margin-left:-14.813201pt;}
._e{margin-left:-13.613242pt;}
._c{margin-left:-12.419712pt;}
._d{margin-left:-9.383189pt;}
._f{margin-left:-6.208000pt;}
._8{margin-left:-5.070145pt;}
._2{margin-left:-4.160000pt;}
._3{margin-left:-2.560000pt;}
._1{margin-left:-1.440000pt;}
._4{width:0.960000pt;}
._b{width:1.873287pt;}
._5{width:2.826667pt;}
._7{width:3.899930pt;}
._12{width:5.053449pt;}
._6{width:6.265945pt;}
._9{width:7.224179pt;}
._0{width:96.123128pt;}
.fs0{font-size:160.000005pt;}
.fsb{font-size:160.000006pt;}
.fsc{font-size:160.000011pt;}
.fs3{font-size:184.888911pt;}
.fs8{font-size:192.000000pt;}
.fs1{font-size:192.000006pt;}
.fs9{font-size:192.000010pt;}
.fsa{font-size:192.000014pt;}
.fse{font-size:224.000007pt;}
.fs6{font-size:240.000008pt;}
.fs4{font-size:256.000008pt;}
.fs2{font-size:277.333353pt;}
.fsd{font-size:293.333353pt;}
.fs7{font-size:320.000010pt;}
.fs5{font-size:586.666699pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:80.229598pt;}
.y3{bottom:101.163795pt;}
.y1{bottom:128.229596pt;}
.y4{bottom:225.982697pt;}
.y26{bottom:398.762692pt;}
.y25{bottom:481.762685pt;}
.y33{bottom:638.375316pt;}
.y32{bottom:686.375314pt;}
.y37{bottom:813.964226pt;}
.y36{bottom:880.964228pt;}
.y2d{bottom:928.985686pt;}
.y2c{bottom:1005.738889pt;}
.y35{bottom:1117.121745pt;}
.y34{bottom:1189.121753pt;}
.y2b{bottom:1214.738895pt;}
.y31{bottom:1398.150554pt;}
.y2a{bottom:1415.738902pt;}
.y30{bottom:1470.150557pt;}
.y2f{bottom:1542.150559pt;}
.y2e{bottom:1704.402944pt;}
.y3e{bottom:1890.064050pt;}
.y15{bottom:1892.415030pt;}
.y3d{bottom:1962.064052pt;}
.y14{bottom:1975.415033pt;}
.y3c{bottom:2034.064055pt;}
.y13{bottom:2058.415035pt;}
.y3b{bottom:2106.064057pt;}
.y12{bottom:2141.415048pt;}
.y3a{bottom:2178.064059pt;}
.y11{bottom:2224.415051pt;}
.y39{bottom:2250.064062pt;}
.y10{bottom:2307.415053pt;}
.y38{bottom:2322.064054pt;}
.y29{bottom:2501.645300pt;}
.y28{bottom:3105.458060pt;}
.y24{bottom:3109.037811pt;}
.y27{bottom:3152.222812pt;}
.y23{bottom:3160.394059pt;}
.y22{bottom:3238.681079pt;}
.y1c{bottom:3239.139024pt;}
.y1f{bottom:3249.534580pt;}
.y19{bottom:3268.219830pt;}
.y21{bottom:3292.270540pt;}
.y1b{bottom:3297.244248pt;}
.y16{bottom:3302.595565pt;}
.y1e{bottom:3307.183450pt;}
.y18{bottom:3325.971347pt;}
.y1a{bottom:3351.992806pt;}
.y20{bottom:3355.825203pt;}
.y1d{bottom:3368.221182pt;}
.y17{bottom:3385.785713pt;}
.yf{bottom:3484.539001pt;}
.ya{bottom:3646.737876pt;}
.y5{bottom:3677.023247pt;}
.y9{bottom:3729.737879pt;}
.y8{bottom:3812.737882pt;}
.ye{bottom:3843.595683pt;}
.y7{bottom:3895.737884pt;}
.yd{bottom:3915.595685pt;}
.y6{bottom:3978.737887pt;}
.yc{bottom:3987.595687pt;}
.yb{bottom:4219.344349pt;}
.h1{height:126.406254pt;}
.hf{height:126.560005pt;}
.h10{height:126.560009pt;}
.h13{height:128.359379pt;}
.h2{height:151.687505pt;}
.hc{height:151.872000pt;}
.hb{height:151.872005pt;}
.hd{height:151.872008pt;}
.he{height:151.872011pt;}
.h14{height:179.703131pt;}
.h4{height:186.375006pt;}
.h7{height:192.539069pt;}
.h15{height:192.656256pt;}
.h11{height:202.250006pt;}
.h8{height:205.375007pt;}
.h5{height:222.489599pt;}
.h9{height:222.625016pt;}
.h12{height:228.506682pt;}
.h3{height:250.247140pt;}
.ha{height:253.120008pt;}
.h6{height:464.053359pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x26{left:36.182385pt;}
.x25{left:97.617934pt;}
.x29{left:128.684050pt;}
.x2{left:135.790024pt;}
.x5{left:161.457397pt;}
.xc{left:165.228907pt;}
.x1c{left:170.830155pt;}
.x22{left:190.618831pt;}
.xe{left:203.108581pt;}
.x28{left:215.499734pt;}
.x27{left:218.429422pt;}
.x6{left:227.331861pt;}
.xd{left:231.103371pt;}
.x10{left:256.264604pt;}
.x7{left:263.122188pt;}
.x3{left:276.887829pt;}
.x23{left:281.605783pt;}
.x2a{left:326.543430pt;}
.xb{left:361.103842pt;}
.x24{left:455.087235pt;}
.x1b{left:485.074796pt;}
.x1e{left:574.992838pt;}
.x1d{left:592.096319pt;}
.x1{left:758.085743pt;}
.x1f{left:1239.153090pt;}
.x11{left:1308.720748pt;}
.x12{left:1360.889551pt;}
.x20{left:1665.569803pt;}
.x8{left:1704.656477pt;}
.xa{left:1709.666242pt;}
.x9{left:1731.887922pt;}
.x13{left:2121.445672pt;}
.x15{left:2158.826123pt;}
.x14{left:2166.096710pt;}
.x21{left:2167.048060pt;}
.x4{left:2251.945872pt;}
.x2f{left:2261.088792pt;}
.x2d{left:2270.610279pt;}
.x2b{left:2277.480396pt;}
.x2c{left:2287.617113pt;}
.x30{left:2329.160085pt;}
.x2e{left:2341.787035pt;}
.x1a{left:2453.022124pt;}
.xf{left:2465.539625pt;}
.x19{left:2472.578506pt;}
.x31{left:2514.462820pt;}
.x17{left:2873.691199pt;}
.x18{left:2934.754977pt;}
.x16{left:2945.695083pt;}
}




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