
    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_dc1dc70c87e6dd30daf1ec68.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_a883d08011355efdab3f86e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_44a9555710438f3eac9b6783.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895000;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_fdbfb6a94732537d9a9bb865.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904000;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_95d399cf7f6ad9b2d1c1fc6e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_a943e5bf33e95e96f072aac3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.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:ff7;src:url('chunks/assets/font_12e923c770d8282f5c6c1b78.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_732030fe730a116d6c3e4960.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.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_0310187befd1598722c3e45a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.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;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.099780px;}
.ls6{letter-spacing:15.318594px;}
.ls1{letter-spacing:16.039014px;}
.ls5{letter-spacing:16.527053px;}
.ls2{letter-spacing:46.065102px;}
.ls4{letter-spacing:79.926088px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-14.939994px;}
.ws0{word-spacing:-12.059995px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.812385px;}
._4{margin-left:-6.132506px;}
._6{margin-left:-5.101027px;}
._1{margin-left:-3.316353px;}
._7{margin-left:-2.222725px;}
._5{margin-left:-1.214092px;}
._0{width:1.139586px;}
._f{width:2.367894px;}
._10{width:3.432042px;}
._18{width:4.442435px;}
._e{width:5.522434px;}
._b{width:6.622110px;}
._19{width:7.698037px;}
._1a{width:9.007122px;}
._17{width:10.122524px;}
._16{width:11.155662px;}
._c{width:12.287320px;}
._d{width:13.404629px;}
._13{width:14.542000px;}
._3{width:16.119067px;}
._1b{width:17.754028px;}
._1c{width:18.875685px;}
._14{width:20.019526px;}
._15{width:21.517304px;}
._11{width:23.735050px;}
._12{width:25.091462px;}
._1e{width:28.290575px;}
._1d{width:29.689434px;}
._8{width:30.942376px;}
._a{width:37.380161px;}
._9{width:132.023662px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.239981px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs2{font-size:89.999964px;}
.y0{bottom:0.000000px;}
.y3{bottom:78.239969px;}
.y28{bottom:78.240269px;}
.yef{bottom:110.999956px;}
.ya6{bottom:113.880254px;}
.yfb{bottom:115.499954px;}
.ydf{bottom:118.379953px;}
.y80{bottom:121.439951px;}
.y52{bottom:125.939950px;}
.y125{bottom:128.999948px;}
.yc7{bottom:130.439948px;}
.y142{bottom:131.879947px;}
.ya5{bottom:134.940246px;}
.yfa{bottom:136.379945px;}
.yde{bottom:139.439944px;}
.y7f{bottom:142.499943px;}
.y51{bottom:146.999941px;}
.yee{bottom:149.519940px;}
.y124{bottom:149.879940px;}
.y141{bottom:152.939939px;}
.ya4{bottom:155.999938px;}
.y11a{bottom:157.439937px;}
.ydd{bottom:160.499936px;}
.y7e{bottom:163.379935px;}
.yc6{bottom:164.999934px;}
.y50{bottom:167.879933px;}
.yf9{bottom:170.939932px;}
.y140{bottom:173.999930px;}
.ydc{bottom:181.379927px;}
.y7d{bottom:184.439926px;}
.yed{bottom:185.879926px;}
.y4f{bottom:188.939924px;}
.ya3{bottom:190.379924px;}
.yf8{bottom:191.999923px;}
.y13f{bottom:194.879922px;}
.yc5{bottom:199.379920px;}
.y7c{bottom:205.499918px;}
.yec{bottom:206.939917px;}
.y4e{bottom:209.999916px;}
.ya2{bottom:211.439915px;}
.yf7{bottom:212.879915px;}
.ydb{bottom:215.939914px;}
.yc4{bottom:220.439912px;}
.y123{bottom:226.379909px;}
.yeb{bottom:227.999909px;}
.y4d{bottom:230.879908px;}
.ya1{bottom:232.499907px;}
.y119{bottom:233.939906px;}
.yda{bottom:236.999905px;}
.y7b{bottom:239.879904px;}
.yf6{bottom:247.439901px;}
.yea{bottom:248.879900px;}
.y4c{bottom:251.939899px;}
.ya0{bottom:253.379899px;}
.yc3{bottom:254.999898px;}
.y13e{bottom:257.879897px;}
.y7a{bottom:260.939896px;}
.yf5{bottom:268.499893px;}
.ye9{bottom:269.939892px;}
.yd9{bottom:271.379891px;}
.y9f{bottom:274.439890px;}
.y118{bottom:275.879890px;}
.y13d{bottom:278.939888px;}
.y79{bottom:281.999887px;}
.y4b{bottom:286.499885px;}
.yc2{bottom:289.379884px;}
.yd8{bottom:292.439883px;}
.y9e{bottom:295.499882px;}
.y117{bottom:296.939881px;}
.y13c{bottom:299.999880px;}
.y78{bottom:302.879879px;}
.ye8{bottom:304.499878px;}
.y4a{bottom:307.379877px;}
.yc1{bottom:310.439876px;}
.yd7{bottom:313.499875px;}
.y9d{bottom:316.379873px;}
.y116{bottom:317.999873px;}
.y13b{bottom:320.879872px;}
.y77{bottom:323.939870px;}
.y49{bottom:328.439869px;}
.yc0{bottom:331.499867px;}
.yd6{bottom:334.379866px;}
.y9c{bottom:337.439865px;}
.ye7{bottom:338.879864px;}
.y13a{bottom:341.939863px;}
.y76{bottom:344.999862px;}
.y48{bottom:349.499860px;}
.ybf{bottom:352.379859px;}
.y9b{bottom:358.499857px;}
.ye6{bottom:359.939856px;}
.y139{bottom:362.999855px;}
.y75{bottom:365.879854px;}
.yd5{bottom:368.939852px;}
.y47{bottom:370.379852px;}
.ybe{bottom:373.439851px;}
.y9a{bottom:379.379848px;}
.y115{bottom:380.999848px;}
.y138{bottom:383.879846px;}
.y74{bottom:386.939845px;}
.yd4{bottom:389.999844px;}
.y46{bottom:391.439843px;}
.ye5{bottom:394.499842px;}
.y99{bottom:400.439840px;}
.y114{bottom:401.879839px;}
.ybd{bottom:404.939838px;}
.y73{bottom:407.999837px;}
.yd3{bottom:410.879836px;}
.y45{bottom:412.499835px;}
.ye4{bottom:415.379834px;}
.y113{bottom:422.939831px;}
.y12c{bottom:425.999830px;}
.y72{bottom:428.879828px;}
.yd2{bottom:431.939827px;}
.y44{bottom:433.379827px;}
.y98{bottom:434.999826px;}
.y112{bottom:443.999822px;}
.y25{bottom:444.539822px;}
.y137{bottom:446.879821px;}
.ybc{bottom:448.499821px;}
.ye3{bottom:449.939820px;}
.yd1{bottom:452.999819px;}
.y43{bottom:454.439818px;}
.y97{bottom:455.879818px;}
.y71{bottom:463.439815px;}
.y111{bottom:464.879814px;}
.y136{bottom:467.939813px;}
.ybb{bottom:469.379812px;}
.ye2{bottom:470.999812px;}
.y24{bottom:471.719811px;}
.y42{bottom:475.499810px;}
.y96{bottom:476.939809px;}
.y70{bottom:484.499806px;}
.y110{bottom:485.939806px;}
.y135{bottom:488.999804px;}
.yba{bottom:490.439804px;}
.yd0{bottom:491.519803px;}
.yf4{bottom:491.879803px;}
.y41{bottom:496.379801px;}
.y95{bottom:497.999801px;}
.y23{bottom:498.539801px;}
.y6f{bottom:505.379798px;}
.y134{bottom:509.879796px;}
.yb9{bottom:511.499795px;}
.y122{bottom:512.939795px;}
.y94{bottom:518.879792px;}
.y10f{bottom:520.499792px;}
.y22{bottom:525.539790px;}
.y6e{bottom:526.439789px;}
.y40{bottom:530.939788px;}
.yb8{bottom:532.379787px;}
.y121{bottom:533.999786px;}
.ycf{bottom:538.499785px;}
.y93{bottom:539.939784px;}
.y10e{bottom:541.379783px;}
.y6d{bottom:547.499781px;}
.y3f{bottom:551.999779px;}
.y21{bottom:552.539779px;}
.yb7{bottom:553.439779px;}
.y120{bottom:554.879778px;}
.y92{bottom:560.999776px;}
.y10d{bottom:562.439775px;}
.y12b{bottom:566.939773px;}
.y6c{bottom:568.379773px;}
.y3e{bottom:572.879771px;}
.yb6{bottom:574.499770px;}
.y11f{bottom:575.939770px;}
.y20{bottom:579.539768px;}
.yce{bottom:581.879767px;}
.y10c{bottom:583.499767px;}
.y12a{bottom:587.999765px;}
.y6b{bottom:589.439764px;}
.y3d{bottom:593.939762px;}
.y91{bottom:595.379762px;}
.y11e{bottom:596.999761px;}
.ycd{bottom:602.939759px;}
.y10b{bottom:604.379758px;}
.y1f{bottom:606.539757px;}
.y129{bottom:608.879756px;}
.y6a{bottom:610.499756px;}
.y3c{bottom:614.999754px;}
.y90{bottom:616.439753px;}
.ycc{bottom:623.999750px;}
.y10a{bottom:625.439750px;}
.y11d{bottom:628.499749px;}
.yb5{bottom:629.939748px;}
.y69{bottom:631.379747px;}
.y1e{bottom:633.539747px;}
.y3b{bottom:635.879746px;}
.y8f{bottom:637.499745px;}
.ycb{bottom:644.879742px;}
.y109{bottom:646.499741px;}
.yb4{bottom:650.999740px;}
.y68{bottom:652.439739px;}
.y3a{bottom:656.939737px;}
.y8e{bottom:658.379737px;}
.y1d{bottom:660.539736px;}
.yca{bottom:665.939734px;}
.y108{bottom:667.379733px;}
.yb3{bottom:671.879731px;}
.y67{bottom:673.499731px;}
.y39{bottom:677.999729px;}
.y8d{bottom:679.439728px;}
.y128{bottom:685.379726px;}
.yc9{bottom:686.999725px;}
.y1c{bottom:687.539725px;}
.y107{bottom:688.439725px;}
.yb2{bottom:692.939723px;}
.y66{bottom:694.379722px;}
.y38{bottom:698.879720px;}
.y8c{bottom:700.499720px;}
.y127{bottom:706.439717px;}
.ye1{bottom:707.879717px;}
.y106{bottom:709.499716px;}
.yb1{bottom:713.999714px;}
.y1b{bottom:714.539714px;}
.y65{bottom:715.439714px;}
.y37{bottom:719.939712px;}
.y8b{bottom:721.379711px;}
.y126{bottom:727.499709px;}
.y105{bottom:730.379708px;}
.y11c{bottom:734.879706px;}
.y36{bottom:740.999704px;}
.y1a{bottom:741.539703px;}
.y8a{bottom:742.439703px;}
.y64{bottom:746.939701px;}
.yb0{bottom:748.379701px;}
.y104{bottom:751.439699px;}
.y11b{bottom:755.939698px;}
.y133{bottom:761.879695px;}
.yc8{bottom:763.499695px;}
.y19{bottom:768.539693px;}
.yaf{bottom:769.439692px;}
.y103{bottom:772.499691px;}
.y35{bottom:775.379690px;}
.y89{bottom:776.999689px;}
.y132{bottom:782.939687px;}
.ye0{bottom:784.379686px;}
.y63{bottom:790.499684px;}
.y18{bottom:795.539682px;}
.y34{bottom:796.439681px;}
.y88{bottom:797.879681px;}
.y102{bottom:803.999678px;}
.yf3{bottom:805.439678px;}
.y62{bottom:811.379675px;}
.y33{bottom:817.499673px;}
.y87{bottom:818.939672px;}
.y17{bottom:822.359671px;}
.y131{bottom:824.879670px;}
.yf2{bottom:826.499669px;}
.y61{bottom:832.439667px;}
.y32{bottom:838.379665px;}
.y86{bottom:839.999664px;}
.y130{bottom:845.939662px;}
.yf1{bottom:847.379661px;}
.y16{bottom:849.719660px;}
.y60{bottom:853.499659px;}
.y31{bottom:859.439656px;}
.y85{bottom:860.879656px;}
.y12f{bottom:866.999653px;}
.y5f{bottom:874.379650px;}
.y10{bottom:874.739650px;}
.y30{bottom:880.499648px;}
.y84{bottom:881.939647px;}
.y12e{bottom:887.879645px;}
.yf{bottom:888.419645px;}
.y5e{bottom:895.439642px;}
.y2f{bottom:901.379639px;}
.y83{bottom:902.999639px;}
.ye{bottom:906.419637px;}
.y12d{bottom:908.939636px;}
.y5d{bottom:916.499633px;}
.y2e{bottom:922.439631px;}
.yf0{bottom:923.879630px;}
.y15{bottom:928.739629px;}
.yd{bottom:929.279628px;}
.yae{bottom:929.999628px;}
.y5c{bottom:937.379625px;}
.y14{bottom:942.419623px;}
.y101{bottom:944.939622px;}
.yc{bottom:947.279621px;}
.yad{bottom:950.879620px;}
.y13{bottom:956.279617px;}
.y2d{bottom:956.999617px;}
.y5b{bottom:958.439617px;}
.y100{bottom:965.999614px;}
.yb{bottom:970.139612px;}
.yac{bottom:971.939611px;}
.y2c{bottom:977.879609px;}
.y5a{bottom:979.499608px;}
.y12{bottom:983.819606px;}
.yff{bottom:986.879605px;}
.ya{bottom:988.139605px;}
.yab{bottom:992.999603px;}
.y59{bottom:1000.379600px;}
.y11{bottom:1001.819599px;}
.yfe{bottom:1007.939597px;}
.y9{bottom:1010.819596px;}
.yaa{bottom:1013.879594px;}
.y58{bottom:1021.439591px;}
.y2b{bottom:1022.879591px;}
.y8{bottom:1028.819588px;}
.yfd{bottom:1028.999588px;}
.ya9{bottom:1034.939586px;}
.y57{bottom:1042.499583px;}
.yfc{bottom:1049.879580px;}
.y7{bottom:1055.819578px;}
.ya8{bottom:1055.999578px;}
.y56{bottom:1063.379575px;}
.ya7{bottom:1076.879569px;}
.y6{bottom:1081.199568px;}
.y2a{bottom:1082.459567px;}
.y82{bottom:1084.439566px;}
.y55{bottom:1097.939561px;}
.y81{bottom:1105.499558px;}
.y5{bottom:1108.199557px;}
.y29{bottom:1109.459556px;}
.y54{bottom:1118.999552px;}
.y4{bottom:1136.819545px;}
.y53{bottom:1139.879544px;}
.y27{bottom:1168.319533px;}
.y2{bottom:1168.499533px;}
.y1{bottom:1185.239526px;}
.y26{bottom:1185.599526px;}
.h5{height:33.092627px;}
.h7{height:33.189107px;}
.h6{height:33.382067px;}
.hc{height:40.995344px;}
.h2{height:41.114864px;}
.h1{height:41.353903px;}
.ha{height:41.772223px;}
.hd{height:43.185920px;}
.h9{height:47.988262px;}
.h3{height:49.535980px;}
.hb{height:49.823980px;}
.h8{height:50.327980px;}
.h4{height:61.919975px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:106.379957px;}
.xb{left:108.179959px;}
.xf{left:122.040242px;}
.xe{left:133.200494px;}
.xd{left:148.859867px;}
.x13{left:160.376686px;}
.x11{left:169.205952px;}
.x3{left:310.860075px;}
.xc{left:363.419177px;}
.x12{left:388.979844px;}
.x10{left:396.539841px;}
.x1{left:433.259827px;}
.x2{left:562.319983px;}
.x7{left:671.219759px;}
.xa{left:682.379720px;}
.x6{left:689.039724px;}
.x9{left:691.379711px;}
.x8{left:731.339675px;}
.x5{left:786.599685px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.088693pt;}
.ls6{letter-spacing:13.616528pt;}
.ls1{letter-spacing:14.256901pt;}
.ls5{letter-spacing:14.690714pt;}
.ls2{letter-spacing:40.946757pt;}
.ls4{letter-spacing:71.045412pt;}
.ws2{word-spacing:-13.279995pt;}
.ws0{word-spacing:-10.719996pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.944342pt;}
._4{margin-left:-5.451116pt;}
._6{margin-left:-4.534246pt;}
._1{margin-left:-2.947869pt;}
._7{margin-left:-1.975756pt;}
._5{margin-left:-1.079193pt;}
._0{width:1.012966pt;}
._f{width:2.104794pt;}
._10{width:3.050704pt;}
._18{width:3.948831pt;}
._e{width:4.908830pt;}
._b{width:5.886320pt;}
._19{width:6.842699pt;}
._1a{width:8.006330pt;}
._17{width:8.997799pt;}
._16{width:9.916144pt;}
._c{width:10.922062pt;}
._d{width:11.915226pt;}
._13{width:12.926222pt;}
._3{width:14.328060pt;}
._1b{width:15.781358pt;}
._1c{width:16.778387pt;}
._14{width:17.795134pt;}
._15{width:19.126492pt;}
._11{width:21.097822pt;}
._12{width:22.303521pt;}
._1e{width:25.147178pt;}
._1d{width:26.390608pt;}
._8{width:27.504335pt;}
._a{width:33.226810pt;}
._9{width:117.354366pt;}
.fs3{font-size:42.879983pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs2{font-size:79.999968pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:69.546639pt;}
.y28{bottom:69.546906pt;}
.yef{bottom:98.666627pt;}
.ya6{bottom:101.226893pt;}
.yfb{bottom:102.666626pt;}
.ydf{bottom:105.226625pt;}
.y80{bottom:107.946623pt;}
.y52{bottom:111.946622pt;}
.y125{bottom:114.666621pt;}
.yc7{bottom:115.946620pt;}
.y142{bottom:117.226620pt;}
.ya5{bottom:119.946885pt;}
.yfa{bottom:121.226618pt;}
.yde{bottom:123.946617pt;}
.y7f{bottom:126.666616pt;}
.y51{bottom:130.666614pt;}
.yee{bottom:132.906614pt;}
.y124{bottom:133.226613pt;}
.y141{bottom:135.946612pt;}
.ya4{bottom:138.666611pt;}
.y11a{bottom:139.946611pt;}
.ydd{bottom:142.666610pt;}
.y7e{bottom:145.226609pt;}
.yc6{bottom:146.666608pt;}
.y50{bottom:149.226607pt;}
.yf9{bottom:151.946606pt;}
.y140{bottom:154.666605pt;}
.ydc{bottom:161.226602pt;}
.y7d{bottom:163.946601pt;}
.yed{bottom:165.226601pt;}
.y4f{bottom:167.946599pt;}
.ya3{bottom:169.226599pt;}
.yf8{bottom:170.666598pt;}
.y13f{bottom:173.226597pt;}
.yc5{bottom:177.226596pt;}
.y7c{bottom:182.666594pt;}
.yec{bottom:183.946593pt;}
.y4e{bottom:186.666592pt;}
.ya2{bottom:187.946591pt;}
.yf7{bottom:189.226591pt;}
.ydb{bottom:191.946590pt;}
.yc4{bottom:195.946588pt;}
.y123{bottom:201.226586pt;}
.yeb{bottom:202.666586pt;}
.y4d{bottom:205.226585pt;}
.ya1{bottom:206.666584pt;}
.y119{bottom:207.946583pt;}
.yda{bottom:210.666582pt;}
.y7b{bottom:213.226581pt;}
.yf6{bottom:219.946579pt;}
.yea{bottom:221.226578pt;}
.y4c{bottom:223.946577pt;}
.ya0{bottom:225.226577pt;}
.yc3{bottom:226.666576pt;}
.y13e{bottom:229.226575pt;}
.y7a{bottom:231.946574pt;}
.yf5{bottom:238.666571pt;}
.ye9{bottom:239.946571pt;}
.yd9{bottom:241.226570pt;}
.y9f{bottom:243.946569pt;}
.y118{bottom:245.226569pt;}
.y13d{bottom:247.946567pt;}
.y79{bottom:250.666566pt;}
.y4b{bottom:254.666565pt;}
.yc2{bottom:257.226564pt;}
.yd8{bottom:259.946563pt;}
.y9e{bottom:262.666562pt;}
.y117{bottom:263.946561pt;}
.y13c{bottom:266.666560pt;}
.y78{bottom:269.226559pt;}
.ye8{bottom:270.666558pt;}
.y4a{bottom:273.226557pt;}
.yc1{bottom:275.946556pt;}
.yd7{bottom:278.666555pt;}
.y9d{bottom:281.226554pt;}
.y116{bottom:282.666554pt;}
.y13b{bottom:285.226553pt;}
.y77{bottom:287.946551pt;}
.y49{bottom:291.946550pt;}
.yc0{bottom:294.666549pt;}
.yd6{bottom:297.226548pt;}
.y9c{bottom:299.946547pt;}
.ye7{bottom:301.226546pt;}
.y13a{bottom:303.946545pt;}
.y76{bottom:306.666544pt;}
.y48{bottom:310.666542pt;}
.ybf{bottom:313.226541pt;}
.y9b{bottom:318.666539pt;}
.ye6{bottom:319.946539pt;}
.y139{bottom:322.666538pt;}
.y75{bottom:325.226537pt;}
.yd5{bottom:327.946535pt;}
.y47{bottom:329.226535pt;}
.ybe{bottom:331.946534pt;}
.y9a{bottom:337.226532pt;}
.y115{bottom:338.666531pt;}
.y138{bottom:341.226530pt;}
.y74{bottom:343.946529pt;}
.yd4{bottom:346.666528pt;}
.y46{bottom:347.946527pt;}
.ye5{bottom:350.666526pt;}
.y99{bottom:355.946524pt;}
.y114{bottom:357.226524pt;}
.ybd{bottom:359.946523pt;}
.y73{bottom:362.666522pt;}
.yd3{bottom:365.226521pt;}
.y45{bottom:366.666520pt;}
.ye4{bottom:369.226519pt;}
.y113{bottom:375.946516pt;}
.y12c{bottom:378.666515pt;}
.y72{bottom:381.226514pt;}
.yd2{bottom:383.946513pt;}
.y44{bottom:385.226513pt;}
.y98{bottom:386.666512pt;}
.y112{bottom:394.666509pt;}
.y25{bottom:395.146509pt;}
.y137{bottom:397.226508pt;}
.ybc{bottom:398.666507pt;}
.ye3{bottom:399.946507pt;}
.yd1{bottom:402.666506pt;}
.y43{bottom:403.946505pt;}
.y97{bottom:405.226505pt;}
.y71{bottom:411.946502pt;}
.y111{bottom:413.226501pt;}
.y136{bottom:415.946500pt;}
.ybb{bottom:417.226500pt;}
.ye2{bottom:418.666499pt;}
.y24{bottom:419.306499pt;}
.y42{bottom:422.666498pt;}
.y96{bottom:423.946497pt;}
.y70{bottom:430.666494pt;}
.y110{bottom:431.946494pt;}
.y135{bottom:434.666493pt;}
.yba{bottom:435.946492pt;}
.yd0{bottom:436.906492pt;}
.yf4{bottom:437.226492pt;}
.y41{bottom:441.226490pt;}
.y95{bottom:442.666490pt;}
.y23{bottom:443.146489pt;}
.y6f{bottom:449.226487pt;}
.y134{bottom:453.226485pt;}
.yb9{bottom:454.666485pt;}
.y122{bottom:455.946484pt;}
.y94{bottom:461.226482pt;}
.y10f{bottom:462.666482pt;}
.y22{bottom:467.146480pt;}
.y6e{bottom:467.946479pt;}
.y40{bottom:471.946478pt;}
.yb8{bottom:473.226477pt;}
.y121{bottom:474.666477pt;}
.ycf{bottom:478.666475pt;}
.y93{bottom:479.946475pt;}
.y10e{bottom:481.226474pt;}
.y6d{bottom:486.666472pt;}
.y3f{bottom:490.666470pt;}
.y21{bottom:491.146470pt;}
.yb7{bottom:491.946470pt;}
.y120{bottom:493.226469pt;}
.y92{bottom:498.666467pt;}
.y10d{bottom:499.946467pt;}
.y12b{bottom:503.946465pt;}
.y6c{bottom:505.226465pt;}
.y3e{bottom:509.226463pt;}
.yb6{bottom:510.666462pt;}
.y11f{bottom:511.946462pt;}
.y20{bottom:515.146461pt;}
.yce{bottom:517.226460pt;}
.y10c{bottom:518.666459pt;}
.y12a{bottom:522.666458pt;}
.y6b{bottom:523.946457pt;}
.y3d{bottom:527.946455pt;}
.y91{bottom:529.226455pt;}
.y11e{bottom:530.666454pt;}
.ycd{bottom:535.946452pt;}
.y10b{bottom:537.226452pt;}
.y1f{bottom:539.146451pt;}
.y129{bottom:541.226450pt;}
.y6a{bottom:542.666450pt;}
.y3c{bottom:546.666448pt;}
.y90{bottom:547.946447pt;}
.ycc{bottom:554.666445pt;}
.y10a{bottom:555.946444pt;}
.y11d{bottom:558.666443pt;}
.yb5{bottom:559.946443pt;}
.y69{bottom:561.226442pt;}
.y1e{bottom:563.146441pt;}
.y3b{bottom:565.226441pt;}
.y8f{bottom:566.666440pt;}
.ycb{bottom:573.226437pt;}
.y109{bottom:574.666437pt;}
.yb4{bottom:578.666435pt;}
.y68{bottom:579.946435pt;}
.y3a{bottom:583.946433pt;}
.y8e{bottom:585.226433pt;}
.y1d{bottom:587.146432pt;}
.yca{bottom:591.946430pt;}
.y108{bottom:593.226429pt;}
.yb3{bottom:597.226428pt;}
.y67{bottom:598.666427pt;}
.y39{bottom:602.666426pt;}
.y8d{bottom:603.946425pt;}
.y128{bottom:609.226423pt;}
.yc9{bottom:610.666422pt;}
.y1c{bottom:611.146422pt;}
.y107{bottom:611.946422pt;}
.yb2{bottom:615.946420pt;}
.y66{bottom:617.226420pt;}
.y38{bottom:621.226418pt;}
.y8c{bottom:622.666418pt;}
.y127{bottom:627.946415pt;}
.ye1{bottom:629.226415pt;}
.y106{bottom:630.666414pt;}
.yb1{bottom:634.666413pt;}
.y1b{bottom:635.146413pt;}
.y65{bottom:635.946412pt;}
.y37{bottom:639.946411pt;}
.y8b{bottom:641.226410pt;}
.y126{bottom:646.666408pt;}
.y105{bottom:649.226407pt;}
.y11c{bottom:653.226405pt;}
.y36{bottom:658.666403pt;}
.y1a{bottom:659.146403pt;}
.y8a{bottom:659.946403pt;}
.y64{bottom:663.946401pt;}
.yb0{bottom:665.226401pt;}
.y104{bottom:667.946399pt;}
.y11b{bottom:671.946398pt;}
.y133{bottom:677.226396pt;}
.yc8{bottom:678.666395pt;}
.y19{bottom:683.146393pt;}
.yaf{bottom:683.946393pt;}
.y103{bottom:686.666392pt;}
.y35{bottom:689.226391pt;}
.y89{bottom:690.666390pt;}
.y132{bottom:695.946388pt;}
.ye0{bottom:697.226388pt;}
.y63{bottom:702.666386pt;}
.y18{bottom:707.146384pt;}
.y34{bottom:707.946383pt;}
.y88{bottom:709.226383pt;}
.y102{bottom:714.666381pt;}
.yf3{bottom:715.946380pt;}
.y62{bottom:721.226378pt;}
.y33{bottom:726.666376pt;}
.y87{bottom:727.946375pt;}
.y17{bottom:730.986374pt;}
.y131{bottom:733.226373pt;}
.yf2{bottom:734.666373pt;}
.y61{bottom:739.946371pt;}
.y32{bottom:745.226369pt;}
.y86{bottom:746.666368pt;}
.y130{bottom:751.946366pt;}
.yf1{bottom:753.226365pt;}
.y16{bottom:755.306365pt;}
.y60{bottom:758.666363pt;}
.y31{bottom:763.946361pt;}
.y85{bottom:765.226361pt;}
.y12f{bottom:770.666358pt;}
.y5f{bottom:777.226356pt;}
.y10{bottom:777.546356pt;}
.y30{bottom:782.666354pt;}
.y84{bottom:783.946353pt;}
.y12e{bottom:789.226351pt;}
.yf{bottom:789.706351pt;}
.y5e{bottom:795.946348pt;}
.y2f{bottom:801.226346pt;}
.y83{bottom:802.666346pt;}
.ye{bottom:805.706344pt;}
.y12d{bottom:807.946343pt;}
.y5d{bottom:814.666341pt;}
.y2e{bottom:819.946339pt;}
.yf0{bottom:821.226338pt;}
.y15{bottom:825.546336pt;}
.yd{bottom:826.026336pt;}
.yae{bottom:826.666336pt;}
.y5c{bottom:833.226333pt;}
.y14{bottom:837.706332pt;}
.y101{bottom:839.946331pt;}
.yc{bottom:842.026330pt;}
.yad{bottom:845.226329pt;}
.y13{bottom:850.026327pt;}
.y2d{bottom:850.666326pt;}
.y5b{bottom:851.946326pt;}
.y100{bottom:858.666323pt;}
.yb{bottom:862.346322pt;}
.yac{bottom:863.946321pt;}
.y2c{bottom:869.226319pt;}
.y5a{bottom:870.666318pt;}
.y12{bottom:874.506317pt;}
.yff{bottom:877.226316pt;}
.ya{bottom:878.346315pt;}
.yab{bottom:882.666314pt;}
.y59{bottom:889.226311pt;}
.y11{bottom:890.506310pt;}
.yfe{bottom:895.946308pt;}
.y9{bottom:898.506307pt;}
.yaa{bottom:901.226306pt;}
.y58{bottom:907.946303pt;}
.y2b{bottom:909.226303pt;}
.y8{bottom:914.506301pt;}
.yfd{bottom:914.666301pt;}
.ya9{bottom:919.946299pt;}
.y57{bottom:926.666296pt;}
.yfc{bottom:933.226293pt;}
.y7{bottom:938.506291pt;}
.ya8{bottom:938.666291pt;}
.y56{bottom:945.226289pt;}
.ya7{bottom:957.226284pt;}
.y6{bottom:961.066282pt;}
.y2a{bottom:962.186282pt;}
.y82{bottom:963.946281pt;}
.y55{bottom:975.946276pt;}
.y81{bottom:982.666274pt;}
.y5{bottom:985.066273pt;}
.y29{bottom:986.186272pt;}
.y54{bottom:994.666269pt;}
.y4{bottom:1010.506262pt;}
.y53{bottom:1013.226261pt;}
.y27{bottom:1038.506251pt;}
.y2{bottom:1038.666251pt;}
.y1{bottom:1053.546245pt;}
.y26{bottom:1053.866245pt;}
.h5{height:29.415668pt;}
.h7{height:29.501428pt;}
.h6{height:29.672948pt;}
.hc{height:36.440305pt;}
.h2{height:36.546545pt;}
.h1{height:36.759025pt;}
.ha{height:37.130865pt;}
.hd{height:38.387485pt;}
.h9{height:42.656233pt;}
.h3{height:44.031982pt;}
.hb{height:44.287982pt;}
.h8{height:44.735982pt;}
.h4{height:55.039978pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:94.559962pt;}
.xb{left:96.159964pt;}
.xf{left:108.480215pt;}
.xe{left:118.400439pt;}
.xd{left:132.319882pt;}
.x13{left:142.557055pt;}
.x11{left:150.405291pt;}
.x3{left:276.320067pt;}
.xc{left:323.039268pt;}
.x12{left:345.759862pt;}
.x10{left:352.479859pt;}
.x1{left:385.119846pt;}
.x2{left:499.839985pt;}
.x7{left:596.639786pt;}
.xa{left:606.559751pt;}
.x6{left:612.479755pt;}
.x9{left:614.559743pt;}
.x8{left:650.079711pt;}
.x5{left:699.199720pt;}
}




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