
    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_4ecb0b7393038ad0bc18c07b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_ca527119653976e7d199a2ad.woff')format("woff");}.ff2{font-family:ff2;line-height:0.992000;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_7201dec6be46eb00c4e8b653.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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_32cbabdd793d08adb6cba2c1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.102000;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_5782272a5161bb06775ed19a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.992000;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_a1cd1cfb4e67ac03b5356fd9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_71549670c186eb45ad47010c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.997000;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_ba0188ea32c36d4a6d80c09b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.997000;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.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;}
.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:-25.427204px;}
.ws3{word-spacing:-19.075172px;}
.ws0{word-spacing:-19.008409px;}
.ws2{word-spacing:-15.520499px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-9.553174px;}
._4{margin-left:-6.208831px;}
._3{margin-left:-4.589297px;}
._1{margin-left:-3.437199px;}
._0{margin-left:-1.564758px;}
._2{width:1.203284px;}
.fc6{color:transparent;}
.fc5{color:rgb(22,74,123);}
.fc4{color:rgb(196,149,0);}
.fc3{color:rgb(26,77,125);}
.fc1{color:rgb(209,163,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:53.986336px;}
.fs3{font-size:59.969821px;}
.fs0{font-size:66.581390px;}
.fs7{font-size:69.282463px;}
.fs9{font-size:69.822330px;}
.fsc{font-size:73.196476px;}
.fsb{font-size:73.209899px;}
.fs8{font-size:83.948753px;}
.fs2{font-size:89.662307px;}
.fs6{font-size:89.977227px;}
.fsa{font-size:97.588796px;}
.fsd{font-size:119.937062px;}
.fs1{font-size:119.939644px;}
.fs4{font-size:311.906066px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.000021px;}
.y17{bottom:3.275626px;}
.y3{bottom:4.430538px;}
.y8{bottom:4.492580px;}
.y6{bottom:4.505069px;}
.y47{bottom:4.648739px;}
.y55{bottom:4.718621px;}
.y42{bottom:4.747968px;}
.y3f{bottom:4.764351px;}
.y3b{bottom:4.820996px;}
.y37{bottom:5.803365px;}
.y52{bottom:7.432851px;}
.y50{bottom:7.616982px;}
.y5c{bottom:16.397207px;}
.y2{bottom:27.734024px;}
.y5{bottom:27.808555px;}
.y46{bottom:30.272204px;}
.y41{bottom:30.371433px;}
.y3e{bottom:30.387815px;}
.y3a{bottom:30.444461px;}
.y5b{bottom:36.642083px;}
.y3d{bottom:56.011280px;}
.y39{bottom:56.067926px;}
.y16{bottom:64.010254px;}
.y15{bottom:87.127401px;}
.y1e{bottom:135.245995px;}
.y5a{bottom:148.742512px;}
.y1d{bottom:153.241440px;}
.y59{bottom:168.987388px;}
.y1c{bottom:171.236886px;}
.y58{bottom:189.232264px;}
.y1b{bottom:189.232331px;}
.y1a{bottom:207.227777px;}
.y57{bottom:209.477140px;}
.y19{bottom:225.223222px;}
.y14{bottom:248.992167px;}
.y56{bottom:252.393987px;}
.y54{bottom:320.175007px;}
.y53{bottom:322.225888px;}
.y2f{bottom:335.942374px;}
.y7{bottom:337.095007px;}
.y2e{bottom:360.686111px;}
.y45{bottom:375.975005px;}
.y2d{bottom:388.803995px;}
.y4{bottom:402.615004px;}
.y2c{bottom:413.547732px;}
.y2b{bottom:441.665616px;}
.y40{bottom:452.655002px;}
.y44{bottom:458.053844px;}
.y2a{bottom:466.409353px;}
.y43{bottom:482.797582px;}
.y1{bottom:492.975000px;}
.y29{bottom:494.527236px;}
.y28{bottom:519.270974px;}
.y3c{bottom:531.494999px;}
.y38{bottom:534.374998px;}
.y27{bottom:547.388857px;}
.y26{bottom:572.132595px;}
.yb{bottom:587.808213px;}
.y25{bottom:603.624624px;}
.y36{bottom:625.454995px;}
.ya{bottom:629.422680px;}
.y35{bottom:697.896697px;}
.y13{bottom:704.278387px;}
.y4e{bottom:715.312699px;}
.y34{bottom:729.388726px;}
.y12{bottom:734.645702px;}
.y4d{bottom:746.804729px;}
.y33{bottom:760.880756px;}
.y11{bottom:765.013016px;}
.y4c{bottom:778.296758px;}
.y10{bottom:795.380330px;}
.y32{bottom:803.619883px;}
.y4b{bottom:809.788788px;}
.yf{bottom:825.747644px;}
.y31{bottom:835.111913px;}
.y4a{bottom:841.280817px;}
.ye{bottom:856.114958px;}
.y30{bottom:866.603942px;}
.y49{bottom:872.772847px;}
.yd{bottom:886.482272px;}
.y24{bottom:902.594774px;}
.y48{bottom:904.264876px;}
.yc{bottom:916.849586px;}
.y23{bottom:934.086803px;}
.y4f{bottom:972.134980px;}
.y51{bottom:972.494980px;}
.y22{bottom:976.660443px;}
.y21{bottom:1034.270514px;}
.y20{bottom:1068.178747px;}
.y1f{bottom:1099.670776px;}
.y18{bottom:1147.933182px;}
.h5{height:20.519999px;}
.h1d{height:22.319999px;}
.h14{height:28.799999px;}
.h1b{height:35.279999px;}
.h2{height:43.559998px;}
.h4{height:43.919998px;}
.h19{height:47.879998px;}
.hc{height:48.371757px;}
.h9{height:49.535072px;}
.ha{height:53.732960px;}
.h3{height:54.996228px;}
.h12{height:57.673245px;}
.h1a{height:60.460289px;}
.h17{height:60.471377px;}
.he{height:62.077087px;}
.hf{height:65.818340px;}
.h11{height:69.341670px;}
.h18{height:73.439997px;}
.h16{height:73.799997px;}
.h8{height:74.061065px;}
.h10{height:74.321189px;}
.h15{height:80.608345px;}
.hd{height:80.619595px;}
.h13{height:85.478366px;}
.h1c{height:99.068013px;}
.h7{height:99.070146px;}
.hb{height:236.975507px;}
.h1{height:1263.000000px;}
.h6{height:1263.374947px;}
.h0{height:1263.374968px;}
.w9{width:91.799996px;}
.w6{width:92.519996px;}
.wa{width:109.439995px;}
.w7{width:115.559995px;}
.w8{width:120.959995px;}
.wd{width:202.679992px;}
.w2{width:271.439989px;}
.wb{width:347.039986px;}
.wc{width:358.919985px;}
.w3{width:433.079982px;}
.w4{width:478.079980px;}
.w5{width:1785.374926px;}
.w0{width:1785.375000px;}
.w1{width:1785.750000px;}
.x0{left:0.000000px;}
.x23{left:1.093177px;}
.x25{left:3.995841px;}
.x2d{left:8.389669px;}
.x26{left:10.416006px;}
.xa{left:13.749168px;}
.x2c{left:17.425093px;}
.x9{left:31.608522px;}
.x2{left:48.821210px;}
.x4{left:52.379707px;}
.x31{left:70.919997px;}
.x2e{left:76.951553px;}
.x22{left:166.319993px;}
.x33{left:172.595100px;}
.x28{left:182.879992px;}
.x24{left:192.599992px;}
.x2b{left:198.719992px;}
.xe{left:249.175952px;}
.x2f{left:273.880617px;}
.xc{left:281.337958px;}
.x30{left:296.374907px;}
.xf{left:358.009734px;}
.x10{left:375.319806px;}
.x34{left:433.439982px;}
.x32{left:452.159981px;}
.x2a{left:464.649295px;}
.x27{left:480.599980px;}
.x29{left:485.087481px;}
.x8{left:501.000513px;}
.xd{left:530.919320px;}
.xb{left:689.004907px;}
.x5{left:725.759970px;}
.x6{left:737.026910px;}
.x3{left:745.919969px;}
.x1{left:825.119966px;}
.x7{left:830.044384px;}
.x12{left:848.032244px;}
.x1d{left:886.272565px;}
.x20{left:955.554968px;}
.x1e{left:962.888100px;}
.x21{left:978.049258px;}
.x1f{left:985.382390px;}
.x35{left:989.759155px;}
.x36{left:993.252703px;}
.x11{left:1138.781036px;}
.x17{left:1307.673692px;}
.x1c{left:1322.962791px;}
.x15{left:1356.686677px;}
.x19{left:1358.321029px;}
.x1a{left:1361.835765px;}
.x1b{left:1386.684944px;}
.x14{left:1390.269974px;}
.x13{left:1392.800584px;}
.x16{left:1400.480281px;}
.x18{left:1434.010857px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-22.601959pt;}
.ws3{word-spacing:-16.955709pt;}
.ws0{word-spacing:-16.896364pt;}
.ws2{word-spacing:-13.795999pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-8.491710pt;}
._4{margin-left:-5.518961pt;}
._3{margin-left:-4.079375pt;}
._1{margin-left:-3.055288pt;}
._0{margin-left:-1.390896pt;}
._2{width:1.069586pt;}
.fs5{font-size:47.987854pt;}
.fs3{font-size:53.306508pt;}
.fs0{font-size:59.183457pt;}
.fs7{font-size:61.584412pt;}
.fs9{font-size:62.064294pt;}
.fsc{font-size:65.063535pt;}
.fsb{font-size:65.075466pt;}
.fs8{font-size:74.621114pt;}
.fs2{font-size:79.699828pt;}
.fs6{font-size:79.979757pt;}
.fsa{font-size:86.745596pt;}
.fsd{font-size:106.610722pt;}
.fs1{font-size:106.613016pt;}
.fs4{font-size:277.249837pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.000018pt;}
.y17{bottom:2.911667pt;}
.y3{bottom:3.938256pt;}
.y8{bottom:3.993404pt;}
.y6{bottom:4.004506pt;}
.y47{bottom:4.132213pt;}
.y55{bottom:4.194330pt;}
.y42{bottom:4.220416pt;}
.y3f{bottom:4.234978pt;}
.y3b{bottom:4.285330pt;}
.y37{bottom:5.158547pt;}
.y52{bottom:6.606979pt;}
.y50{bottom:6.770651pt;}
.y5c{bottom:14.575295pt;}
.y2{bottom:24.652466pt;}
.y5{bottom:24.718716pt;}
.y46{bottom:26.908626pt;}
.y41{bottom:26.996829pt;}
.y3e{bottom:27.011391pt;}
.y3a{bottom:27.061743pt;}
.y5b{bottom:32.570741pt;}
.y3d{bottom:49.787805pt;}
.y39{bottom:49.838156pt;}
.y16{bottom:56.898004pt;}
.y15{bottom:77.446579pt;}
.y1e{bottom:120.218662pt;}
.y5a{bottom:132.215566pt;}
.y1d{bottom:136.214614pt;}
.y59{bottom:150.211011pt;}
.y1c{bottom:152.210565pt;}
.y58{bottom:168.206457pt;}
.y1b{bottom:168.206517pt;}
.y1a{bottom:184.202468pt;}
.y57{bottom:186.201902pt;}
.y19{bottom:200.198420pt;}
.y14{bottom:221.326371pt;}
.y56{bottom:224.350210pt;}
.y54{bottom:284.600007pt;}
.y53{bottom:286.423012pt;}
.y2f{bottom:298.615443pt;}
.y7{bottom:299.640006pt;}
.y2e{bottom:320.609877pt;}
.y45{bottom:334.200004pt;}
.y2d{bottom:345.603551pt;}
.y4{bottom:357.880003pt;}
.y2c{bottom:367.597984pt;}
.y2b{bottom:392.591658pt;}
.y40{bottom:402.360002pt;}
.y44{bottom:407.158973pt;}
.y2a{bottom:414.586092pt;}
.y43{bottom:429.153406pt;}
.y1{bottom:438.200000pt;}
.y29{bottom:439.579766pt;}
.y28{bottom:461.574199pt;}
.y3c{bottom:472.439999pt;}
.y38{bottom:474.999999pt;}
.y27{bottom:486.567873pt;}
.y26{bottom:508.562306pt;}
.yb{bottom:522.496189pt;}
.y25{bottom:536.555221pt;}
.y36{bottom:555.959995pt;}
.ya{bottom:559.486827pt;}
.y35{bottom:620.352619pt;}
.y13{bottom:626.025233pt;}
.y4e{bottom:635.833511pt;}
.y34{bottom:648.345534pt;}
.y12{bottom:653.018401pt;}
.y4d{bottom:663.826426pt;}
.y33{bottom:676.338449pt;}
.y11{bottom:680.011569pt;}
.y4c{bottom:691.819341pt;}
.y10{bottom:707.004738pt;}
.y32{bottom:714.328785pt;}
.y4b{bottom:719.812256pt;}
.yf{bottom:733.997906pt;}
.y31{bottom:742.321700pt;}
.y4a{bottom:747.805171pt;}
.ye{bottom:760.991074pt;}
.y30{bottom:770.314615pt;}
.y49{bottom:775.798086pt;}
.yd{bottom:787.984242pt;}
.y24{bottom:802.306466pt;}
.y48{bottom:803.791001pt;}
.yc{bottom:814.977410pt;}
.y23{bottom:830.299381pt;}
.y4f{bottom:864.119982pt;}
.y51{bottom:864.439982pt;}
.y22{bottom:868.142616pt;}
.y21{bottom:919.351568pt;}
.y20{bottom:949.492219pt;}
.y1f{bottom:977.485135pt;}
.y18{bottom:1020.385051pt;}
.h5{height:18.239999pt;}
.h1d{height:19.839999pt;}
.h14{height:25.599999pt;}
.h1b{height:31.359999pt;}
.h2{height:38.719998pt;}
.h4{height:39.039998pt;}
.h19{height:42.559998pt;}
.hc{height:42.997118pt;}
.h9{height:44.031175pt;}
.ha{height:47.762631pt;}
.h3{height:48.885536pt;}
.h12{height:51.265107pt;}
.h1a{height:53.742480pt;}
.h17{height:53.752335pt;}
.he{height:55.179633pt;}
.hf{height:58.505191pt;}
.h11{height:61.637040pt;}
.h18{height:65.279997pt;}
.h16{height:65.599997pt;}
.h8{height:65.832058pt;}
.h10{height:66.063280pt;}
.h15{height:71.651863pt;}
.hd{height:71.661863pt;}
.h13{height:75.980769pt;}
.h1c{height:88.060456pt;}
.h7{height:88.062352pt;}
.hb{height:210.644895pt;}
.h1{height:1122.666667pt;}
.h6{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w9{width:81.599997pt;}
.w6{width:82.239997pt;}
.wa{width:97.279996pt;}
.w7{width:102.719996pt;}
.w8{width:107.519996pt;}
.wd{width:180.159992pt;}
.w2{width:241.279990pt;}
.wb{width:308.479987pt;}
.wc{width:319.039987pt;}
.w3{width:384.959984pt;}
.w4{width:424.959982pt;}
.w5{width:1586.999934pt;}
.w0{width:1587.000000pt;}
.w1{width:1587.333333pt;}
.x0{left:0.000000pt;}
.x23{left:0.971713pt;}
.x25{left:3.551858pt;}
.x2d{left:7.457484pt;}
.x26{left:9.258672pt;}
.xa{left:12.221483pt;}
.x2c{left:15.488972pt;}
.x9{left:28.096464pt;}
.x2{left:43.396631pt;}
.x4{left:46.559740pt;}
.x31{left:63.039997pt;}
.x2e{left:68.401381pt;}
.x22{left:147.839994pt;}
.x33{left:153.417867pt;}
.x28{left:162.559993pt;}
.x24{left:171.199993pt;}
.x2b{left:176.639993pt;}
.xe{left:221.489735pt;}
.x2f{left:243.449437pt;}
.xc{left:250.078185pt;}
.x30{left:263.444362pt;}
.xf{left:318.230875pt;}
.x10{left:333.617606pt;}
.x34{left:385.279984pt;}
.x32{left:401.919983pt;}
.x2a{left:413.021595pt;}
.x27{left:427.199982pt;}
.x29{left:431.188872pt;}
.x8{left:445.333789pt;}
.xd{left:471.928285pt;}
.xb{left:612.448806pt;}
.x5{left:645.119973pt;}
.x6{left:655.135032pt;}
.x3{left:663.039972pt;}
.x1{left:733.439969pt;}
.x7{left:737.817230pt;}
.x12{left:753.806439pt;}
.x1d{left:787.797836pt;}
.x20{left:849.382194pt;}
.x1e{left:855.900533pt;}
.x21{left:869.377118pt;}
.x1f{left:875.895457pt;}
.x35{left:879.785915pt;}
.x36{left:882.891291pt;}
.x11{left:1012.249809pt;}
.x17{left:1162.376615pt;}
.x1c{left:1175.966925pt;}
.x15{left:1205.943713pt;}
.x19{left:1207.396470pt;}
.x1a{left:1210.520680pt;}
.x1b{left:1232.608839pt;}
.x14{left:1235.795533pt;}
.x13{left:1238.044963pt;}
.x16{left:1244.871361pt;}
.x18{left:1274.676317pt;}
}




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