
    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_7f9f0231dfb773c5ee6720f6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7f9f0231dfb773c5ee6720f6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7f9f0231dfb773c5ee6720f6.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_9f5f05efb18c968485f92d85.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959500;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_ceae339c8d89d8f94702da81.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.687988;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);}
.v2{vertical-align:-10.984994px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.300480px;}
.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:-83.357999px;}
.ws1{word-spacing:-81.594000px;}
.ws5{word-spacing:-56.364255px;}
.ws2{word-spacing:-52.115475px;}
.ws4{word-spacing:-48.542085px;}
.ws3{word-spacing:-46.710007px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-7114.646335px;}
._4{margin-left:-7091.234339px;}
._f{margin-left:-4426.293299px;}
._10{margin-left:-4404.018371px;}
._1{margin-left:-3685.014480px;}
._2{margin-left:-3661.568979px;}
._a{margin-left:-3009.751286px;}
._b{margin-left:-2986.801287px;}
._6{margin-left:-2949.366874px;}
._7{margin-left:-2926.416875px;}
._18{margin-left:-2815.965536px;}
._19{margin-left:-2793.015537px;}
._12{margin-left:-2570.372447px;}
._13{margin-left:-2547.422448px;}
._16{margin-left:-2431.662647px;}
._17{margin-left:-2408.712648px;}
._1a{margin-left:-2301.659836px;}
._1b{margin-left:-2288.531213px;}
._8{margin-left:-2165.671058px;}
._9{margin-left:-2142.721059px;}
._c{margin-left:-1969.034370px;}
._d{margin-left:-1946.084371px;}
._0{margin-left:-8.368069px;}
._e{margin-left:-7.023280px;}
._14{width:1.607367px;}
._5{width:2.850938px;}
._11{width:975.840556px;}
._15{width:3390.336914px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,255,255);}
.fc0{color:rgb(255,0,255);}
.fsd{font-size:71.999997px;}
.fse{font-size:155.969994px;}
.fs7{font-size:179.955002px;}
.fsc{font-size:185.985001px;}
.fsb{font-size:195.300001px;}
.fs2{font-size:197.955001px;}
.fs5{font-size:199.676150px;}
.fs4{font-size:209.969991px;}
.fs3{font-size:215.955000px;}
.fsf{font-size:233.369995px;}
.fs8{font-size:233.550037px;}
.fs9{font-size:262.980027px;}
.fsa{font-size:311.984996px;}
.fs6{font-size:395.999984px;}
.fs1{font-size:407.970001px;}
.fs0{font-size:416.789996px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000013px;}
.y12{bottom:38.169826px;}
.y46{bottom:68.100117px;}
.y11{bottom:106.794824px;}
.y45{bottom:129.975115px;}
.y10{bottom:175.419821px;}
.y44{bottom:191.850112px;}
.y70{bottom:208.487799px;}
.yf{bottom:244.044818px;}
.y43{bottom:253.725109px;}
.y6f{bottom:262.487797px;}
.ye{bottom:312.669815px;}
.y42{bottom:315.600107px;}
.y6e{bottom:316.487795px;}
.y41{bottom:377.475104px;}
.y6d{bottom:424.487790px;}
.y40{bottom:439.350102px;}
.y62{bottom:444.362849px;}
.yd{bottom:449.919809px;}
.y6c{bottom:478.487788px;}
.y3f{bottom:501.225099px;}
.y61{bottom:508.487847px;}
.yc{bottom:518.544806px;}
.y6b{bottom:532.487786px;}
.y3e{bottom:563.100097px;}
.y60{bottom:572.612844px;}
.y6a{bottom:586.487784px;}
.yb{bottom:587.169804px;}
.y3d{bottom:624.975094px;}
.y5f{bottom:636.737841px;}
.ya{bottom:655.794801px;}
.y3c{bottom:686.850091px;}
.y69{bottom:694.487779px;}
.y5e{bottom:700.862839px;}
.y9{bottom:724.419798px;}
.y68{bottom:748.487777px;}
.y3b{bottom:748.725089px;}
.y5d{bottom:764.987836px;}
.y8{bottom:793.044795px;}
.y67{bottom:802.487775px;}
.y3a{bottom:810.600086px;}
.y5c{bottom:829.112833px;}
.y66{bottom:856.487772px;}
.y7{bottom:861.669792px;}
.y39{bottom:872.475084px;}
.y5b{bottom:893.237831px;}
.y65{bottom:910.487770px;}
.y6{bottom:930.294789px;}
.y38{bottom:934.350081px;}
.y5a{bottom:957.362828px;}
.y64{bottom:964.487768px;}
.y37{bottom:996.225078px;}
.y5{bottom:998.919786px;}
.y59{bottom:1119.662881px;}
.y71{bottom:1121.050321px;}
.y36{bottom:1121.612821px;}
.y63{bottom:1243.413056px;}
.y34{bottom:1460.287019px;}
.y33{bottom:1529.418981px;}
.y32{bottom:1598.550943px;}
.y31{bottom:1667.682905px;}
.y30{bottom:1736.814867px;}
.y2f{bottom:1805.946828px;}
.y2e{bottom:1875.078790px;}
.y2d{bottom:1944.210752px;}
.y2c{bottom:2013.342714px;}
.y2b{bottom:2082.474676px;}
.y2a{bottom:2151.606637px;}
.y29{bottom:2220.738599px;}
.y28{bottom:2289.870561px;}
.y27{bottom:2359.002523px;}
.y35{bottom:2500.368304px;}
.y58{bottom:2820.338670px;}
.y26{bottom:2870.707402px;}
.y57{bottom:2887.838667px;}
.y4c{bottom:2908.621128px;}
.y1c{bottom:2931.136247px;}
.y25{bottom:2943.832399px;}
.y56{bottom:2955.338664px;}
.y4b{bottom:2999.746139px;}
.y1b{bottom:3006.511244px;}
.y24{bottom:3016.957396px;}
.y55{bottom:3022.838662px;}
.y1a{bottom:3081.886241px;}
.y23{bottom:3090.082393px;}
.y54{bottom:3090.338659px;}
.y4a{bottom:3090.871149px;}
.y19{bottom:3157.261238px;}
.y53{bottom:3157.838656px;}
.y22{bottom:3163.207390px;}
.y49{bottom:3181.996160px;}
.y74{bottom:3200.355569px;}
.y52{bottom:3225.338653px;}
.y18{bottom:3232.636235px;}
.y21{bottom:3236.332387px;}
.y48{bottom:3273.121171px;}
.y73{bottom:3275.730566px;}
.y51{bottom:3292.838650px;}
.y17{bottom:3308.011231px;}
.y20{bottom:3309.457384px;}
.y50{bottom:3360.338648px;}
.y47{bottom:3373.305673px;}
.y1f{bottom:3382.582381px;}
.y16{bottom:3383.386228px;}
.y72{bottom:3390.966730px;}
.y4f{bottom:3427.838645px;}
.y1e{bottom:3455.707378px;}
.y15{bottom:3458.761225px;}
.y4e{bottom:3495.338642px;}
.y1d{bottom:3528.832375px;}
.y14{bottom:3534.136222px;}
.y4d{bottom:3562.838639px;}
.y3{bottom:3563.774559px;}
.y13{bottom:3665.257407px;}
.y4{bottom:3681.631099px;}
.y2{bottom:3791.024549px;}
.h10{height:54.719998px;}
.h11{height:118.537195px;}
.ha{height:136.765801px;}
.hf{height:141.348601px;}
.he{height:148.428001px;}
.h5{height:150.445801px;}
.h8{height:151.753874px;}
.h7{height:159.577193px;}
.h6{height:164.125800px;}
.h12{height:196.030796px;}
.hb{height:196.182031px;}
.hc{height:199.864820px;}
.hd{height:203.657027px;}
.h4{height:342.694801px;}
.h9{height:345.995281px;}
.h3{height:350.103597px;}
.h2{height:3887.999838px;}
.h0{height:3887.999851px;}
.h1{height:3888.000000px;}
.w1{width:5183.999784px;}
.w0{width:5184.000000px;}
.x0{left:0.000000px;}
.x1{left:1.953792px;}
.x8{left:22.897800px;}
.x9{left:24.810300px;}
.x13{left:764.813020px;}
.x12{left:765.907096px;}
.x3{left:1306.308798px;}
.xa{left:1308.165065px;}
.xc{left:1931.442796px;}
.x2{left:1933.355295px;}
.xb{left:2550.616598px;}
.x5{left:3213.722314px;}
.x4{left:3215.634814px;}
.xf{left:3552.763910px;}
.xd{left:3670.506423px;}
.xe{left:3747.642748px;}
.x6{left:4192.095425px;}
.x7{left:4250.507871px;}
.x11{left:4406.541836px;}
.x10{left:4497.441833px;}
@media print{
.v2{vertical-align:-9.764439pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.933760pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-74.095999pt;}
.ws1{word-spacing:-72.528000pt;}
.ws5{word-spacing:-50.101560pt;}
.ws2{word-spacing:-46.324867pt;}
.ws4{word-spacing:-43.148520pt;}
.ws3{word-spacing:-41.520007pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-6324.130076pt;}
._4{margin-left:-6303.319413pt;}
._f{margin-left:-3934.482932pt;}
._10{margin-left:-3914.682997pt;}
._1{margin-left:-3275.568426pt;}
._2{margin-left:-3254.727982pt;}
._a{margin-left:-2675.334477pt;}
._b{margin-left:-2654.934478pt;}
._6{margin-left:-2621.659444pt;}
._7{margin-left:-2601.259445pt;}
._18{margin-left:-2503.080476pt;}
._19{margin-left:-2482.680477pt;}
._12{margin-left:-2284.775509pt;}
._13{margin-left:-2264.375510pt;}
._16{margin-left:-2161.477908pt;}
._17{margin-left:-2141.077909pt;}
._1a{margin-left:-2045.919854pt;}
._1b{margin-left:-2034.249967pt;}
._8{margin-left:-1925.040941pt;}
._9{margin-left:-1904.640942pt;}
._c{margin-left:-1750.252773pt;}
._d{margin-left:-1729.852774pt;}
._0{margin-left:-7.438284pt;}
._e{margin-left:-6.242916pt;}
._14{width:1.428771pt;}
._5{width:2.534167pt;}
._11{width:867.413828pt;}
._15{width:3013.632812pt;}
.fsd{font-size:63.999997pt;}
.fse{font-size:138.639994pt;}
.fs7{font-size:159.960001pt;}
.fsc{font-size:165.320001pt;}
.fsb{font-size:173.600001pt;}
.fs2{font-size:175.960001pt;}
.fs5{font-size:177.489911pt;}
.fs4{font-size:186.639992pt;}
.fs3{font-size:191.960000pt;}
.fsf{font-size:207.439995pt;}
.fs8{font-size:207.600033pt;}
.fs9{font-size:233.760024pt;}
.fsa{font-size:277.319996pt;}
.fs6{font-size:351.999985pt;}
.fs1{font-size:362.640001pt;}
.fs0{font-size:370.479997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000012pt;}
.y12{bottom:33.928735pt;}
.y46{bottom:60.533437pt;}
.y11{bottom:94.928732pt;}
.y45{bottom:115.533435pt;}
.y10{bottom:155.928730pt;}
.y44{bottom:170.533433pt;}
.y70{bottom:185.322488pt;}
.yf{bottom:216.928727pt;}
.y43{bottom:225.533431pt;}
.y6f{bottom:233.322486pt;}
.ye{bottom:277.928724pt;}
.y42{bottom:280.533428pt;}
.y6e{bottom:281.322484pt;}
.y41{bottom:335.533426pt;}
.y6d{bottom:377.322480pt;}
.y40{bottom:390.533424pt;}
.y62{bottom:394.989200pt;}
.yd{bottom:399.928719pt;}
.y6c{bottom:425.322478pt;}
.y3f{bottom:445.533421pt;}
.y61{bottom:451.989197pt;}
.yc{bottom:460.928717pt;}
.y6b{bottom:473.322476pt;}
.y3e{bottom:500.533419pt;}
.y60{bottom:508.989195pt;}
.y6a{bottom:521.322474pt;}
.yb{bottom:521.928714pt;}
.y3d{bottom:555.533417pt;}
.y5f{bottom:565.989192pt;}
.ya{bottom:582.928712pt;}
.y3c{bottom:610.533415pt;}
.y69{bottom:617.322470pt;}
.y5e{bottom:622.989190pt;}
.y9{bottom:643.928709pt;}
.y68{bottom:665.322468pt;}
.y3b{bottom:665.533412pt;}
.y5d{bottom:679.989188pt;}
.y8{bottom:704.928707pt;}
.y67{bottom:713.322466pt;}
.y3a{bottom:720.533410pt;}
.y5c{bottom:736.989185pt;}
.y66{bottom:761.322464pt;}
.y7{bottom:765.928704pt;}
.y39{bottom:775.533408pt;}
.y5b{bottom:793.989183pt;}
.y65{bottom:809.322462pt;}
.y6{bottom:826.928702pt;}
.y38{bottom:830.533405pt;}
.y5a{bottom:850.989181pt;}
.y64{bottom:857.322460pt;}
.y37{bottom:885.533403pt;}
.y5{bottom:887.928699pt;}
.y59{bottom:995.255895pt;}
.y71{bottom:996.489174pt;}
.y36{bottom:996.989174pt;}
.y63{bottom:1105.256050pt;}
.y34{bottom:1298.032906pt;}
.y33{bottom:1359.483539pt;}
.y32{bottom:1420.934172pt;}
.y31{bottom:1482.384804pt;}
.y30{bottom:1543.835437pt;}
.y2f{bottom:1605.286070pt;}
.y2e{bottom:1666.736702pt;}
.y2d{bottom:1728.187335pt;}
.y2c{bottom:1789.637968pt;}
.y2b{bottom:1851.088601pt;}
.y2a{bottom:1912.539233pt;}
.y29{bottom:1973.989866pt;}
.y28{bottom:2035.440499pt;}
.y27{bottom:2096.891131pt;}
.y35{bottom:2222.549603pt;}
.y58{bottom:2506.967707pt;}
.y26{bottom:2551.739913pt;}
.y57{bottom:2566.967704pt;}
.y4c{bottom:2585.441003pt;}
.y1c{bottom:2605.454442pt;}
.y25{bottom:2616.739910pt;}
.y56{bottom:2626.967702pt;}
.y4b{bottom:2666.441012pt;}
.y1b{bottom:2672.454439pt;}
.y24{bottom:2681.739907pt;}
.y55{bottom:2686.967699pt;}
.y1a{bottom:2739.454436pt;}
.y23{bottom:2746.739905pt;}
.y54{bottom:2746.967697pt;}
.y4a{bottom:2747.441022pt;}
.y19{bottom:2806.454433pt;}
.y53{bottom:2806.967694pt;}
.y22{bottom:2811.739902pt;}
.y49{bottom:2828.441031pt;}
.y74{bottom:2844.760505pt;}
.y52{bottom:2866.967692pt;}
.y18{bottom:2873.454431pt;}
.y21{bottom:2876.739899pt;}
.y48{bottom:2909.441041pt;}
.y73{bottom:2911.760503pt;}
.y51{bottom:2926.967689pt;}
.y17{bottom:2940.454428pt;}
.y20{bottom:2941.739897pt;}
.y50{bottom:2986.967687pt;}
.y47{bottom:2998.493931pt;}
.y1f{bottom:3006.739894pt;}
.y16{bottom:3007.454425pt;}
.y72{bottom:3014.192649pt;}
.y4f{bottom:3046.967684pt;}
.y1e{bottom:3071.739891pt;}
.y15{bottom:3074.454422pt;}
.y4e{bottom:3106.967682pt;}
.y1d{bottom:3136.739889pt;}
.y14{bottom:3141.454420pt;}
.y4d{bottom:3166.967679pt;}
.y3{bottom:3167.799608pt;}
.y13{bottom:3258.006584pt;}
.y4{bottom:3272.560977pt;}
.y2{bottom:3369.799599pt;}
.h10{height:48.639998pt;}
.h11{height:105.366396pt;}
.ha{height:121.569601pt;}
.hf{height:125.643201pt;}
.he{height:131.936001pt;}
.h5{height:133.729601pt;}
.h8{height:134.892332pt;}
.h7{height:141.846394pt;}
.h6{height:145.889600pt;}
.h12{height:174.249596pt;}
.hb{height:174.384027pt;}
.hc{height:177.657618pt;}
.hd{height:181.028469pt;}
.h4{height:304.617601pt;}
.h9{height:307.551361pt;}
.h3{height:311.203197pt;}
.h2{height:3455.999856pt;}
.h0{height:3455.999868pt;}
.h1{height:3456.000000pt;}
.w1{width:4607.999808pt;}
.w0{width:4608.000000pt;}
.x0{left:0.000000pt;}
.x1{left:1.736704pt;}
.x8{left:20.353600pt;}
.x9{left:22.053600pt;}
.x13{left:679.833796pt;}
.x12{left:680.806308pt;}
.x3{left:1161.163376pt;}
.xa{left:1162.813392pt;}
.xc{left:1716.838040pt;}
.x2{left:1718.538040pt;}
.xb{left:2267.214754pt;}
.x5{left:2856.642057pt;}
.x4{left:2858.342057pt;}
.xf{left:3158.012364pt;}
.xd{left:3262.672376pt;}
.xe{left:3331.237998pt;}
.x6{left:3726.307045pt;}
.x7{left:3778.229219pt;}
.x11{left:3916.926077pt;}
.x10{left:3997.726073pt;}
}




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