
    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_63fa7ca93152f69086285226.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_b2c1fa2fafc9d73da6ccb18f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_ea0f1c12da5a598553a96158.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_fb9d25a198ec64517835e3ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:38.175325px;}
.ls7{letter-spacing:108.569110px;}
.ls1{letter-spacing:108.569732px;}
.ls6{letter-spacing:108.594629px;}
.ls3{letter-spacing:108.595157px;}
.ls2{letter-spacing:148.260563px;}
.ls4{letter-spacing:156.089629px;}
.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;}
}
.ws1{word-spacing:-52.395985px;}
.ws4{word-spacing:-33.357714px;}
.ws2{word-spacing:-27.722121px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:119.183344px;}
._8{margin-left:-3804.944731px;}
._7{margin-left:-2412.459778px;}
._5{margin-left:-2406.233125px;}
._9{margin-left:-3.474004px;}
._1{margin-left:-2.207518px;}
._3{margin-left:-1.135439px;}
._2{width:1.261439px;}
._0{width:2.522878px;}
._4{width:3.562299px;}
._a{width:12.083288px;}
._6{width:29.396118px;}
._10{width:31.578562px;}
._f{width:34.365711px;}
._e{width:41.602338px;}
._d{width:44.818575px;}
._c{width:648.460508px;}
._b{width:1106.992845px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:47.520644px;}
.fs5{font-size:95.039814px;}
.fs3{font-size:100.079860px;}
.fs4{font-size:105.119906px;}
.fs7{font-size:117.360228px;}
.fsa{font-size:125.999675px;}
.fs6{font-size:147.600504px;}
.fs9{font-size:152.640550px;}
.fs8{font-size:168.480273px;}
.fs1{font-size:189.360042px;}
.fsc{font-size:210.239811px;}
.fs2{font-size:231.840640px;}
.fs0{font-size:315.359717px;}
.y0{bottom:0.000000px;}
.y31{bottom:145.067880px;}
.y39{bottom:154.808327px;}
.y30{bottom:163.085403px;}
.y51{bottom:180.544501px;}
.y45{bottom:183.411485px;}
.yf{bottom:201.603633px;}
.y10{bottom:202.866307px;}
.y2f{bottom:213.841119px;}
.y22{bottom:216.904085px;}
.y50{bottom:220.322735px;}
.y44{bottom:234.542385px;}
.y55{bottom:246.959826px;}
.y32{bottom:248.037026px;}
.ye{bottom:253.614859px;}
.y24{bottom:256.137177px;}
.y21{bottom:256.681922px;}
.y2e{bottom:264.776968px;}
.y4f{bottom:273.237342px;}
.y18{bottom:280.429169px;}
.y4d{bottom:286.380100px;}
.y23{bottom:293.943212px;}
.y20{bottom:296.452010px;}
.y43{bottom:298.795569px;}
.y48{bottom:299.886081px;}
.yd{bottom:304.558809px;}
.y5c{bottom:308.157985px;}
.y14{bottom:313.019033px;}
.y2d{bottom:315.536547px;}
.y3f{bottom:325.627711px;}
.y17{bottom:325.805761px;}
.y4e{bottom:326.163080px;}
.y4c{bottom:326.163562px;}
.yc{bottom:336.236911px;}
.y1f{bottom:336.245303px;}
.y54{bottom:339.297955px;}
.y5b{bottom:352.255450px;}
.y47{bottom:352.800724px;}
.y35{bottom:365.945253px;}
.y28{bottom:366.304898px;}
.y2c{bottom:366.306380px;}
.yb{bottom:370.798192px;}
.y1e{bottom:376.017859px;}
.y3e{bottom:377.645655px;}
.y4b{bottom:379.078205px;}
.y3{bottom:385.022611px;}
.y5a{bottom:396.538508px;}
.y38{bottom:404.454413px;}
.ya{bottom:405.176191px;}
.y46{bottom:405.715330px;}
.y1d{bottom:415.797072px;}
.y27{bottom:417.061635px;}
.y2b{bottom:417.062041px;}
.y13{bottom:418.863805px;}
.y61{bottom:426.598102px;}
.y42{bottom:427.317392px;}
.y3d{bottom:429.663553px;}
.y53{bottom:431.998680px;}
.y59{bottom:440.647153px;}
.y16{bottom:442.979763px;}
.y1c{bottom:455.583792px;}
.y9{bottom:456.120179px;}
.y12{bottom:458.641550px;}
.y60{bottom:464.578033px;}
.y26{bottom:467.997945px;}
.y2a{bottom:468.004002px;}
.y52{bottom:471.786115px;}
.y2{bottom:473.950403px;}
.y3c{bottom:481.681497px;}
.y4a{bottom:484.916507px;}
.y58{bottom:484.919031px;}
.y8{bottom:487.798281px;}
.y41{bottom:491.578339px;}
.y1b{bottom:495.186401px;}
.y5f{bottom:502.379370px;}
.y34{bottom:511.556193px;}
.y29{bottom:518.760739px;}
.y7{bottom:522.176317px;}
.y49{bottom:524.699460px;}
.y57{bottom:529.023682px;}
.y3b{bottom:533.699442px;}
.y1a{bottom:535.321885px;}
.y5e{bottom:540.174754px;}
.y6{bottom:553.854419px;}
.y40{bottom:555.839251px;}
.y15{bottom:560.153722px;}
.y33{bottom:564.482385px;}
.y11{bottom:564.482413px;}
.y25{bottom:569.527330px;}
.y56{bottom:573.299590px;}
.y19{bottom:576.537806px;}
.y5d{bottom:578.160638px;}
.y1{bottom:582.855761px;}
.y5{bottom:588.244647px;}
.y37{bottom:648.007773px;}
.y3a{bottom:676.991440px;}
.y4{bottom:679.138719px;}
.y36{bottom:710.467770px;}
.h1a{height:34.735549px;}
.h5{height:73.154077px;}
.h6{height:76.838134px;}
.h14{height:92.100348px;}
.h1b{height:123.151840px;}
.h3a{height:125.322919px;}
.h3c{height:125.341647px;}
.h3b{height:125.341803px;}
.h39{height:125.341959px;}
.h2f{height:146.754567px;}
.h13{height:146.756158px;}
.h2a{height:146.764804px;}
.h12{height:146.766252px;}
.ha{height:146.772276px;}
.h29{height:146.777434px;}
.h17{height:146.779304px;}
.h33{height:146.781516px;}
.h18{height:146.783500px;}
.h30{height:146.789798px;}
.h28{height:146.790205px;}
.h19{height:146.792273px;}
.h36{height:146.796500px;}
.h34{height:146.797632px;}
.h32{height:146.798625px;}
.h7{height:146.807617px;}
.h9{height:146.807728px;}
.h10{height:146.808350px;}
.h15{height:146.809352px;}
.h1d{height:146.810737px;}
.h35{height:146.813607px;}
.h16{height:146.813657px;}
.h31{height:146.818430px;}
.h11{height:146.822799px;}
.h8{height:146.828666px;}
.h37{height:146.829690px;}
.h2e{height:146.839480px;}
.h1c{height:146.841297px;}
.h2c{height:151.130034px;}
.h2d{height:151.131961px;}
.h2b{height:151.142663px;}
.hf{height:151.820703px;}
.h23{height:167.519068px;}
.h20{height:167.536423px;}
.hd{height:167.547227px;}
.h21{height:167.558150px;}
.hb{height:167.573696px;}
.he{height:167.575350px;}
.h22{height:167.579562px;}
.h1f{height:167.597043px;}
.hc{height:167.601485px;}
.h3{height:188.342971px;}
.h24{height:188.362851px;}
.h25{height:188.365142px;}
.h26{height:188.367433px;}
.h27{height:188.371873px;}
.h1e{height:215.269963px;}
.h38{height:230.595402px;}
.h4{height:237.387609px;}
.h2{height:322.904944px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1b{left:95.222656px;}
.x4{left:96.477632px;}
.x11{left:108.358385px;}
.x1c{left:131.943184px;}
.x7{left:136.253746px;}
.x12{left:143.816802px;}
.x1a{left:163.805733px;}
.x15{left:167.574029px;}
.x2{left:176.927888px;}
.x13{left:197.094963px;}
.x14{left:202.857634px;}
.x1{left:204.645054px;}
.x19{left:215.100777px;}
.xc{left:311.576749px;}
.xf{left:322.742885px;}
.x8{left:339.663133px;}
.x5{left:353.883483px;}
.xb{left:366.124683px;}
.x3{left:370.075007px;}
.x18{left:407.338906px;}
.x9{left:531.173388px;}
.xd{left:604.974960px;}
.x6{left:631.436473px;}
.x10{left:643.140858px;}
.xe{left:671.214306px;}
.xa{left:672.484899px;}
.x16{left:829.256948px;}
.x17{left:857.880631px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:33.933622pt;}
.ls7{letter-spacing:96.505875pt;}
.ls1{letter-spacing:96.506428pt;}
.ls6{letter-spacing:96.528559pt;}
.ls3{letter-spacing:96.529028pt;}
.ls2{letter-spacing:131.787167pt;}
.ls4{letter-spacing:138.746337pt;}
.ws1{word-spacing:-46.574209pt;}
.ws4{word-spacing:-29.651301pt;}
.ws2{word-spacing:-24.641885pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:105.940750pt;}
._8{margin-left:-3382.173095pt;}
._7{margin-left:-2144.408692pt;}
._5{margin-left:-2138.873889pt;}
._9{margin-left:-3.088004pt;}
._1{margin-left:-1.962238pt;}
._3{margin-left:-1.009279pt;}
._2{width:1.121279pt;}
._0{width:2.242558pt;}
._4{width:3.166488pt;}
._a{width:10.740700pt;}
._6{width:26.129883pt;}
._10{width:28.069833pt;}
._f{width:30.547299pt;}
._e{width:36.979856pt;}
._d{width:39.838733pt;}
._c{width:576.409340pt;}
._b{width:983.993640pt;}
.fsb{font-size:42.240573pt;}
.fs5{font-size:84.479834pt;}
.fs3{font-size:88.959875pt;}
.fs4{font-size:93.439916pt;}
.fs7{font-size:104.320203pt;}
.fsa{font-size:111.999711pt;}
.fs6{font-size:131.200448pt;}
.fs9{font-size:135.680489pt;}
.fs8{font-size:149.760243pt;}
.fs1{font-size:168.320037pt;}
.fsc{font-size:186.879832pt;}
.fs2{font-size:206.080569pt;}
.fs0{font-size:280.319748pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:128.949226pt;}
.y39{bottom:137.607402pt;}
.y30{bottom:144.964803pt;}
.y51{bottom:160.484001pt;}
.y45{bottom:163.032431pt;}
.yf{bottom:179.203229pt;}
.y10{bottom:180.325606pt;}
.y2f{bottom:190.080995pt;}
.y22{bottom:192.803631pt;}
.y50{bottom:195.842432pt;}
.y44{bottom:208.482120pt;}
.y55{bottom:219.519845pt;}
.y32{bottom:220.477357pt;}
.ye{bottom:225.435430pt;}
.y24{bottom:227.677491pt;}
.y21{bottom:228.161709pt;}
.y2e{bottom:235.357305pt;}
.y4f{bottom:242.877638pt;}
.y18{bottom:249.270373pt;}
.y4d{bottom:254.560089pt;}
.y23{bottom:261.282855pt;}
.y20{bottom:263.512897pt;}
.y43{bottom:265.596061pt;}
.y48{bottom:266.565405pt;}
.yd{bottom:270.718942pt;}
.y5c{bottom:273.918209pt;}
.y14{bottom:278.239140pt;}
.y2d{bottom:280.476931pt;}
.y3f{bottom:289.446854pt;}
.y17{bottom:289.605121pt;}
.y4e{bottom:289.922738pt;}
.y4c{bottom:289.923166pt;}
.yc{bottom:298.877254pt;}
.y1f{bottom:298.884714pt;}
.y54{bottom:301.598182pt;}
.y5b{bottom:313.115955pt;}
.y47{bottom:313.600643pt;}
.y35{bottom:325.284669pt;}
.y28{bottom:325.604353pt;}
.y2c{bottom:325.605671pt;}
.yb{bottom:329.598393pt;}
.y1e{bottom:334.238097pt;}
.y3e{bottom:335.685027pt;}
.y4b{bottom:336.958404pt;}
.y3{bottom:342.242321pt;}
.y5a{bottom:352.478674pt;}
.y38{bottom:359.515034pt;}
.ya{bottom:360.156615pt;}
.y46{bottom:360.635849pt;}
.y1d{bottom:369.597397pt;}
.y27{bottom:370.721453pt;}
.y2b{bottom:370.721814pt;}
.y13{bottom:372.323382pt;}
.y61{bottom:379.198313pt;}
.y42{bottom:379.837682pt;}
.y3d{bottom:381.923158pt;}
.y53{bottom:383.998827pt;}
.y59{bottom:391.686358pt;}
.y16{bottom:393.759790pt;}
.y1c{bottom:404.963370pt;}
.y9{bottom:405.440159pt;}
.y12{bottom:407.681378pt;}
.y60{bottom:412.958252pt;}
.y26{bottom:415.998173pt;}
.y2a{bottom:416.003557pt;}
.y52{bottom:419.365436pt;}
.y2{bottom:421.289247pt;}
.y3c{bottom:428.161331pt;}
.y4a{bottom:431.036895pt;}
.y58{bottom:431.039139pt;}
.y8{bottom:433.598472pt;}
.y41{bottom:436.958524pt;}
.y1b{bottom:440.165690pt;}
.y5f{bottom:446.559440pt;}
.y34{bottom:454.716616pt;}
.y29{bottom:461.120657pt;}
.y7{bottom:464.156727pt;}
.y49{bottom:466.399520pt;}
.y57{bottom:470.243273pt;}
.y3b{bottom:474.399504pt;}
.y1a{bottom:475.841675pt;}
.y5e{bottom:480.155337pt;}
.y6{bottom:492.315039pt;}
.y40{bottom:494.079334pt;}
.y15{bottom:497.914419pt;}
.y33{bottom:501.762120pt;}
.y11{bottom:501.762144pt;}
.y25{bottom:506.246515pt;}
.y56{bottom:509.599636pt;}
.y19{bottom:512.478050pt;}
.y5d{bottom:513.920567pt;}
.y1{bottom:518.094009pt;}
.y5{bottom:522.884131pt;}
.y37{bottom:576.006910pt;}
.y3a{bottom:601.770169pt;}
.y4{bottom:603.678862pt;}
.y36{bottom:631.526907pt;}
.h1a{height:30.876044pt;}
.h5{height:65.025846pt;}
.h6{height:68.300564pt;}
.h14{height:81.866976pt;}
.h1b{height:109.468302pt;}
.h3a{height:111.398150pt;}
.h3c{height:111.414797pt;}
.h3b{height:111.414936pt;}
.h39{height:111.415074pt;}
.h2f{height:130.448504pt;}
.h13{height:130.449918pt;}
.h2a{height:130.457603pt;}
.h12{height:130.458891pt;}
.ha{height:130.464246pt;}
.h29{height:130.468830pt;}
.h17{height:130.470493pt;}
.h33{height:130.472459pt;}
.h18{height:130.474222pt;}
.h30{height:130.479821pt;}
.h28{height:130.480183pt;}
.h19{height:130.482021pt;}
.h36{height:130.485778pt;}
.h34{height:130.486784pt;}
.h32{height:130.487666pt;}
.h7{height:130.495660pt;}
.h9{height:130.495758pt;}
.h10{height:130.496311pt;}
.h15{height:130.497201pt;}
.h1d{height:130.498433pt;}
.h35{height:130.500984pt;}
.h16{height:130.501029pt;}
.h31{height:130.505271pt;}
.h11{height:130.509154pt;}
.h8{height:130.514370pt;}
.h37{height:130.515280pt;}
.h2e{height:130.523982pt;}
.h1c{height:130.525597pt;}
.h2c{height:134.337808pt;}
.h2d{height:134.339521pt;}
.h2b{height:134.349034pt;}
.hf{height:134.951736pt;}
.h23{height:148.905838pt;}
.h20{height:148.921265pt;}
.hd{height:148.930869pt;}
.h21{height:148.940577pt;}
.hb{height:148.954396pt;}
.he{height:148.955866pt;}
.h22{height:148.959611pt;}
.h1f{height:148.975149pt;}
.hc{height:148.979097pt;}
.h3{height:167.415975pt;}
.h24{height:167.433646pt;}
.h25{height:167.435682pt;}
.h26{height:167.437719pt;}
.h27{height:167.441665pt;}
.h1e{height:191.351078pt;}
.h38{height:204.973691pt;}
.h4{height:211.011208pt;}
.h2{height:287.026617pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1b{left:84.642361pt;}
.x4{left:85.757895pt;}
.x11{left:96.318565pt;}
.x1c{left:117.282830pt;}
.x7{left:121.114441pt;}
.x12{left:127.837157pt;}
.x1a{left:145.605096pt;}
.x15{left:148.954693pt;}
.x2{left:157.269234pt;}
.x13{left:175.195523pt;}
.x14{left:180.317897pt;}
.x1{left:181.906715pt;}
.x19{left:191.200691pt;}
.xc{left:276.957110pt;}
.xf{left:286.882565pt;}
.x8{left:301.922785pt;}
.x5{left:314.563096pt;}
.xb{left:325.444162pt;}
.x3{left:328.955561pt;}
.x18{left:362.079027pt;}
.x9{left:472.154123pt;}
.xd{left:537.755520pt;}
.x6{left:561.276865pt;}
.x10{left:571.680763pt;}
.xe{left:596.634939pt;}
.xa{left:597.764354pt;}
.x16{left:737.117287pt;}
.x17{left:762.560561pt;}
}




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