
    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_98395c51f86f83d6f1a42ba0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b647f8bf5aebe13ecb834564.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_3fe9aa51ee8b1a91b9d4c0f4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_a3fc3122d29eff6f03358b8f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_5156dac634223fe0865efcfe.woff')format("woff");}.ff5{font-family:ff5;line-height:0.721000;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_8a2997437b0f0c377636ee48.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931000;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_753450bc1a4de9b3f138deaa.woff')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.247152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247152,0.000000,0.000000,0.250000,0,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);}
.v6{vertical-align:-35.965200px;}
.v2{vertical-align:-9.726000px;}
.v1{vertical-align:-7.500000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.093600px;}
.v3{vertical-align:9.855600px;}
.v5{vertical-align:71.929800px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010416px;}
.ls1{letter-spacing:0.020832px;}
.ls0{letter-spacing:0.021432px;}
.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;}
}
.ws7{word-spacing:-36.696000px;}
.ws9{word-spacing:-7.776000px;}
.ws8{word-spacing:0.000000px;}
.ws4{word-spacing:119.224391px;}
.ws1{word-spacing:233.148653px;}
.ws0{word-spacing:235.485569px;}
.ws3{word-spacing:246.355337px;}
.ws6{word-spacing:255.146285px;}
.ws2{word-spacing:258.836916px;}
.ws5{word-spacing:374.423591px;}
._3{margin-left:-31.708800px;}
._2{margin-left:-23.932800px;}
._4{margin-left:-16.113600px;}
._5{margin-left:-11.944800px;}
._0{margin-left:-6.347520px;}
._1{margin-left:-2.096640px;}
.fc2{color:rgb(107,162,220);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:62.964000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:70.609200px;}
.fs8{font-size:73.722600px;}
.fs4{font-size:84.000000px;}
.fs1{font-size:84.031200px;}
.fs6{font-size:84.967200px;}
.fsa{font-size:108.000000px;}
.fs0{font-size:115.200000px;}
.fs2{font-size:117.682200px;}
.fsc{font-size:125.928000px;}
.fse{font-size:132.000000px;}
.fsb{font-size:216.000000px;}
.fs5{font-size:288.000000px;}
.fs9{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y47{bottom:117.787350px;}
.y48{bottom:209.594250px;}
.y37{bottom:396.946350px;}
.y32{bottom:404.403526px;}
.y3d{bottom:428.178150px;}
.y3b{bottom:478.970250px;}
.y3c{bottom:483.615300px;}
.y3a{bottom:505.233450px;}
.y39{bottom:531.851100px;}
.y3e{bottom:554.506350px;}
.y31{bottom:555.713415px;}
.y36{bottom:555.716250px;}
.y38{bottom:559.456050px;}
.y30{bottom:713.878291px;}
.y35{bottom:762.963900px;}
.y2f{bottom:832.472529px;}
.y34{bottom:834.634350px;}
.y40{bottom:868.198950px;}
.y2e{bottom:927.765690px;}
.y33{bottom:945.418020px;}
.y2d{bottom:963.070350px;}
.y1{bottom:1123.603950px;}
.y2{bottom:1125.478950px;}
.y3f{bottom:1185.263700px;}
.y2a{bottom:1193.528250px;}
.y28{bottom:1261.311000px;}
.y29{bottom:1262.854950px;}
.y27{bottom:1330.347600px;}
.y26{bottom:1397.841750px;}
.y24{bottom:1463.460900px;}
.y25{bottom:1465.335900px;}
.y45{bottom:1480.669950px;}
.y2b{bottom:1534.824750px;}
.y2c{bottom:1536.692100px;}
.y5{bottom:1605.637950px;}
.y6{bottom:1607.512950px;}
.y7{bottom:1673.129850px;}
.y8{bottom:1675.006350px;}
.y11{bottom:1745.828550px;}
.y46{bottom:1782.792071px;}
.yd{bottom:1811.449200px;}
.ye{bottom:1813.271550px;}
.y4{bottom:1878.360300px;}
.y3{bottom:1878.941850px;}
.yf{bottom:1946.434500px;}
.y10{bottom:1948.311000px;}
.y9{bottom:2013.915600px;}
.ya{bottom:2015.791950px;}
.y18{bottom:2019.306450px;}
.y22{bottom:2081.408250px;}
.y23{bottom:2082.937500px;}
.y17{bottom:2086.410450px;}
.y41{bottom:2097.685500px;}
.y20{bottom:2148.902400px;}
.y21{bottom:2150.778750px;}
.y16{bottom:2152.016850px;}
.y1e{bottom:2216.396550px;}
.y1f{bottom:2218.190850px;}
.y15{bottom:2219.783250px;}
.yb{bottom:2283.890700px;}
.y14{bottom:2283.895950px;}
.yc{bottom:2286.953550px;}
.y13{bottom:2348.004750px;}
.y1a{bottom:2351.393250px;}
.y1b{bottom:2353.261200px;}
.y42{bottom:2397.764700px;}
.y12{bottom:2412.113550px;}
.y1c{bottom:2418.877500px;}
.y1d{bottom:2420.753850px;}
.y19{bottom:2480.474850px;}
.y50{bottom:2545.915950px;}
.y4f{bottom:2626.907250px;}
.y43{bottom:2705.036700px;}
.y4e{bottom:2715.115650px;}
.y4d{bottom:2779.915950px;}
.y4c{bottom:2812.315650px;}
.y4b{bottom:2941.915650px;}
.y44{bottom:3009.284700px;}
.y4a{bottom:3071.515650px;}
.y49{bottom:3201.115650px;}
.h11{height:45.839514px;}
.hc{height:46.860000px;}
.h7{height:51.405428px;}
.hd{height:52.343046px;}
.h9{height:61.154297px;}
.h3{height:61.177011px;}
.h8{height:61.261028px;}
.hb{height:61.858445px;}
.h5{height:74.142750px;}
.h4{height:76.368750px;}
.hf{height:78.626953px;}
.h2{height:83.868750px;}
.h6{height:85.675859px;}
.h12{height:96.099609px;}
.h10{height:163.608827px;}
.ha{height:201.600000px;}
.he{height:314.507812px;}
.h0{height:3575.910000px;}
.h1{height:3576.000000px;}
.w0{width:5055.585000px;}
.w1{width:5055.750000px;}
.x0{left:0.000000px;}
.x22{left:3171.413100px;}
.x20{left:3172.666950px;}
.x21{left:3175.226100px;}
.x23{left:3176.864100px;}
.x24{left:3180.254850px;}
.x28{left:3596.954700px;}
.x2c{left:3679.471500px;}
.x9{left:3692.850600px;}
.x2e{left:3735.684750px;}
.x13{left:3743.685772px;}
.x12{left:3760.837952px;}
.xc{left:3764.781750px;}
.x14{left:3774.724452px;}
.xb{left:3777.613800px;}
.x5{left:3779.064000px;}
.xa{left:3781.111800px;}
.x4{left:3782.281500px;}
.x6{left:3786.953550px;}
.x2{left:3788.698200px;}
.x7{left:3791.621400px;}
.x2d{left:3809.699700px;}
.x2a{left:3827.318700px;}
.x26{left:3852.378000px;}
.xd{left:3880.617150px;}
.x3{left:3883.189500px;}
.x1{left:3885.040950px;}
.x29{left:3893.306700px;}
.x27{left:3905.294700px;}
.xf{left:3978.167555px;}
.xe{left:3991.259700px;}
.x25{left:3998.535600px;}
.x15{left:4024.858950px;}
.x16{left:4028.780250px;}
.x19{left:4141.715400px;}
.x18{left:4261.553738px;}
.x1f{left:4271.064000px;}
.x2b{left:4280.499750px;}
.x17{left:4283.619150px;}
.x1a{left:4400.903250px;}
.x1b{left:4466.017050px;}
.x8{left:4537.669500px;}
.x10{left:4609.620820px;}
.x11{left:4616.122761px;}
.x1d{left:4631.771550px;}
.x1c{left:4696.476600px;}
.x1e{left:4763.986800px;}
@media print{
.v6{vertical-align:-31.969067pt;}
.v2{vertical-align:-8.645333pt;}
.v1{vertical-align:-6.666667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.416533pt;}
.v3{vertical-align:8.760533pt;}
.v5{vertical-align:63.937600pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009259pt;}
.ls1{letter-spacing:0.018517pt;}
.ls0{letter-spacing:0.019051pt;}
.ws7{word-spacing:-32.618667pt;}
.ws9{word-spacing:-6.912000pt;}
.ws8{word-spacing:0.000000pt;}
.ws4{word-spacing:105.977236pt;}
.ws1{word-spacing:207.243247pt;}
.ws0{word-spacing:209.320506pt;}
.ws3{word-spacing:218.982522pt;}
.ws6{word-spacing:226.796698pt;}
.ws2{word-spacing:230.077259pt;}
.ws5{word-spacing:332.820970pt;}
._3{margin-left:-28.185600pt;}
._2{margin-left:-21.273600pt;}
._4{margin-left:-14.323200pt;}
._5{margin-left:-10.617600pt;}
._0{margin-left:-5.642240pt;}
._1{margin-left:-1.863680pt;}
.fsd{font-size:55.968000pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:62.763733pt;}
.fs8{font-size:65.531200pt;}
.fs4{font-size:74.666667pt;}
.fs1{font-size:74.694400pt;}
.fs6{font-size:75.526400pt;}
.fsa{font-size:96.000000pt;}
.fs0{font-size:102.400000pt;}
.fs2{font-size:104.606400pt;}
.fsc{font-size:111.936000pt;}
.fse{font-size:117.333333pt;}
.fsb{font-size:192.000000pt;}
.fs5{font-size:256.000000pt;}
.fs9{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:104.699867pt;}
.y48{bottom:186.306000pt;}
.y37{bottom:352.841200pt;}
.y32{bottom:359.469801pt;}
.y3d{bottom:380.602800pt;}
.y3b{bottom:425.751333pt;}
.y3c{bottom:429.880267pt;}
.y3a{bottom:449.096400pt;}
.y39{bottom:472.756533pt;}
.y3e{bottom:492.894533pt;}
.y31{bottom:493.967480pt;}
.y36{bottom:493.970000pt;}
.y38{bottom:497.294267pt;}
.y30{bottom:634.558481pt;}
.y35{bottom:678.190133pt;}
.y2f{bottom:739.975581pt;}
.y34{bottom:741.897200pt;}
.y40{bottom:771.732400pt;}
.y2e{bottom:824.680613pt;}
.y33{bottom:840.371573pt;}
.y2d{bottom:856.062533pt;}
.y1{bottom:998.759067pt;}
.y2{bottom:1000.425733pt;}
.y3f{bottom:1053.567733pt;}
.y2a{bottom:1060.914000pt;}
.y28{bottom:1121.165333pt;}
.y29{bottom:1122.537733pt;}
.y27{bottom:1182.531200pt;}
.y26{bottom:1242.526000pt;}
.y24{bottom:1300.854133pt;}
.y25{bottom:1302.520800pt;}
.y45{bottom:1316.151067pt;}
.y2b{bottom:1364.288667pt;}
.y2c{bottom:1365.948533pt;}
.y5{bottom:1427.233733pt;}
.y6{bottom:1428.900400pt;}
.y7{bottom:1487.226533pt;}
.y8{bottom:1488.894533pt;}
.y11{bottom:1551.847600pt;}
.y46{bottom:1584.704063pt;}
.yd{bottom:1610.177067pt;}
.ye{bottom:1611.796933pt;}
.y4{bottom:1669.653600pt;}
.y3{bottom:1670.170533pt;}
.yf{bottom:1730.164000pt;}
.y10{bottom:1731.832000pt;}
.y9{bottom:1790.147200pt;}
.ya{bottom:1791.815067pt;}
.y18{bottom:1794.939067pt;}
.y22{bottom:1850.140667pt;}
.y23{bottom:1851.500000pt;}
.y17{bottom:1854.587067pt;}
.y41{bottom:1864.609333pt;}
.y20{bottom:1910.135467pt;}
.y21{bottom:1911.803333pt;}
.y16{bottom:1912.903867pt;}
.y1e{bottom:1970.130267pt;}
.y1f{bottom:1971.725200pt;}
.y15{bottom:1973.140667pt;}
.yb{bottom:2030.125067pt;}
.y14{bottom:2030.129733pt;}
.yc{bottom:2032.847600pt;}
.y13{bottom:2087.115333pt;}
.y1a{bottom:2090.127333pt;}
.y1b{bottom:2091.787733pt;}
.y42{bottom:2131.346400pt;}
.y12{bottom:2144.100933pt;}
.y1c{bottom:2150.113333pt;}
.y1d{bottom:2151.781200pt;}
.y19{bottom:2204.866533pt;}
.y50{bottom:2263.036400pt;}
.y4f{bottom:2335.028667pt;}
.y43{bottom:2404.477067pt;}
.y4e{bottom:2413.436133pt;}
.y4d{bottom:2471.036400pt;}
.y4c{bottom:2499.836133pt;}
.y4b{bottom:2615.036133pt;}
.y44{bottom:2674.919733pt;}
.y4a{bottom:2730.236133pt;}
.y49{bottom:2845.436133pt;}
.h11{height:40.746234pt;}
.hc{height:41.653333pt;}
.h7{height:45.693714pt;}
.hd{height:46.527152pt;}
.h9{height:54.359375pt;}
.h3{height:54.379566pt;}
.h8{height:54.454247pt;}
.hb{height:54.985284pt;}
.h5{height:65.904667pt;}
.h4{height:67.883333pt;}
.hf{height:69.890625pt;}
.h2{height:74.550000pt;}
.h6{height:76.156320pt;}
.h12{height:85.421875pt;}
.h10{height:145.430069pt;}
.ha{height:179.200000pt;}
.he{height:279.562500pt;}
.h0{height:3178.586667pt;}
.h1{height:3178.666667pt;}
.w0{width:4493.853333pt;}
.w1{width:4494.000000pt;}
.x0{left:0.000000pt;}
.x22{left:2819.033867pt;}
.x20{left:2820.148400pt;}
.x21{left:2822.423200pt;}
.x23{left:2823.879200pt;}
.x24{left:2826.893200pt;}
.x28{left:3197.293067pt;}
.x2c{left:3270.641333pt;}
.x9{left:3282.533867pt;}
.x2e{left:3320.608667pt;}
.x13{left:3327.720686pt;}
.x12{left:3342.967069pt;}
.xc{left:3346.472667pt;}
.x14{left:3355.310624pt;}
.xb{left:3357.878933pt;}
.x5{left:3359.168000pt;}
.xa{left:3360.988267pt;}
.x4{left:3362.028000pt;}
.x6{left:3366.180933pt;}
.x2{left:3367.731733pt;}
.x7{left:3370.330133pt;}
.x2d{left:3386.399733pt;}
.x2a{left:3402.061067pt;}
.x26{left:3424.336000pt;}
.xd{left:3449.437467pt;}
.x3{left:3451.724000pt;}
.x1{left:3453.369733pt;}
.x29{left:3460.717067pt;}
.x27{left:3471.373067pt;}
.xf{left:3536.148938pt;}
.xe{left:3547.786400pt;}
.x25{left:3554.253867pt;}
.x15{left:3577.652400pt;}
.x16{left:3581.138000pt;}
.x19{left:3681.524800pt;}
.x18{left:3788.047767pt;}
.x1f{left:3796.501333pt;}
.x2b{left:3804.888667pt;}
.x17{left:3807.661467pt;}
.x1a{left:3911.914000pt;}
.x1b{left:3969.792933pt;}
.x8{left:4033.484000pt;}
.x10{left:4097.440729pt;}
.x11{left:4103.220232pt;}
.x1d{left:4117.130267pt;}
.x1c{left:4174.645867pt;}
.x1e{left:4234.654933pt;}
}




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