
    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_9d8b002c9d210cac3087246d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.728000;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_ff6e8e6081589d92b322ed0e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_c37ab5831fc9be1527522a2d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_373d9acbd023e51b6c11a0b7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8188ccfdba4d0cad34c1a30b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.989000;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:ff8;src:url('chunks/assets/font_ee45b4a5353ecf1b9790eece.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946000;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:ff9;src:url('chunks/assets/font_658ed546283e4ab7a0a5957c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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;}
.v1{vertical-align:13.668335px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-229.070873px;}
.ws5{word-spacing:-21.216509px;}
.ws1{word-spacing:-18.852209px;}
.ws2{word-spacing:-17.272349px;}
.ws3{word-spacing:-16.975754px;}
.ws7{word-spacing:-15.716069px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:98.654614px;}
._2{margin-left:-3.752462px;}
._3{margin-left:-2.622025px;}
._10{margin-left:-1.537541px;}
._a{width:1.650616px;}
._4{width:2.816388px;}
._0{width:3.898171px;}
._20{width:5.630570px;}
._17{width:10.622160px;}
._7{width:12.230687px;}
._1e{width:13.605632px;}
._6{width:15.224918px;}
._13{width:16.768542px;}
._21{width:19.897084px;}
._11{width:21.555753px;}
._1c{width:22.749039px;}
._9{width:25.960986px;}
._22{width:27.831927px;}
._24{width:29.085040px;}
._23{width:30.308161px;}
._19{width:32.028772px;}
._1{width:33.114946px;}
._18{width:34.390811px;}
._f{width:40.755000px;}
._c{width:49.175834px;}
._8{width:62.589228px;}
._1d{width:67.670838px;}
._12{width:75.663762px;}
._5{width:90.221679px;}
._15{width:94.944836px;}
._1b{width:101.316536px;}
._b{width:106.862670px;}
._14{width:118.916942px;}
._1a{width:132.125814px;}
._1f{width:134.083571px;}
._16{width:154.346098px;}
._e{width:168.563380px;}
._d{width:201.466154px;}
.fc4{color:transparent;}
.fc5{color:rgb(30,30,30);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(52,52,52);}
.fc0{color:rgb(180,45,27);}
.fsb{font-size:48.398033px;}
.fs7{font-size:59.984997px;}
.fs4{font-size:65.924995px;}
.fsa{font-size:65.969996px;}
.fs3{font-size:71.954996px;}
.fs9{font-size:74.969996px;}
.fs2{font-size:77.984997px;}
.fs1{font-size:83.834992px;}
.fs6{font-size:89.999996px;}
.fs5{font-size:116.144991px;}
.fs8{font-size:119.969995px;}
.fs0{font-size:390.239988px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y57{bottom:16.720235px;}
.y47{bottom:17.887499px;}
.y5{bottom:27.787859px;}
.y32{bottom:40.270426px;}
.y56{bottom:64.537629px;}
.y2b{bottom:68.851221px;}
.y3d{bottom:69.764577px;}
.y55{bottom:88.537568px;}
.y2a{bottom:89.101220px;}
.y3c{bottom:92.264576px;}
.y29{bottom:109.351219px;}
.y46{bottom:110.287507px;}
.y3b{bottom:114.764575px;}
.y45{bottom:130.537507px;}
.y3a{bottom:137.264574px;}
.y41{bottom:160.912505px;}
.y27{bottom:177.825521px;}
.y39{bottom:182.264572px;}
.y54{bottom:189.412552px;}
.y26{bottom:202.575520px;}
.y38{bottom:204.764571px;}
.y53{bottom:209.662551px;}
.y37{bottom:227.264571px;}
.y25{bottom:227.325519px;}
.y52{bottom:229.912550px;}
.y15{bottom:245.649626px;}
.y51{bottom:251.662490px;}
.y24{bottom:252.075517px;}
.y14{bottom:268.149625px;}
.y36{bottom:272.264569px;}
.y44{bottom:275.662501px;}
.y23{bottom:276.825516px;}
.y13{bottom:290.649624px;}
.y35{bottom:294.764568px;}
.y22{bottom:301.575515px;}
.y42{bottom:303.787499px;}
.y12{bottom:313.149623px;}
.y34{bottom:317.264567px;}
.y50{bottom:334.912486px;}
.y11{bottom:335.649622px;}
.y33{bottom:339.764566px;}
.y21{bottom:351.075513px;}
.y43{bottom:355.537497px;}
.y20{bottom:375.825512px;}
.y10{bottom:380.649620px;}
.y3e{bottom:381.989504px;}
.y40{bottom:386.412788px;}
.y1f{bottom:400.575511px;}
.yf{bottom:403.149619px;}
.y4d{bottom:417.912787px;}
.y48{bottom:421.821078px;}
.ye{bottom:425.649618px;}
.y4c{bottom:438.162786px;}
.yd{bottom:448.149617px;}
.y1e{bottom:450.075509px;}
.y4b{bottom:458.787725px;}
.yc{bottom:470.649616px;}
.y1d{bottom:474.825508px;}
.y4a{bottom:479.037724px;}
.y49{bottom:499.287723px;}
.y1c{bottom:499.575507px;}
.yb{bottom:515.649615px;}
.y4f{bottom:519.912698px;}
.y1b{bottom:524.325506px;}
.ya{bottom:538.149614px;}
.y4e{bottom:540.162697px;}
.y1a{bottom:549.075505px;}
.y9{bottom:560.649613px;}
.y2f{bottom:561.912781px;}
.y19{bottom:573.825504px;}
.y2e{bottom:582.162780px;}
.y8{bottom:583.149612px;}
.y18{bottom:598.575503px;}
.y7{bottom:605.649611px;}
.y31{bottom:614.787778px;}
.y6{bottom:628.149610px;}
.y17{bottom:644.479692px;}
.y30{bottom:647.010369px;}
.y28{bottom:662.500607px;}
.y16{bottom:678.229690px;}
.y3f{bottom:681.210411px;}
.y2d{bottom:718.946646px;}
.y2{bottom:1000.830587px;}
.y3{bottom:1099.834856px;}
.y4{bottom:1156.848597px;}
.y2c{bottom:1164.102201px;}
.h12{height:35.911340px;}
.hc{height:44.808793px;}
.hb{height:47.208193px;}
.h7{height:49.245972px;}
.h10{height:49.279587px;}
.h11{height:53.390607px;}
.h6{height:53.750382px;}
.he{height:59.001387px;}
.h5{height:61.374192px;}
.hf{height:62.618073px;}
.h4{height:65.978139px;}
.h9{height:68.357246px;}
.ha{height:70.829997px;}
.h8{height:91.406108px;}
.hd{height:94.416386px;}
.h3{height:278.631352px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:83.500606px;}
.x2{left:89.291333px;}
.x5{left:102.854199px;}
.x10{left:106.734984px;}
.x11{left:110.996779px;}
.xc{left:114.075787px;}
.xb{left:116.662254px;}
.x13{left:119.040529px;}
.x12{left:120.923167px;}
.x7{left:123.493846px;}
.x6{left:126.227244px;}
.x8{left:129.231932px;}
.xa{left:221.379195px;}
.x17{left:400.690266px;}
.xd{left:403.905086px;}
.xe{left:416.075343px;}
.x4{left:502.412235px;}
.x16{left:519.661122px;}
.x9{left:527.914623px;}
.xf{left:573.430451px;}
.x14{left:668.394482px;}
.x3{left:688.354381px;}
.x15{left:714.170706px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.149631pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-203.618554pt;}
.ws5{word-spacing:-18.859119pt;}
.ws1{word-spacing:-16.757519pt;}
.ws2{word-spacing:-15.353199pt;}
.ws3{word-spacing:-15.089559pt;}
.ws7{word-spacing:-13.969839pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:87.692990pt;}
._2{margin-left:-3.335522pt;}
._3{margin-left:-2.330689pt;}
._10{margin-left:-1.366703pt;}
._a{width:1.467214pt;}
._4{width:2.503456pt;}
._0{width:3.465041pt;}
._20{width:5.004951pt;}
._17{width:9.441920pt;}
._7{width:10.871722pt;}
._1e{width:12.093895pt;}
._6{width:13.533261pt;}
._13{width:14.905371pt;}
._21{width:17.686297pt;}
._11{width:19.160669pt;}
._1c{width:20.221368pt;}
._9{width:23.076432pt;}
._22{width:24.739490pt;}
._24{width:25.853369pt;}
._23{width:26.940587pt;}
._19{width:28.470019pt;}
._1{width:29.435507pt;}
._18{width:30.569610pt;}
._f{width:36.226667pt;}
._c{width:43.711853pt;}
._8{width:55.634870pt;}
._1d{width:60.151856pt;}
._12{width:67.256677pt;}
._5{width:80.197048pt;}
._15{width:84.395410pt;}
._1b{width:90.059143pt;}
._b{width:94.989040pt;}
._14{width:105.703948pt;}
._1a{width:117.445168pt;}
._1f{width:119.185397pt;}
._16{width:137.196532pt;}
._e{width:149.834115pt;}
._d{width:179.081026pt;}
.fsb{font-size:43.020474pt;}
.fs7{font-size:53.319997pt;}
.fs4{font-size:58.599996pt;}
.fsa{font-size:58.639997pt;}
.fs3{font-size:63.959997pt;}
.fs9{font-size:66.639996pt;}
.fs2{font-size:69.319997pt;}
.fs1{font-size:74.519993pt;}
.fs6{font-size:79.999997pt;}
.fs5{font-size:103.239992pt;}
.fs8{font-size:106.639996pt;}
.fs0{font-size:346.879990pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y57{bottom:14.862431pt;}
.y47{bottom:15.899999pt;}
.y5{bottom:24.700319pt;}
.y32{bottom:35.795935pt;}
.y56{bottom:57.366782pt;}
.y2b{bottom:61.201085pt;}
.y3d{bottom:62.012957pt;}
.y55{bottom:78.700061pt;}
.y2a{bottom:79.201085pt;}
.y3c{bottom:82.012957pt;}
.y29{bottom:97.201084pt;}
.y46{bottom:98.033340pt;}
.y3b{bottom:102.012956pt;}
.y45{bottom:116.033339pt;}
.y3a{bottom:122.012955pt;}
.y41{bottom:143.033338pt;}
.y27{bottom:158.067129pt;}
.y39{bottom:162.012953pt;}
.y54{bottom:168.366713pt;}
.y26{bottom:180.067128pt;}
.y38{bottom:182.012952pt;}
.y53{bottom:186.366712pt;}
.y37{bottom:202.012952pt;}
.y25{bottom:202.067128pt;}
.y52{bottom:204.366711pt;}
.y15{bottom:218.355223pt;}
.y51{bottom:223.699991pt;}
.y24{bottom:224.067127pt;}
.y14{bottom:238.355222pt;}
.y36{bottom:242.012950pt;}
.y44{bottom:245.033334pt;}
.y23{bottom:246.067126pt;}
.y13{bottom:258.355221pt;}
.y35{bottom:262.012949pt;}
.y22{bottom:268.067125pt;}
.y42{bottom:270.033333pt;}
.y12{bottom:278.355220pt;}
.y34{bottom:282.012948pt;}
.y50{bottom:297.699988pt;}
.y11{bottom:298.355220pt;}
.y33{bottom:302.012947pt;}
.y21{bottom:312.067123pt;}
.y43{bottom:316.033331pt;}
.y20{bottom:334.067122pt;}
.y10{bottom:338.355218pt;}
.y3e{bottom:339.546226pt;}
.y40{bottom:343.478034pt;}
.y1f{bottom:356.067121pt;}
.yf{bottom:358.355217pt;}
.y4d{bottom:371.478033pt;}
.y48{bottom:374.952069pt;}
.ye{bottom:378.355216pt;}
.y4c{bottom:389.478032pt;}
.yd{bottom:398.355215pt;}
.y1e{bottom:400.067119pt;}
.y4b{bottom:407.811311pt;}
.yc{bottom:418.355215pt;}
.y1d{bottom:422.067118pt;}
.y4a{bottom:425.811310pt;}
.y49{bottom:443.811310pt;}
.y1c{bottom:444.067117pt;}
.yb{bottom:458.355213pt;}
.y4f{bottom:462.144621pt;}
.y1b{bottom:466.067117pt;}
.ya{bottom:478.355212pt;}
.y4e{bottom:480.144620pt;}
.y1a{bottom:488.067116pt;}
.y9{bottom:498.355211pt;}
.y2f{bottom:499.478027pt;}
.y19{bottom:510.067115pt;}
.y2e{bottom:517.478026pt;}
.y8{bottom:518.355210pt;}
.y18{bottom:532.067114pt;}
.y7{bottom:538.355210pt;}
.y31{bottom:546.478025pt;}
.y6{bottom:558.355209pt;}
.y17{bottom:572.870837pt;}
.y30{bottom:575.120328pt;}
.y28{bottom:588.889428pt;}
.y16{bottom:602.870836pt;}
.y3f{bottom:605.520365pt;}
.y2d{bottom:639.063685pt;}
.y2{bottom:889.627189pt;}
.y3{bottom:977.630983pt;}
.y4{bottom:1028.309864pt;}
.y2c{bottom:1034.757512pt;}
.h12{height:31.921191pt;}
.hc{height:39.830038pt;}
.hb{height:41.962838pt;}
.h7{height:43.774197pt;}
.h10{height:43.804078pt;}
.h11{height:47.458317pt;}
.h6{height:47.778117pt;}
.he{height:52.445677pt;}
.h5{height:54.554838pt;}
.hf{height:55.660509pt;}
.h4{height:58.647234pt;}
.h9{height:60.761997pt;}
.ha{height:62.959997pt;}
.h8{height:81.249873pt;}
.hd{height:83.925677pt;}
.h3{height:247.672313pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:74.222761pt;}
.x2{left:79.370073pt;}
.x5{left:91.425955pt;}
.x10{left:94.875542pt;}
.x11{left:98.663804pt;}
.xc{left:101.400700pt;}
.xb{left:103.699782pt;}
.x13{left:105.813804pt;}
.x12{left:107.487260pt;}
.x7{left:109.772308pt;}
.x6{left:112.201995pt;}
.x8{left:114.872829pt;}
.xa{left:196.781506pt;}
.x17{left:356.169126pt;}
.xd{left:359.026743pt;}
.xe{left:369.844749pt;}
.x4{left:446.588653pt;}
.x16{left:461.920997pt;}
.x9{left:469.257443pt;}
.xf{left:509.715956pt;}
.x14{left:594.128428pt;}
.x3{left:611.870561pt;}
.x15{left:634.818406pt;}
}




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