
    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_cc82bb1a72a3e36778cf6447.woff')format("woff");}.ff1{font-family:ff1;line-height:1.023000;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_f351a12df731a45ae2445a06.woff')format("woff");}.ff2{font-family:ff2;line-height:1.021000;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_239068141b918a9aa5f14542.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d960fe464bd264188f096c20.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_0ccf8ee58d5885ed9332b615.woff')format("woff");}.ff5{font-family:ff5;line-height:1.023000;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_4e0fe0c87b8de241632b26ab.woff')format("woff");}.ff6{font-family:ff6;line-height:1.024000;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_f5ce186192cd6f713dc3558a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.010000;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:ff8;src:url('chunks/assets/font_67a395cb0ae91cf8f6b92388.woff')format("woff");}.ff8{font-family:ff8;line-height:1.022000;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_33f9b6a4cec08a1a5c77f971.woff')format("woff");}.ff9{font-family:ff9;line-height:1.010000;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:ffa;src:url('chunks/assets/font_10ed6ec477d6517f83c0efdc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.915039;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:ffb;src:url('chunks/assets/font_81375ea1f65349e6b79c7617.woff')format("woff");}.ffb{font-family:ffb;line-height:0.932129;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:ffc;src:url('chunks/assets/font_5aff75234e9869734272e2a2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.856000;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:ffd;src:url('chunks/assets/font_ad9c9eeedd0805ad1dce073e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.932129;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:ffe;src:url('chunks/assets/font_79682a552707f21759262c0c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.010000;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:-48.096006px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:67.103994px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.054506px;}
.ls1{letter-spacing:36.671685px;}
.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:-192.000138px;}
.ws6{word-spacing:-143.999994px;}
.ws5{word-spacing:-36.672026px;}
.ws3{word-spacing:-31.874398px;}
.ws2{word-spacing:-22.965840px;}
.ws0{word-spacing:-20.827401px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:793.437773px;}
._9{margin-left:-28.662741px;}
._6{margin-left:-19.839600px;}
._5{margin-left:-14.208343px;}
._25{margin-left:-12.096342px;}
._26{margin-left:-10.736639px;}
._7{margin-left:-9.229489px;}
._13{margin-left:-7.690511px;}
._2{margin-left:-6.345228px;}
._4{margin-left:-5.127134px;}
._1{margin-left:-4.020074px;}
._3{margin-left:-2.976887px;}
._0{margin-left:-1.677600px;}
._22{width:1.584000px;}
._19{width:4.017388px;}
._18{width:5.748075px;}
._d{width:8.832006px;}
._21{width:13.154400px;}
._20{width:14.493599px;}
._23{width:15.789599px;}
._10{width:18.718574px;}
._f{width:20.059212px;}
._1c{width:24.960018px;}
._8{width:28.462503px;}
._e{width:29.568021px;}
._24{width:30.621468px;}
._11{width:32.832357px;}
._12{width:33.972096px;}
._15{width:35.401052px;}
._16{width:37.767157px;}
._17{width:39.936029px;}
._a{width:42.816031px;}
._14{width:51.456037px;}
._1d{width:60.192928px;}
._b{width:63.360046px;}
._c{width:64.490512px;}
._1b{width:66.528932px;}
._1a{width:67.719179px;}
._1e{width:90.431996px;}
._1f{width:110.253595px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,188,227);}
.fc4{color:rgb(0,128,0);}
.fc3{color:rgb(12,72,164);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(38,162,105);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:78.156000px;}
.fs1{font-size:109.043982px;}
.fs3{font-size:120.240000px;}
.fs8{font-size:143.999994px;}
.fs0{font-size:167.759988px;}
.fs4{font-size:186.387594px;}
.fs5{font-size:192.000138px;}
.fs7{font-size:359.999994px;}
.fs6{font-size:431.999988px;}
.y0{bottom:0.000000px;}
.y51{bottom:55.566571px;}
.y50{bottom:93.141572px;}
.y4f{bottom:130.716571px;}
.y4e{bottom:168.291571px;}
.y4d{bottom:205.866571px;}
.y4c{bottom:243.441571px;}
.yd{bottom:291.749883px;}
.y52{bottom:455.725658px;}
.y10{bottom:459.730927px;}
.y8{bottom:482.401391px;}
.y47{bottom:627.210701px;}
.y2f{bottom:642.758969px;}
.y2e{bottom:705.437750px;}
.y45{bottom:709.277521px;}
.y4b{bottom:747.470481px;}
.y2d{bottom:768.116531px;}
.y4a{bottom:797.746665px;}
.yc{bottom:821.932506px;}
.y2c{bottom:830.795312px;}
.y49{bottom:848.022847px;}
.yb{bottom:891.646250px;}
.y48{bottom:898.299030px;}
.y2b{bottom:915.180044px;}
.y44{bottom:958.154043px;}
.ya{bottom:961.359993px;}
.y46{bottom:970.159898px;}
.y2a{bottom:977.858825px;}
.y9{bottom:1031.073736px;}
.y29{bottom:1040.537607px;}
.y23{bottom:1159.151727px;}
.y3b{bottom:1333.154015px;}
.y3a{bottom:1381.154037px;}
.y28{bottom:1604.423244px;}
.y27{bottom:1667.102025px;}
.y26{bottom:1729.780806px;}
.y25{bottom:1792.459587px;}
.y24{bottom:1855.138368px;}
.y22{bottom:1967.002496px;}
.y20{bottom:2098.077317px;}
.y1f{bottom:2160.756098px;}
.y1e{bottom:2223.434879px;}
.y39{bottom:2264.182369px;}
.y43{bottom:2294.915991px;}
.y38{bottom:2312.182391px;}
.y37{bottom:2360.182413px;}
.y42{bottom:2364.629735px;}
.y41{bottom:2434.343478px;}
.y40{bottom:2504.057222px;}
.y3f{bottom:2573.770965px;}
.y3e{bottom:2643.484708px;}
.y3d{bottom:2713.198451px;}
.y3c{bottom:2782.912194px;}
.y1d{bottom:2870.968545px;}
.y1c{bottom:2933.647326px;}
.y1b{bottom:2996.326107px;}
.y1a{bottom:3059.004888px;}
.y21{bottom:3170.752476px;}
.y35{bottom:3236.278659px;}
.y34{bottom:3284.278753px;}
.y19{bottom:3297.456897px;}
.y33{bottom:3332.278847px;}
.y18{bottom:3367.170640px;}
.y32{bottom:3380.278941px;}
.y31{bottom:3428.278963px;}
.y17{bottom:3436.884382px;}
.y30{bottom:3476.278984px;}
.y16{bottom:3506.598126px;}
.y15{bottom:3600.931444px;}
.y14{bottom:3663.610225px;}
.y13{bottom:3726.289006px;}
.y12{bottom:3788.967787px;}
.y36{bottom:3812.721841px;}
.y11{bottom:3851.646569px;}
.y7{bottom:4309.731880px;}
.y6{bottom:4367.978003px;}
.y5{bottom:4426.224126px;}
.y4{bottom:4489.041245px;}
.y3{bottom:4526.616244px;}
.y2{bottom:4564.191246px;}
.y1{bottom:4630.728291px;}
.yf{bottom:4754.171076px;}
.ye{bottom:4870.979769px;}
.h3{height:63.931608px;}
.h7{height:98.356320px;}
.he{height:104.343746px;}
.hc{height:117.791995px;}
.hf{height:123.263995px;}
.h4{height:124.228059px;}
.h9{height:137.227670px;}
.h2{height:156.301971px;}
.ha{height:157.056113px;}
.h6{height:172.992124px;}
.hd{height:265.781246px;}
.hb{height:294.479995px;}
.h8{height:353.375990px;}
.h5{height:3867.298500px;}
.h0{height:5056.199891px;}
.h1{height:5056.500000px;}
.w2{width:3469.500000px;}
.w0{width:3576.420043px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x2{left:74.250000px;}
.x5{left:661.518752px;}
.x4{left:667.874984px;}
.x1{left:693.759138px;}
.x3{left:1100.542365px;}
.x7{left:1146.627017px;}
.x6{left:1148.348416px;}
.xa{left:1168.894365px;}
.xb{left:1172.673618px;}
.x10{left:1174.752015px;}
.x9{left:1176.121964px;}
.x8{left:1177.317165px;}
.xe{left:2662.287818px;}
.xc{left:2665.996868px;}
.xf{left:2667.279968px;}
.x12{left:2718.471387px;}
.x13{left:2733.439143px;}
.xd{left:2897.325184px;}
.x14{left:3080.242742px;}
.x11{left:3228.075054px;}
@media print{
.v2{vertical-align:-42.752005pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:59.647995pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.048450pt;}
.ls1{letter-spacing:32.597053pt;}
.ws1{word-spacing:-170.666789pt;}
.ws6{word-spacing:-127.999995pt;}
.ws5{word-spacing:-32.597357pt;}
.ws3{word-spacing:-28.332798pt;}
.ws2{word-spacing:-20.414080pt;}
.ws0{word-spacing:-18.513245pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:705.278021pt;}
._9{margin-left:-25.477992pt;}
._6{margin-left:-17.635200pt;}
._5{margin-left:-12.629638pt;}
._25{margin-left:-10.752304pt;}
._26{margin-left:-9.543679pt;}
._7{margin-left:-8.203990pt;}
._13{margin-left:-6.836009pt;}
._2{margin-left:-5.640203pt;}
._4{margin-left:-4.557452pt;}
._1{margin-left:-3.573399pt;}
._3{margin-left:-2.646121pt;}
._0{margin-left:-1.491200pt;}
._22{width:1.408000pt;}
._19{width:3.571012pt;}
._18{width:5.109400pt;}
._d{width:7.850672pt;}
._21{width:11.692800pt;}
._20{width:12.883199pt;}
._23{width:14.035199pt;}
._10{width:16.638733pt;}
._f{width:17.830410pt;}
._1c{width:22.186683pt;}
._8{width:25.300003pt;}
._e{width:26.282686pt;}
._24{width:27.219083pt;}
._11{width:29.184317pt;}
._12{width:30.197418pt;}
._15{width:31.467602pt;}
._16{width:33.570806pt;}
._17{width:35.498692pt;}
._a{width:38.058694pt;}
._14{width:45.738700pt;}
._1d{width:53.504825pt;}
._b{width:56.320040pt;}
._c{width:57.324900pt;}
._1b{width:59.136829pt;}
._1a{width:60.194825pt;}
._1e{width:80.383997pt;}
._1f{width:98.003196pt;}
.fs2{font-size:69.472000pt;}
.fs1{font-size:96.927984pt;}
.fs3{font-size:106.880000pt;}
.fs8{font-size:127.999995pt;}
.fs0{font-size:149.119989pt;}
.fs4{font-size:165.677861pt;}
.fs5{font-size:170.666789pt;}
.fs7{font-size:319.999995pt;}
.fs6{font-size:383.999989pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:49.392508pt;}
.y50{bottom:82.792508pt;}
.y4f{bottom:116.192508pt;}
.y4e{bottom:149.592508pt;}
.y4d{bottom:182.992508pt;}
.y4c{bottom:216.392508pt;}
.yd{bottom:259.333229pt;}
.y52{bottom:405.089473pt;}
.y10{bottom:408.649713pt;}
.y8{bottom:428.801236pt;}
.y47{bottom:557.520623pt;}
.y2f{bottom:571.341305pt;}
.y2e{bottom:627.055777pt;}
.y45{bottom:630.468908pt;}
.y4b{bottom:664.418205pt;}
.y2d{bottom:682.770250pt;}
.y4a{bottom:709.108147pt;}
.yc{bottom:730.606672pt;}
.y2c{bottom:738.484722pt;}
.y49{bottom:753.798087pt;}
.yb{bottom:792.574444pt;}
.y48{bottom:798.488027pt;}
.y2b{bottom:813.493373pt;}
.y44{bottom:851.692483pt;}
.ya{bottom:854.542216pt;}
.y46{bottom:862.364354pt;}
.y2a{bottom:869.207845pt;}
.y9{bottom:916.509988pt;}
.y29{bottom:924.922317pt;}
.y23{bottom:1030.357091pt;}
.y3b{bottom:1185.025791pt;}
.y3a{bottom:1227.692477pt;}
.y28{bottom:1426.153994pt;}
.y27{bottom:1481.868467pt;}
.y26{bottom:1537.582939pt;}
.y25{bottom:1593.297411pt;}
.y24{bottom:1649.011883pt;}
.y22{bottom:1748.446663pt;}
.y20{bottom:1864.957615pt;}
.y1f{bottom:1920.672087pt;}
.y1e{bottom:1976.386559pt;}
.y39{bottom:2012.606550pt;}
.y43{bottom:2039.925325pt;}
.y38{bottom:2055.273236pt;}
.y37{bottom:2097.939923pt;}
.y42{bottom:2101.893097pt;}
.y41{bottom:2163.860869pt;}
.y40{bottom:2225.828641pt;}
.y3f{bottom:2287.796413pt;}
.y3e{bottom:2349.764185pt;}
.y3d{bottom:2411.731956pt;}
.y3c{bottom:2473.699728pt;}
.y1d{bottom:2551.972040pt;}
.y1c{bottom:2607.686512pt;}
.y1b{bottom:2663.400984pt;}
.y1a{bottom:2719.115456pt;}
.y21{bottom:2818.446645pt;}
.y35{bottom:2876.692141pt;}
.y34{bottom:2919.358891pt;}
.y19{bottom:2931.072797pt;}
.y33{bottom:2962.025641pt;}
.y18{bottom:2993.040569pt;}
.y32{bottom:3004.692392pt;}
.y31{bottom:3047.359078pt;}
.y17{bottom:3055.008340pt;}
.y30{bottom:3090.025764pt;}
.y16{bottom:3116.976112pt;}
.y15{bottom:3200.827950pt;}
.y14{bottom:3256.542423pt;}
.y13{bottom:3312.256895pt;}
.y12{bottom:3367.971367pt;}
.y36{bottom:3389.086081pt;}
.y11{bottom:3423.685839pt;}
.y7{bottom:3830.872782pt;}
.y6{bottom:3882.647114pt;}
.y5{bottom:3934.421445pt;}
.y4{bottom:3990.258884pt;}
.y3{bottom:4023.658884pt;}
.y2{bottom:4057.058885pt;}
.y1{bottom:4116.202925pt;}
.yf{bottom:4225.929846pt;}
.ye{bottom:4329.759795pt;}
.h3{height:56.828096pt;}
.h7{height:87.427840pt;}
.he{height:92.749996pt;}
.hc{height:104.703996pt;}
.hf{height:109.567995pt;}
.h4{height:110.424942pt;}
.h9{height:121.980151pt;}
.h2{height:138.935086pt;}
.ha{height:139.605434pt;}
.h6{height:153.770777pt;}
.hd{height:236.249996pt;}
.hb{height:261.759996pt;}
.h8{height:314.111991pt;}
.h5{height:3437.598667pt;}
.h0{height:4494.399903pt;}
.h1{height:4494.666667pt;}
.w2{width:3084.000000pt;}
.w0{width:3179.040039pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x2{left:66.000000pt;}
.x5{left:588.016668pt;}
.x4{left:593.666652pt;}
.x1{left:616.674789pt;}
.x3{left:978.259880pt;}
.x7{left:1019.224015pt;}
.x6{left:1020.754148pt;}
.xa{left:1039.017213pt;}
.xb{left:1042.376549pt;}
.x10{left:1044.224013pt;}
.x9{left:1045.441746pt;}
.x8{left:1046.504147pt;}
.xe{left:2366.478060pt;}
.xc{left:2369.774993pt;}
.xf{left:2370.915527pt;}
.x12{left:2416.419011pt;}
.x13{left:2429.723682pt;}
.xd{left:2575.400164pt;}
.x14{left:2737.993548pt;}
.x11{left:2869.400048pt;}
}




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