
    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_08dde947ecebdaa47abd2d9e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_ade45480e3d8b094b44479be.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_32b9b7d67ca12270825004c7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_f90c6edec1f0d4f0f824355b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_77185f6e70a271fd9b5f0eef.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_d6d14df3cfc4fe371e9b880e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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_ac7382b5970805cf2c5437ff.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_44b0597d9993ce012241591c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.768555;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_127ce2dce52236c66db910c0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.201172;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:-57.600000px;}
.v9{vertical-align:-35.400000px;}
.v7{vertical-align:-23.040000px;}
.vd{vertical-align:-10.800000px;}
.v5{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.060000px;}
.ve{vertical-align:17.580000px;}
.vb{vertical-align:28.680000px;}
.v6{vertical-align:36.000000px;}
.v4{vertical-align:43.200000px;}
.va{vertical-align:54.000000px;}
.v1{vertical-align:57.600000px;}
.vc{vertical-align:103.200000px;}
.v8{vertical-align:114.780000px;}
.ls13{letter-spacing:-0.380400px;}
.lsf{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.128400px;}
.lsd{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.015840px;}
.lsc{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.158400px;}
.ls4{letter-spacing:0.180000px;}
.lse{letter-spacing:0.225600px;}
.ls6{letter-spacing:0.238320px;}
.ls12{letter-spacing:0.303600px;}
.ls2{letter-spacing:0.341400px;}
.ls5{letter-spacing:0.360000px;}
.lsa{letter-spacing:148.665600px;}
.ls9{letter-spacing:148.716000px;}
.ls7{letter-spacing:152.949600px;}
.ls8{letter-spacing:153.000000px;}
.ls3{letter-spacing:219.600000px;}
.ls1{letter-spacing:716.741280px;}
.lsb{letter-spacing:4323.136560px;}
.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;}
}
.ws4{word-spacing:-167.760000px;}
.ws3{word-spacing:-53.640720px;}
.ws8{word-spacing:-43.877232px;}
.ws5{word-spacing:-43.848000px;}
.wsb{word-spacing:-39.053952px;}
.ws1{word-spacing:-39.024720px;}
.ws7{word-spacing:-29.376000px;}
.ws6{word-spacing:-29.232000px;}
.ws13{word-spacing:-28.944000px;}
.ws0{word-spacing:-26.016480px;}
.ws2{word-spacing:-24.634320px;}
.wse{word-spacing:-24.408720px;}
.ws12{word-spacing:-21.924000px;}
.wsf{word-spacing:-19.439280px;}
.ws14{word-spacing:-19.423440px;}
.ws16{word-spacing:0.000000px;}
.ws11{word-spacing:411.216000px;}
.ws10{word-spacing:652.346400px;}
.wsd{word-spacing:1373.601360px;}
.wsa{word-spacing:1385.781360px;}
.ws9{word-spacing:1438.989360px;}
.wsc{word-spacing:1439.109360px;}
.ws15{word-spacing:2994.158400px;}
._0{margin-left:-20.310768px;}
._f{margin-left:-18.649824px;}
._3{margin-left:-12.964320px;}
._c{margin-left:-10.426848px;}
._a{margin-left:-8.167104px;}
._8{margin-left:-6.189120px;}
._2{margin-left:-5.185728px;}
._d{margin-left:-4.174992px;}
._4{margin-left:-3.025008px;}
._1{margin-left:-1.296432px;}
._b{width:1.149120px;}
._5{width:2.160720px;}
._6{width:3.460464px;}
._7{width:25.780848px;}
._9{width:27.413904px;}
._11{width:1526.500176px;}
._12{width:4470.916560px;}
._13{width:5718.806976px;}
._e{width:6606.942192px;}
._10{width:6984.192432px;}
.fc7{color:transparent;}
.fc6{color:rgb(1,120,143);}
.fc5{color:rgb(58,133,50);}
.fc1{color:rgb(192,0,0);}
.fc4{color:rgb(127,127,127);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:64.080000px;}
.fs12{font-size:72.000000px;}
.fsc{font-size:79.920000px;}
.fs9{font-size:95.760000px;}
.fse{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs3{font-size:128.160000px;}
.fs8{font-size:144.000000px;}
.fsf{font-size:144.144000px;}
.fs6{font-size:167.760000px;}
.fs10{font-size:180.000000px;}
.fs11{font-size:180.144000px;}
.fs2{font-size:192.240000px;}
.fsb{font-size:192.384000px;}
.fs7{font-size:216.000000px;}
.fsa{font-size:216.144000px;}
.fs5{font-size:264.240000px;}
.fs1{font-size:432.000000px;}
.fs0{font-size:432.144000px;}
.y0{bottom:0.000000px;}
.y57{bottom:24.084000px;}
.y8{bottom:37.152000px;}
.y7{bottom:87.552000px;}
.yc{bottom:168.690000px;}
.yb{bottom:251.820000px;}
.ya{bottom:295.020000px;}
.y9{bottom:343.260000px;}
.y66{bottom:430.665000px;}
.y65{bottom:499.785000px;}
.y64{bottom:568.905000px;}
.y63{bottom:638.025000px;}
.y6{bottom:739.590000px;}
.y4d{bottom:834.765000px;}
.y4c{bottom:892.365000px;}
.y4b{bottom:949.965000px;}
.y4a{bottom:1007.565000px;}
.y49{bottom:1065.165000px;}
.y48{bottom:1122.765000px;}
.y47{bottom:1180.365000px;}
.y5f{bottom:1481.550000px;}
.y61{bottom:1539.150000px;}
.y5e{bottom:1583.430000px;}
.y5d{bottom:1607.760000px;}
.y60{bottom:1620.615000px;}
.y5c{bottom:1645.890000px;}
.y45{bottom:1804.500000px;}
.y5b{bottom:1829.085000px;}
.y67{bottom:1840.140000px;}
.y44{bottom:1847.700000px;}
.y43{bottom:1890.900000px;}
.y62{bottom:1966.320000px;}
.y54{bottom:2367.750000px;}
.y13{bottom:2368.155000px;}
.y53{bottom:2410.950000px;}
.y12{bottom:2411.355000px;}
.y52{bottom:2454.150000px;}
.y11{bottom:2454.555000px;}
.y51{bottom:2497.350000px;}
.y10{bottom:2497.755000px;}
.y50{bottom:2540.550000px;}
.yf{bottom:2540.955000px;}
.y4f{bottom:2583.750000px;}
.ye{bottom:2584.155000px;}
.y56{bottom:2623.170000px;}
.y4e{bottom:2626.950000px;}
.yd{bottom:2627.355000px;}
.y55{bottom:2667.495000px;}
.y5a{bottom:2667.675000px;}
.y16{bottom:2761.950000px;}
.y15{bottom:2866.860000px;}
.y36{bottom:3019.680000px;}
.y24{bottom:3023.490000px;}
.y17{bottom:3034.080000px;}
.y23{bottom:3055.890000px;}
.y35{bottom:3062.880000px;}
.y1c{bottom:3067.350000px;}
.y22{bottom:3088.290000px;}
.y34{bottom:3106.080000px;}
.y33{bottom:3149.280000px;}
.y2f{bottom:3154.680000px;}
.y26{bottom:3163.500000px;}
.y2c{bottom:3174.330000px;}
.y32{bottom:3192.510000px;}
.y2e{bottom:3194.100000px;}
.y2b{bottom:3213.930000px;}
.y21{bottom:3219.120000px;}
.y2d{bottom:3233.700000px;}
.y31{bottom:3235.710000px;}
.y20{bottom:3264.120000px;}
.y30{bottom:3278.910000px;}
.y1f{bottom:3296.520000px;}
.y1b{bottom:3313.695000px;}
.y25{bottom:3336.945000px;}
.y18{bottom:3345.990000px;}
.y28{bottom:3364.665000px;}
.y2a{bottom:3365.565000px;}
.y27{bottom:3368.370000px;}
.y29{bottom:3397.965000px;}
.y1e{bottom:3403.110000px;}
.y1d{bottom:3435.510000px;}
.y1a{bottom:3451.500000px;}
.y59{bottom:3451.710000px;}
.y58{bottom:3490.710000px;}
.y19{bottom:3516.300000px;}
.y14{bottom:3609.000000px;}
.y41{bottom:3709.905000px;}
.y3b{bottom:3744.075000px;}
.y40{bottom:3774.750000px;}
.y3a{bottom:3808.875000px;}
.y3f{bottom:3839.550000px;}
.y39{bottom:3873.675000px;}
.y3e{bottom:3904.350000px;}
.y38{bottom:3938.505000px;}
.y3d{bottom:3969.150000px;}
.y37{bottom:4003.305000px;}
.y3c{bottom:4033.950000px;}
.y42{bottom:4099.605000px;}
.y46{bottom:4100.190000px;}
.y5{bottom:4195.830000px;}
.y4{bottom:4231.830000px;}
.y3{bottom:4272.870000px;}
.y2{bottom:4421.670000px;}
.y1{bottom:4551.300000px;}
.h21{height:62.507812px;}
.h12{height:83.135391px;}
.h14{height:93.603516px;}
.h15{height:93.761719px;}
.h5{height:104.211914px;}
.h11{height:104.388047px;}
.h10{height:105.266602px;}
.h1e{height:122.283516px;}
.ha{height:124.804688px;}
.h16{height:124.929492px;}
.h9{height:125.015625px;}
.hc{height:126.335391px;}
.h1d{height:145.643203px;}
.h22{height:163.223203px;}
.h7{height:166.858945px;}
.h1f{height:166.895859px;}
.hf{height:167.015859px;}
.he{height:167.320875px;}
.h4{height:168.863906px;}
.h17{height:179.033203px;}
.h18{height:179.176430px;}
.h19{height:184.306641px;}
.h8{height:187.523438px;}
.hd{height:187.648453px;}
.hb{height:190.583438px;}
.h1b{height:191.207461px;}
.h1c{height:191.350688px;}
.h1a{height:196.839492px;}
.h13{height:208.383516px;}
.h6{height:229.403672px;}
.h20{height:290.723438px;}
.h3{height:375.046875px;}
.h2{height:375.171891px;}
.h1{height:4677.000000px;}
.h0{height:4677.120000px;}
.w1{width:3826.500000px;}
.w2{width:3826.619943px;}
.w0{width:3826.620000px;}
.x0{left:0.000000px;}
.x5{left:7.631943px;}
.x4{left:8.891943px;}
.x8{left:11.915943px;}
.x3{left:16.091943px;}
.xd{left:28.187943px;}
.xe{left:37.187943px;}
.x28{left:46.583943px;}
.xc{left:89.819943px;}
.xa{left:92.807943px;}
.x32{left:108.899943px;}
.xb{left:142.739943px;}
.x2c{left:146.051943px;}
.x9{left:175.394943px;}
.x1b{left:195.989943px;}
.x3d{left:359.384943px;}
.x39{left:380.129943px;}
.x1d{left:610.769943px;}
.x1c{left:634.529943px;}
.x2{left:833.369943px;}
.x2d{left:847.229943px;}
.x1{left:877.649943px;}
.x38{left:1002.884943px;}
.x37{left:1006.484943px;}
.x20{left:1021.469943px;}
.x1e{left:1035.869943px;}
.x6{left:1055.339943px;}
.x7{left:1084.499943px;}
.x1f{left:1108.409943px;}
.x25{left:1336.709943px;}
.x26{left:1344.629943px;}
.x24{left:1394.849943px;}
.x21{left:1425.809943px;}
.x2f{left:1467.149943px;}
.x22{left:1493.309943px;}
.x33{left:1531.049943px;}
.x27{left:1945.904943px;}
.x23{left:1957.574943px;}
.x31{left:2039.144943px;}
.x30{left:2741.609943px;}
.x18{left:2816.309943px;}
.x15{left:2819.909943px;}
.x35{left:2879.099943px;}
.x36{left:2886.119943px;}
.x29{left:2938.529943px;}
.x2a{left:2945.909943px;}
.x2b{left:2967.689943px;}
.x19{left:3015.719943px;}
.x1a{left:3209.579943px;}
.x16{left:3217.529943px;}
.x17{left:3223.364943px;}
.x3b{left:3262.709943px;}
.x3c{left:3270.629943px;}
.x3a{left:3320.849943px;}
.x34{left:3456.389943px;}
.xf{left:3479.654943px;}
.x13{left:3481.409943px;}
.x2e{left:3482.534943px;}
.x12{left:3504.164943px;}
.x14{left:3506.069943px;}
.x10{left:3532.934943px;}
.x11{left:3535.844943px;}
@media print{
.v2{vertical-align:-51.200000pt;}
.v9{vertical-align:-31.466667pt;}
.v7{vertical-align:-20.480000pt;}
.vd{vertical-align:-9.600000pt;}
.v5{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.720000pt;}
.ve{vertical-align:15.626667pt;}
.vb{vertical-align:25.493333pt;}
.v6{vertical-align:32.000000pt;}
.v4{vertical-align:38.400000pt;}
.va{vertical-align:48.000000pt;}
.v1{vertical-align:51.200000pt;}
.vc{vertical-align:91.733333pt;}
.v8{vertical-align:102.026667pt;}
.ls13{letter-spacing:-0.338133pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.114133pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.014080pt;}
.lsc{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.140800pt;}
.ls4{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.200533pt;}
.ls6{letter-spacing:0.211840pt;}
.ls12{letter-spacing:0.269867pt;}
.ls2{letter-spacing:0.303467pt;}
.ls5{letter-spacing:0.320000pt;}
.lsa{letter-spacing:132.147200pt;}
.ls9{letter-spacing:132.192000pt;}
.ls7{letter-spacing:135.955200pt;}
.ls8{letter-spacing:136.000000pt;}
.ls3{letter-spacing:195.200000pt;}
.ls1{letter-spacing:637.103360pt;}
.lsb{letter-spacing:3842.788053pt;}
.ws4{word-spacing:-149.120000pt;}
.ws3{word-spacing:-47.680640pt;}
.ws8{word-spacing:-39.001984pt;}
.ws5{word-spacing:-38.976000pt;}
.wsb{word-spacing:-34.714624pt;}
.ws1{word-spacing:-34.688640pt;}
.ws7{word-spacing:-26.112000pt;}
.ws6{word-spacing:-25.984000pt;}
.ws13{word-spacing:-25.728000pt;}
.ws0{word-spacing:-23.125760pt;}
.ws2{word-spacing:-21.897173pt;}
.wse{word-spacing:-21.696640pt;}
.ws12{word-spacing:-19.488000pt;}
.wsf{word-spacing:-17.279360pt;}
.ws14{word-spacing:-17.265280pt;}
.ws16{word-spacing:0.000000pt;}
.ws11{word-spacing:365.525333pt;}
.ws10{word-spacing:579.863467pt;}
.wsd{word-spacing:1220.978987pt;}
.wsa{word-spacing:1231.805653pt;}
.ws9{word-spacing:1279.101653pt;}
.wsc{word-spacing:1279.208320pt;}
.ws15{word-spacing:2661.474133pt;}
._0{margin-left:-18.054016pt;}
._f{margin-left:-16.577621pt;}
._3{margin-left:-11.523840pt;}
._c{margin-left:-9.268309pt;}
._a{margin-left:-7.259648pt;}
._8{margin-left:-5.501440pt;}
._2{margin-left:-4.609536pt;}
._d{margin-left:-3.711104pt;}
._4{margin-left:-2.688896pt;}
._1{margin-left:-1.152384pt;}
._b{width:1.021440pt;}
._5{width:1.920640pt;}
._6{width:3.075968pt;}
._7{width:22.916309pt;}
._9{width:24.367915pt;}
._11{width:1356.889045pt;}
._12{width:3974.148053pt;}
._13{width:5083.383979pt;}
._e{width:5872.837504pt;}
._10{width:6208.171051pt;}
.fsd{font-size:56.960000pt;}
.fs12{font-size:64.000000pt;}
.fsc{font-size:71.040000pt;}
.fs9{font-size:85.120000pt;}
.fse{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs3{font-size:113.920000pt;}
.fs8{font-size:128.000000pt;}
.fsf{font-size:128.128000pt;}
.fs6{font-size:149.120000pt;}
.fs10{font-size:160.000000pt;}
.fs11{font-size:160.128000pt;}
.fs2{font-size:170.880000pt;}
.fsb{font-size:171.008000pt;}
.fs7{font-size:192.000000pt;}
.fsa{font-size:192.128000pt;}
.fs5{font-size:234.880000pt;}
.fs1{font-size:384.000000pt;}
.fs0{font-size:384.128000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:21.408000pt;}
.y8{bottom:33.024000pt;}
.y7{bottom:77.824000pt;}
.yc{bottom:149.946667pt;}
.yb{bottom:223.840000pt;}
.ya{bottom:262.240000pt;}
.y9{bottom:305.120000pt;}
.y66{bottom:382.813333pt;}
.y65{bottom:444.253333pt;}
.y64{bottom:505.693333pt;}
.y63{bottom:567.133333pt;}
.y6{bottom:657.413333pt;}
.y4d{bottom:742.013333pt;}
.y4c{bottom:793.213333pt;}
.y4b{bottom:844.413333pt;}
.y4a{bottom:895.613333pt;}
.y49{bottom:946.813333pt;}
.y48{bottom:998.013333pt;}
.y47{bottom:1049.213333pt;}
.y5f{bottom:1316.933333pt;}
.y61{bottom:1368.133333pt;}
.y5e{bottom:1407.493333pt;}
.y5d{bottom:1429.120000pt;}
.y60{bottom:1440.546667pt;}
.y5c{bottom:1463.013333pt;}
.y45{bottom:1604.000000pt;}
.y5b{bottom:1625.853333pt;}
.y67{bottom:1635.680000pt;}
.y44{bottom:1642.400000pt;}
.y43{bottom:1680.800000pt;}
.y62{bottom:1747.840000pt;}
.y54{bottom:2104.666667pt;}
.y13{bottom:2105.026667pt;}
.y53{bottom:2143.066667pt;}
.y12{bottom:2143.426667pt;}
.y52{bottom:2181.466667pt;}
.y11{bottom:2181.826667pt;}
.y51{bottom:2219.866667pt;}
.y10{bottom:2220.226667pt;}
.y50{bottom:2258.266667pt;}
.yf{bottom:2258.626667pt;}
.y4f{bottom:2296.666667pt;}
.ye{bottom:2297.026667pt;}
.y56{bottom:2331.706667pt;}
.y4e{bottom:2335.066667pt;}
.yd{bottom:2335.426667pt;}
.y55{bottom:2371.106667pt;}
.y5a{bottom:2371.266667pt;}
.y16{bottom:2455.066667pt;}
.y15{bottom:2548.320000pt;}
.y36{bottom:2684.160000pt;}
.y24{bottom:2687.546667pt;}
.y17{bottom:2696.960000pt;}
.y23{bottom:2716.346667pt;}
.y35{bottom:2722.560000pt;}
.y1c{bottom:2726.533333pt;}
.y22{bottom:2745.146667pt;}
.y34{bottom:2760.960000pt;}
.y33{bottom:2799.360000pt;}
.y2f{bottom:2804.160000pt;}
.y26{bottom:2812.000000pt;}
.y2c{bottom:2821.626667pt;}
.y32{bottom:2837.786667pt;}
.y2e{bottom:2839.200000pt;}
.y2b{bottom:2856.826667pt;}
.y21{bottom:2861.440000pt;}
.y2d{bottom:2874.400000pt;}
.y31{bottom:2876.186667pt;}
.y20{bottom:2901.440000pt;}
.y30{bottom:2914.586667pt;}
.y1f{bottom:2930.240000pt;}
.y1b{bottom:2945.506667pt;}
.y25{bottom:2966.173333pt;}
.y18{bottom:2974.213333pt;}
.y28{bottom:2990.813333pt;}
.y2a{bottom:2991.613333pt;}
.y27{bottom:2994.106667pt;}
.y29{bottom:3020.413333pt;}
.y1e{bottom:3024.986667pt;}
.y1d{bottom:3053.786667pt;}
.y1a{bottom:3068.000000pt;}
.y59{bottom:3068.186667pt;}
.y58{bottom:3102.853333pt;}
.y19{bottom:3125.600000pt;}
.y14{bottom:3208.000000pt;}
.y41{bottom:3297.693333pt;}
.y3b{bottom:3328.066667pt;}
.y40{bottom:3355.333333pt;}
.y3a{bottom:3385.666667pt;}
.y3f{bottom:3412.933333pt;}
.y39{bottom:3443.266667pt;}
.y3e{bottom:3470.533333pt;}
.y38{bottom:3500.893333pt;}
.y3d{bottom:3528.133333pt;}
.y37{bottom:3558.493333pt;}
.y3c{bottom:3585.733333pt;}
.y42{bottom:3644.093333pt;}
.y46{bottom:3644.613333pt;}
.y5{bottom:3729.626667pt;}
.y4{bottom:3761.626667pt;}
.y3{bottom:3798.106667pt;}
.y2{bottom:3930.373333pt;}
.y1{bottom:4045.600000pt;}
.h21{height:55.562500pt;}
.h12{height:73.898125pt;}
.h14{height:83.203125pt;}
.h15{height:83.343750pt;}
.h5{height:92.632812pt;}
.h11{height:92.789375pt;}
.h10{height:93.570312pt;}
.h1e{height:108.696458pt;}
.ha{height:110.937500pt;}
.h16{height:111.048437pt;}
.h9{height:111.125000pt;}
.hc{height:112.298125pt;}
.h1d{height:129.460625pt;}
.h22{height:145.087292pt;}
.h7{height:148.319063pt;}
.h1f{height:148.351875pt;}
.hf{height:148.458542pt;}
.he{height:148.729667pt;}
.h4{height:150.101250pt;}
.h17{height:159.140625pt;}
.h18{height:159.267938pt;}
.h19{height:163.828125pt;}
.h8{height:166.687500pt;}
.hd{height:166.798625pt;}
.hb{height:169.407500pt;}
.h1b{height:169.962187pt;}
.h1c{height:170.089500pt;}
.h1a{height:174.968437pt;}
.h13{height:185.229792pt;}
.h6{height:203.914375pt;}
.h20{height:258.420833pt;}
.h3{height:333.375000pt;}
.h2{height:333.486125pt;}
.h1{height:4157.333333pt;}
.h0{height:4157.440000pt;}
.w1{width:3401.333333pt;}
.w2{width:3401.439949pt;}
.w0{width:3401.440000pt;}
.x0{left:0.000000pt;}
.x5{left:6.783949pt;}
.x4{left:7.903949pt;}
.x8{left:10.591949pt;}
.x3{left:14.303949pt;}
.xd{left:25.055949pt;}
.xe{left:33.055949pt;}
.x28{left:41.407949pt;}
.xc{left:79.839949pt;}
.xa{left:82.495949pt;}
.x32{left:96.799949pt;}
.xb{left:126.879949pt;}
.x2c{left:129.823949pt;}
.x9{left:155.906616pt;}
.x1b{left:174.213283pt;}
.x3d{left:319.453283pt;}
.x39{left:337.893283pt;}
.x1d{left:542.906616pt;}
.x1c{left:564.026616pt;}
.x2{left:740.773283pt;}
.x2d{left:753.093283pt;}
.x1{left:780.133283pt;}
.x38{left:891.453283pt;}
.x37{left:894.653283pt;}
.x20{left:907.973283pt;}
.x1e{left:920.773283pt;}
.x6{left:938.079949pt;}
.x7{left:963.999949pt;}
.x1f{left:985.253283pt;}
.x25{left:1188.186616pt;}
.x26{left:1195.226616pt;}
.x24{left:1239.866616pt;}
.x21{left:1267.386616pt;}
.x2f{left:1304.133283pt;}
.x22{left:1327.386616pt;}
.x33{left:1360.933283pt;}
.x27{left:1729.693283pt;}
.x23{left:1740.066616pt;}
.x31{left:1812.573283pt;}
.x30{left:2436.986616pt;}
.x18{left:2503.386616pt;}
.x15{left:2506.586616pt;}
.x35{left:2559.199949pt;}
.x36{left:2565.439949pt;}
.x29{left:2612.026616pt;}
.x2a{left:2618.586616pt;}
.x2b{left:2637.946616pt;}
.x19{left:2680.639949pt;}
.x1a{left:2852.959949pt;}
.x16{left:2860.026616pt;}
.x17{left:2865.213283pt;}
.x3b{left:2900.186616pt;}
.x3c{left:2907.226616pt;}
.x3a{left:2951.866616pt;}
.x34{left:3072.346616pt;}
.xf{left:3093.026616pt;}
.x13{left:3094.586616pt;}
.x2e{left:3095.586616pt;}
.x12{left:3114.813283pt;}
.x14{left:3116.506616pt;}
.x10{left:3140.386616pt;}
.x11{left:3142.973283pt;}
}




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