
    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_60e9b26173b31b6b6623dfe8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.771000;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_5e9a46bd17d9c7f230a685f4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_8989cf4b4689eb73348437d7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.006348;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_49a5562a30371e7da7572afb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.689453;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_55f5d045b11f2275f04ae958.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_cd5d45a66518260d094b9473.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a3200d9f84e4a17bf9d58f57.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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);}
.v3{vertical-align:-49.320000px;}
.v2{vertical-align:-43.368000px;}
.v1{vertical-align:-39.630000px;}
.v4{vertical-align:-4.248000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008904px;}
.ls4{letter-spacing:0.168036px;}
.ls6{letter-spacing:0.230028px;}
.ls5{letter-spacing:0.339012px;}
.ls7{letter-spacing:139.017600px;}
.ls3{letter-spacing:148.565556px;}
.ls2{letter-spacing:153.414378px;}
.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;}
}
.ws8{word-spacing:-158.378400px;}
.ws6{word-spacing:-115.210800px;}
.ws2{word-spacing:-100.821600px;}
.wsb{word-spacing:-93.578400px;}
.ws1{word-spacing:-65.534040px;}
.ws9{word-spacing:-53.188986px;}
.ws5{word-spacing:-49.924680px;}
.ws7{word-spacing:-46.545972px;}
.ws4{word-spacing:-43.202028px;}
.ws0{word-spacing:-0.252054px;}
.wse{word-spacing:-0.144054px;}
.ws3{word-spacing:0.000000px;}
.wsd{word-spacing:1659.114948px;}
.wsa{word-spacing:1702.533384px;}
.wsc{word-spacing:1735.527384px;}
._2{margin-left:-25.266168px;}
._6{margin-left:-9.357840px;}
._9{margin-left:-7.995888px;}
._4{margin-left:-6.706452px;}
._0{margin-left:-5.166294px;}
._3{margin-left:-3.431208px;}
._1{margin-left:-1.247712px;}
._5{width:1.008216px;}
._8{width:2.573640px;}
._7{width:5.146200px;}
._a{width:6.368184px;}
.fcf{color:rgb(204,244,198);}
.fce{color:rgb(209,196,233);}
.fcd{color:rgb(0,255,102);}
.fc0{color:rgb(99,187,238);}
.fc7{color:rgb(0,227,227);}
.fc8{color:rgb(0,254,127);}
.fc1{color:rgb(255,255,166);}
.fc5{color:rgb(250,250,250);}
.fc3{color:rgb(255,255,0);}
.fc6{color:rgb(178,235,242);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(255,204,0);}
.fcb{color:rgb(0,0,0);}
.fca{color:rgb(194,84,210);}
.fc9{color:rgb(220,133,233);}
.fcc{color:rgb(180,199,220);}
.fs6{font-size:70.242000px;}
.fs8{font-size:75.684000px;}
.fsa{font-size:86.400000px;}
.fs5{font-size:108.000000px;}
.fs7{font-size:131.982000px;}
.fs3{font-size:144.054000px;}
.fs1{font-size:155.964000px;}
.fs2{font-size:168.036000px;}
.fs4{font-size:192.018000px;}
.fs0{font-size:252.054000px;}
.fs9{font-size:263.964000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1b{bottom:22.068000px;}
.y1d{bottom:34.059000px;}
.y31{bottom:48.771000px;}
.y5b{bottom:57.742500px;}
.y17{bottom:63.439500px;}
.y4b{bottom:81.850500px;}
.y1c{bottom:91.672500px;}
.y5a{bottom:104.514000px;}
.y30{bottom:106.384500px;}
.y39{bottom:106.597500px;}
.y1a{bottom:119.863500px;}
.y59{bottom:151.285500px;}
.y18{bottom:162.894000px;}
.y15{bottom:171.228000px;}
.y4a{bottom:193.677000px;}
.y58{bottom:198.057000px;}
.y19{bottom:209.197500px;}
.y33{bottom:230.542500px;}
.y49{bottom:244.105500px;}
.y16{bottom:259.455000px;}
.y4f{bottom:281.694000px;}
.y32{bottom:288.156000px;}
.y57{bottom:291.600000px;}
.y48{bottom:294.534000px;}
.y38{bottom:306.907500px;}
.y56{bottom:338.371500px;}
.y14{bottom:339.349500px;}
.y47{bottom:344.962500px;}
.y2f{bottom:377.320500px;}
.y55{bottom:385.144500px;}
.y13{bottom:385.186500px;}
.y46{bottom:395.391000px;}
.y2e{bottom:426.727500px;}
.y54{bottom:431.916000px;}
.y12{bottom:440.929500px;}
.y25{bottom:443.905500px;}
.y45{bottom:445.819500px;}
.y53{bottom:478.687500px;}
.y2d{bottom:486.978000px;}
.y4{bottom:488.850000px;}
.y3f{bottom:495.015000px;}
.y11{bottom:495.228000px;}
.y44{bottom:496.248000px;}
.y24{bottom:509.472000px;}
.y3{bottom:535.621500px;}
.y10{bottom:541.063500px;}
.y5e{bottom:541.233000px;}
.y37{bottom:543.955500px;}
.y3e{bottom:551.481000px;}
.y23{bottom:558.879000px;}
.y2c{bottom:569.806500px;}
.y5d{bottom:588.004500px;}
.y50{bottom:596.637000px;}
.yf{bottom:596.806500px;}
.y4e{bottom:599.995500px;}
.y22{bottom:619.129500px;}
.y2b{bottom:619.215000px;}
.y3d{bottom:620.277000px;}
.y43{bottom:634.138500px;}
.y5c{bottom:634.777500px;}
.y5{bottom:648.894000px;}
.ye{bottom:651.105000px;}
.y2a{bottom:679.465500px;}
.y42{bottom:684.567000px;}
.y21{bottom:684.694500px;}
.y3c{bottom:697.876500px;}
.yd{bottom:706.848000px;}
.y9{bottom:727.980000px;}
.y20{bottom:734.103000px;}
.y41{bottom:734.995500px;}
.y36{bottom:743.925000px;}
.y3b{bottom:754.342500px;}
.y52{bottom:757.701000px;}
.y8{bottom:760.380000px;}
.yc{bottom:761.145000px;}
.y29{bottom:762.294000px;}
.y1f{bottom:783.511500px;}
.y2{bottom:784.191000px;}
.y40{bottom:785.424000px;}
.y4d{bottom:793.971000px;}
.y35{bottom:803.070000px;}
.yb{bottom:806.982000px;}
.y51{bottom:808.129500px;}
.y27{bottom:814.252500px;}
.y28{bottom:822.544500px;}
.y3a{bottom:823.138500px;}
.y1e{bottom:843.760500px;}
.y4c{bottom:843.973500px;}
.y26{bottom:861.024000px;}
.y34{bottom:862.215000px;}
.ya{bottom:862.725000px;}
.y7{bottom:918.681000px;}
.y6{bottom:928.630500px;}
.h8{height:73.992211px;}
.h7{height:78.626953px;}
.he{height:79.042852px;}
.hc{height:79.048852px;}
.h11{height:90.568113px;}
.ha{height:96.150949px;}
.h5{height:97.348992px;}
.h13{height:110.119113px;}
.h9{height:113.622211px;}
.h4{height:118.642605px;}
.h3{height:119.312460px;}
.hd{height:122.416852px;}
.hb{height:135.575209px;}
.h12{height:139.794354px;}
.hf{height:139.888113px;}
.h6{height:146.893770px;}
.h10{height:186.373020px;}
.h2{height:192.821310px;}
.h1{height:971.956500px;}
.h0{height:972.000000px;}
.w1{width:1727.956500px;}
.w0{width:1728.000000px;}
.x0{left:0.000000px;}
.x9{left:11.481000px;}
.xb{left:29.125500px;}
.x1b{left:35.758500px;}
.x20{left:46.176000px;}
.x15{left:47.622000px;}
.x16{left:52.767000px;}
.x12{left:54.000000px;}
.x2d{left:59.059500px;}
.x24{left:63.141000px;}
.xa{left:65.481000px;}
.x27{left:67.903500px;}
.x1f{left:88.059000px;}
.x1e{left:90.439500px;}
.x1d{left:91.714500px;}
.x21{left:100.176000px;}
.x17{left:106.767000px;}
.x13{left:108.000000px;}
.x1{left:116.547000px;}
.x11{left:161.659500px;}
.x25{left:166.932000px;}
.x18{left:172.503000px;}
.x6{left:254.182500px;}
.x3{left:306.949500px;}
.x2a{left:323.958000px;}
.xf{left:388.800000px;}
.xc{left:413.929500px;}
.xd{left:415.417500px;}
.x1c{left:446.881500px;}
.x22{left:498.841500px;}
.xe{left:501.052500px;}
.x14{left:549.949500px;}
.x4{left:573.250500px;}
.x26{left:591.619500px;}
.x2{left:693.879000px;}
.x23{left:703.446000px;}
.x2b{left:755.446500px;}
.x10{left:786.741000px;}
.x2c{left:804.472500px;}
.x29{left:897.250500px;}
.x19{left:935.050500px;}
.x1a{left:1037.437500px;}
.x28{left:1218.358500px;}
.x8{left:1337.158500px;}
.x7{left:1354.635000px;}
.x5{left:1665.453000px;}
@media print{
.v3{vertical-align:-43.840000pt;}
.v2{vertical-align:-38.549333pt;}
.v1{vertical-align:-35.226667pt;}
.v4{vertical-align:-3.776000pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007915pt;}
.ls4{letter-spacing:0.149365pt;}
.ls6{letter-spacing:0.204469pt;}
.ls5{letter-spacing:0.301344pt;}
.ls7{letter-spacing:123.571200pt;}
.ls3{letter-spacing:132.058272pt;}
.ls2{letter-spacing:136.368336pt;}
.ws8{word-spacing:-140.780800pt;}
.ws6{word-spacing:-102.409600pt;}
.ws2{word-spacing:-89.619200pt;}
.wsb{word-spacing:-83.180800pt;}
.ws1{word-spacing:-58.252480pt;}
.ws9{word-spacing:-47.279099pt;}
.ws5{word-spacing:-44.377493pt;}
.ws7{word-spacing:-41.374197pt;}
.ws4{word-spacing:-38.401803pt;}
.ws0{word-spacing:-0.224048pt;}
.wse{word-spacing:-0.128048pt;}
.ws3{word-spacing:0.000000pt;}
.wsd{word-spacing:1474.768843pt;}
.wsa{word-spacing:1513.363008pt;}
.wsc{word-spacing:1542.691008pt;}
._2{margin-left:-22.458816pt;}
._6{margin-left:-8.318080pt;}
._9{margin-left:-7.107456pt;}
._4{margin-left:-5.961291pt;}
._0{margin-left:-4.592261pt;}
._3{margin-left:-3.049963pt;}
._1{margin-left:-1.109077pt;}
._5{width:0.896192pt;}
._8{width:2.287680pt;}
._7{width:4.574400pt;}
._a{width:5.660608pt;}
.fs6{font-size:62.437333pt;}
.fs8{font-size:67.274667pt;}
.fsa{font-size:76.800000pt;}
.fs5{font-size:96.000000pt;}
.fs7{font-size:117.317333pt;}
.fs3{font-size:128.048000pt;}
.fs1{font-size:138.634667pt;}
.fs2{font-size:149.365333pt;}
.fs4{font-size:170.682667pt;}
.fs0{font-size:224.048000pt;}
.fs9{font-size:234.634667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1b{bottom:19.616000pt;}
.y1d{bottom:30.274667pt;}
.y31{bottom:43.352000pt;}
.y5b{bottom:51.326667pt;}
.y17{bottom:56.390667pt;}
.y4b{bottom:72.756000pt;}
.y1c{bottom:81.486667pt;}
.y5a{bottom:92.901333pt;}
.y30{bottom:94.564000pt;}
.y39{bottom:94.753333pt;}
.y1a{bottom:106.545333pt;}
.y59{bottom:134.476000pt;}
.y18{bottom:144.794667pt;}
.y15{bottom:152.202667pt;}
.y4a{bottom:172.157333pt;}
.y58{bottom:176.050667pt;}
.y19{bottom:185.953333pt;}
.y33{bottom:204.926667pt;}
.y49{bottom:216.982667pt;}
.y16{bottom:230.626667pt;}
.y4f{bottom:250.394667pt;}
.y32{bottom:256.138667pt;}
.y57{bottom:259.200000pt;}
.y48{bottom:261.808000pt;}
.y38{bottom:272.806667pt;}
.y56{bottom:300.774667pt;}
.y14{bottom:301.644000pt;}
.y47{bottom:306.633333pt;}
.y2f{bottom:335.396000pt;}
.y55{bottom:342.350667pt;}
.y13{bottom:342.388000pt;}
.y46{bottom:351.458667pt;}
.y2e{bottom:379.313333pt;}
.y54{bottom:383.925333pt;}
.y12{bottom:391.937333pt;}
.y25{bottom:394.582667pt;}
.y45{bottom:396.284000pt;}
.y53{bottom:425.500000pt;}
.y2d{bottom:432.869333pt;}
.y4{bottom:434.533333pt;}
.y3f{bottom:440.013333pt;}
.y11{bottom:440.202667pt;}
.y44{bottom:441.109333pt;}
.y24{bottom:452.864000pt;}
.y3{bottom:476.108000pt;}
.y10{bottom:480.945333pt;}
.y5e{bottom:481.096000pt;}
.y37{bottom:483.516000pt;}
.y3e{bottom:490.205333pt;}
.y23{bottom:496.781333pt;}
.y2c{bottom:506.494667pt;}
.y5d{bottom:522.670667pt;}
.y50{bottom:530.344000pt;}
.yf{bottom:530.494667pt;}
.y4e{bottom:533.329333pt;}
.y22{bottom:550.337333pt;}
.y2b{bottom:550.413333pt;}
.y3d{bottom:551.357333pt;}
.y43{bottom:563.678667pt;}
.y5c{bottom:564.246667pt;}
.y5{bottom:576.794667pt;}
.ye{bottom:578.760000pt;}
.y2a{bottom:603.969333pt;}
.y42{bottom:608.504000pt;}
.y21{bottom:608.617333pt;}
.y3c{bottom:620.334667pt;}
.yd{bottom:628.309333pt;}
.y9{bottom:647.093333pt;}
.y20{bottom:652.536000pt;}
.y41{bottom:653.329333pt;}
.y36{bottom:661.266667pt;}
.y3b{bottom:670.526667pt;}
.y52{bottom:673.512000pt;}
.y8{bottom:675.893333pt;}
.yc{bottom:676.573333pt;}
.y29{bottom:677.594667pt;}
.y1f{bottom:696.454667pt;}
.y2{bottom:697.058667pt;}
.y40{bottom:698.154667pt;}
.y4d{bottom:705.752000pt;}
.y35{bottom:713.840000pt;}
.yb{bottom:717.317333pt;}
.y51{bottom:718.337333pt;}
.y27{bottom:723.780000pt;}
.y28{bottom:731.150667pt;}
.y3a{bottom:731.678667pt;}
.y1e{bottom:750.009333pt;}
.y4c{bottom:750.198667pt;}
.y26{bottom:765.354667pt;}
.y34{bottom:766.413333pt;}
.ya{bottom:766.866667pt;}
.y7{bottom:816.605333pt;}
.y6{bottom:825.449333pt;}
.h8{height:65.770854pt;}
.h7{height:69.890625pt;}
.he{height:70.260313pt;}
.hc{height:70.265646pt;}
.h11{height:80.504990pt;}
.ha{height:85.467510pt;}
.h5{height:86.532438pt;}
.h13{height:97.883656pt;}
.h9{height:100.997521pt;}
.h4{height:105.460094pt;}
.h3{height:106.055520pt;}
.hd{height:108.814979pt;}
.hb{height:120.511297pt;}
.h12{height:124.261648pt;}
.hf{height:124.344990pt;}
.h6{height:130.572240pt;}
.h10{height:165.664906pt;}
.h2{height:171.396720pt;}
.h1{height:863.961333pt;}
.h0{height:864.000000pt;}
.w1{width:1535.961333pt;}
.w0{width:1536.000000pt;}
.x0{left:0.000000pt;}
.x9{left:10.205333pt;}
.xb{left:25.889333pt;}
.x1b{left:31.785333pt;}
.x20{left:41.045333pt;}
.x15{left:42.330667pt;}
.x16{left:46.904000pt;}
.x12{left:48.000000pt;}
.x2d{left:52.497333pt;}
.x24{left:56.125333pt;}
.xa{left:58.205333pt;}
.x27{left:60.358667pt;}
.x1f{left:78.274667pt;}
.x1e{left:80.390667pt;}
.x1d{left:81.524000pt;}
.x21{left:89.045333pt;}
.x17{left:94.904000pt;}
.x13{left:96.000000pt;}
.x1{left:103.597333pt;}
.x11{left:143.697333pt;}
.x25{left:148.384000pt;}
.x18{left:153.336000pt;}
.x6{left:225.940000pt;}
.x3{left:272.844000pt;}
.x2a{left:287.962667pt;}
.xf{left:345.600000pt;}
.xc{left:367.937333pt;}
.xd{left:369.260000pt;}
.x1c{left:397.228000pt;}
.x22{left:443.414667pt;}
.xe{left:445.380000pt;}
.x14{left:488.844000pt;}
.x4{left:509.556000pt;}
.x26{left:525.884000pt;}
.x2{left:616.781333pt;}
.x23{left:625.285333pt;}
.x2b{left:671.508000pt;}
.x10{left:699.325333pt;}
.x2c{left:715.086667pt;}
.x29{left:797.556000pt;}
.x19{left:831.156000pt;}
.x1a{left:922.166667pt;}
.x28{left:1082.985333pt;}
.x8{left:1188.585333pt;}
.x7{left:1204.120000pt;}
.x5{left:1480.402667pt;}
}




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