
    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_b9f112e421af32e23729022a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9012febee454fcdabb6c7fe7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.963379;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_4d09a6e8f97731c75dfe5be6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.748047;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_b95d53a48b13c70f5c02194d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_2d32f887a646af3217f9db05.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_625d4a7f5e2c9c2140aa1dc5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.963867;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_a250839b9dd6eab98b892f96.woff')format("woff");}.ff7{font-family:ff7;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-7.680371px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.680371px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.089865px;}
.ls7{letter-spacing:107.972030px;}
.ls2{letter-spacing:107.972165px;}
.ls4{letter-spacing:107.986253px;}
.ls5{letter-spacing:108.000408px;}
.ls3{letter-spacing:108.000426px;}
.ls1{letter-spacing:108.000498px;}
.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;}
}
.ws3{word-spacing:-47.616003px;}
.wsa{word-spacing:-29.916001px;}
.ws0{word-spacing:-26.784001px;}
.ws8{word-spacing:-25.296000px;}
.ws7{word-spacing:-23.808002px;}
.ws1{word-spacing:-0.108000px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:78.084407px;}
.ws6{word-spacing:782.941183px;}
.ws5{word-spacing:920.790733px;}
.ws4{word-spacing:1150.918234px;}
._22{margin-left:-14.382990px;}
._20{margin-left:-10.993121px;}
._10{margin-left:-9.100019px;}
._3{margin-left:-7.992000px;}
._4{margin-left:-6.876990px;}
._13{margin-left:-5.500011px;}
._0{margin-left:-4.104000px;}
._5{margin-left:-2.724990px;}
._1{margin-left:-1.115010px;}
._18{width:1.892955px;}
._21{width:3.024000px;}
._17{width:5.064000px;}
._2{width:108.000426px;}
._14{width:328.756382px;}
._1f{width:438.287484px;}
._1a{width:494.039449px;}
._1b{width:522.455406px;}
._12{width:649.317207px;}
._1c{width:650.455210px;}
._e{width:688.117579px;}
._1d{width:707.287060px;}
._15{width:738.017681px;}
._1e{width:778.455014px;}
._f{width:810.417537px;}
._19{width:1055.702590px;}
._11{width:1060.318341px;}
._b{width:1066.703508px;}
._16{width:1143.918220px;}
._d{width:1188.018603px;}
._a{width:1200.103781px;}
._8{width:1294.503974px;}
._9{width:1322.204031px;}
._6{width:1361.104110px;}
._7{width:1399.904190px;}
._c{width:1511.104417px;}
.fc5{color:rgb(79,195,247);}
.fc4{color:rgb(0,0,255);}
.fc6{color:rgb(31,31,31);}
.fc3{color:rgb(115,115,115);}
.fc2{color:rgb(66,66,66);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:84.000000px;}
.fsb{font-size:96.000006px;}
.fs6{font-size:100.000205px;}
.fsc{font-size:102.000000px;}
.fs3{font-size:108.000003px;}
.fs8{font-size:120.000001px;}
.fs7{font-size:126.000004px;}
.fs9{font-size:127.999804px;}
.fsa{font-size:136.000206px;}
.fs1{font-size:144.000005px;}
.fs5{font-size:192.000012px;}
.fs0{font-size:216.000007px;}
.fs4{font-size:252.000008px;}
.y0{bottom:0.000000px;}
.y3b{bottom:41.490313px;}
.y3a{bottom:79.890249px;}
.y26{bottom:84.674114px;}
.y1c{bottom:91.874931px;}
.y6{bottom:109.180969px;}
.y25{bottom:119.174180px;}
.y39{bottom:147.083829px;}
.y1b{bottom:150.670189px;}
.y24{bottom:170.932880px;}
.y4a{bottom:184.870364px;}
.y38{bottom:185.483764px;}
.y5{bottom:190.540975px;}
.y6a{bottom:191.613434px;}
.y23{bottom:205.432946px;}
.y64{bottom:211.863435px;}
.y49{bottom:213.670365px;}
.y1a{bottom:219.906460px;}
.ye{bottom:225.363458px;}
.y65{bottom:227.613435px;}
.y4{bottom:228.340975px;}
.y60{bottom:235.367599px;}
.y22{bottom:239.933011px;}
.y48{bottom:242.470399px;}
.y63{bottom:248.988436px;}
.y69{bottom:252.363458px;}
.y37{bottom:252.677345px;}
.y55{bottom:255.836750px;}
.y31{bottom:260.733436px;}
.yd{bottom:262.488459px;}
.y5f{bottom:267.767578px;}
.y47{bottom:271.270400px;}
.y61{bottom:272.613437px;}
.y62{bottom:286.113437px;}
.y54{bottom:286.436762px;}
.y19{bottom:289.142675px;}
.y68{bottom:289.488460px;}
.y21{bottom:290.540233px;}
.y36{bottom:291.077280px;}
.y2b{bottom:291.918437px;}
.y46{bottom:300.070412px;}
.y14{bottom:301.998404px;}
.y30{bottom:302.358438px;}
.y32{bottom:323.238438px;}
.y20{bottom:325.040299px;}
.y3{bottom:326.081865px;}
.y45{bottom:328.870413px;}
.y13{bottom:331.248405px;}
.y5e{bottom:332.567557px;}
.y2a{bottom:335.793439px;}
.y2f{bottom:343.983439px;}
.y53{bottom:347.636753px;}
.y18{bottom:347.937922px;}
.y67{bottom:350.238439px;}
.y44{bottom:357.670426px;}
.yc{bottom:360.363439px;}
.y12{bottom:360.498406px;}
.y5d{bottom:364.967581px;}
.y35{bottom:378.154696px;}
.y52{bottom:378.236754px;}
.y29{bottom:379.668440px;}
.y7{bottom:382.213404px;}
.y2e{bottom:385.608440px;}
.y43{bottom:386.470438px;}
.y11{bottom:389.748407px;}
.y5c{bottom:397.367582px;}
.yb{bottom:397.488441px;}
.y2{bottom:400.023174px;}
.y17{bottom:406.733151px;}
.y51{bottom:408.836755px;}
.y66{bottom:410.988441px;}
.y1f{bottom:411.299087px;}
.y42{bottom:415.270427px;}
.y34{bottom:416.554632px;}
.y28{bottom:423.543441px;}
.y2d{bottom:427.233442px;}
.y5b{bottom:429.767583px;}
.ya{bottom:434.613442px;}
.y16{bottom:436.733207px;}
.y50{bottom:439.436744px;}
.y41{bottom:444.070419px;}
.y1e{bottom:445.799153px;}
.y10{bottom:448.248408px;}
.y1{bottom:465.273176px;}
.y27{bottom:467.418446px;}
.y2c{bottom:468.858443px;}
.y4f{bottom:470.036745px;}
.y9{bottom:471.738443px;}
.y40{bottom:472.870418px;}
.yf{bottom:477.498412px;}
.y33{bottom:483.747554px;}
.y5a{bottom:494.567585px;}
.y1d{bottom:501.160382px;}
.y15{bottom:505.969422px;}
.y59{bottom:526.967575px;}
.y4e{bottom:531.236742px;}
.y58{bottom:559.367576px;}
.y4d{bottom:561.836737px;}
.y3f{bottom:566.699572px;}
.y57{bottom:591.767584px;}
.y4c{bottom:592.436732px;}
.y8{bottom:594.187711px;}
.y3e{bottom:595.499564px;}
.y4b{bottom:623.036730px;}
.y56{bottom:624.167589px;}
.y3d{bottom:624.299563px;}
.y3c{bottom:750.355100px;}
.h9{height:61.195312px;}
.h3{height:63.000000px;}
.h10{height:72.046880px;}
.hb{height:72.802883px;}
.ha{height:72.851712px;}
.hf{height:77.015630px;}
.h7{height:78.679690px;}
.h4{height:81.000003px;}
.h12{height:81.052737px;}
.h11{height:81.829102px;}
.h8{height:86.642581px;}
.he{height:93.249857px;}
.hd{height:96.269532px;}
.hc{height:101.083011px;}
.h2{height:115.523441px;}
.h6{height:154.031260px;}
.h1{height:173.285162px;}
.h5{height:202.166022px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x9{left:18.451772px;}
.x10{left:21.729331px;}
.x7{left:23.214568px;}
.xd{left:44.143703px;}
.x1{left:56.250002px;}
.x2{left:64.567915px;}
.x3{left:65.861226px;}
.xb{left:73.835102px;}
.x4{left:76.553120px;}
.x6{left:80.184222px;}
.x5{left:119.861228px;}
.x16{left:124.343650px;}
.xc{left:128.748188px;}
.x17{left:130.553127px;}
.x1a{left:134.184222px;}
.x1b{left:173.861229px;}
.x18{left:184.553128px;}
.x19{left:227.861231px;}
.xe{left:384.549234px;}
.x15{left:489.620074px;}
.x8{left:548.190974px;}
.x11{left:588.741139px;}
.x12{left:601.248576px;}
.x14{left:609.389795px;}
.x13{left:642.741141px;}
.xa{left:723.611228px;}
.xf{left:724.954748px;}
@media print{
.v1{vertical-align:-6.826996pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.826996pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.079880pt;}
.ls7{letter-spacing:95.975138pt;}
.ls2{letter-spacing:95.975258pt;}
.ls4{letter-spacing:95.987780pt;}
.ls5{letter-spacing:96.000363pt;}
.ls3{letter-spacing:96.000379pt;}
.ls1{letter-spacing:96.000443pt;}
.ws3{word-spacing:-42.325336pt;}
.wsa{word-spacing:-26.592001pt;}
.ws0{word-spacing:-23.808001pt;}
.ws8{word-spacing:-22.485333pt;}
.ws7{word-spacing:-21.162668pt;}
.ws1{word-spacing:-0.096000pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:69.408362pt;}
.ws6{word-spacing:695.947718pt;}
.ws5{word-spacing:818.480652pt;}
.ws4{word-spacing:1023.038430pt;}
._22{margin-left:-12.784880pt;}
._20{margin-left:-9.771663pt;}
._10{margin-left:-8.088905pt;}
._3{margin-left:-7.104000pt;}
._4{margin-left:-6.112880pt;}
._13{margin-left:-4.888899pt;}
._0{margin-left:-3.648000pt;}
._5{margin-left:-2.422214pt;}
._1{margin-left:-0.991120pt;}
._18{width:1.682627pt;}
._21{width:2.688000pt;}
._17{width:4.501334pt;}
._2{width:96.000379pt;}
._14{width:292.227895pt;}
._1f{width:389.588875pt;}
._1a{width:439.146177pt;}
._1b{width:464.404805pt;}
._12{width:577.170851pt;}
._1c{width:578.182409pt;}
._e{width:611.660070pt;}
._1d{width:628.699609pt;}
._15{width:656.015717pt;}
._1e{width:691.960013pt;}
._f{width:720.371144pt;}
._19{width:938.402302pt;}
._11{width:942.505192pt;}
._b{width:948.180896pt;}
._16{width:1016.816195pt;}
._d{width:1056.016536pt;}
._a{width:1066.758916pt;}
._8{width:1150.670199pt;}
._9{width:1175.292472pt;}
._6{width:1209.870320pt;}
._7{width:1244.359280pt;}
._c{width:1343.203927pt;}
.fs2{font-size:74.666666pt;}
.fsb{font-size:85.333339pt;}
.fs6{font-size:88.889071pt;}
.fsc{font-size:90.666667pt;}
.fs3{font-size:96.000003pt;}
.fs8{font-size:106.666667pt;}
.fs7{font-size:112.000004pt;}
.fs9{font-size:113.777604pt;}
.fsa{font-size:120.889072pt;}
.fs1{font-size:128.000004pt;}
.fs5{font-size:170.666677pt;}
.fs0{font-size:192.000006pt;}
.fs4{font-size:224.000007pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:36.880278pt;}
.y3a{bottom:71.013554pt;}
.y26{bottom:75.265879pt;}
.y1c{bottom:81.666606pt;}
.y6{bottom:97.049750pt;}
.y25{bottom:105.932604pt;}
.y39{bottom:130.741181pt;}
.y1b{bottom:133.929057pt;}
.y24{bottom:151.940338pt;}
.y4a{bottom:164.329212pt;}
.y38{bottom:164.874457pt;}
.y5{bottom:169.369755pt;}
.y6a{bottom:170.323052pt;}
.y23{bottom:182.607063pt;}
.y64{bottom:188.323053pt;}
.y49{bottom:189.929213pt;}
.y1a{bottom:195.472409pt;}
.ye{bottom:200.323073pt;}
.y65{bottom:202.323053pt;}
.y4{bottom:202.969755pt;}
.y60{bottom:209.215644pt;}
.y22{bottom:213.273788pt;}
.y48{bottom:215.529244pt;}
.y63{bottom:221.323054pt;}
.y69{bottom:224.323074pt;}
.y37{bottom:224.602084pt;}
.y55{bottom:227.410444pt;}
.y31{bottom:231.763054pt;}
.yd{bottom:233.323074pt;}
.y5f{bottom:238.015625pt;}
.y47{bottom:241.129245pt;}
.y61{bottom:242.323055pt;}
.y62{bottom:254.323055pt;}
.y54{bottom:254.610455pt;}
.y19{bottom:257.015711pt;}
.y68{bottom:257.323075pt;}
.y21{bottom:258.257985pt;}
.y36{bottom:258.735360pt;}
.y2b{bottom:259.483055pt;}
.y46{bottom:266.729255pt;}
.y14{bottom:268.443026pt;}
.y30{bottom:268.763056pt;}
.y32{bottom:287.323056pt;}
.y20{bottom:288.924710pt;}
.y3{bottom:289.850546pt;}
.y45{bottom:292.329256pt;}
.y13{bottom:294.443026pt;}
.y5e{bottom:295.615606pt;}
.y2a{bottom:298.483057pt;}
.y2f{bottom:305.763057pt;}
.y53{bottom:309.010447pt;}
.y18{bottom:309.278153pt;}
.y67{bottom:311.323057pt;}
.y44{bottom:317.929267pt;}
.yc{bottom:320.323057pt;}
.y12{bottom:320.443027pt;}
.y5d{bottom:324.415627pt;}
.y35{bottom:336.137508pt;}
.y52{bottom:336.210448pt;}
.y29{bottom:337.483058pt;}
.y7{bottom:339.745248pt;}
.y2e{bottom:342.763058pt;}
.y43{bottom:343.529278pt;}
.y11{bottom:346.443028pt;}
.y5c{bottom:353.215628pt;}
.yb{bottom:353.323058pt;}
.y2{bottom:355.576154pt;}
.y17{bottom:361.540579pt;}
.y51{bottom:363.410449pt;}
.y66{bottom:365.323059pt;}
.y1f{bottom:365.599189pt;}
.y42{bottom:369.129269pt;}
.y34{bottom:370.270784pt;}
.y28{bottom:376.483059pt;}
.y2d{bottom:379.763059pt;}
.y5b{bottom:382.015629pt;}
.ya{bottom:386.323059pt;}
.y16{bottom:388.207295pt;}
.y50{bottom:390.610439pt;}
.y41{bottom:394.729262pt;}
.y1e{bottom:396.265914pt;}
.y10{bottom:398.443030pt;}
.y1{bottom:413.576156pt;}
.y27{bottom:415.483063pt;}
.y2c{bottom:416.763060pt;}
.y4f{bottom:417.810440pt;}
.y9{bottom:419.323060pt;}
.y40{bottom:420.329260pt;}
.yf{bottom:424.443033pt;}
.y33{bottom:429.997826pt;}
.y5a{bottom:439.615631pt;}
.y1d{bottom:445.475895pt;}
.y15{bottom:449.750597pt;}
.y59{bottom:468.415622pt;}
.y4e{bottom:472.210437pt;}
.y58{bottom:497.215623pt;}
.y4d{bottom:499.410433pt;}
.y3f{bottom:503.732953pt;}
.y57{bottom:526.015630pt;}
.y4c{bottom:526.610429pt;}
.y8{bottom:528.166854pt;}
.y3e{bottom:529.332946pt;}
.y4b{bottom:553.810427pt;}
.y56{bottom:554.815635pt;}
.y3d{bottom:554.932945pt;}
.y3c{bottom:666.982311pt;}
.h9{height:54.395833pt;}
.h3{height:56.000000pt;}
.h10{height:64.041671pt;}
.hb{height:64.713674pt;}
.ha{height:64.757077pt;}
.hf{height:68.458338pt;}
.h7{height:69.937502pt;}
.h4{height:72.000002pt;}
.h12{height:72.046877pt;}
.h11{height:72.736979pt;}
.h8{height:77.015627pt;}
.he{height:82.888762pt;}
.hd{height:85.572917pt;}
.hc{height:89.851565pt;}
.h2{height:102.687503pt;}
.h6{height:136.916675pt;}
.h1{height:154.031255pt;}
.h5{height:179.703131pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x9{left:16.401576pt;}
.x10{left:19.314961pt;}
.x7{left:20.635172pt;}
.xd{left:39.238847pt;}
.x1{left:50.000002pt;}
.x2{left:57.393702pt;}
.x3{left:58.543312pt;}
.xb{left:65.631202pt;}
.x4{left:68.047218pt;}
.x6{left:71.274864pt;}
.x5{left:106.543313pt;}
.x16{left:110.527689pt;}
.xc{left:114.442834pt;}
.x17{left:116.047224pt;}
.x1a{left:119.274864pt;}
.x1b{left:154.543315pt;}
.x18{left:164.047225pt;}
.x19{left:202.543316pt;}
.xe{left:341.821541pt;}
.x15{left:435.217844pt;}
.x8{left:487.280866pt;}
.x11{left:523.325457pt;}
.x12{left:534.443179pt;}
.x14{left:541.679817pt;}
.x13{left:571.325458pt;}
.xa{left:643.209981pt;}
.xf{left:644.404221pt;}
}




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