
    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_aba1b802f048fd45635b41bd.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_85a3465cb0630db12e381f83.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_62342fc7f7fa815425a4c51d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1e2cedd1ea50e18ec6515d90.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0270274939f30597d65bd0f9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.967773;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_9eaedc5472ec363330b757d1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.936523;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_7b2c1a1a7facb69380d143cc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.734863;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_386b58f03473fc646dae5bc0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_a743d7d753ca8e584378dbb4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.918945;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.198854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.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:-74.554966px;}
.v5{vertical-align:-2.040930px;}
.v3{vertical-align:-1.019622px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.475828px;}
.v1{vertical-align:74.554986px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.062031px;}
.ls4{letter-spacing:0.062065px;}
.ls5{letter-spacing:0.062085px;}
.ls2{letter-spacing:0.064090px;}
.ls1{letter-spacing:0.148873px;}
.ls0{letter-spacing:0.148886px;}
.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:-313.130920px;}
.ws14{word-spacing:-53.913354px;}
.ws5{word-spacing:-53.184002px;}
.ws0{word-spacing:-53.184000px;}
.ws1{word-spacing:-52.368855px;}
.ws11{word-spacing:-47.110407px;}
.wse{word-spacing:-37.739347px;}
.ws2{word-spacing:-29.251200px;}
.ws3{word-spacing:-26.847250px;}
.ws6{word-spacing:-0.170587px;}
.ws15{word-spacing:0.000000px;}
.wsc{word-spacing:552.288618px;}
.ws13{word-spacing:625.360883px;}
.ws12{word-spacing:625.360967px;}
.ws9{word-spacing:825.621349px;}
.ws8{word-spacing:1285.776000px;}
.wsa{word-spacing:1623.628224px;}
.ws7{word-spacing:1903.355100px;}
.wsb{word-spacing:2053.823133px;}
.wsd{word-spacing:2058.710330px;}
.wsf{word-spacing:2130.599563px;}
.ws10{word-spacing:4449.977678px;}
._26{margin-left:-1736.849364px;}
._25{margin-left:-1057.120961px;}
._8{margin-left:-31.968000px;}
._21{margin-left:-15.984000px;}
._0{margin-left:-14.208000px;}
._28{margin-left:-13.200000px;}
._5{margin-left:-11.721600px;}
._6{margin-left:-7.470343px;}
._2{margin-left:-5.913600px;}
._3{margin-left:-4.857600px;}
._7{margin-left:-3.668743px;}
._24{margin-left:-2.496000px;}
._4{margin-left:-1.161600px;}
._1{width:1.134343px;}
._9{width:2.639503px;}
._19{width:10.512000px;}
._1a{width:11.572970px;}
._20{width:13.467258px;}
._e{width:15.360000px;}
._1f{width:16.655999px;}
._17{width:18.144000px;}
._16{width:19.152000px;}
._11{width:20.177657px;}
._10{width:22.656001px;}
._f{width:24.192001px;}
._1e{width:32.112000px;}
._14{width:33.984000px;}
._23{width:38.736000px;}
._22{width:40.931313px;}
._b{width:42.624001px;}
._a{width:47.808001px;}
._12{width:50.112002px;}
._13{width:51.299315px;}
._1d{width:57.600002px;}
._1c{width:58.944002px;}
._d{width:62.400002px;}
._c{width:63.552002px;}
._15{width:73.152000px;}
._1b{width:963.433335px;}
._27{width:1458.211616px;}
._18{width:2006.645580px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,84,159);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:86.400000px;}
.fs8{font-size:96.921480px;}
.fsa{font-size:96.922278px;}
.fs3{font-size:105.600000px;}
.fsb{font-size:116.492166px;}
.fs15{font-size:119.051568px;}
.fs13{font-size:125.056248px;}
.fs11{font-size:144.000000px;}
.fs17{font-size:156.041850px;}
.fs16{font-size:170.073672px;}
.fs10{font-size:170.587056px;}
.fs12{font-size:180.000000px;}
.fs7{font-size:180.562866px;}
.fs9{font-size:186.387474px;}
.fs2{font-size:189.057240px;}
.fs1{font-size:192.000000px;}
.fsd{font-size:192.000006px;}
.fsf{font-size:203.922036px;}
.fs5{font-size:226.868700px;}
.fs0{font-size:226.868706px;}
.fsc{font-size:239.999994px;}
.fs6{font-size:288.000000px;}
.fs14{font-size:482.765808px;}
.fse{font-size:987.794700px;}
.y0{bottom:0.000000px;}
.ya{bottom:1.499817px;}
.y5{bottom:58.130346px;}
.y17{bottom:69.697183px;}
.y6{bottom:91.194472px;}
.y16{bottom:102.633058px;}
.y7e{bottom:104.800638px;}
.ye{bottom:117.599013px;}
.y37{bottom:117.788634px;}
.y4{bottom:119.549158px;}
.y7{bottom:124.258597px;}
.y76{bottom:131.150999px;}
.y75{bottom:134.769956px;}
.y15{bottom:135.697183px;}
.y8{bottom:157.194472px;}
.y7d{bottom:162.794366px;}
.y7b{bottom:163.307296px;}
.y14{bottom:168.697183px;}
.yd{bottom:176.679401px;}
.y3{bottom:178.629546px;}
.y78{bottom:193.415606px;}
.y13{bottom:201.697183px;}
.y12{bottom:234.697183px;}
.yc{bottom:235.759788px;}
.y2{bottom:237.709934px;}
.y11{bottom:267.697183px;}
.y9{bottom:282.648768px;}
.yb{bottom:298.141547px;}
.y1{bottom:300.091692px;}
.y10{bottom:300.697183px;}
.y77{bottom:307.376655px;}
.yf{bottom:333.697183px;}
.y3a{bottom:370.605201px;}
.y79{bottom:374.835102px;}
.y33{bottom:384.331224px;}
.y35{bottom:384.331782px;}
.y39{bottom:424.699209px;}
.y66{bottom:525.777123px;}
.y7a{bottom:528.439317px;}
.y7c{bottom:528.760317px;}
.y74{bottom:529.393317px;}
.y48{bottom:609.865282px;}
.y42{bottom:618.750020px;}
.y47{bottom:645.912232px;}
.y46{bottom:832.615278px;}
.y45{bottom:868.662226px;}
.y6d{bottom:1011.164046px;}
.y43{bottom:1035.083031px;}
.y6c{bottom:1059.163998px;}
.y6b{bottom:1107.164022px;}
.y44{bottom:1127.519931px;}
.y6a{bottom:1155.164046px;}
.y69{bottom:1302.539044px;}
.y68{bottom:1343.296895px;}
.y62{bottom:1493.595645px;}
.y61{bottom:1541.595669px;}
.y60{bottom:1589.595693px;}
.y4a{bottom:1622.365458px;}
.y65{bottom:1638.092817px;}
.y49{bottom:1658.412408px;}
.y38{bottom:1764.116817px;}
.y41{bottom:1792.617055px;}
.y3f{bottom:1919.970193px;}
.y67{bottom:1938.869941px;}
.y3e{bottom:1967.970217px;}
.y3d{bottom:2015.970241px;}
.y36{bottom:2039.806317px;}
.y32{bottom:2135.249817px;}
.y64{bottom:2137.026882px;}
.y34{bottom:2157.550317px;}
.y63{bottom:2173.073832px;}
.y24{bottom:2288.343731px;}
.y23{bottom:2348.343781px;}
.y3c{bottom:2359.211181px;}
.y3b{bottom:2407.211205px;}
.y22{bottom:2408.343735px;}
.y21{bottom:2468.343688px;}
.y20{bottom:2551.992188px;}
.y4d{bottom:2667.474191px;}
.y2e{bottom:2709.468974px;}
.y31{bottom:2709.469022px;}
.y4c{bottom:2715.474215px;}
.y4b{bottom:2763.474238px;}
.y2d{bottom:2769.468928px;}
.y30{bottom:2769.468976px;}
.y2c{bottom:2829.468882px;}
.y2f{bottom:2829.468930px;}
.y55{bottom:2830.156939px;}
.y51{bottom:2884.448390px;}
.y4e{bottom:2959.818696px;}
.y52{bottom:2959.862966px;}
.y2b{bottom:3005.678112px;}
.y53{bottom:3053.389439px;}
.y4f{bottom:3053.389470px;}
.y2a{bottom:3059.483869px;}
.y54{bottom:3146.915911px;}
.y50{bottom:3146.915943px;}
.y5e{bottom:3283.567375px;}
.y5d{bottom:3319.107820px;}
.y5c{bottom:3355.154770px;}
.y40{bottom:3395.741600px;}
.y5b{bottom:3534.609264px;}
.y6e{bottom:3540.843819px;}
.y71{bottom:3540.843867px;}
.y5a{bottom:3572.906214px;}
.y70{bottom:3600.843821px;}
.y73{bottom:3612.670867px;}
.y72{bottom:3630.211038px;}
.y6f{bottom:3660.843775px;}
.y29{bottom:3745.476522px;}
.y59{bottom:3763.777057px;}
.y58{bottom:3799.824007px;}
.y28{bottom:3805.476572px;}
.y27{bottom:3865.476622px;}
.y26{bottom:3925.476576px;}
.y57{bottom:3927.093817px;}
.y25{bottom:3985.476529px;}
.y56{bottom:3987.093771px;}
.y5f{bottom:4066.242210px;}
.y7f{bottom:4070.741595px;}
.y1f{bottom:4126.451525px;}
.y1e{bottom:4184.697611px;}
.y1d{bottom:4242.943696px;}
.y1c{bottom:4313.725873px;}
.y1b{bottom:4350.129670px;}
.y1a{bottom:4432.243473px;}
.y19{bottom:4515.690494px;}
.y18{bottom:4587.690494px;}
.h7{height:62.985938px;}
.hc{height:70.656719px;}
.h6{height:75.590625px;}
.h4{height:76.879688px;}
.h5{height:76.982813px;}
.h1b{height:90.451289px;}
.h17{height:91.166493px;}
.h14{height:104.343750px;}
.h1c{height:104.927117px;}
.h1f{height:118.555234px;}
.h1d{height:123.236977px;}
.h13{height:123.608980px;}
.h16{height:126.720000px;}
.h1e{height:129.216130px;}
.hd{height:135.877197px;}
.h15{height:136.757812px;}
.h3{height:137.823466px;}
.hf{height:139.125004px;}
.hb{height:145.117055px;}
.h11{height:154.932953px;}
.h9{height:165.166617px;}
.h2{height:165.166621px;}
.he{height:173.906246px;}
.ha{height:208.687500px;}
.h19{height:349.816630px;}
.h8{height:424.500000px;}
.h1a{height:484.711500px;}
.h12{height:533.086500px;}
.h18{height:583.782000px;}
.h10{height:750.492458px;}
.h0{height:5056.499817px;}
.h1{height:5056.500000px;}
.w7{width:675.000000px;}
.w5{width:685.336500px;}
.w4{width:1180.798500px;}
.w6{width:1210.488000px;}
.w8{width:1593.586500px;}
.w3{width:1657.177500px;}
.w2{width:1679.215500px;}
.w1{width:3576.000000px;}
.w0{width:3576.000091px;}
.x0{left:0.000000px;}
.x3b{left:26.324975px;}
.x19{left:35.889000px;}
.x17{left:46.675500px;}
.x4c{left:64.869434px;}
.xb{left:66.558243px;}
.x1f{left:69.529789px;}
.x5{left:108.793944px;}
.x14{left:124.816469px;}
.x18{left:126.970646px;}
.x22{left:139.277534px;}
.xc{left:141.801773px;}
.x10{left:144.046874px;}
.xd{left:146.861595px;}
.x41{left:160.664007px;}
.x1e{left:167.127000px;}
.x48{left:175.540769px;}
.x42{left:205.851497px;}
.x1d{left:252.569901px;}
.x45{left:263.015498px;}
.x16{left:330.410219px;}
.x23{left:369.127754px;}
.x27{left:378.632832px;}
.x28{left:380.742207px;}
.x24{left:391.949997px;}
.x15{left:410.378990px;}
.x25{left:436.886675px;}
.x26{left:438.996050px;}
.x47{left:445.118128px;}
.x46{left:464.025294px;}
.x13{left:540.269586px;}
.x43{left:589.499997px;}
.x11{left:601.029561px;}
.x12{left:620.262745px;}
.x40{left:629.454582px;}
.x4a{left:664.464147px;}
.x1a{left:686.709303px;}
.x1c{left:748.033285px;}
.x49{left:764.530058px;}
.x4e{left:778.173059px;}
.x20{left:794.105543px;}
.x21{left:954.421748px;}
.x1b{left:1224.411863px;}
.x4d{left:1420.692132px;}
.xe{left:1766.953176px;}
.x31{left:1769.859366px;}
.xf{left:1771.710876px;}
.x29{left:1774.448183px;}
.x37{left:1798.611424px;}
.x3a{left:1800.000000px;}
.x44{left:1804.675500px;}
.x36{left:1805.677723px;}
.x4b{left:1809.175500px;}
.x2a{left:1844.063218px;}
.x2b{left:1860.285202px;}
.x2c{left:1962.136951px;}
.x2d{left:1982.861554px;}
.x2e{left:2015.764103px;}
.x3d{left:2161.289073px;}
.x3e{left:2162.671923px;}
.x3f{left:2248.470723px;}
.x30{left:2500.667047px;}
.x32{left:2548.078757px;}
.x33{left:2550.188132px;}
.x34{left:2553.409592px;}
.x35{left:2555.518966px;}
.x3c{left:2557.574972px;}
.x38{left:2604.328812px;}
.x39{left:2606.438187px;}
.x6{left:2613.252195px;}
.x2{left:2825.506909px;}
.x8{left:2848.442267px;}
.x3{left:2874.617458px;}
.xa{left:2890.813964px;}
.x4{left:2899.542008px;}
.x9{left:2977.588307px;}
.x1{left:3026.582157px;}
.x7{left:3032.347269px;}
.x2f{left:3087.288899px;}
@media print{
.v2{vertical-align:-66.271081pt;}
.v5{vertical-align:-1.814160pt;}
.v3{vertical-align:-0.906331pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.867403pt;}
.v1{vertical-align:66.271099pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.055139pt;}
.ls4{letter-spacing:0.055169pt;}
.ls5{letter-spacing:0.055187pt;}
.ls2{letter-spacing:0.056969pt;}
.ls1{letter-spacing:0.132331pt;}
.ls0{letter-spacing:0.132343pt;}
.ws4{word-spacing:-278.338595pt;}
.ws14{word-spacing:-47.922981pt;}
.ws5{word-spacing:-47.274668pt;}
.ws0{word-spacing:-47.274667pt;}
.ws1{word-spacing:-46.550094pt;}
.ws11{word-spacing:-41.875917pt;}
.wse{word-spacing:-33.546086pt;}
.ws2{word-spacing:-26.001067pt;}
.ws3{word-spacing:-23.864222pt;}
.ws6{word-spacing:-0.151633pt;}
.ws15{word-spacing:0.000000pt;}
.wsc{word-spacing:490.923216pt;}
.ws13{word-spacing:555.876341pt;}
.ws12{word-spacing:555.876415pt;}
.ws9{word-spacing:733.885644pt;}
.ws8{word-spacing:1142.912000pt;}
.wsa{word-spacing:1443.225088pt;}
.ws7{word-spacing:1691.871200pt;}
.wsb{word-spacing:1825.620562pt;}
.wsd{word-spacing:1829.964738pt;}
.wsf{word-spacing:1893.866278pt;}
.ws10{word-spacing:3955.535714pt;}
._26{margin-left:-1543.866102pt;}
._25{margin-left:-939.663076pt;}
._8{margin-left:-28.416000pt;}
._21{margin-left:-14.208000pt;}
._0{margin-left:-12.629333pt;}
._28{margin-left:-11.733333pt;}
._5{margin-left:-10.419200pt;}
._6{margin-left:-6.640305pt;}
._2{margin-left:-5.256533pt;}
._3{margin-left:-4.317867pt;}
._7{margin-left:-3.261105pt;}
._24{margin-left:-2.218667pt;}
._4{margin-left:-1.032533pt;}
._1{width:1.008305pt;}
._9{width:2.346225pt;}
._19{width:9.344000pt;}
._1a{width:10.287084pt;}
._20{width:11.970896pt;}
._e{width:13.653334pt;}
._1f{width:14.805332pt;}
._17{width:16.128000pt;}
._16{width:17.024000pt;}
._11{width:17.935695pt;}
._10{width:20.138667pt;}
._f{width:21.504001pt;}
._1e{width:28.544000pt;}
._14{width:30.208000pt;}
._23{width:34.432000pt;}
._22{width:36.383389pt;}
._b{width:37.888001pt;}
._a{width:42.496001pt;}
._12{width:44.544001pt;}
._13{width:45.599391pt;}
._1d{width:51.200002pt;}
._1c{width:52.394668pt;}
._d{width:55.466668pt;}
._c{width:56.490668pt;}
._15{width:65.024000pt;}
._1b{width:856.385186pt;}
._27{width:1296.188103pt;}
._18{width:1783.684960pt;}
.fs4{font-size:76.800000pt;}
.fs8{font-size:86.152427pt;}
.fsa{font-size:86.153136pt;}
.fs3{font-size:93.866667pt;}
.fsb{font-size:103.548592pt;}
.fs15{font-size:105.823616pt;}
.fs13{font-size:111.161109pt;}
.fs11{font-size:128.000000pt;}
.fs17{font-size:138.703867pt;}
.fs16{font-size:151.176597pt;}
.fs10{font-size:151.632939pt;}
.fs12{font-size:160.000000pt;}
.fs7{font-size:160.500325pt;}
.fs9{font-size:165.677755pt;}
.fs2{font-size:168.050880pt;}
.fs1{font-size:170.666667pt;}
.fsd{font-size:170.666672pt;}
.fsf{font-size:181.264032pt;}
.fs5{font-size:201.661067pt;}
.fs0{font-size:201.661072pt;}
.fsc{font-size:213.333328pt;}
.fs6{font-size:256.000000pt;}
.fs14{font-size:429.125163pt;}
.fse{font-size:878.039733pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:1.333171pt;}
.y5{bottom:51.671419pt;}
.y17{bottom:61.953052pt;}
.y6{bottom:81.061753pt;}
.y16{bottom:91.229385pt;}
.y7e{bottom:93.156123pt;}
.ye{bottom:104.532456pt;}
.y37{bottom:104.701008pt;}
.y4{bottom:106.265919pt;}
.y7{bottom:110.452086pt;}
.y76{bottom:116.578665pt;}
.y75{bottom:119.795516pt;}
.y15{bottom:120.619719pt;}
.y8{bottom:139.728419pt;}
.y7d{bottom:144.706103pt;}
.y7b{bottom:145.162041pt;}
.y14{bottom:149.953052pt;}
.yd{bottom:157.048356pt;}
.y3{bottom:158.781819pt;}
.y78{bottom:171.924983pt;}
.y13{bottom:179.286385pt;}
.y12{bottom:208.619719pt;}
.yc{bottom:209.564256pt;}
.y2{bottom:211.297719pt;}
.y11{bottom:237.953052pt;}
.y9{bottom:251.243349pt;}
.yb{bottom:265.014708pt;}
.y1{bottom:266.748171pt;}
.y10{bottom:267.286385pt;}
.y77{bottom:273.223693pt;}
.yf{bottom:296.619719pt;}
.y3a{bottom:329.426845pt;}
.y79{bottom:333.186757pt;}
.y33{bottom:341.627755pt;}
.y35{bottom:341.628251pt;}
.y39{bottom:377.510408pt;}
.y66{bottom:467.357443pt;}
.y7a{bottom:469.723837pt;}
.y7c{bottom:470.009171pt;}
.y74{bottom:470.571837pt;}
.y48{bottom:542.102473pt;}
.y42{bottom:550.000017pt;}
.y47{bottom:574.144207pt;}
.y46{bottom:740.102469pt;}
.y45{bottom:772.144201pt;}
.y6d{bottom:898.812485pt;}
.y43{bottom:920.073805pt;}
.y6c{bottom:941.479109pt;}
.y6b{bottom:984.145797pt;}
.y44{bottom:1002.239939pt;}
.y6a{bottom:1026.812485pt;}
.y69{bottom:1157.812484pt;}
.y68{bottom:1194.041684pt;}
.y62{bottom:1327.640573pt;}
.y61{bottom:1370.307261pt;}
.y60{bottom:1412.973949pt;}
.y4a{bottom:1442.102629pt;}
.y65{bottom:1456.082504pt;}
.y49{bottom:1474.144363pt;}
.y38{bottom:1568.103837pt;}
.y41{bottom:1593.437383pt;}
.y3f{bottom:1706.640172pt;}
.y67{bottom:1723.439948pt;}
.y3e{bottom:1749.306860pt;}
.y3d{bottom:1791.973548pt;}
.y36{bottom:1813.161171pt;}
.y32{bottom:1897.999837pt;}
.y64{bottom:1899.579451pt;}
.y34{bottom:1917.822504pt;}
.y63{bottom:1931.621184pt;}
.y24{bottom:2034.083316pt;}
.y23{bottom:2087.416694pt;}
.y3c{bottom:2097.076605pt;}
.y3b{bottom:2139.743293pt;}
.y22{bottom:2140.749986pt;}
.y21{bottom:2194.083279pt;}
.y20{bottom:2268.437500pt;}
.y4d{bottom:2371.088169pt;}
.y2e{bottom:2408.416866pt;}
.y31{bottom:2408.416909pt;}
.y4c{bottom:2413.754857pt;}
.y4b{bottom:2456.421545pt;}
.y2d{bottom:2461.750158pt;}
.y30{bottom:2461.750201pt;}
.y2c{bottom:2515.083451pt;}
.y2f{bottom:2515.083493pt;}
.y55{bottom:2515.695057pt;}
.y51{bottom:2563.954124pt;}
.y4e{bottom:2630.949952pt;}
.y52{bottom:2630.989303pt;}
.y2b{bottom:2671.713877pt;}
.y53{bottom:2714.123945pt;}
.y4f{bottom:2714.123973pt;}
.y2a{bottom:2719.541217pt;}
.y54{bottom:2797.258588pt;}
.y50{bottom:2797.258616pt;}
.y5e{bottom:2918.726556pt;}
.y5d{bottom:2950.318063pt;}
.y5c{bottom:2982.359796pt;}
.y40{bottom:3018.436977pt;}
.y5b{bottom:3141.874901pt;}
.y6e{bottom:3147.416728pt;}
.y71{bottom:3147.416771pt;}
.y5a{bottom:3175.916635pt;}
.y70{bottom:3200.750063pt;}
.y73{bottom:3211.262993pt;}
.y72{bottom:3226.854256pt;}
.y6f{bottom:3254.083355pt;}
.y29{bottom:3329.312464pt;}
.y59{bottom:3345.579607pt;}
.y58{bottom:3377.621340pt;}
.y28{bottom:3382.645842pt;}
.y27{bottom:3435.979219pt;}
.y26{bottom:3489.312512pt;}
.y57{bottom:3490.750060pt;}
.y25{bottom:3542.645804pt;}
.y56{bottom:3544.083352pt;}
.y5f{bottom:3614.437520pt;}
.y7f{bottom:3618.436973pt;}
.y1f{bottom:3667.956911pt;}
.y1e{bottom:3719.731210pt;}
.y1d{bottom:3771.505508pt;}
.y1c{bottom:3834.422999pt;}
.y1b{bottom:3866.781929pt;}
.y1a{bottom:3939.771976pt;}
.y19{bottom:4013.947105pt;}
.y18{bottom:4077.947105pt;}
.h7{height:55.987500pt;}
.hc{height:62.805973pt;}
.h6{height:67.191667pt;}
.h4{height:68.337500pt;}
.h5{height:68.429167pt;}
.h1b{height:80.401146pt;}
.h17{height:81.036883pt;}
.h14{height:92.750000pt;}
.h1c{height:93.268548pt;}
.h1f{height:105.382430pt;}
.h1d{height:109.543980pt;}
.h13{height:109.874649pt;}
.h16{height:112.640000pt;}
.h1e{height:114.858782pt;}
.hd{height:120.779730pt;}
.h15{height:121.562500pt;}
.h3{height:122.509748pt;}
.hf{height:123.666671pt;}
.hb{height:128.992937pt;}
.h11{height:137.718181pt;}
.h9{height:146.814771pt;}
.h2{height:146.814775pt;}
.he{height:154.583329pt;}
.ha{height:185.500000pt;}
.h19{height:310.948116pt;}
.h8{height:377.333333pt;}
.h1a{height:430.854667pt;}
.h12{height:473.854667pt;}
.h18{height:518.917333pt;}
.h10{height:667.104407pt;}
.h0{height:4494.666504pt;}
.h1{height:4494.666667pt;}
.w7{width:600.000000pt;}
.w5{width:609.188000pt;}
.w4{width:1049.598667pt;}
.w6{width:1075.989333pt;}
.w8{width:1416.521333pt;}
.w3{width:1473.046667pt;}
.w2{width:1492.636000pt;}
.w1{width:3178.666667pt;}
.w0{width:3178.666748pt;}
.x0{left:0.000000pt;}
.x3b{left:23.399977pt;}
.x19{left:31.901333pt;}
.x17{left:41.489333pt;}
.x4c{left:57.661719pt;}
.xb{left:59.162883pt;}
.x1f{left:61.804257pt;}
.x5{left:96.705728pt;}
.x14{left:110.947972pt;}
.x18{left:112.862796pt;}
.x22{left:123.802252pt;}
.xc{left:126.046020pt;}
.x10{left:128.041665pt;}
.xd{left:130.543640pt;}
.x41{left:142.812451pt;}
.x1e{left:148.557333pt;}
.x48{left:156.036239pt;}
.x42{left:182.979108pt;}
.x1d{left:224.506579pt;}
.x45{left:233.791553pt;}
.x16{left:293.697973pt;}
.x23{left:328.113559pt;}
.x27{left:336.562517pt;}
.x28{left:338.437517pt;}
.x24{left:348.399997pt;}
.x15{left:364.781324pt;}
.x25{left:388.343711pt;}
.x26{left:390.218711pt;}
.x47{left:395.660559pt;}
.x46{left:412.466928pt;}
.x13{left:480.239632pt;}
.x43{left:523.999997pt;}
.x11{left:534.248499pt;}
.x12{left:551.344663pt;}
.x40{left:559.515184pt;}
.x4a{left:590.634797pt;}
.x1a{left:610.408269pt;}
.x1c{left:664.918476pt;}
.x49{left:679.582273pt;}
.x4e{left:691.709385pt;}
.x20{left:705.871594pt;}
.x21{left:848.374887pt;}
.x1b{left:1088.366100pt;}
.x4d{left:1262.837451pt;}
.xe{left:1570.625045pt;}
.x31{left:1573.208325pt;}
.xf{left:1574.854112pt;}
.x29{left:1577.287273pt;}
.x37{left:1598.765711pt;}
.x3a{left:1600.000000pt;}
.x44{left:1604.156000pt;}
.x36{left:1605.046865pt;}
.x4b{left:1608.156000pt;}
.x2a{left:1639.167305pt;}
.x2b{left:1653.586847pt;}
.x2c{left:1744.121734pt;}
.x2d{left:1762.543603pt;}
.x2e{left:1791.790313pt;}
.x3d{left:1921.145843pt;}
.x3e{left:1922.375043pt;}
.x3f{left:1998.640643pt;}
.x30{left:2222.815153pt;}
.x32{left:2264.958895pt;}
.x33{left:2266.833895pt;}
.x34{left:2269.697415pt;}
.x35{left:2271.572415pt;}
.x3c{left:2273.399975pt;}
.x38{left:2314.958944pt;}
.x39{left:2316.833944pt;}
.x6{left:2322.890840pt;}
.x2{left:2511.561697pt;}
.x8{left:2531.948681pt;}
.x3{left:2555.215518pt;}
.xa{left:2569.612413pt;}
.x4{left:2577.370674pt;}
.x9{left:2646.745162pt;}
.x1{left:2690.295251pt;}
.x7{left:2695.419795pt;}
.x2f{left:2744.256799pt;}
}




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