
    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_ce6bc5711bb288c996f92c77.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_22d103eb16dc1683abbb3143.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_008c890ad2fe65a950ebe2b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_95ad012640ada6f9d7dc1e59.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_b62a1ce21c397e8e0f25dc43.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_b74c67c30aea57cfaa3435f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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;}
.m2{transform:matrix(0.193618,0.158152,-0.158152,0.193618,0,0);-ms-transform:matrix(0.193618,0.158152,-0.158152,0.193618,0,0);-webkit-transform:matrix(0.193618,0.158152,-0.158152,0.193618,0,0);}
.m1{transform:matrix(0.199989,-0.150015,0.150015,0.199989,0,0);-ms-transform:matrix(0.199989,-0.150015,0.150015,0.199989,0,0);-webkit-transform:matrix(0.199989,-0.150015,0.150015,0.199989,0,0);}
.m3{transform:matrix(0.231576,-0.094193,0.094193,0.231576,0,0);-ms-transform:matrix(0.231576,-0.094193,0.094193,0.231576,0,0);-webkit-transform:matrix(0.231576,-0.094193,0.094193,0.231576,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);}
.v2{vertical-align:-87.920709px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:87.920709px;}
.v1{vertical-align:100.154360px;}
.v4{vertical-align:102.647255px;}
.v5{vertical-align:137.986348px;}
.v6{vertical-align:275.949614px;}
.lsd{letter-spacing:0.000000px;}
.ls0{letter-spacing:11.486883px;}
.ls3{letter-spacing:11.488340px;}
.ls1{letter-spacing:11.491101px;}
.ls6{letter-spacing:11.493427px;}
.ls8{letter-spacing:11.494461px;}
.ls7{letter-spacing:11.495495px;}
.ls5{letter-spacing:11.497564px;}
.ls4{letter-spacing:11.505984px;}
.ls2{letter-spacing:11.508662px;}
.lsb{letter-spacing:31.698728px;}
.lsa{letter-spacing:42.639767px;}
.lsc{letter-spacing:42.662849px;}
.ls9{letter-spacing:114.975950px;}
.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;}
}
.ws0{word-spacing:-149.877459px;}
.ws2{word-spacing:-78.481164px;}
.ws1e{word-spacing:-65.401153px;}
.ws6{word-spacing:-60.939485px;}
.ws25{word-spacing:-60.939098px;}
.ws24{word-spacing:-60.938603px;}
.ws23{word-spacing:-60.938388px;}
.ws1d{word-spacing:-59.559723px;}
.ws27{word-spacing:-42.657517px;}
.ws28{word-spacing:-41.691686px;}
.ws2b{word-spacing:-7.887616px;}
.ws7{word-spacing:-1.839683px;}
.wsc{word-spacing:-0.229960px;}
.ws29{word-spacing:-0.160972px;}
.ws1{word-spacing:0.000000px;}
.ws2d{word-spacing:0.020599px;}
.ws2c{word-spacing:0.954086px;}
.ws26{word-spacing:0.965831px;}
.ws12{word-spacing:1.370995px;}
.ws2e{word-spacing:4.783187px;}
.wse{word-spacing:9.658333px;}
.ws22{word-spacing:10.118254px;}
.ws11{word-spacing:13.567659px;}
.ws10{word-spacing:13.797619px;}
.wsa{word-spacing:16.097222px;}
.ws8{word-spacing:18.626786px;}
.wsd{word-spacing:20.466468px;}
.ws2a{word-spacing:25.916454px;}
.ws4{word-spacing:25.985516px;}
.wsf{word-spacing:36.793651px;}
.ws5{word-spacing:43.002580px;}
.ws1c{word-spacing:44.152381px;}
.ws1a{word-spacing:45.762104px;}
.ws19{word-spacing:47.198597px;}
.ws17{word-spacing:47.371826px;}
.wsb{word-spacing:51.051191px;}
.ws13{word-spacing:54.040675px;}
.ws1b{word-spacing:56.570239px;}
.ws18{word-spacing:57.251464px;}
.ws3{word-spacing:58.179961px;}
.ws16{word-spacing:66.228572px;}
.ws15{word-spacing:72.897421px;}
.ws14{word-spacing:74.420885px;}
.ws9{word-spacing:74.507144px;}
.ws21{word-spacing:569.094626px;}
.ws1f{word-spacing:926.587754px;}
.ws20{word-spacing:1030.597829px;}
._14{margin-left:-18.684259px;}
._4{margin-left:-13.280281px;}
._7{margin-left:-11.383112px;}
._f{margin-left:-8.882044px;}
._0{margin-left:-6.956338px;}
._3{margin-left:-5.691549px;}
._5{margin-left:-4.252985px;}
._1{margin-left:-3.161972px;}
._6{margin-left:-1.379771px;}
._e{width:1.835952px;}
._12{width:3.449405px;}
._18{width:11.595682px;}
._17{width:31.010087px;}
._19{width:32.257896px;}
._b{width:43.462510px;}
._c{width:44.841039px;}
._11{width:47.774274px;}
._15{width:56.242617px;}
._a{width:81.519662px;}
._9{width:93.996353px;}
._2{width:113.198587px;}
._d{width:114.980160px;}
._8{width:120.152986px;}
._10{width:134.203454px;}
._16{width:230.028648px;}
._13{width:730.698951px;}
.fc1{color:rgb(34,42,80);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:137.977115px;}
.fsa{font-size:160.971762px;}
.fs2{font-size:183.968717px;}
.fs4{font-size:206.965673px;}
.fs7{font-size:229.956181px;}
.fs8{font-size:229.956991px;}
.fs9{font-size:229.958862px;}
.fs6{font-size:229.960320px;}
.fs1{font-size:275.954230px;}
.fs5{font-size:331.144153px;}
.fs0{font-size:632.394342px;}
.y0{bottom:0.000000px;}
.y64{bottom:163.117687px;}
.y4f{bottom:193.955720px;}
.y63{bottom:232.105091px;}
.y62{bottom:332.726869px;}
.y61{bottom:507.027540px;}
.y28{bottom:537.605896px;}
.y60{bottom:553.019142px;}
.y5f{bottom:622.006545px;}
.y5e{bottom:667.998148px;}
.y5d{bottom:713.989750px;}
.y4e{bottom:780.224582px;}
.y5c{bottom:782.977153px;}
.y5b{bottom:828.974526px;}
.y5a{bottom:874.966129px;}
.y59{bottom:965.864462px;}
.y27{bottom:1104.254752px;}
.y53{bottom:1253.684180px;}
.y26{bottom:1287.638331px;}
.y54{bottom:1288.942485px;}
.y52{bottom:1322.942801px;}
.y25{bottom:1356.625735px;}
.y4d{bottom:1366.493444px;}
.y51{bottom:1392.172569px;}
.y24{bottom:1425.613138px;}
.y58{bottom:1449.768828px;}
.y23{bottom:1540.597915px;}
.y56{bottom:1550.500247px;}
.y22{bottom:1609.585318px;}
.y21{bottom:1678.572721px;}
.y57{bottom:1682.750629px;}
.y55{bottom:1722.561929px;}
.y20{bottom:1747.560125px;}
.y1f{bottom:1862.539131px;}
.y4c{bottom:1927.123574px;}
.y1e{bottom:1931.532305px;}
.y50{bottom:1931.572699px;}
.y1d{bottom:2000.519708px;}
.y1c{bottom:2069.507112px;}
.y3e{bottom:2109.422283px;}
.y3d{bottom:2178.409686px;}
.y1b{bottom:2184.486117px;}
.y3c{bottom:2247.397090px;}
.y1a{bottom:2253.473521px;}
.y46{bottom:2316.384493px;}
.y19{bottom:2322.466695px;}
.y3b{bottom:2362.381866px;}
.y45{bottom:2385.377667px;}
.y3a{bottom:2431.369269px;}
.y18{bottom:2431.744358px;}
.y44{bottom:2454.365070px;}
.y4b{bottom:2500.356673px;}
.y39{bottom:2546.348275px;}
.y43{bottom:2569.344076px;}
.y17{bottom:2609.974800px;}
.y38{bottom:2615.335679px;}
.y42{bottom:2638.331480px;}
.y16{bottom:2678.962204px;}
.y37{bottom:2684.323082px;}
.y41{bottom:2707.318883px;}
.y15{bottom:2747.949607px;}
.y4a{bottom:2753.310485px;}
.y36{bottom:2753.316256px;}
.y14{bottom:2816.937011px;}
.y35{bottom:2822.303659px;}
.y13{bottom:2885.924414px;}
.y40{bottom:2891.291063px;}
.y34{bottom:2937.282665px;}
.y3f{bottom:2960.278466px;}
.y12{bottom:2987.833034px;}
.y33{bottom:3006.270069px;}
.y49{bottom:3029.265870px;}
.y32{bottom:3075.257472px;}
.y48{bottom:3144.244876px;}
.y31{bottom:3144.250646px;}
.y11{bottom:3176.652509px;}
.y30{bottom:3213.238050px;}
.y10{bottom:3245.645683px;}
.y47{bottom:3282.225453px;}
.yf{bottom:3314.633086px;}
.y2f{bottom:3328.217055px;}
.y2e{bottom:3397.204459px;}
.ye{bottom:3429.612092px;}
.y2d{bottom:3466.191862px;}
.yd{bottom:3498.599496px;}
.yc{bottom:3567.586899px;}
.y2c{bottom:3579.693597px;}
.y2b{bottom:3588.522600px;}
.y2a{bottom:3657.510003px;}
.yb{bottom:3682.571675px;}
.ya{bottom:3751.559079px;}
.y9{bottom:3866.538085px;}
.y8{bottom:3935.525488px;}
.y7{bottom:4004.518662px;}
.y6{bottom:4073.506066px;}
.y29{bottom:4172.188925px;}
.y5{bottom:4174.318273px;}
.y4{bottom:4401.067836px;}
.y3{bottom:4470.055240px;}
.y2{bottom:4586.049869px;}
.y1{bottom:4755.647510px;}
.h4{height:144.875971px;}
.hd{height:169.020350px;}
.he{height:193.167153px;}
.ha{height:241.453990px;}
.hb{height:241.454841px;}
.hc{height:241.456805px;}
.h6{height:241.458336px;}
.h7{height:289.751942px;}
.h3{height:293.321513px;}
.h5{height:347.701361px;}
.h8{height:530.385545px;}
.h9{height:565.701556px;}
.h2{height:664.014059px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1{left:90.422648px;}
.x3{left:107.670941px;}
.x2{left:108.703877px;}
.x4{left:113.418449px;}
.x8{left:119.743016px;}
.x6{left:123.938235px;}
.x9{left:141.982870px;}
.x5{left:160.789222px;}
.x7{left:190.802061px;}
.xa{left:1262.383312px;}
.x25{left:1274.732375px;}
.x23{left:1277.669605px;}
.xf{left:1289.978274px;}
.xb{left:1299.049641px;}
.x21{left:1334.665723px;}
.x10{left:1337.349047px;}
.x24{left:1378.100954px;}
.xc{left:1411.397258px;}
.x1f{left:1692.990509px;}
.x11{left:1838.386294px;}
.x1e{left:1872.201952px;}
.x12{left:1885.757068px;}
.x22{left:2063.312351px;}
.x13{left:2386.794315px;}
.x1d{left:2402.213331px;}
.x14{left:2434.165088px;}
.x1c{left:2440.685855px;}
.x1b{left:2448.580022px;}
.xd{left:2491.824824px;}
.x20{left:2610.323889px;}
.x15{left:2957.044019px;}
.x17{left:2994.454754px;}
.x16{left:3004.414792px;}
.x19{left:3035.079707px;}
.xe{left:3040.884921px;}
.x1a{left:3048.357835px;}
.x18{left:3072.363489px;}
@media print{
.v2{vertical-align:-78.151742pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:78.151742pt;}
.v1{vertical-align:89.026098pt;}
.v4{vertical-align:91.242004pt;}
.v5{vertical-align:122.654532pt;}
.v6{vertical-align:245.288546pt;}
.lsd{letter-spacing:0.000000pt;}
.ls0{letter-spacing:10.210563pt;}
.ls3{letter-spacing:10.211858pt;}
.ls1{letter-spacing:10.214312pt;}
.ls6{letter-spacing:10.216380pt;}
.ls8{letter-spacing:10.217299pt;}
.ls7{letter-spacing:10.218218pt;}
.ls5{letter-spacing:10.220057pt;}
.ls4{letter-spacing:10.227541pt;}
.ls2{letter-spacing:10.229921pt;}
.lsb{letter-spacing:28.176647pt;}
.lsa{letter-spacing:37.902015pt;}
.lsc{letter-spacing:37.922532pt;}
.ls9{letter-spacing:102.200844pt;}
.ws0{word-spacing:-133.224408pt;}
.ws2{word-spacing:-69.761035pt;}
.ws1e{word-spacing:-58.134358pt;}
.ws6{word-spacing:-54.168431pt;}
.ws25{word-spacing:-54.168088pt;}
.ws24{word-spacing:-54.167647pt;}
.ws23{word-spacing:-54.167456pt;}
.ws1d{word-spacing:-52.941976pt;}
.ws27{word-spacing:-37.917793pt;}
.ws28{word-spacing:-37.059277pt;}
.ws2b{word-spacing:-7.011215pt;}
.ws7{word-spacing:-1.635273pt;}
.wsc{word-spacing:-0.204409pt;}
.ws29{word-spacing:-0.143086pt;}
.ws1{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.018310pt;}
.ws2c{word-spacing:0.848077pt;}
.ws26{word-spacing:0.858516pt;}
.ws12{word-spacing:1.218662pt;}
.ws2e{word-spacing:4.251721pt;}
.wse{word-spacing:8.585185pt;}
.ws22{word-spacing:8.994004pt;}
.ws11{word-spacing:12.060141pt;}
.ws10{word-spacing:12.264550pt;}
.wsa{word-spacing:14.308642pt;}
.ws8{word-spacing:16.557143pt;}
.wsd{word-spacing:18.192416pt;}
.ws2a{word-spacing:23.036848pt;}
.ws4{word-spacing:23.098237pt;}
.wsf{word-spacing:32.705468pt;}
.ws5{word-spacing:38.224515pt;}
.ws1c{word-spacing:39.246561pt;}
.ws1a{word-spacing:40.677425pt;}
.ws19{word-spacing:41.954309pt;}
.ws17{word-spacing:42.108290pt;}
.wsb{word-spacing:45.378836pt;}
.ws13{word-spacing:48.036156pt;}
.ws1b{word-spacing:50.284657pt;}
.ws18{word-spacing:50.890190pt;}
.ws3{word-spacing:51.715521pt;}
.ws16{word-spacing:58.869842pt;}
.ws15{word-spacing:64.797708pt;}
.ws14{word-spacing:66.151898pt;}
.ws9{word-spacing:66.228572pt;}
.ws21{word-spacing:505.861889pt;}
.ws1f{word-spacing:823.633559pt;}
.ws20{word-spacing:916.086959pt;}
._14{margin-left:-16.608230pt;}
._4{margin-left:-11.804694pt;}
._7{margin-left:-10.118322pt;}
._f{margin-left:-7.895150pt;}
._0{margin-left:-6.183411pt;}
._3{margin-left:-5.059155pt;}
._5{margin-left:-3.780431pt;}
._1{margin-left:-2.810642pt;}
._6{margin-left:-1.226463pt;}
._e{width:1.631958pt;}
._12{width:3.066138pt;}
._18{width:10.307273pt;}
._17{width:27.564521pt;}
._19{width:28.673685pt;}
._b{width:38.633342pt;}
._c{width:39.858701pt;}
._11{width:42.466021pt;}
._15{width:49.993437pt;}
._a{width:72.461921pt;}
._9{width:83.552314pt;}
._2{width:100.620966pt;}
._d{width:102.204587pt;}
._8{width:106.802654pt;}
._10{width:119.291959pt;}
._16{width:204.469909pt;}
._13{width:649.510178pt;}
.fs3{font-size:122.646325pt;}
.fsa{font-size:143.086011pt;}
.fs2{font-size:163.527749pt;}
.fs4{font-size:183.969487pt;}
.fs7{font-size:204.405494pt;}
.fs8{font-size:204.406214pt;}
.fs9{font-size:204.407877pt;}
.fs6{font-size:204.409173pt;}
.fs1{font-size:245.292649pt;}
.fs5{font-size:294.350358pt;}
.fs0{font-size:562.128304pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:144.993500pt;}
.y4f{bottom:172.405085pt;}
.y63{bottom:206.315636pt;}
.y62{bottom:295.757217pt;}
.y61{bottom:450.691146pt;}
.y28{bottom:477.871908pt;}
.y60{bottom:491.572571pt;}
.y5f{bottom:552.894707pt;}
.y5e{bottom:593.776131pt;}
.y5d{bottom:634.657556pt;}
.y4e{bottom:693.532962pt;}
.y5c{bottom:695.979692pt;}
.y5b{bottom:736.866246pt;}
.y5a{bottom:777.747670pt;}
.y59{bottom:858.546189pt;}
.y27{bottom:981.559779pt;}
.y53{bottom:1114.385938pt;}
.y26{bottom:1144.567406pt;}
.y54{bottom:1145.726653pt;}
.y52{bottom:1175.949156pt;}
.y25{bottom:1205.889542pt;}
.y4d{bottom:1214.660839pt;}
.y51{bottom:1237.486728pt;}
.y24{bottom:1267.211678pt;}
.y58{bottom:1288.683403pt;}
.y23{bottom:1369.420369pt;}
.y56{bottom:1378.222442pt;}
.y22{bottom:1430.742505pt;}
.y21{bottom:1492.064641pt;}
.y57{bottom:1495.778337pt;}
.y55{bottom:1531.166159pt;}
.y20{bottom:1553.386778pt;}
.y1f{bottom:1655.590338pt;}
.y4c{bottom:1712.998732pt;}
.y1e{bottom:1716.917604pt;}
.y50{bottom:1716.953510pt;}
.y1d{bottom:1778.239741pt;}
.y1c{bottom:1839.561877pt;}
.y3e{bottom:1875.042029pt;}
.y3d{bottom:1936.364165pt;}
.y1b{bottom:1941.765438pt;}
.y3c{bottom:1997.686302pt;}
.y1a{bottom:2003.087574pt;}
.y46{bottom:2059.008438pt;}
.y19{bottom:2064.414840pt;}
.y3b{bottom:2099.894992pt;}
.y45{bottom:2120.335704pt;}
.y3a{bottom:2161.217128pt;}
.y18{bottom:2161.550540pt;}
.y44{bottom:2181.657840pt;}
.y4b{bottom:2222.539265pt;}
.y39{bottom:2263.420689pt;}
.y43{bottom:2283.861401pt;}
.y17{bottom:2319.977600pt;}
.y38{bottom:2324.742825pt;}
.y42{bottom:2345.183537pt;}
.y16{bottom:2381.299737pt;}
.y37{bottom:2386.064962pt;}
.y41{bottom:2406.505674pt;}
.y15{bottom:2442.621873pt;}
.y4a{bottom:2447.387098pt;}
.y36{bottom:2447.392228pt;}
.y14{bottom:2503.944010pt;}
.y35{bottom:2508.714364pt;}
.y13{bottom:2565.266146pt;}
.y40{bottom:2570.036500pt;}
.y34{bottom:2610.917925pt;}
.y3f{bottom:2631.358637pt;}
.y12{bottom:2655.851585pt;}
.y33{bottom:2672.240061pt;}
.y49{bottom:2692.680773pt;}
.y32{bottom:2733.562197pt;}
.y48{bottom:2794.884334pt;}
.y31{bottom:2794.889463pt;}
.y11{bottom:2823.691119pt;}
.y30{bottom:2856.211600pt;}
.y10{bottom:2885.018385pt;}
.y47{bottom:2917.533736pt;}
.yf{bottom:2946.340521pt;}
.y2f{bottom:2958.415160pt;}
.y2e{bottom:3019.737297pt;}
.ye{bottom:3048.544082pt;}
.y2d{bottom:3081.059433pt;}
.yd{bottom:3109.866218pt;}
.yc{bottom:3171.188355pt;}
.y2c{bottom:3181.949864pt;}
.y2b{bottom:3189.797866pt;}
.y2a{bottom:3251.120003pt;}
.yb{bottom:3273.397045pt;}
.ya{bottom:3334.719181pt;}
.y9{bottom:3436.922742pt;}
.y8{bottom:3498.244878pt;}
.y7{bottom:3559.572144pt;}
.y6{bottom:3620.894281pt;}
.y29{bottom:3708.612378pt;}
.y5{bottom:3710.505131pt;}
.y4{bottom:3912.060299pt;}
.y3{bottom:3973.382435pt;}
.y2{bottom:4076.488773pt;}
.y1{bottom:4227.242231pt;}
.h4{height:128.778641pt;}
.hd{height:150.240311pt;}
.he{height:171.704136pt;}
.ha{height:214.625769pt;}
.hb{height:214.626525pt;}
.hc{height:214.628271pt;}
.h6{height:214.629632pt;}
.h7{height:257.557282pt;}
.h3{height:260.730234pt;}
.h5{height:309.067876pt;}
.h8{height:471.453818pt;}
.h9{height:502.845827pt;}
.h2{height:590.234719pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1{left:80.375687pt;}
.x3{left:95.707504pt;}
.x2{left:96.625669pt;}
.x4{left:100.816399pt;}
.x8{left:106.438236pt;}
.x6{left:110.167320pt;}
.x9{left:126.206995pt;}
.x5{left:142.923753pt;}
.x7{left:169.601832pt;}
.xa{left:1122.118500pt;}
.x25{left:1133.095444pt;}
.x23{left:1135.706316pt;}
.xf{left:1146.647354pt;}
.xb{left:1154.710792pt;}
.x21{left:1186.369531pt;}
.x10{left:1188.754708pt;}
.x24{left:1224.978625pt;}
.xc{left:1254.575340pt;}
.x1f{left:1504.880452pt;}
.x11{left:1634.121150pt;}
.x1e{left:1664.179513pt;}
.x12{left:1676.228505pt;}
.x22{left:1834.055423pt;}
.x13{left:2121.594947pt;}
.x1d{left:2135.300739pt;}
.x14{left:2163.702301pt;}
.x1c{left:2169.498538pt;}
.x1b{left:2176.515575pt;}
.xd{left:2214.955399pt;}
.x20{left:2320.287902pt;}
.x15{left:2628.483572pt;}
.x17{left:2661.737559pt;}
.x16{left:2670.590926pt;}
.x19{left:2697.848629pt;}
.xe{left:2703.008819pt;}
.x1a{left:2709.651409pt;}
.x18{left:2730.989768pt;}
}




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