
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_453154cfc026c02151d4331e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.987000;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_d36c22992112a33552a02c57.woff')format("woff");}.ff3{font-family:ff3;line-height:0.770000;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_7b0e4a642fdb24ad1d52cb45.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_53242fbe710f4ce27f5222d2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.194000;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_922e4ddca9c8ea25e428f384.woff')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_56fb37e06e805887f2668e83.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758000;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_a5bb4012f33b126427831477.woff')format("woff");}.ff8{font-family:ff8;line-height:1.096000;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_2bc659820d9649476ab7b622.woff')format("woff");}.ff9{font-family:ff9;line-height:1.100000;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_685d5e5e8dd6543e9fa16e51.woff')format("woff");}.ffa{font-family:ffa;line-height:1.135000;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_833a75a835ede92dce9025b1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.997000;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_eb4f8c6d2b13a7b668c2f57b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.987000;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_9b4ebeabe34d33cefa5948cd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.724000;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;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.064125px;}
.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;}
}
.ws1{word-spacing:-179.164845px;}
.ws0{word-spacing:-124.671461px;}
.ws4{word-spacing:-47.193974px;}
.ws7{word-spacing:-35.364597px;}
.ws8{word-spacing:-34.071478px;}
.ws9{word-spacing:-27.980819px;}
.ws2{word-spacing:-18.499048px;}
.wsa{word-spacing:-17.975542px;}
.ws3{word-spacing:-16.595999px;}
.ws5{word-spacing:-15.206084px;}
.ws6{word-spacing:-13.826542px;}
.wsb{word-spacing:0.000000px;}
._e{margin-left:-14.242926px;}
._b{margin-left:-9.842318px;}
._a{margin-left:-7.119914px;}
._7{margin-left:-5.960297px;}
._9{margin-left:-4.766807px;}
._4{margin-left:-3.238703px;}
._1{margin-left:-1.645603px;}
._3{width:1.942823px;}
._2{width:3.455939px;}
._d{width:6.625958px;}
._c{width:7.838550px;}
._8{width:9.042308px;}
._6{width:11.123064px;}
._0{width:12.311723px;}
._5{width:13.321607px;}
.fc5{color:transparent;}
.fc2{color:rgb(254,230,224);}
.fc4{color:rgb(255,49,49);}
.fc1{color:rgb(58,161,126);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:53.999948px;}
.fs12{font-size:53.999998px;}
.fs4{font-size:54.090000px;}
.fs9{font-size:59.984997px;}
.fs8{font-size:65.969996px;}
.fs5{font-size:71.864998px;}
.fs3{font-size:71.999997px;}
.fs14{font-size:77.984997px;}
.fse{font-size:83.969997px;}
.fs10{font-size:86.579996px;}
.fs2{font-size:86.849992px;}
.fs13{font-size:95.984996px;}
.fs15{font-size:107.999996px;}
.fsa{font-size:119.879991px;}
.fs7{font-size:121.948253px;}
.fs6{font-size:121.951016px;}
.fs11{font-size:122.579995px;}
.fs16{font-size:125.999995px;}
.fsf{font-size:131.984995px;}
.fsc{font-size:149.985003px;}
.fsd{font-size:179.999993px;}
.fs0{font-size:197.577592px;}
.fs1{font-size:283.937947px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.000008px;}
.y21{bottom:3.383450px;}
.y4{bottom:16.311703px;}
.y82{bottom:22.969871px;}
.y81{bottom:43.219870px;}
.yf{bottom:62.689982px;}
.y11{bottom:63.114671px;}
.y80{bottom:63.469869px;}
.y7f{bottom:83.719869px;}
.y27{bottom:109.969807px;}
.y2{bottom:116.714789px;}
.y26{bottom:130.219807px;}
.y25{bottom:150.469806px;}
.y24{bottom:177.844745px;}
.y85{bottom:221.219811px;}
.y84{bottom:241.469810px;}
.y83{bottom:261.719809px;}
.y7e{bottom:290.744988px;}
.y32{bottom:328.769986px;}
.y31{bottom:349.019985px;}
.y30{bottom:369.269985px;}
.y2f{bottom:389.519984px;}
.y2e{bottom:409.769983px;}
.y2d{bottom:430.019982px;}
.y2c{bottom:450.269981px;}
.y86{bottom:482.594920px;}
.y3f{bottom:548.973625px;}
.ya{bottom:563.291689px;}
.y3e{bottom:578.223624px;}
.y9{bottom:584.666688px;}
.y8{bottom:606.041687px;}
.y3d{bottom:607.473623px;}
.y7{bottom:627.416686px;}
.y3c{bottom:636.723621px;}
.y3b{bottom:665.973620px;}
.y3{bottom:682.739979px;}
.y3a{bottom:695.223619px;}
.yb{bottom:717.042462px;}
.y39{bottom:724.473618px;}
.yd{bottom:735.345329px;}
.y38{bottom:753.723617px;}
.yc{bottom:760.095328px;}
.y6{bottom:777.716860px;}
.y37{bottom:782.973615px;}
.y36{bottom:812.223614px;}
.y42{bottom:829.033381px;}
.y35{bottom:850.568509px;}
.y1c{bottom:861.893388px;}
.y1e{bottom:875.393388px;}
.y1b{bottom:878.768387px;}
.y1d{bottom:894.518387px;}
.y1a{bottom:895.643387px;}
.y34{bottom:896.693507px;}
.y19{bottom:913.643386px;}
.y20{bottom:913.859970px;}
.y18{bottom:932.768385px;}
.y17{bottom:951.893384px;}
.y16{bottom:971.018384px;}
.y15{bottom:990.143383px;}
.y14{bottom:1009.268382px;}
.y6a{bottom:1025.245325px;}
.y13{bottom:1028.393381px;}
.y12{bottom:1047.518380px;}
.y69{bottom:1051.120324px;}
.y68{bottom:1076.995323px;}
.y10{bottom:1077.299963px;}
.ye{bottom:1077.659963px;}
.y67{bottom:1102.870322px;}
.y66{bottom:1128.745321px;}
.y65{bottom:1154.620320px;}
.y64{bottom:1180.495319px;}
.y63{bottom:1206.370318px;}
.y62{bottom:1232.245317px;}
.y61{bottom:1258.120316px;}
.y1f{bottom:1260.643483px;}
.y60{bottom:1283.995315px;}
.y5f{bottom:1309.870313px;}
.y41{bottom:1313.469701px;}
.y5e{bottom:1335.745312px;}
.y5d{bottom:1361.620311px;}
.y4f{bottom:1365.525987px;}
.y5c{bottom:1387.495310px;}
.y4e{bottom:1390.275986px;}
.y5b{bottom:1413.370309px;}
.y4d{bottom:1415.025985px;}
.y5a{bottom:1439.245308px;}
.y4c{bottom:1439.775984px;}
.y4b{bottom:1464.525983px;}
.y59{bottom:1467.370307px;}
.y4a{bottom:1489.275982px;}
.y58{bottom:1495.495306px;}
.y49{bottom:1514.025981px;}
.y57{bottom:1523.620305px;}
.y48{bottom:1538.775980px;}
.y56{bottom:1551.745303px;}
.y47{bottom:1563.525979px;}
.y46{bottom:1588.275978px;}
.y6d{bottom:1593.205350px;}
.y45{bottom:1613.025977px;}
.y6c{bottom:1630.330348px;}
.y44{bottom:1641.180424px;}
.y6b{bottom:1667.455347px;}
.y43{bottom:1673.805422px;}
.y40{bottom:1743.854615px;}
.y55{bottom:1802.258709px;}
.y54{bottom:1854.008707px;}
.y74{bottom:1957.282406px;}
.y7b{bottom:1957.362254px;}
.y73{bottom:1979.782406px;}
.y7a{bottom:1979.862254px;}
.y72{bottom:2002.282405px;}
.y79{bottom:2002.362253px;}
.y71{bottom:2024.782404px;}
.y78{bottom:2024.862252px;}
.y70{bottom:2047.282403px;}
.y77{bottom:2047.362251px;}
.y76{bottom:2069.862250px;}
.y6f{bottom:2074.732438px;}
.y75{bottom:2099.262225px;}
.y6e{bottom:2107.357436px;}
.y53{bottom:2159.609458px;}
.y52{bottom:2184.359457px;}
.y51{bottom:2209.109456px;}
.y50{bottom:2233.859455px;}
.y22{bottom:2283.434466px;}
.y33{bottom:2348.620786px;}
.y2b{bottom:2411.835214px;}
.y2a{bottom:2441.085213px;}
.y29{bottom:2470.335211px;}
.y28{bottom:2499.585210px;}
.y1{bottom:2557.979901px;}
.y7d{bottom:2567.964223px;}
.y7c{bottom:2611.839221px;}
.y23{bottom:2684.139188px;}
.h12{height:15.839999px;}
.h10{height:49.547608px;}
.h13{height:50.165951px;}
.h1d{height:50.165998px;}
.h9{height:50.520060px;}
.hf{height:54.491217px;}
.h16{height:55.726062px;}
.h8{height:59.471998px;}
.h21{height:61.286127px;}
.h22{height:62.671497px;}
.h7{height:66.092844px;}
.h18{height:66.887997px;}
.h19{height:68.399997px;}
.ha{height:70.140238px;}
.h1b{height:71.515077px;}
.h1f{height:72.448062px;}
.h20{height:74.085747px;}
.h17{height:78.008127px;}
.h4{height:83.879997px;}
.h1e{height:89.170061px;}
.he{height:91.095345px;}
.hc{height:91.097409px;}
.h23{height:100.331996px;}
.h24{height:104.075996px;}
.h1c{height:113.876815px;}
.h11{height:117.002871px;}
.h1a{height:122.614060px;}
.h14{height:139.336068px;}
.hb{height:146.519994px;}
.hd{height:147.239994px;}
.h3{height:163.199091px;}
.h15{height:167.219993px;}
.h2{height:228.239990px;}
.h5{height:234.532744px;}
.h6{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w4{width:146.519994px;}
.w5{width:147.599994px;}
.w6{width:151.199994px;}
.w2{width:151.919994px;}
.w1{width:233.999990px;}
.w3{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x15{left:1.318666px;}
.x1{left:28.079999px;}
.x18{left:30.411361px;}
.x2{left:37.478862px;}
.x6{left:44.785309px;}
.xd{left:49.421446px;}
.x19{left:52.086231px;}
.x7{left:54.295074px;}
.xc{left:55.439998px;}
.x29{left:61.153701px;}
.x5{left:62.574371px;}
.x26{left:64.827529px;}
.x3{left:67.319997px;}
.x4{left:78.934644px;}
.x24{left:80.974519px;}
.x10{left:82.044730px;}
.x25{left:101.112536px;}
.x2f{left:107.848417px;}
.x8{left:109.332181px;}
.x2c{left:112.270886px;}
.x23{left:139.235861px;}
.x43{left:162.107659px;}
.x16{left:169.495173px;}
.x13{left:181.763167px;}
.x1a{left:187.367481px;}
.x30{left:191.519285px;}
.x1b{left:205.367481px;}
.x31{left:221.208737px;}
.xe{left:239.759990px;}
.x11{left:268.100891px;}
.x27{left:279.802561px;}
.x28{left:299.296582px;}
.x2d{left:301.589760px;}
.x2e{left:321.083781px;}
.xa{left:326.959944px;}
.x17{left:329.123022px;}
.xb{left:352.360333px;}
.x2a{left:356.990259px;}
.x9{left:359.550755px;}
.x2b{left:376.484269px;}
.x44{left:418.579963px;}
.x14{left:425.159982px;}
.xf{left:430.919982px;}
.x1c{left:443.269815px;}
.x12{left:459.183365px;}
.x22{left:494.734858px;}
.x1d{left:553.062779px;}
.x42{left:557.323965px;}
.x1e{left:571.062778px;}
.x34{left:626.541861px;}
.x32{left:631.112173px;}
.x37{left:641.746939px;}
.x21{left:644.295767px;}
.x41{left:655.964076px;}
.x3f{left:660.883416px;}
.x40{left:662.766810px;}
.x1f{left:665.262452px;}
.x3e{left:678.303337px;}
.x3d{left:689.149040px;}
.x20{left:748.406979px;}
.x39{left:795.358132px;}
.x3a{left:811.846482px;}
.x38{left:815.186583px;}
.x35{left:830.771358px;}
.x3b{left:839.011104px;}
.x36{left:847.259703px;}
.x3c{left:855.499455px;}
.x33{left:904.023505px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.057000pt;}
.ws1{word-spacing:-159.257640pt;}
.ws0{word-spacing:-110.819076pt;}
.ws4{word-spacing:-41.950199pt;}
.ws7{word-spacing:-31.435198pt;}
.ws8{word-spacing:-30.285759pt;}
.ws9{word-spacing:-24.871839pt;}
.ws2{word-spacing:-16.443598pt;}
.wsa{word-spacing:-15.978259pt;}
.ws3{word-spacing:-14.751999pt;}
.ws5{word-spacing:-13.516519pt;}
.ws6{word-spacing:-12.290259pt;}
.wsb{word-spacing:0.000000pt;}
._e{margin-left:-12.660379pt;}
._b{margin-left:-8.748727pt;}
._a{margin-left:-6.328812pt;}
._7{margin-left:-5.298042pt;}
._9{margin-left:-4.237162pt;}
._4{margin-left:-2.878847pt;}
._1{margin-left:-1.462759pt;}
._3{width:1.726954pt;}
._2{width:3.071946pt;}
._d{width:5.889740pt;}
._c{width:6.967600pt;}
._8{width:8.037607pt;}
._6{width:9.887168pt;}
._0{width:10.943754pt;}
._5{width:11.841429pt;}
.fsb{font-size:47.999953pt;}
.fs12{font-size:47.999998pt;}
.fs4{font-size:48.080000pt;}
.fs9{font-size:53.319997pt;}
.fs8{font-size:58.639997pt;}
.fs5{font-size:63.879999pt;}
.fs3{font-size:63.999997pt;}
.fs14{font-size:69.319997pt;}
.fse{font-size:74.639997pt;}
.fs10{font-size:76.959997pt;}
.fs2{font-size:77.199993pt;}
.fs13{font-size:85.319996pt;}
.fs15{font-size:95.999996pt;}
.fsa{font-size:106.559992pt;}
.fs7{font-size:108.398447pt;}
.fs6{font-size:108.400903pt;}
.fs11{font-size:108.959995pt;}
.fs16{font-size:111.999995pt;}
.fsf{font-size:117.319995pt;}
.fsc{font-size:133.320002pt;}
.fsd{font-size:159.999993pt;}
.fs0{font-size:175.624526pt;}
.fs1{font-size:252.389286pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.000007pt;}
.y21{bottom:3.007511pt;}
.y4{bottom:14.499291pt;}
.y82{bottom:20.417663pt;}
.y81{bottom:38.417662pt;}
.yf{bottom:55.724429pt;}
.y11{bottom:56.101930pt;}
.y80{bottom:56.417662pt;}
.y7f{bottom:74.417661pt;}
.y27{bottom:97.750940pt;}
.y2{bottom:103.746479pt;}
.y26{bottom:115.750939pt;}
.y25{bottom:133.750938pt;}
.y24{bottom:158.084217pt;}
.y85{bottom:196.639832pt;}
.y84{bottom:214.639831pt;}
.y83{bottom:232.639830pt;}
.y7e{bottom:258.439989pt;}
.y32{bottom:292.239988pt;}
.y31{bottom:310.239987pt;}
.y30{bottom:328.239986pt;}
.y2f{bottom:346.239986pt;}
.y2e{bottom:364.239985pt;}
.y2d{bottom:382.239984pt;}
.y2c{bottom:400.239983pt;}
.y86{bottom:428.973262pt;}
.y3f{bottom:487.976556pt;}
.ya{bottom:500.703723pt;}
.y3e{bottom:513.976555pt;}
.y9{bottom:519.703722pt;}
.y8{bottom:538.703722pt;}
.y3d{bottom:539.976554pt;}
.y7{bottom:557.703721pt;}
.y3c{bottom:565.976552pt;}
.y3b{bottom:591.976551pt;}
.y3{bottom:606.879982pt;}
.y3a{bottom:617.976550pt;}
.yb{bottom:637.371077pt;}
.y39{bottom:643.976549pt;}
.yd{bottom:653.640293pt;}
.y38{bottom:669.976548pt;}
.yc{bottom:675.640292pt;}
.y6{bottom:691.303875pt;}
.y37{bottom:695.976547pt;}
.y36{bottom:721.976546pt;}
.y42{bottom:736.918561pt;}
.y35{bottom:756.060896pt;}
.y1c{bottom:766.127456pt;}
.y1e{bottom:778.127456pt;}
.y1b{bottom:781.127455pt;}
.y1d{bottom:795.127455pt;}
.y1a{bottom:796.127455pt;}
.y34{bottom:797.060895pt;}
.y19{bottom:812.127454pt;}
.y20{bottom:812.319973pt;}
.y18{bottom:829.127453pt;}
.y17{bottom:846.127453pt;}
.y16{bottom:863.127452pt;}
.y15{bottom:880.127451pt;}
.y14{bottom:897.127451pt;}
.y6a{bottom:911.329178pt;}
.y13{bottom:914.127450pt;}
.y12{bottom:931.127449pt;}
.y69{bottom:934.329177pt;}
.y68{bottom:957.329176pt;}
.y10{bottom:957.599967pt;}
.ye{bottom:957.919967pt;}
.y67{bottom:980.329175pt;}
.y66{bottom:1003.329174pt;}
.y65{bottom:1026.329173pt;}
.y64{bottom:1049.329172pt;}
.y63{bottom:1072.329171pt;}
.y62{bottom:1095.329170pt;}
.y61{bottom:1118.329169pt;}
.y1f{bottom:1120.571985pt;}
.y60{bottom:1141.329168pt;}
.y5f{bottom:1164.329167pt;}
.y41{bottom:1167.528623pt;}
.y5e{bottom:1187.329167pt;}
.y5d{bottom:1210.329166pt;}
.y4f{bottom:1213.800877pt;}
.y5c{bottom:1233.329165pt;}
.y4e{bottom:1235.800877pt;}
.y5b{bottom:1256.329164pt;}
.y4d{bottom:1257.800876pt;}
.y5a{bottom:1279.329163pt;}
.y4c{bottom:1279.800875pt;}
.y4b{bottom:1301.800874pt;}
.y59{bottom:1304.329162pt;}
.y4a{bottom:1323.800873pt;}
.y58{bottom:1329.329161pt;}
.y49{bottom:1345.800872pt;}
.y57{bottom:1354.329160pt;}
.y48{bottom:1367.800871pt;}
.y56{bottom:1379.329159pt;}
.y47{bottom:1389.800870pt;}
.y46{bottom:1411.800869pt;}
.y6d{bottom:1416.182533pt;}
.y45{bottom:1433.800868pt;}
.y6c{bottom:1449.182532pt;}
.y44{bottom:1458.827043pt;}
.y6b{bottom:1482.182530pt;}
.y43{bottom:1487.827042pt;}
.y40{bottom:1550.092991pt;}
.y55{bottom:1602.007741pt;}
.y54{bottom:1648.007739pt;}
.y74{bottom:1739.806584pt;}
.y7b{bottom:1739.877560pt;}
.y73{bottom:1759.806583pt;}
.y7a{bottom:1759.877559pt;}
.y72{bottom:1779.806582pt;}
.y79{bottom:1779.877558pt;}
.y71{bottom:1799.806581pt;}
.y78{bottom:1799.877557pt;}
.y70{bottom:1819.806580pt;}
.y77{bottom:1819.877556pt;}
.y76{bottom:1839.877555pt;}
.y6f{bottom:1844.206611pt;}
.y75{bottom:1866.010866pt;}
.y6e{bottom:1873.206610pt;}
.y53{bottom:1919.652851pt;}
.y52{bottom:1941.652850pt;}
.y51{bottom:1963.652849pt;}
.y50{bottom:1985.652848pt;}
.y22{bottom:2029.719525pt;}
.y33{bottom:2087.662921pt;}
.y2b{bottom:2143.853523pt;}
.y2a{bottom:2169.853522pt;}
.y29{bottom:2195.853521pt;}
.y28{bottom:2221.853520pt;}
.y1{bottom:2273.759912pt;}
.y7d{bottom:2282.634865pt;}
.y7c{bottom:2321.634863pt;}
.y23{bottom:2385.901501pt;}
.h12{height:14.079999pt;}
.h10{height:44.042318pt;}
.h13{height:44.591957pt;}
.h1d{height:44.591998pt;}
.h9{height:44.906720pt;}
.hf{height:48.436637pt;}
.h16{height:49.534278pt;}
.h8{height:52.863998pt;}
.h21{height:54.476557pt;}
.h22{height:55.707997pt;}
.h7{height:58.749195pt;}
.h18{height:59.455998pt;}
.h19{height:60.799997pt;}
.ha{height:62.346879pt;}
.h1b{height:63.568957pt;}
.h1f{height:64.398277pt;}
.h20{height:65.853997pt;}
.h17{height:69.340557pt;}
.h4{height:74.559997pt;}
.h1e{height:79.262277pt;}
.he{height:80.973640pt;}
.hc{height:80.975474pt;}
.h23{height:89.183996pt;}
.h24{height:92.511996pt;}
.h1c{height:101.223836pt;}
.h11{height:104.002552pt;}
.h1a{height:108.990275pt;}
.h14{height:123.854282pt;}
.hb{height:130.239995pt;}
.hd{height:130.879995pt;}
.h3{height:145.065859pt;}
.h15{height:148.639994pt;}
.h2{height:202.879992pt;}
.h5{height:208.473551pt;}
.h6{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w4{width:130.239995pt;}
.w5{width:131.199995pt;}
.w6{width:134.399994pt;}
.w2{width:135.039994pt;}
.w1{width:207.999991pt;}
.w3{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x15{left:1.172147pt;}
.x1{left:24.959999pt;}
.x18{left:27.032321pt;}
.x2{left:33.314544pt;}
.x6{left:39.809163pt;}
.xd{left:43.930174pt;}
.x19{left:46.298872pt;}
.x7{left:48.262288pt;}
.xc{left:49.279998pt;}
.x29{left:54.358845pt;}
.x5{left:55.621663pt;}
.x26{left:57.624470pt;}
.x3{left:59.839998pt;}
.x4{left:70.164128pt;}
.x24{left:71.977351pt;}
.x10{left:72.928649pt;}
.x25{left:89.877809pt;}
.x2f{left:95.865259pt;}
.x8{left:97.184161pt;}
.x2c{left:99.796343pt;}
.x23{left:123.765210pt;}
.x43{left:144.095697pt;}
.x16{left:150.662376pt;}
.x13{left:161.567259pt;}
.x1a{left:166.548872pt;}
.x30{left:170.239365pt;}
.x1b{left:182.548872pt;}
.x31{left:196.629988pt;}
.xe{left:213.119991pt;}
.x11{left:238.311903pt;}
.x27{left:248.713387pt;}
.x28{left:266.041407pt;}
.x2d{left:268.079786pt;}
.x2e{left:285.407806pt;}
.xa{left:290.631061pt;}
.x17{left:292.553798pt;}
.xb{left:313.209185pt;}
.x2a{left:317.324674pt;}
.x9{left:319.600671pt;}
.x2b{left:334.652684pt;}
.x44{left:372.071078pt;}
.x14{left:377.919984pt;}
.xf{left:383.039984pt;}
.x1c{left:394.017613pt;}
.x12{left:408.162991pt;}
.x22{left:439.764318pt;}
.x1d{left:491.611359pt;}
.x42{left:495.399080pt;}
.x1e{left:507.611358pt;}
.x34{left:556.926099pt;}
.x32{left:560.988599pt;}
.x37{left:570.441723pt;}
.x21{left:572.707348pt;}
.x41{left:583.079179pt;}
.x3f{left:587.451926pt;}
.x40{left:589.126053pt;}
.x1f{left:591.344401pt;}
.x3e{left:602.936300pt;}
.x3d{left:612.576924pt;}
.x20{left:665.250648pt;}
.x39{left:706.985007pt;}
.x3a{left:721.641317pt;}
.x38{left:724.610296pt;}
.x35{left:738.463429pt;}
.x3b{left:745.787648pt;}
.x36{left:753.119736pt;}
.x3c{left:760.443960pt;}
.x33{left:803.576449pt;}
}




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