
    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_545209797d356109cc5b71ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_6c0c5cf436530efa8294af6e.woff2')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_4ffcf5719374ae3de2fbd3f1.woff2')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_c43965449b425f843bcf71e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_ad37fad45e8470884b4f582c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925293;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_c2c79c9307f331001c2f3ecd.woff2')format("woff");}.ff6{font-family:ff6;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.909192px;}
.ls2{letter-spacing:1.476000px;}
.ls4{letter-spacing:16.032489px;}
.ls3{letter-spacing:931.319000px;}
.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;}
}
.wsf{word-spacing:-48.001464px;}
.ws1{word-spacing:-27.632329px;}
.ws4{word-spacing:-21.129671px;}
.ws5{word-spacing:-14.958000px;}
.wse{word-spacing:-14.448441px;}
.wsd{word-spacing:-14.210587px;}
.ws10{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.wsa{word-spacing:-10.508889px;}
.wsb{word-spacing:0.000000px;}
.ws3{word-spacing:3.248657px;}
.ws2{word-spacing:5.112464px;}
.wsc{word-spacing:100.548000px;}
.ws7{word-spacing:284.472000px;}
.ws9{word-spacing:285.012000px;}
.ws6{word-spacing:343.728000px;}
.ws8{word-spacing:372.129192px;}
._4{margin-left:-5.140898px;}
._c{margin-left:-3.330070px;}
._3{margin-left:-2.203242px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._b{width:3.810053px;}
._9{width:5.364334px;}
._7{width:6.535198px;}
._5{width:8.502504px;}
._a{width:9.793773px;}
._19{width:10.906458px;}
._e{width:12.247835px;}
._1a{width:13.261333px;}
._8{width:16.636453px;}
._6{width:18.714826px;}
._d{width:20.457219px;}
._18{width:115.830040px;}
._17{width:299.484000px;}
._11{width:348.444000px;}
._16{width:375.984000px;}
._14{width:415.269756px;}
._13{width:433.265256px;}
._1b{width:525.352819px;}
._15{width:531.374616px;}
._f{width:540.562140px;}
._10{width:542.736756px;}
._12{width:626.161140px;}
.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;}
.fs8{font-size:55.678710px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y27{bottom:46.734370px;}
.y26{bottom:59.015622px;}
.y25{bottom:71.302734px;}
.y5a{bottom:94.763634px;}
.y62{bottom:97.746067px;}
.y4d{bottom:100.031207px;}
.y59{bottom:113.660124px;}
.y61{bottom:116.642558px;}
.y4c{bottom:118.927697px;}
.y58{bottom:132.562473px;}
.y60{bottom:135.544906px;}
.y4b{bottom:137.830046px;}
.y57{bottom:151.464822px;}
.y4a{bottom:156.732395px;}
.y5f{bottom:167.947255px;}
.y20{bottom:169.915973px;}
.y49{bottom:175.628885px;}
.y6b{bottom:176.800782px;}
.y56{bottom:183.861312px;}
.y1f{bottom:188.812463px;}
.y55{bottom:202.763661px;}
.y6a{bottom:207.457032px;}
.y1e{bottom:207.714812px;}
.y48{bottom:208.031234px;}
.y65{bottom:209.941405px;}
.y54{bottom:221.660151px;}
.y64{bottom:226.740237px;}
.y1d{bottom:240.117161px;}
.y47{bottom:240.427724px;}
.y53{bottom:240.562473px;}
.y63{bottom:248.039063px;}
.y1c{bottom:259.013651px;}
.y46{bottom:259.330073px;}
.y52{bottom:259.464822px;}
.y69{bottom:263.062500px;}
.y1b{bottom:277.916000px;}
.y45{bottom:278.232395px;}
.y51{bottom:278.361312px;}
.y68{bottom:293.718750px;}
.y1a{bottom:296.812490px;}
.y44{bottom:297.128885px;}
.y50{bottom:297.263661px;}
.y19{bottom:315.714839px;}
.y43{bottom:329.531234px;}
.y18{bottom:334.617182px;}
.y5e{bottom:339.257811px;}
.y42{bottom:348.427724px;}
.y67{bottom:349.330078px;}
.y17{bottom:353.513667px;}
.y5d{bottom:356.056643px;}
.y41{bottom:367.330073px;}
.y16{bottom:372.416016px;}
.y5c{bottom:372.855475px;}
.y66{bottom:379.986328px;}
.y40{bottom:386.232411px;}
.y5b{bottom:394.160157px;}
.y15{bottom:403.072266px;}
.y3f{bottom:405.128901px;}
.y6f{bottom:412.318500px;}
.y81{bottom:416.560547px;}
.y3e{bottom:424.031234px;}
.y80{bottom:433.359371px;}
.y6e{bottom:447.439451px;}
.y7f{bottom:450.158204px;}
.y3d{bottom:456.427724px;}
.y6d{bottom:464.238283px;}
.y7e{bottom:467.097656px;}
.y71{bottom:468.146343px;}
.y14{bottom:472.171875px;}
.y3c{bottom:475.330073px;}
.y7d{bottom:484.037109px;}
.y6c{bottom:485.537109px;}
.y13{bottom:488.970701px;}
.y3b{bottom:494.232405px;}
.y70{bottom:498.802593px;}
.y12{bottom:505.769528px;}
.y82{bottom:509.847657px;}
.y7c{bottom:512.097657px;}
.y3a{bottom:513.128895px;}
.y11{bottom:522.568354px;}
.y39{bottom:532.031244px;}
.y10{bottom:543.867187px;}
.y38{bottom:550.927649px;}
.y7b{bottom:558.808593px;}
.yf{bottom:569.671875px;}
.y37{bottom:583.329997px;}
.y7a{bottom:614.179681px;}
.y36{bottom:615.732347px;}
.ye{bottom:619.921894px;}
.y79{bottom:632.132808px;}
.yd{bottom:633.152358px;}
.y35{bottom:634.628837px;}
.yc{bottom:646.382822px;}
.y78{bottom:650.091796px;}
.y34{bottom:653.531185px;}
.yb{bottom:659.613286px;}
.y77{bottom:668.044919px;}
.y33{bottom:672.427676px;}
.ya{bottom:672.843750px;}
.y76{bottom:685.998046px;}
.y9{bottom:693.802729px;}
.y24{bottom:698.302731px;}
.y32{bottom:704.830025px;}
.y8{bottom:712.998046px;}
.y23{bottom:717.498039px;}
.y75{bottom:723.509766px;}
.y31{bottom:723.732373px;}
.y7{bottom:732.199217px;}
.y22{bottom:736.699215px;}
.y30{bottom:742.628864px;}
.y6{bottom:751.400391px;}
.y21{bottom:755.900391px;}
.y2f{bottom:761.531213px;}
.y74{bottom:777.210938px;}
.y5{bottom:793.710931px;}
.y2e{bottom:793.927703px;}
.y73{bottom:805.957032px;}
.y2d{bottom:812.830052px;}
.y4{bottom:831.269532px;}
.y2c{bottom:831.732401px;}
.y2b{bottom:850.628891px;}
.y72{bottom:861.568359px;}
.y2a{bottom:869.531239px;}
.y4f{bottom:883.031239px;}
.y3{bottom:899.378907px;}
.y29{bottom:901.927730px;}
.y28{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y4e{bottom:974.730470px;}
.h8{height:28.048904px;}
.h7{height:32.273438px;}
.h5{height:33.888685px;}
.hd{height:34.946378px;}
.hc{height:35.617086px;}
.h1{height:37.651031px;}
.h10{height:40.535623px;}
.h4{height:43.032562px;}
.hf{height:45.991224px;}
.h2{height:48.410156px;}
.ha{height:48.410222px;}
.hb{height:48.410264px;}
.h9{height:48.410498px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.he{height:522.645000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x3{left:78.662109px;}
.xa{left:83.162104px;}
.xb{left:86.537109px;}
.xd{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xf{left:101.162109px;}
.x9{left:102.287123px;}
.xe{left:123.662109px;}
.x6{left:167.595704px;}
.x7{left:169.787114px;}
.x8{left:173.361338px;}
.x1{left:205.335938px;}
.xc{left:216.914062px;}
.x10{left:285.662109px;}
.x2{left:288.351562px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.808171pt;}
.ls2{letter-spacing:1.312000pt;}
.ls4{letter-spacing:14.251101pt;}
.ls3{letter-spacing:827.839111pt;}
.wsf{word-spacing:-42.667968pt;}
.ws1{word-spacing:-24.562070pt;}
.ws4{word-spacing:-18.781930pt;}
.ws5{word-spacing:-13.296000pt;}
.wse{word-spacing:-12.843058pt;}
.wsd{word-spacing:-12.631633pt;}
.ws10{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.wsa{word-spacing:-9.341234pt;}
.wsb{word-spacing:0.000000pt;}
.ws3{word-spacing:2.887695pt;}
.ws2{word-spacing:4.544412pt;}
.wsc{word-spacing:89.376000pt;}
.ws7{word-spacing:252.864000pt;}
.ws9{word-spacing:253.344000pt;}
.ws6{word-spacing:305.536000pt;}
.ws8{word-spacing:330.781504pt;}
._4{margin-left:-4.569688pt;}
._c{margin-left:-2.960063pt;}
._3{margin-left:-1.958438pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._b{width:3.386714pt;}
._9{width:4.768297pt;}
._7{width:5.809065pt;}
._5{width:7.557781pt;}
._a{width:8.705576pt;}
._19{width:9.694629pt;}
._e{width:10.886965pt;}
._1a{width:11.787852pt;}
._8{width:14.787959pt;}
._6{width:16.635401pt;}
._d{width:18.184194pt;}
._18{width:102.960035pt;}
._17{width:266.208000pt;}
._11{width:309.728000pt;}
._16{width:334.208000pt;}
._14{width:369.128672pt;}
._13{width:385.124672pt;}
._1b{width:466.980284pt;}
._15{width:472.332992pt;}
._f{width:480.499680pt;}
._10{width:482.432672pt;}
._12{width:556.587680pt;}
.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;}
.fs8{font-size:49.492187pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:41.541662pt;}
.y26{bottom:52.458331pt;}
.y25{bottom:63.380208pt;}
.y5a{bottom:84.234341pt;}
.y62{bottom:86.885393pt;}
.y4d{bottom:88.916628pt;}
.y59{bottom:101.031221pt;}
.y61{bottom:103.682273pt;}
.y4c{bottom:105.713508pt;}
.y58{bottom:117.833309pt;}
.y60{bottom:120.484361pt;}
.y4b{bottom:122.515596pt;}
.y57{bottom:134.635397pt;}
.y4a{bottom:139.317684pt;}
.y5f{bottom:149.286449pt;}
.y20{bottom:151.036420pt;}
.y49{bottom:156.114564pt;}
.y6b{bottom:157.156251pt;}
.y56{bottom:163.432277pt;}
.y1f{bottom:167.833300pt;}
.y55{bottom:180.234365pt;}
.y6a{bottom:184.406251pt;}
.y1e{bottom:184.635388pt;}
.y48{bottom:184.916652pt;}
.y65{bottom:186.614582pt;}
.y54{bottom:197.031245pt;}
.y64{bottom:201.546877pt;}
.y1d{bottom:213.437476pt;}
.y47{bottom:213.713532pt;}
.y53{bottom:213.833309pt;}
.y63{bottom:220.479167pt;}
.y1c{bottom:230.234356pt;}
.y46{bottom:230.515620pt;}
.y52{bottom:230.635397pt;}
.y69{bottom:233.833333pt;}
.y1b{bottom:247.036444pt;}
.y45{bottom:247.317684pt;}
.y51{bottom:247.432277pt;}
.y68{bottom:261.083333pt;}
.y1a{bottom:263.833324pt;}
.y44{bottom:264.114564pt;}
.y50{bottom:264.234365pt;}
.y19{bottom:280.635412pt;}
.y43{bottom:292.916652pt;}
.y18{bottom:297.437495pt;}
.y5e{bottom:301.562498pt;}
.y42{bottom:309.713532pt;}
.y67{bottom:310.515625pt;}
.y17{bottom:314.234371pt;}
.y5d{bottom:316.494794pt;}
.y41{bottom:326.515620pt;}
.y16{bottom:331.036459pt;}
.y5c{bottom:331.427089pt;}
.y66{bottom:337.765625pt;}
.y40{bottom:343.317699pt;}
.y5b{bottom:350.364584pt;}
.y15{bottom:358.286459pt;}
.y3f{bottom:360.114579pt;}
.y6f{bottom:366.505333pt;}
.y81{bottom:370.276041pt;}
.y3e{bottom:376.916652pt;}
.y80{bottom:385.208330pt;}
.y6e{bottom:397.723956pt;}
.y7f{bottom:400.140626pt;}
.y3d{bottom:405.713532pt;}
.y6d{bottom:412.656252pt;}
.y7e{bottom:415.197917pt;}
.y71{bottom:416.130083pt;}
.y14{bottom:419.708333pt;}
.y3c{bottom:422.515620pt;}
.y7d{bottom:430.255208pt;}
.y6c{bottom:431.588541pt;}
.y13{bottom:434.640623pt;}
.y3b{bottom:439.317693pt;}
.y70{bottom:443.380083pt;}
.y12{bottom:449.572913pt;}
.y82{bottom:453.197917pt;}
.y7c{bottom:455.197917pt;}
.y3a{bottom:456.114573pt;}
.y11{bottom:464.505204pt;}
.y39{bottom:472.916661pt;}
.y10{bottom:483.437500pt;}
.y38{bottom:489.713465pt;}
.y7b{bottom:496.718749pt;}
.yf{bottom:506.375000pt;}
.y37{bottom:518.515553pt;}
.y7a{bottom:545.937494pt;}
.y36{bottom:547.317641pt;}
.ye{bottom:551.041683pt;}
.y79{bottom:561.895829pt;}
.yd{bottom:562.802096pt;}
.y35{bottom:564.114521pt;}
.yc{bottom:574.562508pt;}
.y78{bottom:577.859375pt;}
.y34{bottom:580.916609pt;}
.yb{bottom:586.322921pt;}
.y77{bottom:593.817706pt;}
.y33{bottom:597.713489pt;}
.ya{bottom:598.083333pt;}
.y76{bottom:609.776041pt;}
.y9{bottom:616.713537pt;}
.y24{bottom:620.713539pt;}
.y32{bottom:626.515577pt;}
.y8{bottom:633.776041pt;}
.y23{bottom:637.776035pt;}
.y75{bottom:643.119792pt;}
.y31{bottom:643.317665pt;}
.y7{bottom:650.843749pt;}
.y22{bottom:654.843747pt;}
.y30{bottom:660.114545pt;}
.y6{bottom:667.911459pt;}
.y21{bottom:671.911459pt;}
.y2f{bottom:676.916633pt;}
.y74{bottom:690.854167pt;}
.y5{bottom:705.520828pt;}
.y2e{bottom:705.713513pt;}
.y73{bottom:716.406251pt;}
.y2d{bottom:722.515601pt;}
.y4{bottom:738.906251pt;}
.y2c{bottom:739.317689pt;}
.y2b{bottom:756.114569pt;}
.y72{bottom:765.838541pt;}
.y2a{bottom:772.916657pt;}
.y4f{bottom:784.916657pt;}
.y3{bottom:799.447917pt;}
.y29{bottom:801.713537pt;}
.y28{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y4e{bottom:866.427084pt;}
.h8{height:24.932359pt;}
.h7{height:28.687500pt;}
.h5{height:30.123276pt;}
.hd{height:31.063447pt;}
.hc{height:31.659632pt;}
.h1{height:33.467583pt;}
.h10{height:36.031665pt;}
.h4{height:38.251167pt;}
.hf{height:40.881088pt;}
.h2{height:43.031250pt;}
.ha{height:43.031309pt;}
.hb{height:43.031346pt;}
.h9{height:43.031554pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.he{height:464.573333pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x3{left:69.921875pt;}
.xa{left:73.921871pt;}
.xb{left:76.921875pt;}
.xd{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xf{left:89.921875pt;}
.x9{left:90.921887pt;}
.xe{left:109.921874pt;}
.x6{left:148.973959pt;}
.x7{left:150.921879pt;}
.x8{left:154.098967pt;}
.x1{left:182.520833pt;}
.xc{left:192.812500pt;}
.x10{left:253.921875pt;}
.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; }
  