
    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_d08763f0ad07eb6bf58d81fd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_6d1bc900fab7768bac3ca1bf.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_fd7ee8b0346c3da7460ec621.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_83a3a5bece1e62c89c6fd0bf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.732000;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_990d176e2e9683f388ab729f.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_21c2a9e5a0adfd70eb16793b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.935547;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_a0501e9ce61c59b38c3f5205.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.923432px;}
.ls2{letter-spacing:1.458000px;}
.ls0{letter-spacing:2.079097px;}
.ls3{letter-spacing:908.819000px;}
.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:-48.001464px;}
.ws1{word-spacing:-27.632329px;}
.ws2{word-spacing:-21.129671px;}
.ws8{word-spacing:-16.416000px;}
.ws3{word-spacing:-14.958000px;}
.wsc{word-spacing:-14.210587px;}
.wsa{word-spacing:-13.344407px;}
.ws0{word-spacing:-11.633594px;}
.ws5{word-spacing:-10.508889px;}
.ws9{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:100.548000px;}
.ws4{word-spacing:267.012000px;}
._1e{margin-left:-9.764605px;}
._7{margin-left:-7.894257px;}
._3{margin-left:-4.719792px;}
._6{margin-left:-3.638105px;}
._4{margin-left:-2.478647px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._c{width:3.833752px;}
._e{width:5.202355px;}
._d{width:6.354857px;}
._12{width:8.262852px;}
._9{width:9.396000px;}
._a{width:10.548009px;}
._8{width:12.228948px;}
._b{width:13.343590px;}
._5{width:16.762567px;}
._19{width:18.126863px;}
._14{width:19.428288px;}
._16{width:21.053558px;}
._18{width:22.627054px;}
._15{width:23.651881px;}
._17{width:25.206328px;}
._1a{width:26.237870px;}
._1b{width:27.246190px;}
._10{width:30.780000px;}
._11{width:32.058800px;}
._f{width:34.584332px;}
._1c{width:115.685464px;}
._1d{width:208.705580px;}
._13{width:402.984000px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y7f{bottom:4.528447px;}
.y7e{bottom:22.481574px;}
.y7d{bottom:40.440562px;}
.y21{bottom:46.734370px;}
.y7c{bottom:58.393681px;}
.y20{bottom:59.015622px;}
.y1f{bottom:71.302734px;}
.y7b{bottom:76.346808px;}
.y7a{bottom:94.305797px;}
.y46{bottom:105.427729px;}
.y79{bottom:112.258922px;}
.y62{bottom:118.593743px;}
.y45{bottom:124.330019px;}
.y78{bottom:130.212044px;}
.y61{bottom:136.552732px;}
.y44{bottom:143.232368px;}
.y77{bottom:148.171032px;}
.y60{bottom:154.505859px;}
.y43{bottom:162.128858px;}
.y76{bottom:166.124155px;}
.y42{bottom:181.031207px;}
.y75{bottom:184.077282px;}
.y1d{bottom:184.078115px;}
.y5f{bottom:192.011718px;}
.y41{bottom:199.927697px;}
.y74{bottom:202.036266px;}
.y1c{bottom:202.980463px;}
.y40{bottom:218.830046px;}
.y73{bottom:219.989389px;}
.y1b{bottom:221.882802px;}
.y72{bottom:237.942516px;}
.y1a{bottom:240.779292px;}
.y5e{bottom:245.712891px;}
.y3f{bottom:251.232395px;}
.y71{bottom:255.895641px;}
.y19{bottom:259.681630px;}
.y70{bottom:273.854623px;}
.y5d{bottom:274.458984px;}
.y18{bottom:278.578120px;}
.y3e{bottom:283.628885px;}
.y6f{bottom:291.807743px;}
.y17{bottom:297.480453px;}
.y3d{bottom:302.531234px;}
.y6e{bottom:309.760871px;}
.y16{bottom:316.382802px;}
.y3c{bottom:321.427724px;}
.y6d{bottom:327.719859px;}
.y5c{bottom:330.070308px;}
.y15{bottom:335.279292px;}
.y3b{bottom:340.330073px;}
.y6c{bottom:345.672977px;}
.y5b{bottom:348.972657px;}
.y14{bottom:354.181635px;}
.y3a{bottom:359.232400px;}
.y6b{bottom:363.626105px;}
.y13{bottom:373.078104px;}
.y39{bottom:378.128890px;}
.y5a{bottom:379.623047px;}
.y6a{bottom:381.585093px;}
.y12{bottom:391.980453px;}
.y69{bottom:399.538218px;}
.y38{bottom:410.531239px;}
.y11{bottom:410.882802px;}
.y68{bottom:417.491338px;}
.y37{bottom:429.427729px;}
.y10{bottom:429.779292px;}
.y63{bottom:432.223500px;}
.y59{bottom:435.234375px;}
.y67{bottom:435.450326px;}
.y36{bottom:448.330025px;}
.y66{bottom:453.403453px;}
.yf{bottom:462.181641px;}
.y58{bottom:465.890625px;}
.y65{bottom:471.356578px;}
.y35{bottom:480.732374px;}
.y64{bottom:489.315562px;}
.ye{bottom:492.837891px;}
.y34{bottom:499.628864px;}
.y33{bottom:518.531213px;}
.y57{bottom:521.501954px;}
.y32{bottom:537.427703px;}
.y56{bottom:552.158204px;}
.y31{bottom:556.330052px;}
.yd{bottom:561.937500px;}
.yc{bottom:578.736324px;}
.y30{bottom:588.732401px;}
.yb{bottom:595.535150px;}
.y2f{bottom:607.628891px;}
.y55{bottom:607.763667px;}
.ya{bottom:616.833983px;}
.y2e{bottom:626.531240px;}
.y54{bottom:626.666016px;}
.y9{bottom:642.632812px;}
.y53{bottom:657.322266px;}
.y2d{bottom:658.927730px;}
.y2c{bottom:691.330073px;}
.y8{bottom:692.888671px;}
.y2b{bottom:710.232417px;}
.y52{bottom:712.927703px;}
.y7{bottom:713.847657px;}
.y1e{bottom:718.347657px;}
.y2a{bottom:729.128884px;}
.y51{bottom:731.830052px;}
.y50{bottom:750.732401px;}
.y6{bottom:756.158206px;}
.y29{bottom:761.531233px;}
.y4f{bottom:769.628891px;}
.y28{bottom:780.427723px;}
.y4e{bottom:788.531240px;}
.y5{bottom:793.710931px;}
.y27{bottom:799.330072px;}
.y4d{bottom:807.427730px;}
.y4c{bottom:826.330072px;}
.y4{bottom:831.269532px;}
.y26{bottom:831.732411px;}
.y4b{bottom:845.232417px;}
.y25{bottom:850.628901px;}
.y4a{bottom:864.128901px;}
.y24{bottom:869.531244px;}
.y49{bottom:883.031239px;}
.y23{bottom:888.427729px;}
.y3{bottom:899.378907px;}
.y48{bottom:901.927730px;}
.y22{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y47{bottom:974.730470px;}
.h9{height:26.244141px;}
.h5{height:27.557629px;}
.ha{height:28.048904px;}
.h1{height:30.617097px;}
.h4{height:34.993255px;}
.he{height:35.617086px;}
.hf{height:37.399182px;}
.h2{height:39.366211px;}
.h8{height:39.366277px;}
.h7{height:39.366295px;}
.hb{height:39.366301px;}
.hc{height:39.366427px;}
.hd{height:39.366451px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h10{height:502.740000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.xc{left:11.584593px;}
.xb{left:45.000609px;}
.x3{left:78.662109px;}
.x7{left:83.162104px;}
.x9{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x8{left:123.662115px;}
.xa{left:137.601562px;}
.x6{left:150.662109px;}
.x1{left:205.335938px;}
.x2{left:288.351562px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.820828pt;}
.ls2{letter-spacing:1.296000pt;}
.ls0{letter-spacing:1.848086pt;}
.ls3{letter-spacing:807.839111pt;}
.wsb{word-spacing:-42.667968pt;}
.ws1{word-spacing:-24.562070pt;}
.ws2{word-spacing:-18.781930pt;}
.ws8{word-spacing:-14.592000pt;}
.ws3{word-spacing:-13.296000pt;}
.wsc{word-spacing:-12.631633pt;}
.wsa{word-spacing:-11.861695pt;}
.ws0{word-spacing:-10.340973pt;}
.ws5{word-spacing:-9.341234pt;}
.ws9{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:89.376000pt;}
.ws4{word-spacing:237.344000pt;}
._1e{margin-left:-8.679648pt;}
._7{margin-left:-7.017117pt;}
._3{margin-left:-4.195371pt;}
._6{margin-left:-3.233871pt;}
._4{margin-left:-2.203242pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._c{width:3.407780pt;}
._e{width:4.624316pt;}
._d{width:5.648762pt;}
._12{width:7.344758pt;}
._9{width:8.352000pt;}
._a{width:9.376008pt;}
._8{width:10.870176pt;}
._b{width:11.860969pt;}
._5{width:14.900059pt;}
._19{width:16.112768pt;}
._14{width:17.269590pt;}
._16{width:18.714274pt;}
._18{width:20.112937pt;}
._15{width:21.023895pt;}
._17{width:22.405625pt;}
._1a{width:23.322551pt;}
._1b{width:24.218835pt;}
._10{width:27.360000pt;}
._11{width:28.496711pt;}
._f{width:30.741629pt;}
._1c{width:102.831524pt;}
._1d{width:185.516071pt;}
._13{width:358.208000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:4.025286pt;}
.y7e{bottom:19.983621pt;}
.y7d{bottom:35.947167pt;}
.y21{bottom:41.541662pt;}
.y7c{bottom:51.905494pt;}
.y20{bottom:52.458331pt;}
.y1f{bottom:63.380208pt;}
.y7b{bottom:67.863829pt;}
.y7a{bottom:83.827375pt;}
.y46{bottom:93.713537pt;}
.y79{bottom:99.785708pt;}
.y62{bottom:105.416661pt;}
.y45{bottom:110.515572pt;}
.y78{bottom:115.744039pt;}
.y61{bottom:121.380206pt;}
.y44{bottom:127.317660pt;}
.y77{bottom:131.707584pt;}
.y60{bottom:137.338541pt;}
.y43{bottom:144.114540pt;}
.y76{bottom:147.665915pt;}
.y42{bottom:160.916628pt;}
.y75{bottom:163.624251pt;}
.y1d{bottom:163.624991pt;}
.y5f{bottom:170.677083pt;}
.y41{bottom:177.713508pt;}
.y74{bottom:179.587792pt;}
.y1c{bottom:180.427079pt;}
.y40{bottom:194.515596pt;}
.y73{bottom:195.546123pt;}
.y1b{bottom:197.229157pt;}
.y72{bottom:211.504459pt;}
.y1a{bottom:214.026037pt;}
.y5e{bottom:218.411459pt;}
.y3f{bottom:223.317684pt;}
.y71{bottom:227.462792pt;}
.y19{bottom:230.828116pt;}
.y70{bottom:243.426331pt;}
.y5d{bottom:243.963541pt;}
.y18{bottom:247.624996pt;}
.y3e{bottom:252.114564pt;}
.y6f{bottom:259.384661pt;}
.y17{bottom:264.427069pt;}
.y3d{bottom:268.916652pt;}
.y6e{bottom:275.342996pt;}
.y16{bottom:281.229157pt;}
.y3c{bottom:285.713532pt;}
.y6d{bottom:291.306541pt;}
.y5c{bottom:293.395829pt;}
.y15{bottom:298.026037pt;}
.y3b{bottom:302.515620pt;}
.y6c{bottom:307.264869pt;}
.y5b{bottom:310.197917pt;}
.y14{bottom:314.828120pt;}
.y3a{bottom:319.317689pt;}
.y6b{bottom:323.223204pt;}
.y13{bottom:331.624981pt;}
.y39{bottom:336.114569pt;}
.y5a{bottom:337.442708pt;}
.y6a{bottom:339.186749pt;}
.y12{bottom:348.427069pt;}
.y69{bottom:355.145083pt;}
.y38{bottom:364.916657pt;}
.y11{bottom:365.229157pt;}
.y68{bottom:371.103412pt;}
.y37{bottom:381.713537pt;}
.y10{bottom:382.026037pt;}
.y63{bottom:384.198667pt;}
.y59{bottom:386.875000pt;}
.y67{bottom:387.066957pt;}
.y36{bottom:398.515577pt;}
.y66{bottom:403.025292pt;}
.yf{bottom:410.828125pt;}
.y58{bottom:414.125000pt;}
.y65{bottom:418.983625pt;}
.y35{bottom:427.317665pt;}
.y64{bottom:434.947167pt;}
.ye{bottom:438.078125pt;}
.y34{bottom:444.114545pt;}
.y33{bottom:460.916633pt;}
.y57{bottom:463.557292pt;}
.y32{bottom:477.713513pt;}
.y56{bottom:490.807292pt;}
.y31{bottom:494.515601pt;}
.yd{bottom:499.500000pt;}
.yc{bottom:514.432288pt;}
.y30{bottom:523.317689pt;}
.yb{bottom:529.364578pt;}
.y2f{bottom:540.114569pt;}
.y55{bottom:540.234371pt;}
.ya{bottom:548.296874pt;}
.y2e{bottom:556.916657pt;}
.y54{bottom:557.036459pt;}
.y9{bottom:571.229167pt;}
.y53{bottom:584.286459pt;}
.y2d{bottom:585.713537pt;}
.y2c{bottom:614.515620pt;}
.y8{bottom:615.901041pt;}
.y2b{bottom:631.317704pt;}
.y52{bottom:633.713513pt;}
.y7{bottom:634.531251pt;}
.y1e{bottom:638.531251pt;}
.y2a{bottom:648.114564pt;}
.y51{bottom:650.515601pt;}
.y50{bottom:667.317689pt;}
.y6{bottom:672.140627pt;}
.y29{bottom:676.916652pt;}
.y4f{bottom:684.114569pt;}
.y28{bottom:693.713532pt;}
.y4e{bottom:700.916657pt;}
.y5{bottom:705.520828pt;}
.y27{bottom:710.515620pt;}
.y4d{bottom:717.713537pt;}
.y4c{bottom:734.515620pt;}
.y4{bottom:738.906251pt;}
.y26{bottom:739.317699pt;}
.y4b{bottom:751.317704pt;}
.y25{bottom:756.114579pt;}
.y4a{bottom:768.114579pt;}
.y24{bottom:772.916661pt;}
.y49{bottom:784.916657pt;}
.y23{bottom:789.713537pt;}
.y3{bottom:799.447917pt;}
.y48{bottom:801.713537pt;}
.y22{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y47{bottom:866.427084pt;}
.h9{height:23.328125pt;}
.h5{height:24.495670pt;}
.ha{height:24.932359pt;}
.h1{height:27.215197pt;}
.h4{height:31.105115pt;}
.he{height:31.659632pt;}
.hf{height:33.243717pt;}
.h2{height:34.992188pt;}
.h8{height:34.992246pt;}
.h7{height:34.992262pt;}
.hb{height:34.992267pt;}
.hc{height:34.992379pt;}
.hd{height:34.992401pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h10{height:446.880000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.xc{left:10.297416pt;}
.xb{left:40.000541pt;}
.x3{left:69.921875pt;}
.x7{left:73.921871pt;}
.x9{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x8{left:109.921880pt;}
.xa{left:122.312500pt;}
.x6{left:133.921875pt;}
.x1{left:182.520833pt;}
.x2{left:256.312500pt;}
}




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