
    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_74166176eb3fb4608c9b34c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_1c3080f6237af4917b1b06d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.117000;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_612eacf495261af0397e5f93.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_306fbe4a0b42b43f17b23f17.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112000;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_7c0f31cd40f7d20f00067730.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953000;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_53f85ded08330c3db1d32f1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_8134287f9c40485a58215b30.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_76d8d0eeec525d1a7b458186.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.748047;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_b2ab64c1ed22cad472d575c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.716000;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_d33b533859225665128fdb58.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.878418;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_bb2483f912d1db0b84d480e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715820;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_c936f007b84122640a326cea.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.787000;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);}
.vb{vertical-align:-99.955353px;}
.va{vertical-align:-79.105998px;}
.v2{vertical-align:-38.250001px;}
.v3{vertical-align:-36.000001px;}
.v7{vertical-align:-33.749992px;}
.v4{vertical-align:-31.500001px;}
.v9{vertical-align:-7.526763px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:3.761595px;}
.v6{vertical-align:7.435265px;}
.v5{vertical-align:31.500001px;}
.v1{vertical-align:42.750001px;}
.vc{vertical-align:86.136888px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.027656px;}
.ls6{letter-spacing:0.043446px;}
.ls0{letter-spacing:0.088499px;}
.ls3{letter-spacing:0.088592px;}
.ls4{letter-spacing:0.089856px;}
.ls8{letter-spacing:23.986115px;}
.ls7{letter-spacing:53.986323px;}
.ls9{letter-spacing:108.000498px;}
.ls2{letter-spacing:654.035286px;}
.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;}
}
.ws1f{word-spacing:-89.748003px;}
.ws10{word-spacing:-52.638000px;}
.ws4{word-spacing:-41.184001px;}
.ws3{word-spacing:-40.392002px;}
.ws15{word-spacing:-38.874002px;}
.wsc{word-spacing:-34.320000px;}
.ws1e{word-spacing:-33.240000px;}
.ws16{word-spacing:-30.690001px;}
.wse{word-spacing:-28.866000px;}
.wsb{word-spacing:-28.644000px;}
.ws7{word-spacing:-28.224000px;}
.ws1b{word-spacing:-27.540001px;}
.ws5{word-spacing:-27.456002px;}
.wsf{word-spacing:-25.470001px;}
.ws1c{word-spacing:-24.552001px;}
.ws8{word-spacing:-24.024000px;}
.ws12{word-spacing:-23.868002px;}
.ws1{word-spacing:-23.188001px;}
.ws13{word-spacing:-20.460000px;}
.ws0{word-spacing:-19.000002px;}
.wsa{word-spacing:-18.816001px;}
.ws6{word-spacing:-18.304002px;}
.ws9{word-spacing:-16.016001px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:73.655021px;}
.ws19{word-spacing:76.757357px;}
.ws18{word-spacing:76.761659px;}
.ws17{word-spacing:101.451590px;}
.ws1d{word-spacing:259.236458px;}
.ws1a{word-spacing:1643.611179px;}
.ws11{word-spacing:3858.650336px;}
.ws14{word-spacing:3859.001345px;}
._15{margin-left:-1706.536151px;}
._12{margin-left:-858.588475px;}
._b{margin-left:-50.696197px;}
._1{margin-left:-14.592001px;}
._10{margin-left:-13.200000px;}
._3{margin-left:-8.163121px;}
._16{margin-left:-6.600000px;}
._f{margin-left:-5.557424px;}
._0{margin-left:-4.218000px;}
._5{margin-left:-3.144000px;}
._4{margin-left:-2.040000px;}
._6{margin-left:-1.020000px;}
._2{width:1.237830px;}
._9{width:5.058000px;}
._8{width:8.100000px;}
._a{width:24.600000px;}
._13{width:53.965357px;}
._e{width:107.975021px;}
._d{width:119.207999px;}
._c{width:122.399999px;}
._7{width:209.699998px;}
._14{width:534.060021px;}
._11{width:1556.359104px;}
.fcd{color:rgb(56,118,29);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,31,31);}
.fc6{color:rgb(89,89,89);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(0,177,63);}
.fc5{color:rgb(0,151,167);}
.fc7{color:rgb(66,133,244);}
.fcb{color:rgb(4,12,40);}
.fc9{color:rgb(142,124,195);}
.fc3{color:rgb(255,174,0);}
.fc8{color:rgb(255,0,0);}
.fca{color:rgb(191,144,0);}
.fcc{color:rgb(255,199,103);}
.fs16{font-size:42.000000px;}
.fse{font-size:56.000003px;}
.fs15{font-size:60.000000px;}
.fs11{font-size:60.000005px;}
.fsd{font-size:64.000007px;}
.fsb{font-size:66.000004px;}
.fs2{font-size:68.000004px;}
.fs19{font-size:72.000002px;}
.fs1{font-size:76.000008px;}
.fs17{font-size:78.000005px;}
.fs6{font-size:84.000000px;}
.fsf{font-size:90.000003px;}
.fsc{font-size:96.000006px;}
.fs3{font-size:102.000000px;}
.fs10{font-size:108.000003px;}
.fs0{font-size:114.000007px;}
.fs7{font-size:120.000001px;}
.fs1a{font-size:126.000004px;}
.fs5{font-size:132.000007px;}
.fs8{font-size:144.000005px;}
.fs9{font-size:149.999999px;}
.fs12{font-size:156.000011px;}
.fs18{font-size:174.000012px;}
.fs14{font-size:186.000000px;}
.fs4{font-size:216.000007px;}
.fsa{font-size:234.000007px;}
.fs1c{font-size:270.000009px;}
.fs13{font-size:282.000015px;}
.fs1b{font-size:324.000010px;}
.y0{bottom:0.000000px;}
.y18{bottom:46.724827px;}
.y85{bottom:65.893106px;}
.y4f{bottom:67.767508px;}
.y57{bottom:90.531337px;}
.y6d{bottom:107.301358px;}
.y4e{bottom:109.167503px;}
.y56{bottom:113.751338px;}
.y26{bottom:120.868065px;}
.y6c{bottom:128.001357px;}
.y21{bottom:128.061012px;}
.y24{bottom:134.201820px;}
.y55{bottom:142.731327px;}
.y34{bottom:143.678161px;}
.y16{bottom:146.299648px;}
.y6b{bottom:148.701354px;}
.y5d{bottom:154.791407px;}
.y54{bottom:171.711325px;}
.y20{bottom:173.061013px;}
.y15{bottom:176.899671px;}
.y7a{bottom:182.763734px;}
.y5c{bottom:183.771396px;}
.y3{bottom:184.777360px;}
.y6a{bottom:185.601355px;}
.y2a{bottom:194.565130px;}
.y53{bottom:200.691320px;}
.y69{bottom:206.301361px;}
.y14{bottom:207.499683px;}
.y5b{bottom:212.751397px;}
.y33{bottom:223.328186px;}
.y29{bottom:223.545120px;}
.y68{bottom:227.001360px;}
.y2{bottom:233.377362px;}
.y13{bottom:238.099707px;}
.y5a{bottom:241.731387px;}
.y67{bottom:247.701357px;}
.y28{bottom:252.525118px;}
.y75{bottom:253.919030px;}
.y32{bottom:257.528176px;}
.y59{bottom:270.711384px;}
.y79{bottom:275.523058px;}
.y27{bottom:282.765111px;}
.y12{bottom:286.699708px;}
.y74{bottom:290.747020px;}
.y31{bottom:298.928166px;}
.y1f{bottom:299.061017px;}
.y58{bottom:299.691380px;}
.y23{bottom:306.701799px;}
.y93{bottom:311.742175px;}
.y95{bottom:316.307707px;}
.y11{bottom:317.299709px;}
.y73{bottom:329.918621px;}
.y66{bottom:335.001363px;}
.y30{bottom:340.328190px;}
.y1{bottom:343.334865px;}
.y1e{bottom:344.061019px;}
.y10{bottom:347.899744px;}
.y94{bottom:352.307710px;}
.y92{bottom:355.212177px;}
.y65{bottom:355.701360px;}
.y40{bottom:359.364777px;}
.y78{bottom:368.280931px;}
.y72{bottom:378.464611px;}
.y3f{bottom:385.099591px;}
.y82{bottom:390.838453px;}
.y91{bottom:398.682178px;}
.y45{bottom:400.538129px;}
.y84{bottom:404.444878px;}
.y42{bottom:405.330108px;}
.y43{bottom:406.271912px;}
.yf{bottom:409.099735px;}
.y89{bottom:413.084159px;}
.y64{bottom:416.901369px;}
.y9{bottom:417.218342px;}
.y81{bottom:421.758775px;}
.y2f{bottom:423.128159px;}
.y6f{bottom:426.638387px;}
.y71{bottom:427.010613px;}
.y4d{bottom:427.075480px;}
.y80{bottom:427.311877px;}
.y63{bottom:437.601363px;}
.ye{bottom:439.699736px;}
.y41{bottom:439.909706px;}
.y90{bottom:442.152179px;}
.y96{bottom:442.219241px;}
.y3a{bottom:443.614117px;}
.y22{bottom:444.701796px;}
.y77{bottom:447.183056px;}
.y88{bottom:448.774143px;}
.y1d{bottom:452.061022px;}
.y6e{bottom:456.381498px;}
.y62{bottom:458.301369px;}
.y97{bottom:459.404989px;}
.y70{bottom:461.377533px;}
.y2e{bottom:461.378149px;}
.y7f{bottom:462.501866px;}
.y1c{bottom:467.901012px;}
.yd{bottom:470.299731px;}
.y3d{bottom:471.394947px;}
.y8{bottom:471.650340px;}
.y8c{bottom:476.034436px;}
.y61{bottom:479.001368px;}
.y52{bottom:480.347123px;}
.y87{bottom:480.611689px;}
.y4c{bottom:481.574408px;}
.y8f{bottom:485.622170px;}
.y38{bottom:488.175458px;}
.y2d{bottom:495.578150px;}
.y7e{bottom:496.431856px;}
.y3c{bottom:496.491256px;}
.y60{bottom:499.701365px;}
.y44{bottom:508.538144px;}
.y1b{bottom:511.101008px;}
.y86{bottom:512.739554px;}
.yc{bottom:518.899727px;}
.y51{bottom:519.677124px;}
.y39{bottom:521.535703px;}
.y3b{bottom:523.394519px;}
.y7{bottom:526.082340px;}
.y8a{bottom:526.738210px;}
.y7d{bottom:528.741854px;}
.y8e{bottom:529.092160px;}
.y47{bottom:530.111804px;}
.y76{bottom:530.285414px;}
.y4b{bottom:536.072245px;}
.y2c{bottom:536.978147px;}
.y46{bottom:542.884368px;}
.yb{bottom:549.499722px;}
.y37{bottom:551.587899px;}
.y5f{bottom:551.692311px;}
.y8b{bottom:552.932474px;}
.y1a{bottom:554.301014px;}
.y3e{bottom:558.262072px;}
.y50{bottom:559.007126px;}
.y7c{bottom:563.931849px;}
.y5e{bottom:572.392309px;}
.y8d{bottom:572.562153px;}
.y83{bottom:573.261855px;}
.y2b{bottom:578.378141px;}
.ya{bottom:580.099720px;}
.y25{bottom:587.626418px;}
.y48{bottom:588.694470px;}
.y19{bottom:597.501016px;}
.y7b{bottom:611.518336px;}
.y36{bottom:655.116374px;}
.y4a{bottom:656.916374px;}
.y35{bottom:671.390789px;}
.y17{bottom:673.272479px;}
.y6{bottom:683.870377px;}
.y49{bottom:691.116375px;}
.y5{bottom:716.574123px;}
.y4{bottom:749.277874px;}
.h1a{height:43.125000px;}
.h1e{height:43.740235px;}
.hc{height:48.114260px;}
.h1d{height:54.120000px;}
.h1c{height:57.876004px;}
.h2{height:61.336003px;}
.h23{height:64.944002px;}
.h21{height:66.780812px;}
.h22{height:70.356005px;}
.h14{height:70.830002px;}
.hd{height:75.768000px;}
.h16{height:77.625002px;}
.h12{height:78.732424px;}
.h3{height:80.274000px;}
.h10{height:81.180003px;}
.h26{height:87.480469px;}
.h7{height:87.714844px;}
.hf{height:88.560001px;}
.h5{height:92.004000px;}
.h1{height:95.519538px;}
.h6{height:97.944005px;}
.h11{height:102.828006px;}
.h9{height:106.272003px;}
.h20{height:107.812499px;}
.he{height:108.240001px;}
.h25{height:113.652004px;}
.h13{height:122.772009px;}
.h1f{height:129.108009px;}
.h8{height:129.888004px;}
.ha{height:135.299999px;}
.h18{height:146.382000px;}
.h17{height:150.143595px;}
.h24{height:163.761890px;}
.h1b{height:165.165242px;}
.h19{height:170.586920px;}
.hb{height:172.692006px;}
.h4{height:193.752006px;}
.h28{height:197.358405px;}
.h15{height:205.579113px;}
.h27{height:236.830086px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2d{left:25.156950px;}
.xa{left:41.180553px;}
.x13{left:52.807088px;}
.x46{left:60.965552px;}
.x14{left:63.973334px;}
.x33{left:71.524582px;}
.x32{left:75.239334px;}
.x8{left:102.758865px;}
.x34{left:104.270673px;}
.x15{left:106.807089px;}
.x2c{left:121.241050px;}
.x9{left:143.374021px;}
.x7{left:145.821546px;}
.xb{left:148.520671px;}
.x51{left:149.552622px;}
.xf{left:159.817910px;}
.x56{left:160.959245px;}
.xe{left:167.515797px;}
.xd{left:172.342056px;}
.x4{left:183.259851px;}
.x52{left:195.578748px;}
.xc{left:230.700585px;}
.x5{left:241.266749px;}
.x45{left:283.550336px;}
.x44{left:293.977165px;}
.x1{left:302.797591px;}
.x4c{left:339.191956px;}
.x4a{left:413.417264px;}
.x2{left:435.628179px;}
.x6{left:437.557150px;}
.x3{left:485.282610px;}
.x4b{left:503.861769px;}
.x3e{left:512.806889px;}
.x35{left:523.520679px;}
.x37{left:524.524589px;}
.x36{left:528.239341px;}
.x38{left:557.270680px;}
.x3d{left:601.870614px;}
.x12{left:665.926221px;}
.x48{left:669.565513px;}
.x47{left:674.076741px;}
.x1b{left:701.418285px;}
.x49{left:719.938036px;}
.x50{left:764.811419px;}
.x1f{left:822.953805px;}
.x1e{left:828.732334px;}
.x20{left:841.597452px;}
.x27{left:870.955340px;}
.x30{left:885.638893px;}
.x31{left:916.349474px;}
.x53{left:917.686475px;}
.x22{left:921.041354px;}
.x21{left:928.054155px;}
.x29{left:932.075512px;}
.x2e{left:939.625978px;}
.x23{left:941.430180px;}
.x19{left:951.124530px;}
.x55{left:958.728822px;}
.x2f{left:962.761615px;}
.x18{left:982.832274px;}
.x26{left:1014.129932px;}
.x4f{left:1016.021824px;}
.x1a{left:1045.225417px;}
.x17{left:1066.996736px;}
.x1d{left:1081.418885px;}
.x42{left:1090.337670px;}
.x25{left:1094.220530px;}
.x2a{left:1095.319903px;}
.x39{left:1097.308677px;}
.x54{left:1101.570358px;}
.x40{left:1104.293388px;}
.x3b{left:1106.214200px;}
.x3a{left:1112.365206px;}
.x3c{left:1121.270728px;}
.x24{left:1125.487206px;}
.x11{left:1126.714806px;}
.x43{left:1138.360542px;}
.x41{left:1156.109594px;}
.x1c{left:1176.760500px;}
.x28{left:1187.008013px;}
.x2b{left:1193.453734px;}
.x3f{left:1205.229577px;}
.x4d{left:1274.211716px;}
.x4e{left:1276.792353px;}
.x10{left:1292.180666px;}
.x16{left:1321.917876px;}
@media print{
.vb{vertical-align:-88.849203pt;}
.va{vertical-align:-70.316442pt;}
.v2{vertical-align:-34.000001pt;}
.v3{vertical-align:-32.000001pt;}
.v7{vertical-align:-29.999993pt;}
.v4{vertical-align:-28.000001pt;}
.v9{vertical-align:-6.690456pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:3.343640pt;}
.v6{vertical-align:6.609124pt;}
.v5{vertical-align:28.000001pt;}
.v1{vertical-align:38.000001pt;}
.vc{vertical-align:76.566122pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024583pt;}
.ls6{letter-spacing:0.038619pt;}
.ls0{letter-spacing:0.078666pt;}
.ls3{letter-spacing:0.078748pt;}
.ls4{letter-spacing:0.079872pt;}
.ls8{letter-spacing:21.320991pt;}
.ls7{letter-spacing:47.987843pt;}
.ls9{letter-spacing:96.000443pt;}
.ls2{letter-spacing:581.364699pt;}
.ws1f{word-spacing:-79.776003pt;}
.ws10{word-spacing:-46.789333pt;}
.ws4{word-spacing:-36.608001pt;}
.ws3{word-spacing:-35.904002pt;}
.ws15{word-spacing:-34.554669pt;}
.wsc{word-spacing:-30.506667pt;}
.ws1e{word-spacing:-29.546667pt;}
.ws16{word-spacing:-27.280001pt;}
.wse{word-spacing:-25.658667pt;}
.wsb{word-spacing:-25.461333pt;}
.ws7{word-spacing:-25.088000pt;}
.ws1b{word-spacing:-24.480001pt;}
.ws5{word-spacing:-24.405335pt;}
.wsf{word-spacing:-22.640001pt;}
.ws1c{word-spacing:-21.824001pt;}
.ws8{word-spacing:-21.354667pt;}
.ws12{word-spacing:-21.216001pt;}
.ws1{word-spacing:-20.611557pt;}
.ws13{word-spacing:-18.186667pt;}
.ws0{word-spacing:-16.888891pt;}
.wsa{word-spacing:-16.725334pt;}
.ws6{word-spacing:-16.270224pt;}
.ws9{word-spacing:-14.236445pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:65.471130pt;}
.ws19{word-spacing:68.228762pt;}
.ws18{word-spacing:68.232586pt;}
.ws17{word-spacing:90.179191pt;}
.ws1d{word-spacing:230.432407pt;}
.ws1a{word-spacing:1460.987715pt;}
.ws11{word-spacing:3429.911410pt;}
.ws14{word-spacing:3430.223418pt;}
._15{margin-left:-1516.921023pt;}
._12{margin-left:-763.189756pt;}
._b{margin-left:-45.063286pt;}
._1{margin-left:-12.970667pt;}
._10{margin-left:-11.733333pt;}
._3{margin-left:-7.256107pt;}
._16{margin-left:-5.866667pt;}
._f{margin-left:-4.939933pt;}
._0{margin-left:-3.749334pt;}
._5{margin-left:-2.794667pt;}
._4{margin-left:-1.813333pt;}
._6{margin-left:-0.906667pt;}
._2{width:1.100293pt;}
._9{width:4.496000pt;}
._8{width:7.200000pt;}
._a{width:21.866666pt;}
._13{width:47.969206pt;}
._e{width:95.977796pt;}
._d{width:105.962666pt;}
._c{width:108.799999pt;}
._7{width:186.399999pt;}
._14{width:474.720019pt;}
._11{width:1383.430314pt;}
.fs16{font-size:37.333333pt;}
.fse{font-size:49.777780pt;}
.fs15{font-size:53.333334pt;}
.fs11{font-size:53.333338pt;}
.fsd{font-size:56.888895pt;}
.fsb{font-size:58.666670pt;}
.fs2{font-size:60.444448pt;}
.fs19{font-size:64.000002pt;}
.fs1{font-size:67.555563pt;}
.fs17{font-size:69.333338pt;}
.fs6{font-size:74.666666pt;}
.fsf{font-size:80.000003pt;}
.fsc{font-size:85.333339pt;}
.fs3{font-size:90.666667pt;}
.fs10{font-size:96.000003pt;}
.fs0{font-size:101.333339pt;}
.fs7{font-size:106.666667pt;}
.fs1a{font-size:112.000004pt;}
.fs5{font-size:117.333340pt;}
.fs8{font-size:128.000004pt;}
.fs9{font-size:133.333332pt;}
.fs12{font-size:138.666676pt;}
.fs18{font-size:154.666677pt;}
.fs14{font-size:165.333333pt;}
.fs4{font-size:192.000006pt;}
.fsa{font-size:208.000007pt;}
.fs1c{font-size:240.000008pt;}
.fs13{font-size:250.666680pt;}
.fs1b{font-size:288.000009pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:41.533179pt;}
.y85{bottom:58.571650pt;}
.y4f{bottom:60.237785pt;}
.y57{bottom:80.472300pt;}
.y6d{bottom:95.378985pt;}
.y4e{bottom:97.037780pt;}
.y56{bottom:101.112300pt;}
.y26{bottom:107.438280pt;}
.y6c{bottom:113.778984pt;}
.y21{bottom:113.832011pt;}
.y24{bottom:119.290507pt;}
.y55{bottom:126.872291pt;}
.y34{bottom:127.713921pt;}
.y16{bottom:130.044131pt;}
.y6b{bottom:132.178981pt;}
.y5d{bottom:137.592361pt;}
.y54{bottom:152.632289pt;}
.y20{bottom:153.832012pt;}
.y15{bottom:157.244152pt;}
.y7a{bottom:162.456652pt;}
.y5c{bottom:163.352352pt;}
.y3{bottom:164.246542pt;}
.y6a{bottom:164.978982pt;}
.y2a{bottom:172.946782pt;}
.y53{bottom:178.392285pt;}
.y69{bottom:183.378988pt;}
.y14{bottom:184.444163pt;}
.y5b{bottom:189.112353pt;}
.y33{bottom:198.513943pt;}
.y29{bottom:198.706773pt;}
.y68{bottom:201.778986pt;}
.y2{bottom:207.446544pt;}
.y13{bottom:211.644184pt;}
.y5a{bottom:214.872344pt;}
.y67{bottom:220.178984pt;}
.y28{bottom:224.466771pt;}
.y75{bottom:225.705804pt;}
.y32{bottom:228.913934pt;}
.y59{bottom:240.632342pt;}
.y79{bottom:244.909385pt;}
.y27{bottom:251.346765pt;}
.y12{bottom:254.844185pt;}
.y74{bottom:258.441795pt;}
.y31{bottom:265.713925pt;}
.y1f{bottom:265.832015pt;}
.y58{bottom:266.392337pt;}
.y23{bottom:272.623822pt;}
.y93{bottom:277.104156pt;}
.y95{bottom:281.162406pt;}
.y11{bottom:282.044186pt;}
.y73{bottom:293.260996pt;}
.y66{bottom:297.778989pt;}
.y30{bottom:302.513947pt;}
.y1{bottom:305.186547pt;}
.y1e{bottom:305.832017pt;}
.y10{bottom:309.244217pt;}
.y94{bottom:313.162409pt;}
.y92{bottom:315.744157pt;}
.y65{bottom:316.178987pt;}
.y40{bottom:319.435357pt;}
.y78{bottom:327.360827pt;}
.y72{bottom:336.412988pt;}
.y3f{bottom:342.310748pt;}
.y82{bottom:347.411958pt;}
.y91{bottom:354.384158pt;}
.y45{bottom:356.033892pt;}
.y84{bottom:359.506558pt;}
.y42{bottom:360.293429pt;}
.y43{bottom:361.130589pt;}
.yf{bottom:363.644209pt;}
.y89{bottom:367.185919pt;}
.y64{bottom:370.578995pt;}
.y9{bottom:370.860749pt;}
.y81{bottom:374.896689pt;}
.y2f{bottom:376.113919pt;}
.y6f{bottom:379.234122pt;}
.y71{bottom:379.564989pt;}
.y4d{bottom:379.622649pt;}
.y80{bottom:379.832779pt;}
.y63{bottom:388.978989pt;}
.ye{bottom:390.844209pt;}
.y41{bottom:391.030849pt;}
.y90{bottom:393.024160pt;}
.y96{bottom:393.083770pt;}
.y3a{bottom:394.323660pt;}
.y22{bottom:395.290486pt;}
.y77{bottom:397.496050pt;}
.y88{bottom:398.910350pt;}
.y1d{bottom:401.832020pt;}
.y6e{bottom:405.672443pt;}
.y62{bottom:407.378995pt;}
.y97{bottom:408.359990pt;}
.y70{bottom:410.113363pt;}
.y2e{bottom:410.113910pt;}
.y7f{bottom:411.112770pt;}
.y1c{bottom:415.912010pt;}
.yd{bottom:418.044205pt;}
.y3d{bottom:419.017730pt;}
.y8{bottom:419.244746pt;}
.y8c{bottom:423.141721pt;}
.y61{bottom:425.778994pt;}
.y52{bottom:426.975221pt;}
.y87{bottom:427.210391pt;}
.y4c{bottom:428.066141pt;}
.y8f{bottom:431.664151pt;}
.y38{bottom:433.933741pt;}
.y2d{bottom:440.513911pt;}
.y7e{bottom:441.272761pt;}
.y3c{bottom:441.325561pt;}
.y60{bottom:444.178991pt;}
.y44{bottom:452.033905pt;}
.y1b{bottom:454.312007pt;}
.y86{bottom:455.768493pt;}
.yc{bottom:461.244202pt;}
.y51{bottom:461.935222pt;}
.y39{bottom:463.587292pt;}
.y3b{bottom:465.239573pt;}
.y7{bottom:467.628747pt;}
.y8a{bottom:468.211742pt;}
.y7d{bottom:469.992759pt;}
.y8e{bottom:470.304142pt;}
.y47{bottom:471.210492pt;}
.y76{bottom:471.364812pt;}
.y4b{bottom:476.508662pt;}
.y2c{bottom:477.313908pt;}
.y46{bottom:482.563882pt;}
.yb{bottom:488.444198pt;}
.y37{bottom:490.300355pt;}
.y5f{bottom:490.393166pt;}
.y8b{bottom:491.495533pt;}
.y1a{bottom:492.712013pt;}
.y3e{bottom:496.232953pt;}
.y50{bottom:496.895223pt;}
.y7c{bottom:501.272755pt;}
.y5e{bottom:508.793163pt;}
.y8d{bottom:508.944136pt;}
.y83{bottom:509.566093pt;}
.y2b{bottom:514.113903pt;}
.ya{bottom:515.644195pt;}
.y25{bottom:522.334594pt;}
.y48{bottom:523.283974pt;}
.y19{bottom:531.112014pt;}
.y7b{bottom:543.571854pt;}
.y36{bottom:582.325666pt;}
.y4a{bottom:583.925666pt;}
.y35{bottom:596.791812pt;}
.y17{bottom:598.464426pt;}
.y6{bottom:607.884779pt;}
.y49{bottom:614.325667pt;}
.y5{bottom:636.954776pt;}
.y4{bottom:666.024777pt;}
.h1a{height:38.333334pt;}
.h1e{height:38.880209pt;}
.hc{height:42.768232pt;}
.h1d{height:48.106667pt;}
.h1c{height:51.445337pt;}
.h2{height:54.520892pt;}
.h23{height:57.728002pt;}
.h21{height:59.360722pt;}
.h22{height:62.538671pt;}
.h14{height:62.960002pt;}
.hd{height:67.349333pt;}
.h16{height:69.000002pt;}
.h12{height:69.984377pt;}
.h3{height:71.354667pt;}
.h10{height:72.160002pt;}
.h26{height:77.760417pt;}
.h7{height:77.968751pt;}
.hf{height:78.720001pt;}
.h5{height:81.781334pt;}
.h1{height:84.906256pt;}
.h6{height:87.061338pt;}
.h11{height:91.402672pt;}
.h9{height:94.464003pt;}
.h20{height:95.833333pt;}
.he{height:96.213334pt;}
.h25{height:101.024003pt;}
.h13{height:109.130674pt;}
.h1f{height:114.762674pt;}
.h8{height:115.456004pt;}
.ha{height:120.266666pt;}
.h18{height:130.117333pt;}
.h17{height:133.460973pt;}
.h24{height:145.566125pt;}
.h1b{height:146.813549pt;}
.h19{height:151.632817pt;}
.hb{height:153.504005pt;}
.h4{height:172.224006pt;}
.h28{height:175.429693pt;}
.h15{height:182.736989pt;}
.h27{height:210.515632pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:22.361734pt;}
.xa{left:36.604936pt;}
.x13{left:46.939634pt;}
.x46{left:54.191602pt;}
.x14{left:56.865186pt;}
.x33{left:63.577407pt;}
.x32{left:66.879408pt;}
.x8{left:91.341213pt;}
.x34{left:92.685043pt;}
.x15{left:94.939635pt;}
.x2c{left:107.769822pt;}
.x9{left:127.443574pt;}
.x7{left:129.619152pt;}
.xb{left:132.018374pt;}
.x51{left:132.935664pt;}
.xf{left:142.060365pt;}
.x56{left:143.074885pt;}
.xe{left:148.902931pt;}
.xd{left:153.192939pt;}
.x4{left:162.897645pt;}
.x52{left:173.847776pt;}
.xc{left:205.067187pt;}
.x5{left:214.459333pt;}
.x45{left:252.044743pt;}
.x44{left:261.313035pt;}
.x1{left:269.153415pt;}
.x4c{left:301.503961pt;}
.x4a{left:367.482013pt;}
.x2{left:387.225048pt;}
.x6{left:388.939688pt;}
.x3{left:431.362320pt;}
.x4b{left:447.877128pt;}
.x3e{left:455.828346pt;}
.x35{left:465.351715pt;}
.x37{left:466.244079pt;}
.x36{left:469.546081pt;}
.x38{left:495.351716pt;}
.x3d{left:534.996101pt;}
.x12{left:591.934419pt;}
.x48{left:595.169345pt;}
.x47{left:599.179325pt;}
.x1b{left:623.482920pt;}
.x49{left:639.944920pt;}
.x50{left:679.832373pt;}
.x1f{left:731.514493pt;}
.x1e{left:736.650964pt;}
.x20{left:748.086624pt;}
.x27{left:774.182525pt;}
.x30{left:787.234571pt;}
.x31{left:814.532866pt;}
.x53{left:815.721311pt;}
.x22{left:818.703426pt;}
.x21{left:824.937026pt;}
.x29{left:828.511567pt;}
.x2e{left:835.223092pt;}
.x23{left:836.826827pt;}
.x19{left:845.444027pt;}
.x55{left:852.203397pt;}
.x2f{left:855.788102pt;}
.x18{left:873.628688pt;}
.x26{left:901.448829pt;}
.x4f{left:903.130510pt;}
.x1a{left:929.089260pt;}
.x17{left:948.441543pt;}
.x1d{left:961.261231pt;}
.x42{left:969.189040pt;}
.x25{left:972.640471pt;}
.x2a{left:973.617691pt;}
.x39{left:975.385491pt;}
.x54{left:979.173651pt;}
.x40{left:981.594122pt;}
.x3b{left:983.301511pt;}
.x3a{left:988.769072pt;}
.x3c{left:996.685092pt;}
.x24{left:1000.433072pt;}
.x11{left:1001.524272pt;}
.x43{left:1011.876037pt;}
.x41{left:1027.652973pt;}
.x1c{left:1046.009333pt;}
.x28{left:1055.118234pt;}
.x2b{left:1060.847764pt;}
.x3f{left:1071.315179pt;}
.x4d{left:1132.632636pt;}
.x4e{left:1134.926536pt;}
.x10{left:1148.605037pt;}
.x16{left:1175.038112pt;}
}




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