
    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_e52ecb447ff5e06d52b1d4d8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666000;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_1f39fbc5633ffa95051eef56.woff')format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_bf18277f5e42a88da15a3b18.woff')format("woff");}.ff3{font-family:ff3;line-height:0.936000;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_12a8e92ec644c9717380cf3d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_aba9b1f1b638ca1a2661a3fe.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_849863b92df0dadb8e834aa1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.940000;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_7133049c912f786d1200d6e1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.747000;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_a0f7cd05d6a4c6fb63b13f35.woff')format("woff");}.ff8{font-family:ff8;line-height:0.926270;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_f0ebf76d1fe1edb0c0b2792e.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d14ba4aeecb791a878f04e89.woff')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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_2d93e315de285b46475ba69c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.740723;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_cf76a7082390932d22405082.woff')format("woff");}.ffc{font-family:ffc;line-height:0.740234;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_5c530325e6a4774a7c985f5f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.740234;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_58afd0e4177d1c1f64d89f07.woff')format("woff");}.ffe{font-family:ffe;line-height:0.895000;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004533px;}
.ls0{letter-spacing:0.083437px;}
.ls3{letter-spacing:0.140526px;}
.ls5{letter-spacing:0.196793px;}
.ls7{letter-spacing:0.356179px;}
.ls6{letter-spacing:0.434820px;}
.ls1{letter-spacing:1.086103px;}
.ls4{letter-spacing:1.253261px;}
.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:-425.986310px;}
.wsc{word-spacing:-233.989825px;}
.wsb{word-spacing:-133.826957px;}
.wsa{word-spacing:-133.822978px;}
.ws1{word-spacing:-88.398453px;}
.ws0{word-spacing:-78.390133px;}
.ws3{word-spacing:-73.385975px;}
.ws2{word-spacing:-68.381817px;}
.ws5{word-spacing:-61.981415px;}
.ws9{word-spacing:-46.701306px;}
.ws6{word-spacing:-24.300115px;}
.ws4{word-spacing:-23.297449px;}
.ws7{word-spacing:-23.214012px;}
.wsd{word-spacing:0.000000px;}
._2{margin-left:-37.963319px;}
._1{margin-left:-35.305681px;}
._e{margin-left:-21.319197px;}
._6{margin-left:-18.669302px;}
._f{margin-left:-15.525961px;}
._c{margin-left:-14.301317px;}
._8{margin-left:-7.119027px;}
._0{margin-left:-5.110860px;}
._7{margin-left:-3.107514px;}
._4{margin-left:-1.086103px;}
._3{width:1.057946px;}
._5{width:2.136125px;}
._9{width:9.037613px;}
._b{width:23.909405px;}
._a{width:58.356712px;}
._d{width:81.512672px;}
.fc8{color:transparent;}
.fc7{color:rgb(238,113,2);}
.fc6{color:rgb(255,193,34);}
.fc5{color:rgb(106,174,223);}
.fc3{color:rgb(29,87,24);}
.fc2{color:rgb(92,98,102);}
.fc4{color:rgb(168,195,6);}
.fc1{color:rgb(255,254,254);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:83.554125px;}
.fs9{font-size:120.689291px;}
.fsa{font-size:167.990308px;}
.fs0{font-size:168.086659px;}
.fs10{font-size:178.070617px;}
.fse{font-size:178.101994px;}
.fsf{font-size:178.430637px;}
.fs11{font-size:178.435943px;}
.fsd{font-size:179.136181px;}
.fsc{font-size:191.976055px;}
.fs12{font-size:196.901776px;}
.fs8{font-size:223.089523px;}
.fs3{font-size:245.977758px;}
.fs6{font-size:263.978326px;}
.fs5{font-size:270.008516px;}
.fs1{font-size:281.978894px;}
.fs2{font-size:317.980048px;}
.fs4{font-size:342.010787px;}
.fs13{font-size:382.962070px;}
.fsb{font-size:638.660135px;}
.y0{bottom:0.000000px;}
.y26{bottom:4.844896px;}
.y24{bottom:4.857269px;}
.y28{bottom:4.874603px;}
.y22{bottom:4.896617px;}
.y1d{bottom:4.904810px;}
.y2a{bottom:7.075195px;}
.y65{bottom:11.152784px;}
.y52{bottom:11.202935px;}
.y7d{bottom:11.209210px;}
.y5a{bottom:11.242433px;}
.y54{bottom:11.260753px;}
.y61{bottom:11.273339px;}
.y81{bottom:11.296222px;}
.y56{bottom:11.341788px;}
.y71{bottom:11.354304px;}
.y6f{bottom:11.361085px;}
.y6d{bottom:11.390265px;}
.y75{bottom:11.413819px;}
.y7b{bottom:11.418339px;}
.y63{bottom:11.418991px;}
.y5f{bottom:11.436936px;}
.y73{bottom:11.442999px;}
.y69{bottom:11.457413px;}
.y58{bottom:11.485577px;}
.y67{bottom:11.486417px;}
.y78{bottom:11.488967px;}
.y7a{bottom:12.308253px;}
.y2{bottom:13.658026px;}
.y46{bottom:13.717792px;}
.y1f{bottom:14.209804px;}
.y21{bottom:30.427044px;}
.ya{bottom:52.876719px;}
.y12{bottom:54.001686px;}
.y14{bottom:54.001706px;}
.y16{bottom:57.376787px;}
.y5e{bottom:64.310966px;}
.y77{bottom:64.362997px;}
.y10{bottom:68.627133px;}
.y8{bottom:81.002735px;}
.y1b{bottom:90.002985px;}
.y2c{bottom:149.670113px;}
.y7{bottom:178.880822px;}
.y1a{bottom:182.255895px;}
.y50{bottom:224.170030px;}
.ye{bottom:237.382451px;}
.y19{bottom:274.508805px;}
.y6{bottom:276.758910px;}
.y31{bottom:281.605388px;}
.y4f{bottom:282.671876px;}
.yd{bottom:322.885148px;}
.y30{bottom:340.107234px;}
.y4e{bottom:341.173721px;}
.y18{bottom:366.761714px;}
.y5{bottom:374.636997px;}
.y2f{bottom:398.609079px;}
.y4d{bottom:399.675566px;}
.yc{bottom:408.387844px;}
.y2e{bottom:457.110924px;}
.y4{bottom:472.515084px;}
.y2d{bottom:515.612769px;}
.y11{bottom:901.742780px;}
.y45{bottom:982.350078px;}
.y3{bottom:1052.687883px;}
.yb{bottom:1166.413787px;}
.y17{bottom:1349.794388px;}
.y1{bottom:1599.750052px;}
.y9{bottom:1691.805271px;}
.y2b{bottom:1699.720014px;}
.y4c{bottom:1811.057990px;}
.y4b{bottom:1868.434800px;}
.y4a{bottom:1925.811610px;}
.y49{bottom:1983.188420px;}
.y48{bottom:2040.565229px;}
.yf{bottom:2074.651384px;}
.y47{bottom:2097.942039px;}
.y7f{bottom:2325.367526px;}
.y7c{bottom:2360.430021px;}
.y53{bottom:2367.990020px;}
.y7e{bottom:2378.244194px;}
.y29{bottom:2391.390020px;}
.y80{bottom:2413.350019px;}
.y79{bottom:2573.910012px;}
.y23{bottom:2631.150010px;}
.y5c{bottom:2648.118723px;}
.y27{bottom:2659.230008px;}
.y5d{bottom:2682.270007px;}
.y25{bottom:2684.790007px;}
.y5b{bottom:2701.189884px;}
.y59{bottom:2788.110003px;}
.y55{bottom:2825.550001px;}
.y76{bottom:2891.766820px;}
.y74{bottom:2925.629997px;}
.y72{bottom:2978.549995px;}
.y20{bottom:2992.589994px;}
.y6b{bottom:3056.211992px;}
.y57{bottom:3083.669991px;}
.y6a{bottom:3109.088659px;}
.y70{bottom:3142.349988px;}
.y6e{bottom:3195.989986px;}
.y6c{bottom:3248.909984px;}
.y68{bottom:3353.669979px;}
.y1e{bottom:3363.029979px;}
.y1c{bottom:3372.389979px;}
.y66{bottom:3406.589977px;}
.y60{bottom:3458.429975px;}
.y62{bottom:3458.789975px;}
.y64{bottom:3459.869975px;}
.y82{bottom:3460.791390px;}
.y3d{bottom:3467.367133px;}
.y3c{bottom:3533.744227px;}
.y51{bottom:3565.709971px;}
.y3b{bottom:3600.121320px;}
.y3a{bottom:3732.875508px;}
.y44{bottom:3753.606030px;}
.y39{bottom:3799.252601px;}
.y43{bottom:3840.068221px;}
.y38{bottom:3865.629695px;}
.y42{bottom:3894.069924px;}
.y37{bottom:3932.006788px;}
.y41{bottom:3979.818572px;}
.y36{bottom:3998.383882px;}
.y35{bottom:4064.760976px;}
.y40{bottom:4065.294305px;}
.y34{bottom:4131.138069px;}
.y3f{bottom:4143.090486px;}
.y3e{bottom:4197.092189px;}
.y33{bottom:4197.515163px;}
.y13{bottom:4432.345512px;}
.y15{bottom:4432.621485px;}
.y32{bottom:4568.839641px;}
.h12{height:23.759999px;}
.h17{height:35.279999px;}
.h20{height:47.519998px;}
.h26{height:47.879998px;}
.h16{height:49.319998px;}
.h2{height:50.039998px;}
.h1d{height:50.399998px;}
.h1f{height:50.759998px;}
.h29{height:52.559998px;}
.h13{height:60.829688px;}
.h14{height:62.999997px;}
.h18{height:87.865104px;}
.h24{height:103.319996px;}
.h27{height:103.679996px;}
.h3{height:111.945715px;}
.h1a{height:122.800915px;}
.h28{height:127.728073px;}
.h1e{height:128.229317px;}
.h23{height:129.640278px;}
.h21{height:129.663122px;}
.h22{height:129.902383px;}
.h25{height:129.906246px;}
.h2b{height:130.432796px;}
.h1c{height:140.334496px;}
.h2a{height:143.349877px;}
.hc{height:156.379915px;}
.h15{height:162.415272px;}
.h6{height:165.380267px;}
.he{height:171.005396px;}
.hf{height:178.880619px;}
.h9{height:179.809741px;}
.h11{height:192.968156px;}
.hd{height:197.376226px;}
.ha{height:201.381320px;}
.h5{height:206.126572px;}
.h7{height:232.443415px;}
.hb{height:250.009886px;}
.h2c{height:273.434918px;}
.h1b{height:466.860559px;}
.h10{height:507.391150px;}
.h4{height:606.394307px;}
.h8{height:690.771751px;}
.h19{height:4756.679802px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.w13{width:13.679999px;}
.w2{width:14.039999px;}
.w14{width:14.399999px;}
.wf{width:65.159997px;}
.wb{width:70.199997px;}
.wd{width:88.559996px;}
.w1c{width:89.639996px;}
.w24{width:105.119996px;}
.we{width:107.279996px;}
.w17{width:167.039993px;}
.w23{width:228.599990px;}
.wc{width:244.079990px;}
.wa{width:433.138648px;}
.w20{width:434.519982px;}
.w18{width:437.039982px;}
.w5{width:444.389043px;}
.w25{width:465.119981px;}
.w1e{width:609.839975px;}
.w19{width:656.999973px;}
.w21{width:687.599971px;}
.w6{width:730.148046px;}
.w22{width:793.439967px;}
.w1d{width:826.919966px;}
.w1b{width:860.039964px;}
.w27{width:893.519963px;}
.w26{width:896.399963px;}
.w15{width:904.679962px;}
.w3{width:966.405560px;}
.w4{width:973.155631px;}
.w11{width:973.155703px;}
.w10{width:975.239959px;}
.w1a{width:1144.079952px;}
.w9{width:1166.661851px;}
.w16{width:1168.919951px;}
.w1f{width:1386.359942px;}
.w28{width:1452.959939px;}
.w8{width:1699.928533px;}
.w7{width:2113.941692px;}
.w12{width:3447.359856px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x1b{left:1.878902px;}
.x11{left:4.500142px;}
.x1c{left:10.836310px;}
.xd{left:24.451943px;}
.x14{left:42.364617px;}
.xc{left:48.921465px;}
.x15{left:59.486251px;}
.x23{left:64.396470px;}
.xb{left:70.543241px;}
.x16{left:75.394956px;}
.x21{left:87.839996px;}
.xf{left:97.421042px;}
.x20{left:101.569610px;}
.x2b{left:113.117712px;}
.x17{left:126.109446px;}
.x28{left:162.816043px;}
.x27{left:166.223529px;}
.x12{left:169.055809px;}
.xe{left:173.843989px;}
.x5{left:212.368032px;}
.x9{left:245.169848px;}
.x3{left:296.569907px;}
.x6{left:314.904464px;}
.x29{left:325.079986px;}
.x4{left:331.217478px;}
.x7{left:333.115976px;}
.x1d{left:355.319985px;}
.x1a{left:361.079985px;}
.x18{left:366.479985px;}
.x1{left:402.119983px;}
.xa{left:737.904713px;}
.x19{left:777.959968px;}
.x2a{left:924.992211px;}
.x10{left:1266.584275px;}
.x8{left:1280.001295px;}
.x2{left:1286.809758px;}
.x1e{left:1291.679946px;}
.x37{left:1633.222552px;}
.x3d{left:1634.766448px;}
.x31{left:1642.065736px;}
.x40{left:1718.279928px;}
.x3a{left:1720.799928px;}
.x33{left:1722.599928px;}
.x32{left:1729.799928px;}
.x26{left:1844.801275px;}
.x35{left:1888.199921px;}
.x24{left:1926.401505px;}
.x13{left:1932.641271px;}
.x2c{left:1974.959918px;}
.x2d{left:1985.759917px;}
.x25{left:2008.001735px;}
.x30{left:2151.359910px;}
.x3f{left:2173.319909px;}
.x2e{left:2269.079905px;}
.x41{left:2276.279905px;}
.x38{left:2306.159904px;}
.x1f{left:2386.536417px;}
.x22{left:2391.657776px;}
.x3b{left:2504.519896px;}
.x3c{left:2523.599895px;}
.x34{left:2538.359894px;}
.x39{left:2585.519892px;}
.x2f{left:2694.959888px;}
.x3e{left:2937.239878px;}
.x36{left:2975.039876px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004029pt;}
.ls0{letter-spacing:0.074166pt;}
.ls3{letter-spacing:0.124912pt;}
.ls5{letter-spacing:0.174927pt;}
.ls7{letter-spacing:0.316604pt;}
.ls6{letter-spacing:0.386506pt;}
.ls1{letter-spacing:0.965425pt;}
.ls4{letter-spacing:1.114010pt;}
.ws8{word-spacing:-378.654498pt;}
.wsc{word-spacing:-207.990955pt;}
.wsb{word-spacing:-118.957296pt;}
.wsa{word-spacing:-118.953758pt;}
.ws1{word-spacing:-78.576403pt;}
.ws0{word-spacing:-69.680118pt;}
.ws3{word-spacing:-65.231978pt;}
.ws2{word-spacing:-60.783837pt;}
.ws5{word-spacing:-55.094591pt;}
.ws9{word-spacing:-41.512272pt;}
.ws6{word-spacing:-21.600102pt;}
.ws4{word-spacing:-20.708844pt;}
.ws7{word-spacing:-20.634677pt;}
.wsd{word-spacing:0.000000pt;}
._2{margin-left:-33.745172pt;}
._1{margin-left:-31.382827pt;}
._e{margin-left:-18.950398pt;}
._6{margin-left:-16.594935pt;}
._f{margin-left:-13.800855pt;}
._c{margin-left:-12.712281pt;}
._8{margin-left:-6.328024pt;}
._0{margin-left:-4.542986pt;}
._7{margin-left:-2.762235pt;}
._4{margin-left:-0.965425pt;}
._3{width:0.940397pt;}
._5{width:1.898778pt;}
._9{width:8.033434pt;}
._b{width:21.252804pt;}
._a{width:51.872633pt;}
._d{width:72.455709pt;}
.fs7{font-size:74.270333pt;}
.fs9{font-size:107.279370pt;}
.fsa{font-size:149.324718pt;}
.fs0{font-size:149.410364pt;}
.fs10{font-size:158.284993pt;}
.fse{font-size:158.312884pt;}
.fsf{font-size:158.605011pt;}
.fs11{font-size:158.609727pt;}
.fsd{font-size:159.232161pt;}
.fsc{font-size:170.645382pt;}
.fs12{font-size:175.023801pt;}
.fs8{font-size:198.301798pt;}
.fs3{font-size:218.646896pt;}
.fs6{font-size:234.647401pt;}
.fs5{font-size:240.007570pt;}
.fs1{font-size:250.647906pt;}
.fs2{font-size:282.648931pt;}
.fs4{font-size:304.009589pt;}
.fs13{font-size:340.410729pt;}
.fsb{font-size:567.697898pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:4.306574pt;}
.y24{bottom:4.317572pt;}
.y28{bottom:4.332981pt;}
.y22{bottom:4.352548pt;}
.y1d{bottom:4.359831pt;}
.y2a{bottom:6.289062pt;}
.y65{bottom:9.913586pt;}
.y52{bottom:9.958165pt;}
.y7d{bottom:9.963742pt;}
.y5a{bottom:9.993274pt;}
.y54{bottom:10.009558pt;}
.y61{bottom:10.020746pt;}
.y81{bottom:10.041086pt;}
.y56{bottom:10.081590pt;}
.y71{bottom:10.092714pt;}
.y6f{bottom:10.098742pt;}
.y6d{bottom:10.124680pt;}
.y75{bottom:10.145617pt;}
.y7b{bottom:10.149635pt;}
.y63{bottom:10.150214pt;}
.y5f{bottom:10.166165pt;}
.y73{bottom:10.171555pt;}
.y69{bottom:10.184367pt;}
.y58{bottom:10.209402pt;}
.y67{bottom:10.210149pt;}
.y78{bottom:10.212415pt;}
.y7a{bottom:10.940669pt;}
.y2{bottom:12.140468pt;}
.y46{bottom:12.193593pt;}
.y1f{bottom:12.630937pt;}
.y21{bottom:27.046261pt;}
.ya{bottom:47.001528pt;}
.y12{bottom:48.001498pt;}
.y14{bottom:48.001516pt;}
.y16{bottom:51.001588pt;}
.y5e{bottom:57.165303pt;}
.y77{bottom:57.211553pt;}
.y10{bottom:61.001896pt;}
.y8{bottom:72.002431pt;}
.y1b{bottom:80.002653pt;}
.y2c{bottom:133.040100pt;}
.y7{bottom:159.005175pt;}
.y1a{bottom:162.005240pt;}
.y50{bottom:199.262249pt;}
.ye{bottom:211.006623pt;}
.y19{bottom:244.007826pt;}
.y6{bottom:246.007920pt;}
.y31{bottom:250.315901pt;}
.y4f{bottom:251.263889pt;}
.yd{bottom:287.009020pt;}
.y30{bottom:302.317541pt;}
.y4e{bottom:303.265530pt;}
.y18{bottom:326.010413pt;}
.y5{bottom:333.010664pt;}
.y2f{bottom:354.319181pt;}
.y4d{bottom:355.267170pt;}
.yc{bottom:363.011417pt;}
.y2e{bottom:406.320821pt;}
.y4{bottom:420.013408pt;}
.y2d{bottom:458.322462pt;}
.y11{bottom:801.549138pt;}
.y45{bottom:873.200070pt;}
.y3{bottom:935.722563pt;}
.yb{bottom:1036.812255pt;}
.y17{bottom:1199.817234pt;}
.y1{bottom:1422.000047pt;}
.y9{bottom:1503.826907pt;}
.y2b{bottom:1510.862235pt;}
.y4c{bottom:1609.829325pt;}
.y4b{bottom:1660.830934pt;}
.y4a{bottom:1711.832542pt;}
.y49{bottom:1762.834151pt;}
.y48{bottom:1813.835759pt;}
.yf{bottom:1844.134563pt;}
.y47{bottom:1864.837368pt;}
.y7f{bottom:2066.993357pt;}
.y7c{bottom:2098.160018pt;}
.y53{bottom:2104.880018pt;}
.y7e{bottom:2113.994839pt;}
.y29{bottom:2125.680017pt;}
.y80{bottom:2145.200017pt;}
.y79{bottom:2287.920011pt;}
.y23{bottom:2338.800008pt;}
.y5c{bottom:2353.883309pt;}
.y27{bottom:2363.760007pt;}
.y5d{bottom:2384.240007pt;}
.y25{bottom:2386.480006pt;}
.y5b{bottom:2401.057675pt;}
.y59{bottom:2478.320003pt;}
.y55{bottom:2511.600001pt;}
.y76{bottom:2570.459396pt;}
.y74{bottom:2600.559998pt;}
.y72{bottom:2647.599996pt;}
.y20{bottom:2660.079995pt;}
.y6b{bottom:2716.632881pt;}
.y57{bottom:2741.039992pt;}
.y6a{bottom:2763.634364pt;}
.y70{bottom:2793.199990pt;}
.y6e{bottom:2840.879988pt;}
.y6c{bottom:2887.919986pt;}
.y68{bottom:2981.039982pt;}
.y1e{bottom:2989.359981pt;}
.y1c{bottom:2997.679981pt;}
.y66{bottom:3028.079980pt;}
.y60{bottom:3074.159978pt;}
.y62{bottom:3074.479978pt;}
.y64{bottom:3075.439978pt;}
.y82{bottom:3076.259014pt;}
.y3d{bottom:3082.104118pt;}
.y3c{bottom:3141.105979pt;}
.y51{bottom:3169.519974pt;}
.y3b{bottom:3200.107840pt;}
.y3a{bottom:3318.111562pt;}
.y44{bottom:3336.538693pt;}
.y39{bottom:3377.113423pt;}
.y43{bottom:3413.393974pt;}
.y38{bottom:3436.115284pt;}
.y42{bottom:3461.395488pt;}
.y37{bottom:3495.117145pt;}
.y41{bottom:3537.616509pt;}
.y36{bottom:3554.119006pt;}
.y35{bottom:3613.120867pt;}
.y40{bottom:3613.594938pt;}
.y34{bottom:3672.122728pt;}
.y3f{bottom:3682.747099pt;}
.y3e{bottom:3730.748613pt;}
.y33{bottom:3731.124589pt;}
.y13{bottom:3939.862678pt;}
.y15{bottom:3940.107987pt;}
.y32{bottom:4061.190792pt;}
.h12{height:21.119999pt;}
.h17{height:31.359999pt;}
.h20{height:42.239998pt;}
.h26{height:42.559998pt;}
.h16{height:43.839998pt;}
.h2{height:44.479998pt;}
.h1d{height:44.799998pt;}
.h1f{height:45.119998pt;}
.h29{height:46.719998pt;}
.h13{height:54.070833pt;}
.h14{height:55.999998pt;}
.h18{height:78.102315pt;}
.h24{height:91.839996pt;}
.h27{height:92.159996pt;}
.h3{height:99.507302pt;}
.h1a{height:109.156369pt;}
.h28{height:113.536065pt;}
.h1e{height:113.981615pt;}
.h23{height:115.235803pt;}
.h21{height:115.256108pt;}
.h22{height:115.468785pt;}
.h25{height:115.472218pt;}
.h2b{height:115.940263pt;}
.h1c{height:124.741775pt;}
.h2a{height:127.422113pt;}
.hc{height:139.004369pt;}
.h15{height:144.369131pt;}
.h6{height:147.004682pt;}
.he{height:152.004797pt;}
.hf{height:159.004995pt;}
.h9{height:159.830881pt;}
.h11{height:171.527250pt;}
.hd{height:175.445534pt;}
.ha{height:179.005618pt;}
.h5{height:183.223619pt;}
.h7{height:206.616369pt;}
.hb{height:222.231009pt;}
.h2c{height:243.053261pt;}
.h1b{height:414.987163pt;}
.h10{height:451.014356pt;}
.h4{height:539.017162pt;}
.h8{height:614.019334pt;}
.h19{height:4228.159824pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.w13{width:12.159999pt;}
.w2{width:12.479999pt;}
.w14{width:12.799999pt;}
.wf{width:57.919998pt;}
.wb{width:62.399997pt;}
.wd{width:78.719997pt;}
.w1c{width:79.679997pt;}
.w24{width:93.439996pt;}
.we{width:95.359996pt;}
.w17{width:148.479994pt;}
.w23{width:203.199992pt;}
.wc{width:216.959991pt;}
.wa{width:385.012131pt;}
.w20{width:386.239984pt;}
.w18{width:388.479984pt;}
.w5{width:395.012483pt;}
.w25{width:413.439983pt;}
.w1e{width:542.079977pt;}
.w19{width:583.999976pt;}
.w21{width:611.199975pt;}
.w6{width:649.020485pt;}
.w22{width:705.279971pt;}
.w1d{width:735.039969pt;}
.w1b{width:764.479968pt;}
.w27{width:794.239967pt;}
.w26{width:796.799967pt;}
.w15{width:804.159966pt;}
.w3{width:859.027164pt;}
.w4{width:865.027228pt;}
.w11{width:865.027292pt;}
.w10{width:866.879964pt;}
.w1a{width:1016.959958pt;}
.w9{width:1037.032757pt;}
.w16{width:1039.039957pt;}
.w1f{width:1232.319949pt;}
.w28{width:1291.519946pt;}
.w8{width:1511.047585pt;}
.w7{width:1879.059282pt;}
.w12{width:3064.319872pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x1b{left:1.670135pt;}
.x11{left:4.000126pt;}
.x1c{left:9.632275pt;}
.xd{left:21.735061pt;}
.x14{left:37.657438pt;}
.xc{left:43.485747pt;}
.x15{left:52.876668pt;}
.x23{left:57.241306pt;}
.xb{left:62.705103pt;}
.x16{left:67.017739pt;}
.x21{left:78.079997pt;}
.xf{left:86.596481pt;}
.x20{left:90.284098pt;}
.x2b{left:100.549077pt;}
.x17{left:112.097286pt;}
.x28{left:144.725372pt;}
.x27{left:147.754248pt;}
.x12{left:150.271831pt;}
.xe{left:154.527990pt;}
.x5{left:188.771584pt;}
.x9{left:217.928754pt;}
.x3{left:263.617695pt;}
.x6{left:279.915079pt;}
.x29{left:288.959988pt;}
.x4{left:294.415536pt;}
.x7{left:296.103089pt;}
.x1d{left:315.839987pt;}
.x1a{left:320.959987pt;}
.x18{left:325.759986pt;}
.x1{left:357.439985pt;}
.xa{left:655.915301pt;}
.x19{left:691.519971pt;}
.x2a{left:822.215299pt;}
.x10{left:1125.852689pt;}
.x8{left:1137.778929pt;}
.x2{left:1143.830896pt;}
.x1e{left:1148.159952pt;}
.x37{left:1451.753380pt;}
.x3d{left:1453.125731pt;}
.x31{left:1459.613987pt;}
.x40{left:1527.359936pt;}
.x3a{left:1529.599936pt;}
.x33{left:1531.199936pt;}
.x32{left:1537.599936pt;}
.x26{left:1639.823356pt;}
.x35{left:1678.399930pt;}
.x24{left:1712.356893pt;}
.x13{left:1717.903352pt;}
.x2c{left:1755.519927pt;}
.x2d{left:1765.119926pt;}
.x25{left:1784.890431pt;}
.x30{left:1912.319920pt;}
.x3f{left:1931.839920pt;}
.x2e{left:2016.959916pt;}
.x41{left:2023.359916pt;}
.x38{left:2049.919915pt;}
.x1f{left:2121.365704pt;}
.x22{left:2125.918023pt;}
.x3b{left:2226.239907pt;}
.x3c{left:2243.199907pt;}
.x34{left:2256.319906pt;}
.x39{left:2298.239904pt;}
.x2f{left:2395.519900pt;}
.x3e{left:2610.879891pt;}
.x36{left:2644.479890pt;}
}




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