
    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_a522cb4f64aa1fb79ce4363d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.937500;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_de87aea605b31e69547fcaf1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_b57e216126b740a3e566de19.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_a6b344e3d9b0cd64236ffdef.woff')format("woff");}.ff4{font-family:ff4;line-height:0.952000;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_7100fb7d6ec4915f608d0a6d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_2b8c6cac8b6a4fefb75659fb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.962402;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_a50a73c5096ae3c5b6497741.woff')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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_46f4a3fec5fd61e8d2c8be68.woff')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_ce8eecb67bc8898a5ba52060.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-2.622000px;}
.lsb{letter-spacing:-1.326000px;}
.ls12{letter-spacing:-0.586800px;}
.lsa{letter-spacing:-0.576600px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.322200px;}
.ls0{letter-spacing:0.667500px;}
.ls13{letter-spacing:1.020000px;}
.ls3{letter-spacing:1.242600px;}
.lse{letter-spacing:1.434000px;}
.ls2{letter-spacing:3.126000px;}
.ls4{letter-spacing:76.620000px;}
.ls5{letter-spacing:76.672500px;}
.lsd{letter-spacing:84.645000px;}
.lsc{letter-spacing:84.697500px;}
.ls17{letter-spacing:92.602500px;}
.ls15{letter-spacing:97.297500px;}
.lsf{letter-spacing:105.022500px;}
.ls10{letter-spacing:105.075000px;}
.ls6{letter-spacing:111.645000px;}
.ls7{letter-spacing:111.697500px;}
.ls16{letter-spacing:119.572500px;}
.ls9{letter-spacing:130.278900px;}
.ls8{letter-spacing:150.827400px;}
.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;}
}
.ws2{word-spacing:-69.554100px;}
.ws3{word-spacing:-66.428100px;}
.ws9{word-spacing:-66.386400px;}
.wsa{word-spacing:-46.328700px;}
.ws4{word-spacing:-40.115400px;}
.wsb{word-spacing:-40.073700px;}
.ws8{word-spacing:-39.497100px;}
.ws11{word-spacing:-33.818700px;}
.wsd{word-spacing:-31.499700px;}
.wsc{word-spacing:-30.065700px;}
.wsf{word-spacing:-18.406950px;}
.wse{word-spacing:-17.709150px;}
.ws10{word-spacing:-14.764950px;}
.ws7{word-spacing:-0.162300px;}
.ws6{word-spacing:-0.162150px;}
.ws0{word-spacing:-0.045000px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:1375.373550px;}
._11{margin-left:-19.238100px;}
._a{margin-left:-15.856500px;}
._f{margin-left:-11.569650px;}
._10{margin-left:-10.131450px;}
._b{margin-left:-8.990250px;}
._9{margin-left:-7.955250px;}
._e{margin-left:-6.818550px;}
._5{margin-left:-4.913550px;}
._6{margin-left:-3.893100px;}
._2{margin-left:-2.655000px;}
._0{margin-left:-1.125000px;}
._1{width:1.440000px;}
._3{width:2.565000px;}
._4{width:3.723600px;}
._8{width:5.177100px;}
._7{width:6.358800px;}
._c{width:15.348000px;}
._d{width:18.712200px;}
.fc7{color:rgb(156,77,164);}
.fc6{color:rgb(66,133,244);}
.fc5{color:transparent;}
.fc4{color:rgb(0,151,167);}
.fc2{color:rgb(116,23,85);}
.fc1{color:rgb(86,17,65);}
.fc8{color:rgb(64,64,64);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:45.000000px;}
.fs11{font-size:72.150000px;}
.fs14{font-size:85.500000px;}
.fs13{font-size:85.650000px;}
.fs1{font-size:94.650000px;}
.fsb{font-size:108.150000px;}
.fs12{font-size:121.650000px;}
.fs5{font-size:126.150000px;}
.fsf{font-size:139.650000px;}
.fsd{font-size:144.150000px;}
.fs7{font-size:144.300000px;}
.fse{font-size:148.650000px;}
.fs10{font-size:153.300000px;}
.fs9{font-size:162.150000px;}
.fsa{font-size:162.300000px;}
.fs8{font-size:166.650000px;}
.fsc{font-size:166.800000px;}
.fs6{font-size:193.650000px;}
.fs4{font-size:238.800000px;}
.fs3{font-size:238.950000px;}
.fs2{font-size:310.950000px;}
.y0{bottom:0.000000px;}
.y1{bottom:19.162500px;}
.y2{bottom:20.287500px;}
.y3{bottom:25.050000px;}
.y3c{bottom:47.137500px;}
.y69{bottom:59.587500px;}
.y39{bottom:61.462500px;}
.y57{bottom:71.850000px;}
.y1d{bottom:78.525000px;}
.y68{bottom:84.375000px;}
.y4a{bottom:92.250000px;}
.y6{bottom:102.525000px;}
.y38{bottom:106.500000px;}
.y67{bottom:110.287500px;}
.y3b{bottom:119.250000px;}
.y1c{bottom:122.437500px;}
.yc{bottom:131.362500px;}
.y8d{bottom:132.112500px;}
.y49{bottom:135.037500px;}
.y66{bottom:135.075000px;}
.y2d{bottom:147.075000px;}
.y37{bottom:150.450000px;}
.y65{bottom:160.980000px;}
.y56{bottom:161.700000px;}
.y8b{bottom:163.980000px;}
.y1b{bottom:165.255000px;}
.y75{bottom:165.750000px;}
.y48{bottom:177.855000px;}
.y64{bottom:185.775000px;}
.y2c{bottom:190.980000px;}
.y3a{bottom:191.325000px;}
.y36{bottom:194.400000px;}
.y74{bottom:198.420000px;}
.y8a{bottom:200.070000px;}
.y55{bottom:205.650000px;}
.y1a{bottom:208.050000px;}
.y8{bottom:208.620000px;}
.y63{bottom:210.525000px;}
.y47{bottom:215.025000px;}
.y8c{bottom:218.850000px;}
.y73{bottom:231.075000px;}
.y2b{bottom:233.820000px;}
.y89{bottom:236.100000px;}
.y62{bottom:236.445000px;}
.y35{bottom:237.195000px;}
.y54{bottom:248.475000px;}
.y19{bottom:252.000000px;}
.y7{bottom:254.775000px;}
.y61{bottom:261.225000px;}
.y88{bottom:272.130000px;}
.y34{bottom:281.145000px;}
.y60{bottom:287.130000px;}
.y53{bottom:292.380000px;}
.y72{bottom:295.320000px;}
.y46{bottom:299.550000px;}
.y87{bottom:308.220000px;}
.y5f{bottom:311.925000px;}
.y7d{bottom:312.150000px;}
.y2a{bottom:321.675000px;}
.y33{bottom:323.925000px;}
.y71{bottom:327.975000px;}
.y52{bottom:335.220000px;}
.y5e{bottom:336.705000px;}
.y18{bottom:338.745000px;}
.y45{bottom:343.455000px;}
.y86{bottom:344.250000px;}
.y7c{bottom:354.975000px;}
.y70{bottom:360.645000px;}
.y5d{bottom:362.625000px;}
.y29{bottom:365.625000px;}
.y32{bottom:366.750000px;}
.y51{bottom:378.000000px;}
.y85{bottom:380.280000px;}
.y17{bottom:381.570000px;}
.y44{bottom:386.280000px;}
.y5c{bottom:387.405000px;}
.y6f{bottom:393.300000px;}
.y7b{bottom:398.880000px;}
.y22{bottom:409.245000px;}
.y28{bottom:409.575000px;}
.y31{bottom:410.700000px;}
.y5b{bottom:413.325000px;}
.y5{bottom:414.570000px;}
.y84{bottom:416.370000px;}
.y50{bottom:421.950000px;}
.y16{bottom:424.350000px;}
.y6e{bottom:426.000000px;}
.y43{bottom:429.075000px;}
.y5a{bottom:438.120000px;}
.y10{bottom:439.905000px;}
.y7a{bottom:441.720000px;}
.y27{bottom:452.370000px;}
.y83{bottom:452.400000px;}
.y21{bottom:453.150000px;}
.y30{bottom:453.495000px;}
.y6d{bottom:457.530000px;}
.y59{bottom:462.900000px;}
.y4f{bottom:464.775000px;}
.y15{bottom:468.300000px;}
.y42{bottom:473.025000px;}
.y79{bottom:484.530000px;}
.y4{bottom:486.675000px;}
.y82{bottom:488.445000px;}
.y58{bottom:488.820000px;}
.y6c{bottom:490.200000px;}
.yf{bottom:490.620000px;}
.y20{bottom:495.975000px;}
.y2f{bottom:497.445000px;}
.y4e{bottom:508.695000px;}
.y14{bottom:511.095000px;}
.y41{bottom:515.850000px;}
.y81{bottom:524.505000px;}
.y78{bottom:528.450000px;}
.y26{bottom:539.100000px;}
.y2e{bottom:540.225000px;}
.ye{bottom:541.320000px;}
.y4d{bottom:551.505000px;}
.y13{bottom:555.045000px;}
.y6b{bottom:555.525000px;}
.y40{bottom:559.755000px;}
.y80{bottom:560.550000px;}
.y77{bottom:571.275000px;}
.y1f{bottom:582.720000px;}
.y25{bottom:583.050000px;}
.y6a{bottom:588.225000px;}
.yd{bottom:592.005000px;}
.y4c{bottom:594.300000px;}
.y7f{bottom:596.595000px;}
.y12{bottom:597.870000px;}
.y3f{bottom:602.595000px;}
.y76{bottom:612.945000px;}
.y24{bottom:627.000000px;}
.y7e{bottom:633.780000px;}
.y3e{bottom:637.200000px;}
.y4b{bottom:638.250000px;}
.y11{bottom:642.900000px;}
.y3d{bottom:658.620000px;}
.y1e{bottom:684.870000px;}
.y23{bottom:732.900000px;}
.y9{bottom:736.500000px;}
.ya{bottom:757.275000px;}
.yb{bottom:760.620000px;}
.h1{height:30.412500px;}
.h2{height:34.167480px;}
.h13{height:52.738550px;}
.h3{height:69.185083px;}
.h17{height:74.102783px;}
.h16{height:74.232788px;}
.hc{height:79.053003px;}
.h1c{height:88.920923px;}
.h15{height:89.752515px;}
.h6{height:92.210229px;}
.h10{height:102.078149px;}
.he{height:105.367456px;}
.h8{height:105.477100px;}
.h14{height:106.352856px;}
.h18{height:108.394043px;}
.h1b{height:108.506836px;}
.hf{height:108.656763px;}
.h11{height:112.055713px;}
.ha{height:121.612500px;}
.hb{height:121.725000px;}
.h9{height:121.813989px;}
.hd{height:121.923633px;}
.h1a{height:124.934692px;}
.h19{height:125.064697px;}
.h7{height:141.549829px;}
.h5{height:174.552539px;}
.h12{height:179.566406px;}
.h4{height:227.291089px;}
.h0{height:810.000000px;}
.w1{width:181.275000px;}
.w2{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xb{left:56.624979px;}
.x7{left:59.924979px;}
.x1{left:63.037500px;}
.x16{left:71.437479px;}
.xc{left:73.199979px;}
.x17{left:75.337479px;}
.xe{left:81.562479px;}
.x19{left:90.374979px;}
.x15{left:97.162479px;}
.x18{left:109.124979px;}
.x1a{left:111.974979px;}
.xd{left:113.737479px;}
.x1b{left:125.474979px;}
.xf{left:135.599979px;}
.x3{left:219.824979px;}
.xa{left:297.119979px;}
.x1c{left:552.824979px;}
.x5{left:565.124979px;}
.x6{left:570.494979px;}
.x2{left:585.194979px;}
.x4{left:605.819979px;}
.x8{left:675.404979px;}
.x9{left:727.319979px;}
.x10{left:883.154979px;}
.x11{left:955.229979px;}
.x12{left:959.744979px;}
.x13{left:1013.174979px;}
.x14{left:1036.349979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-2.330667pt;}
.lsb{letter-spacing:-1.178667pt;}
.ls12{letter-spacing:-0.521600pt;}
.lsa{letter-spacing:-0.512533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.286400pt;}
.ls0{letter-spacing:0.593333pt;}
.ls13{letter-spacing:0.906667pt;}
.ls3{letter-spacing:1.104533pt;}
.lse{letter-spacing:1.274667pt;}
.ls2{letter-spacing:2.778667pt;}
.ls4{letter-spacing:68.106667pt;}
.ls5{letter-spacing:68.153333pt;}
.lsd{letter-spacing:75.240000pt;}
.lsc{letter-spacing:75.286667pt;}
.ls17{letter-spacing:82.313333pt;}
.ls15{letter-spacing:86.486667pt;}
.lsf{letter-spacing:93.353333pt;}
.ls10{letter-spacing:93.400000pt;}
.ls6{letter-spacing:99.240000pt;}
.ls7{letter-spacing:99.286667pt;}
.ls16{letter-spacing:106.286667pt;}
.ls9{letter-spacing:115.803467pt;}
.ls8{letter-spacing:134.068800pt;}
.ws2{word-spacing:-61.825867pt;}
.ws3{word-spacing:-59.047200pt;}
.ws9{word-spacing:-59.010133pt;}
.wsa{word-spacing:-41.181067pt;}
.ws4{word-spacing:-35.658133pt;}
.wsb{word-spacing:-35.621067pt;}
.ws8{word-spacing:-35.108533pt;}
.ws11{word-spacing:-30.061067pt;}
.wsd{word-spacing:-27.999733pt;}
.wsc{word-spacing:-26.725067pt;}
.wsf{word-spacing:-16.361733pt;}
.wse{word-spacing:-15.741467pt;}
.ws10{word-spacing:-13.124400pt;}
.ws7{word-spacing:-0.144267pt;}
.ws6{word-spacing:-0.144133pt;}
.ws0{word-spacing:-0.040000pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:1222.554267pt;}
._11{margin-left:-17.100533pt;}
._a{margin-left:-14.094667pt;}
._f{margin-left:-10.284133pt;}
._10{margin-left:-9.005733pt;}
._b{margin-left:-7.991333pt;}
._9{margin-left:-7.071333pt;}
._e{margin-left:-6.060933pt;}
._5{margin-left:-4.367600pt;}
._6{margin-left:-3.460533pt;}
._2{margin-left:-2.360000pt;}
._0{margin-left:-1.000000pt;}
._1{width:1.280000pt;}
._3{width:2.280000pt;}
._4{width:3.309867pt;}
._8{width:4.601867pt;}
._7{width:5.652267pt;}
._c{width:13.642667pt;}
._d{width:16.633067pt;}
.fs0{font-size:40.000000pt;}
.fs11{font-size:64.133333pt;}
.fs14{font-size:76.000000pt;}
.fs13{font-size:76.133333pt;}
.fs1{font-size:84.133333pt;}
.fsb{font-size:96.133333pt;}
.fs12{font-size:108.133333pt;}
.fs5{font-size:112.133333pt;}
.fsf{font-size:124.133333pt;}
.fsd{font-size:128.133333pt;}
.fs7{font-size:128.266667pt;}
.fse{font-size:132.133333pt;}
.fs10{font-size:136.266667pt;}
.fs9{font-size:144.133333pt;}
.fsa{font-size:144.266667pt;}
.fs8{font-size:148.133333pt;}
.fsc{font-size:148.266667pt;}
.fs6{font-size:172.133333pt;}
.fs4{font-size:212.266667pt;}
.fs3{font-size:212.400000pt;}
.fs2{font-size:276.400000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:17.033333pt;}
.y2{bottom:18.033333pt;}
.y3{bottom:22.266667pt;}
.y3c{bottom:41.900000pt;}
.y69{bottom:52.966667pt;}
.y39{bottom:54.633333pt;}
.y57{bottom:63.866667pt;}
.y1d{bottom:69.800000pt;}
.y68{bottom:75.000000pt;}
.y4a{bottom:82.000000pt;}
.y6{bottom:91.133333pt;}
.y38{bottom:94.666667pt;}
.y67{bottom:98.033333pt;}
.y3b{bottom:106.000000pt;}
.y1c{bottom:108.833333pt;}
.yc{bottom:116.766667pt;}
.y8d{bottom:117.433333pt;}
.y49{bottom:120.033333pt;}
.y66{bottom:120.066667pt;}
.y2d{bottom:130.733333pt;}
.y37{bottom:133.733333pt;}
.y65{bottom:143.093333pt;}
.y56{bottom:143.733333pt;}
.y8b{bottom:145.760000pt;}
.y1b{bottom:146.893333pt;}
.y75{bottom:147.333333pt;}
.y48{bottom:158.093333pt;}
.y64{bottom:165.133333pt;}
.y2c{bottom:169.760000pt;}
.y3a{bottom:170.066667pt;}
.y36{bottom:172.800000pt;}
.y74{bottom:176.373333pt;}
.y8a{bottom:177.840000pt;}
.y55{bottom:182.800000pt;}
.y1a{bottom:184.933333pt;}
.y8{bottom:185.440000pt;}
.y63{bottom:187.133333pt;}
.y47{bottom:191.133333pt;}
.y8c{bottom:194.533333pt;}
.y73{bottom:205.400000pt;}
.y2b{bottom:207.840000pt;}
.y89{bottom:209.866667pt;}
.y62{bottom:210.173333pt;}
.y35{bottom:210.840000pt;}
.y54{bottom:220.866667pt;}
.y19{bottom:224.000000pt;}
.y7{bottom:226.466667pt;}
.y61{bottom:232.200000pt;}
.y88{bottom:241.893333pt;}
.y34{bottom:249.906667pt;}
.y60{bottom:255.226667pt;}
.y53{bottom:259.893333pt;}
.y72{bottom:262.506667pt;}
.y46{bottom:266.266667pt;}
.y87{bottom:273.973333pt;}
.y5f{bottom:277.266667pt;}
.y7d{bottom:277.466667pt;}
.y2a{bottom:285.933333pt;}
.y33{bottom:287.933333pt;}
.y71{bottom:291.533333pt;}
.y52{bottom:297.973333pt;}
.y5e{bottom:299.293333pt;}
.y18{bottom:301.106667pt;}
.y45{bottom:305.293333pt;}
.y86{bottom:306.000000pt;}
.y7c{bottom:315.533333pt;}
.y70{bottom:320.573333pt;}
.y5d{bottom:322.333333pt;}
.y29{bottom:325.000000pt;}
.y32{bottom:326.000000pt;}
.y51{bottom:336.000000pt;}
.y85{bottom:338.026667pt;}
.y17{bottom:339.173333pt;}
.y44{bottom:343.360000pt;}
.y5c{bottom:344.360000pt;}
.y6f{bottom:349.600000pt;}
.y7b{bottom:354.560000pt;}
.y22{bottom:363.773333pt;}
.y28{bottom:364.066667pt;}
.y31{bottom:365.066667pt;}
.y5b{bottom:367.400000pt;}
.y5{bottom:368.506667pt;}
.y84{bottom:370.106667pt;}
.y50{bottom:375.066667pt;}
.y16{bottom:377.200000pt;}
.y6e{bottom:378.666667pt;}
.y43{bottom:381.400000pt;}
.y5a{bottom:389.440000pt;}
.y10{bottom:391.026667pt;}
.y7a{bottom:392.640000pt;}
.y27{bottom:402.106667pt;}
.y83{bottom:402.133333pt;}
.y21{bottom:402.800000pt;}
.y30{bottom:403.106667pt;}
.y6d{bottom:406.693333pt;}
.y59{bottom:411.466667pt;}
.y4f{bottom:413.133333pt;}
.y15{bottom:416.266667pt;}
.y42{bottom:420.466667pt;}
.y79{bottom:430.693333pt;}
.y4{bottom:432.600000pt;}
.y82{bottom:434.173333pt;}
.y58{bottom:434.506667pt;}
.y6c{bottom:435.733333pt;}
.yf{bottom:436.106667pt;}
.y20{bottom:440.866667pt;}
.y2f{bottom:442.173333pt;}
.y4e{bottom:452.173333pt;}
.y14{bottom:454.306667pt;}
.y41{bottom:458.533333pt;}
.y81{bottom:466.226667pt;}
.y78{bottom:469.733333pt;}
.y26{bottom:479.200000pt;}
.y2e{bottom:480.200000pt;}
.ye{bottom:481.173333pt;}
.y4d{bottom:490.226667pt;}
.y13{bottom:493.373333pt;}
.y6b{bottom:493.800000pt;}
.y40{bottom:497.560000pt;}
.y80{bottom:498.266667pt;}
.y77{bottom:507.800000pt;}
.y1f{bottom:517.973333pt;}
.y25{bottom:518.266667pt;}
.y6a{bottom:522.866667pt;}
.yd{bottom:526.226667pt;}
.y4c{bottom:528.266667pt;}
.y7f{bottom:530.306667pt;}
.y12{bottom:531.440000pt;}
.y3f{bottom:535.640000pt;}
.y76{bottom:544.840000pt;}
.y24{bottom:557.333333pt;}
.y7e{bottom:563.360000pt;}
.y3e{bottom:566.400000pt;}
.y4b{bottom:567.333333pt;}
.y11{bottom:571.466667pt;}
.y3d{bottom:585.440000pt;}
.y1e{bottom:608.773333pt;}
.y23{bottom:651.466667pt;}
.y9{bottom:654.666667pt;}
.ya{bottom:673.133333pt;}
.yb{bottom:676.106667pt;}
.h1{height:27.033333pt;}
.h2{height:30.371094pt;}
.h13{height:46.878711pt;}
.h3{height:61.497852pt;}
.h17{height:65.869141pt;}
.h16{height:65.984701pt;}
.hc{height:70.269336pt;}
.h1c{height:79.040820pt;}
.h15{height:79.780013pt;}
.h6{height:81.964648pt;}
.h10{height:90.736133pt;}
.he{height:93.659961pt;}
.h8{height:93.757422pt;}
.h14{height:94.535872pt;}
.h18{height:96.350260pt;}
.h1b{height:96.450521pt;}
.hf{height:96.583789pt;}
.h11{height:99.605078pt;}
.ha{height:108.100000pt;}
.hb{height:108.200000pt;}
.h9{height:108.279102pt;}
.hd{height:108.376562pt;}
.h1a{height:111.053060pt;}
.h19{height:111.168620pt;}
.h7{height:125.822070pt;}
.h5{height:155.157812pt;}
.h12{height:159.614583pt;}
.h4{height:202.036523pt;}
.h0{height:720.000000pt;}
.w1{width:161.133333pt;}
.w2{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xb{left:50.333314pt;}
.x7{left:53.266648pt;}
.x1{left:56.033333pt;}
.x16{left:63.499981pt;}
.xc{left:65.066648pt;}
.x17{left:66.966648pt;}
.xe{left:72.499981pt;}
.x19{left:80.333314pt;}
.x15{left:86.366648pt;}
.x18{left:96.999981pt;}
.x1a{left:99.533314pt;}
.xd{left:101.099981pt;}
.x1b{left:111.533314pt;}
.xf{left:120.533314pt;}
.x3{left:195.399981pt;}
.xa{left:264.106648pt;}
.x1c{left:491.399981pt;}
.x5{left:502.333314pt;}
.x6{left:507.106648pt;}
.x2{left:520.173314pt;}
.x4{left:538.506648pt;}
.x8{left:600.359981pt;}
.x9{left:646.506648pt;}
.x10{left:785.026648pt;}
.x11{left:849.093314pt;}
.x12{left:853.106648pt;}
.x13{left:900.599981pt;}
.x14{left:921.199981pt;}
}




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