
    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_0793a6c81d39e63d3cfabd98.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976074;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_feb6ff1635c346bcf56146d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776855;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_03cc19e834b7113b29108012.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966309;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_df7f7637f285a6a65f6af5b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_49bedcc6d35bf1f117dc354c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4dd666555507ebac033874a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960938;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_9f1b7f2fab5951a339b0ed1b.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_713e0c43d1396bc867d7e23f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.925293;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;}
.m1{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-6.478479px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.832762px;}
.v3{vertical-align:41.772354px;}
.v2{vertical-align:44.634565px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.280800px;}
.ls4{letter-spacing:90.775668px;}
.ls2{letter-spacing:90.816778px;}
.ls8{letter-spacing:90.816810px;}
.ls9{letter-spacing:154.768493px;}
.ls6{letter-spacing:154.816279px;}
.ls3{letter-spacing:154.816288px;}
.ls1{letter-spacing:154.816297px;}
.ls7{letter-spacing:154.816306px;}
.ls5{letter-spacing:194.875730px;}
.lsa{letter-spacing:196.560313px;}
.lsc{letter-spacing:216.715441px;}
.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;}
}
.ws0{word-spacing:-56.160091px;}
.ws7{word-spacing:-49.280480px;}
.ws40{word-spacing:-44.225886px;}
.ws18{word-spacing:-34.369790px;}
.wse{word-spacing:-33.390594px;}
.ws34{word-spacing:-29.568288px;}
.ws39{word-spacing:-22.239489px;}
.ws3c{word-spacing:-19.992992px;}
.ws3a{word-spacing:-19.712192px;}
.ws1f{word-spacing:-18.826012px;}
.ws36{word-spacing:-2.611444px;}
.ws33{word-spacing:-1.263602px;}
.ws11{word-spacing:-1.179362px;}
.ws23{word-spacing:-1.077116px;}
.ws1d{word-spacing:-0.685437px;}
.wsb{word-spacing:-0.587518px;}
.ws2b{word-spacing:-0.505441px;}
.ws14{word-spacing:-0.489598px;}
.ws28{word-spacing:-0.421201px;}
.ws16{word-spacing:-0.391679px;}
.ws1c{word-spacing:-0.336961px;}
.ws25{word-spacing:-0.293759px;}
.ws29{word-spacing:-0.195839px;}
.ws27{word-spacing:-0.097920px;}
.ws6{word-spacing:0.000000px;}
.wsd{word-spacing:0.264737px;}
.ws21{word-spacing:0.293759px;}
.ws24{word-spacing:0.391679px;}
.ws8{word-spacing:0.489598px;}
.wsf{word-spacing:0.505441px;}
.ws4{word-spacing:0.561601px;}
.ws2e{word-spacing:0.587518px;}
.ws12{word-spacing:0.616500px;}
.ws5{word-spacing:0.673921px;}
.wsa{word-spacing:0.685437px;}
.ws2f{word-spacing:0.783357px;}
.ws1b{word-spacing:1.347842px;}
.ws26{word-spacing:1.370875px;}
.wsc{word-spacing:1.468794px;}
.ws9{word-spacing:1.566714px;}
.ws32{word-spacing:1.664634px;}
.ws3d{word-spacing:1.740963px;}
.ws3b{word-spacing:2.002680px;}
.ws31{word-spacing:2.056312px;}
.ws10{word-spacing:2.447991px;}
.ws30{word-spacing:2.839669px;}
.ws1a{word-spacing:3.623026px;}
.ws37{word-spacing:4.602223px;}
.ws19{word-spacing:6.233770px;}
.ws2c{word-spacing:7.244652px;}
.ws35{word-spacing:8.087053px;}
.ws15{word-spacing:13.317070px;}
.ws22{word-spacing:14.296266px;}
.ws2d{word-spacing:17.233855px;}
.ws3e{word-spacing:17.858909px;}
.ws17{word-spacing:24.381988px;}
.ws38{word-spacing:29.963407px;}
.ws13{word-spacing:30.831890px;}
.ws2a{word-spacing:31.590051px;}
.ws3f{word-spacing:85.251018px;}
.ws3{word-spacing:111.758581px;}
.ws1{word-spacing:112.207862px;}
.ws2{word-spacing:125.985701px;}
.ws20{word-spacing:353.939809px;}
.ws1e{word-spacing:390.799097px;}
.ws41{word-spacing:990.358284px;}
._3{margin-left:-19.796432px;}
._6{margin-left:-13.141461px;}
._17{margin-left:-9.864007px;}
._23{margin-left:-6.934247px;}
._5{margin-left:-5.880222px;}
._a{margin-left:-4.638302px;}
._0{margin-left:-3.510006px;}
._2{margin-left:-2.106003px;}
._4{margin-left:-1.010882px;}
._1{width:1.123202px;}
._10{width:2.218324px;}
._19{width:3.669174px;}
._15{width:11.756103px;}
._14{width:12.827471px;}
._16{width:22.619434px;}
._2d{width:23.708046px;}
._26{width:27.349964px;}
._c{width:28.922447px;}
._e{width:30.045649px;}
._d{width:31.623226px;}
._9{width:33.948610px;}
._b{width:35.805271px;}
._8{width:36.821386px;}
._7{width:38.862783px;}
._28{width:40.116063px;}
._12{width:46.609744px;}
._25{width:47.646521px;}
._11{width:48.721495px;}
._22{width:49.754667px;}
._29{width:52.681461px;}
._2c{width:57.675445px;}
._2b{width:58.794959px;}
._13{width:60.024733px;}
._f{width:61.467220px;}
._24{width:62.730822px;}
._2a{width:65.922198px;}
._27{width:73.569719px;}
._2e{width:105.974092px;}
._2f{width:107.046018px;}
._1e{width:254.382811px;}
._1d{width:323.100587px;}
._30{width:435.212625px;}
._21{width:505.243077px;}
._18{width:513.987677px;}
._1c{width:678.589137px;}
._1f{width:753.048560px;}
._1a{width:838.821732px;}
._20{width:981.558001px;}
._1b{width:1102.494081px;}
.fc8{color:rgb(5,99,193);}
.fc6{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc3{color:rgb(0,70,173);}
.fc1{color:rgb(255,153,0);}
.fc7{color:rgb(0,0,0);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:56.160091px;}
.fs6{font-size:63.360367px;}
.fs7{font-size:67.963944px;}
.fs4{font-size:74.879630px;}
.fs1{font-size:84.240136px;}
.fs5{font-size:97.919629px;}
.fs3{font-size:112.320182px;}
.fs9{font-size:125.999675px;}
.fs0{font-size:140.400227px;}
.fs8{font-size:224.640364px;}
.y0{bottom:0.000000px;}
.y7{bottom:97.015936px;}
.y10{bottom:122.390078px;}
.y96{bottom:124.557860px;}
.y26{bottom:147.968405px;}
.y31{bottom:151.199961px;}
.y80{bottom:154.267702px;}
.y6b{bottom:154.972567px;}
.y95{bottom:158.218250px;}
.ya{bottom:159.292850px;}
.y5e{bottom:162.897863px;}
.y1b{bottom:171.002014px;}
.y75{bottom:183.778450px;}
.y53{bottom:189.364043px;}
.y30{bottom:196.015506px;}
.y7f{bottom:198.541957px;}
.y51{bottom:200.522634px;}
.y6a{bottom:201.422617px;}
.y9{bottom:203.579234px;}
.y9c{bottom:203.760057px;}
.y94{bottom:205.915219px;}
.y9a{bottom:205.919508px;}
.y25{bottom:206.287529px;}
.y5d{bottom:207.184010px;}
.y50{bottom:210.965722px;}
.y54{bottom:222.124363px;}
.y1a{bottom:227.694213px;}
.y74{bottom:228.600460px;}
.y52{bottom:232.562236px;}
.y8{bottom:234.003858px;}
.y93{bottom:239.755615px;}
.y87{bottom:240.126696px;}
.y2f{bottom:242.636813px;}
.y69{bottom:245.696799px;}
.y4d{bottom:254.169131px;}
.y7e{bottom:256.861008px;}
.y24{bottom:262.978512px;}
.y19{bottom:265.497914px;}
.y5c{bottom:265.503061px;}
.y73{bottom:275.220921px;}
.y4c{bottom:275.589327px;}
.y4f{bottom:286.747968px;}
.y92{bottom:287.456894px;}
.y4b{bottom:297.185841px;}
.y86{bottom:298.445747px;}
.y2e{bottom:300.967866px;}
.y68{bottom:302.394112px;}
.y9b{bottom:306.003532px;}
.y23{bottom:307.803096px;}
.y47{bottom:308.344482px;}
.y5b{bottom:309.777280px;}
.y18{bottom:312.120073px;}
.y4a{bottom:318.787571px;}
.y4e{bottom:329.946162px;}
.y72{bottom:331.917259px;}
.y91{bottom:335.158172px;}
.y67{bottom:340.195239px;}
.y49{bottom:340.384085px;}
.y85{bottom:342.540676px;}
.y6{bottom:352.257436px;}
.y22{bottom:354.422041px;}
.y2d{bottom:359.107628px;}
.y7d{bottom:359.286953px;}
.y48{bottom:361.985764px;}
.yf{bottom:362.705517px;}
.y5a{bottom:367.917078px;}
.y17{bottom:368.823719px;}
.y71{bottom:378.364059px;}
.y5{bottom:382.675218px;}
.y90{bottom:382.855183px;}
.y66{bottom:386.826823px;}
.y44{bottom:394.566678px;}
.y7c{bottom:403.561135px;}
.y46{bottom:405.003538px;}
.y21{bottom:411.118608px;}
.y16{bottom:415.263211px;}
.y43{bottom:416.162179px;}
.y8f{bottom:416.515573px;}
.y2c{bottom:417.426715px;}
.y70{bottom:422.638277px;}
.y59{bottom:426.236130px;}
.y40{bottom:426.607293px;}
.y99{bottom:429.124526px;}
.ye{bottom:435.786665px;}
.y42{bottom:437.765934px;}
.y65{bottom:443.335923px;}
.y84{bottom:445.145911px;}
.y45{bottom:448.202794px;}
.y20{bottom:448.919735px;}
.y8e{bottom:450.355928px;}
.y41{bottom:459.361436px;}
.y9d{bottom:459.548522px;}
.y7b{bottom:460.262125px;}
.y4{bottom:464.752451px;}
.y58{bottom:470.522313px;}
.y15{bottom:471.964403px;}
.y2b{bottom:475.745803px;}
.y6f{bottom:480.778039px;}
.y64{bottom:481.322140px;}
.y83{bottom:489.240840px;}
.y3f{bottom:491.227809px;}
.y1f{bottom:495.540100px;}
.y8d{bottom:498.056369px;}
.y3{bottom:502.731817px;}
.y7a{bottom:505.076384px;}
.yd{bottom:508.855849px;}
.y3d{bottom:512.823285px;}
.y14{bottom:518.406348px;}
.y2a{bottom:519.840696px;}
.y63{bottom:527.765594px;}
.y57{bottom:528.662075px;}
.y3e{bottom:534.427066px;}
.y6e{bottom:539.097127px;}
.y1e{bottom:539.646958px;}
.y2{bottom:540.539785px;}
.y8c{bottom:545.756811px;}
.y82{bottom:547.559892px;}
.y79{bottom:550.075765px;}
.y38{bottom:556.022542px;}
.y3c{bottom:567.181158px;}
.y56{bottom:572.936293px;}
.y13{bottom:576.725436px;}
.y37{bottom:577.626322px;}
.y29{bottom:578.159784px;}
.y1{bottom:578.519150px;}
.yc{bottom:581.757672px;}
.y6d{bottom:583.383274px;}
.y62{bottom:584.462855px;}
.y78{bottom:587.876861px;}
.y3b{bottom:588.602417px;}
.y81{bottom:591.846075px;}
.y8b{bottom:593.457231px;}
.y1d{bottom:597.966046px;}
.y34{bottom:599.221799px;}
.y98{bottom:604.804966px;}
.y3a{bottom:610.206198px;}
.y36{bottom:620.643033px;}
.y28{bottom:622.445949px;}
.y61{bottom:631.076074px;}
.y55{bottom:631.255363px;}
.y39{bottom:631.801674px;}
.y77{bottom:634.506602px;}
.y12{bottom:635.044505px;}
.y8a{bottom:641.157673px;}
.y35{bottom:642.238509px;}
.y1c{bottom:642.240246px;}
.y33{bottom:671.226062px;}
.y89{bottom:689.036343px;}
.y97{bottom:705.057596px;}
.y6c{bottom:714.600418px;}
.y27{bottom:717.839631px;}
.y32{bottom:724.677982px;}
.y76{bottom:725.037893px;}
.yb{bottom:727.745797px;}
.y5f{bottom:728.996928px;}
.y11{bottom:730.265189px;}
.y60{bottom:732.424668px;}
.y88{bottom:739.434404px;}
.h4{height:42.586241px;}
.he{height:42.942726px;}
.h8{height:48.448406px;}
.ha{height:49.479609px;}
.hb{height:49.678722px;}
.h3{height:64.002760px;}
.h9{height:64.414089px;}
.h7{height:74.874092px;}
.h6{height:85.885452px;}
.h5{height:91.089354px;}
.hd{height:91.451077px;}
.hc{height:94.313287px;}
.h10{height:96.345454px;}
.h2{height:107.356815px;}
.hf{height:170.674026px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:21.954675px;}
.x8{left:27.901804px;}
.xf{left:35.277487px;}
.x2f{left:37.078455px;}
.xd{left:38.154231px;}
.xa{left:40.138836px;}
.x32{left:41.214219px;}
.x4{left:51.844568px;}
.x9{left:67.492202px;}
.x2{left:81.186020px;}
.x1d{left:84.959529px;}
.x19{left:86.220035px;}
.x34{left:87.304535px;}
.x3{left:90.355229px;}
.x27{left:91.436194px;}
.x28{left:93.418168px;}
.x1a{left:95.939174px;}
.x1e{left:97.921148px;}
.x30{left:100.262432px;}
.xe{left:101.338211px;}
.xb{left:103.315513px;}
.x33{left:104.398196px;}
.x29{left:116.994542px;}
.x38{left:127.080035px;}
.x1f{left:128.695655px;}
.x2a{left:130.677629px;}
.x31{left:140.221989px;}
.xc{left:142.741374px;}
.x1b{left:146.334401px;}
.x2b{left:155.514502px;}
.x5{left:180.717314px;}
.x6{left:187.020917px;}
.x36{left:285.483401px;}
.x1c{left:330.475584px;}
.x3b{left:427.325301px;}
.x35{left:430.743524px;}
.x21{left:480.773921px;}
.x10{left:491.936021px;}
.x39{left:504.895809px;}
.x11{left:510.835248px;}
.x37{left:538.744741px;}
.x12{left:565.013006px;}
.x20{left:567.713373px;}
.x22{left:574.912512px;}
.x13{left:591.829804px;}
.x2c{left:866.149793px;}
.x14{left:875.328844px;}
.x2d{left:892.966591px;}
.x23{left:894.225996px;}
.x15{left:897.470526px;}
.x17{left:907.909083px;}
.x3a{left:912.777182px;}
.x16{left:917.088134px;}
.x24{left:923.566868px;}
.x2e{left:1104.650126px;}
.x26{left:1109.864191px;}
.x18{left:1114.368227px;}
.x25{left:1120.302748px;}
.x7{left:1206.003204px;}
@media print{
.v4{vertical-align:-5.758648pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.073566pt;}
.v3{vertical-align:37.130982pt;}
.v2{vertical-align:39.675169pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.249600pt;}
.ls4{letter-spacing:80.689483pt;}
.ls2{letter-spacing:80.726025pt;}
.ls8{letter-spacing:80.726053pt;}
.ls9{letter-spacing:137.571994pt;}
.ls6{letter-spacing:137.614470pt;}
.ls3{letter-spacing:137.614478pt;}
.ls1{letter-spacing:137.614486pt;}
.ls7{letter-spacing:137.614494pt;}
.ls5{letter-spacing:173.222871pt;}
.lsa{letter-spacing:174.720278pt;}
.lsc{letter-spacing:192.635948pt;}
.ws0{word-spacing:-49.920081pt;}
.ws7{word-spacing:-43.804871pt;}
.ws40{word-spacing:-39.311899pt;}
.ws18{word-spacing:-30.550924pt;}
.wse{word-spacing:-29.680528pt;}
.ws34{word-spacing:-26.282923pt;}
.ws39{word-spacing:-19.768435pt;}
.ws3c{word-spacing:-17.771549pt;}
.ws3a{word-spacing:-17.521948pt;}
.ws1f{word-spacing:-16.734233pt;}
.ws36{word-spacing:-2.321284pt;}
.ws33{word-spacing:-1.123202pt;}
.ws11{word-spacing:-1.048322pt;}
.ws23{word-spacing:-0.957436pt;}
.ws1d{word-spacing:-0.609278pt;}
.wsb{word-spacing:-0.522238pt;}
.ws2b{word-spacing:-0.449281pt;}
.ws14{word-spacing:-0.435198pt;}
.ws28{word-spacing:-0.374401pt;}
.ws16{word-spacing:-0.348159pt;}
.ws1c{word-spacing:-0.299520pt;}
.ws25{word-spacing:-0.261119pt;}
.ws29{word-spacing:-0.174079pt;}
.ws27{word-spacing:-0.087040pt;}
.ws6{word-spacing:0.000000pt;}
.wsd{word-spacing:0.235322pt;}
.ws21{word-spacing:0.261119pt;}
.ws24{word-spacing:0.348159pt;}
.ws8{word-spacing:0.435198pt;}
.wsf{word-spacing:0.449281pt;}
.ws4{word-spacing:0.499201pt;}
.ws2e{word-spacing:0.522238pt;}
.ws12{word-spacing:0.548000pt;}
.ws5{word-spacing:0.599041pt;}
.wsa{word-spacing:0.609278pt;}
.ws2f{word-spacing:0.696317pt;}
.ws1b{word-spacing:1.198082pt;}
.ws26{word-spacing:1.218555pt;}
.wsc{word-spacing:1.305595pt;}
.ws9{word-spacing:1.392635pt;}
.ws32{word-spacing:1.479674pt;}
.ws3d{word-spacing:1.547523pt;}
.ws3b{word-spacing:1.780160pt;}
.ws31{word-spacing:1.827833pt;}
.ws10{word-spacing:2.175992pt;}
.ws30{word-spacing:2.524150pt;}
.ws1a{word-spacing:3.220468pt;}
.ws37{word-spacing:4.090865pt;}
.ws19{word-spacing:5.541129pt;}
.ws2c{word-spacing:6.439690pt;}
.ws35{word-spacing:7.188492pt;}
.ws15{word-spacing:11.837395pt;}
.ws22{word-spacing:12.707792pt;}
.ws2d{word-spacing:15.318982pt;}
.ws3e{word-spacing:15.874586pt;}
.ws17{word-spacing:21.672878pt;}
.ws38{word-spacing:26.634139pt;}
.ws13{word-spacing:27.406124pt;}
.ws2a{word-spacing:28.080045pt;}
.ws3f{word-spacing:75.778683pt;}
.ws3{word-spacing:99.340961pt;}
.ws1{word-spacing:99.740322pt;}
.ws2{word-spacing:111.987290pt;}
.ws20{word-spacing:314.613164pt;}
.ws1e{word-spacing:347.376975pt;}
.ws41{word-spacing:880.318475pt;}
._3{margin-left:-17.596829pt;}
._6{margin-left:-11.681299pt;}
._17{margin-left:-8.768006pt;}
._23{margin-left:-6.163775pt;}
._5{margin-left:-5.226864pt;}
._a{margin-left:-4.122936pt;}
._0{margin-left:-3.120005pt;}
._2{margin-left:-1.872003pt;}
._4{margin-left:-0.898561pt;}
._1{width:0.998402pt;}
._10{width:1.971843pt;}
._19{width:3.261488pt;}
._15{width:10.449870pt;}
._14{width:11.402197pt;}
._16{width:20.106164pt;}
._2d{width:21.073819pt;}
._26{width:24.311079pt;}
._c{width:25.708842pt;}
._e{width:26.707243pt;}
._d{width:28.109534pt;}
._9{width:30.176542pt;}
._b{width:31.826908pt;}
._8{width:32.730121pt;}
._7{width:34.544696pt;}
._28{width:35.658723pt;}
._12{width:41.430883pt;}
._25{width:42.352463pt;}
._11{width:43.307995pt;}
._22{width:44.226371pt;}
._29{width:46.827965pt;}
._2c{width:51.267062pt;}
._2b{width:52.262185pt;}
._13{width:53.355318pt;}
._f{width:54.637528pt;}
._24{width:55.760730pt;}
._2a{width:58.597510pt;}
._27{width:65.395306pt;}
._2e{width:94.199193pt;}
._2f{width:95.152016pt;}
._1e{width:226.118054pt;}
._1d{width:287.200522pt;}
._30{width:386.855667pt;}
._21{width:449.104958pt;}
._18{width:456.877935pt;}
._1c{width:603.190344pt;}
._1f{width:669.376498pt;}
._1a{width:745.619317pt;}
._20{width:872.496001pt;}
._1b{width:979.994739pt;}
.fs2{font-size:49.920081pt;}
.fs6{font-size:56.320326pt;}
.fs7{font-size:60.412394pt;}
.fs4{font-size:66.559671pt;}
.fs1{font-size:74.880121pt;}
.fs5{font-size:87.039670pt;}
.fs3{font-size:99.840162pt;}
.fs9{font-size:111.999711pt;}
.fs0{font-size:124.800202pt;}
.fs8{font-size:199.680323pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:86.236387pt;}
.y10{bottom:108.791180pt;}
.y96{bottom:110.718098pt;}
.y26{bottom:131.527471pt;}
.y31{bottom:134.399965pt;}
.y80{bottom:137.126846pt;}
.y6b{bottom:137.753393pt;}
.y95{bottom:140.638445pt;}
.ya{bottom:141.593644pt;}
.y5e{bottom:144.798101pt;}
.y1b{bottom:152.001790pt;}
.y75{bottom:163.358622pt;}
.y53{bottom:168.323594pt;}
.y30{bottom:174.236006pt;}
.y7f{bottom:176.481739pt;}
.y51{bottom:178.242341pt;}
.y6a{bottom:179.042326pt;}
.y9{bottom:180.959319pt;}
.y9c{bottom:181.120050pt;}
.y94{bottom:183.035750pt;}
.y9a{bottom:183.039562pt;}
.y25{bottom:183.366693pt;}
.y5d{bottom:184.163565pt;}
.y50{bottom:187.525086pt;}
.y54{bottom:197.443879pt;}
.y1a{bottom:202.394856pt;}
.y74{bottom:203.200409pt;}
.y52{bottom:206.721988pt;}
.y8{bottom:208.003429pt;}
.y93{bottom:213.116103pt;}
.y87{bottom:213.445952pt;}
.y2f{bottom:215.677168pt;}
.y69{bottom:218.397155pt;}
.y4d{bottom:225.928117pt;}
.y7e{bottom:228.320896pt;}
.y24{bottom:233.758677pt;}
.y19{bottom:235.998145pt;}
.y5c{bottom:236.002721pt;}
.y73{bottom:244.640819pt;}
.y4c{bottom:244.968291pt;}
.y4f{bottom:254.887083pt;}
.y92{bottom:255.517239pt;}
.y4b{bottom:264.165192pt;}
.y86{bottom:265.285108pt;}
.y2e{bottom:267.526992pt;}
.y68{bottom:268.794766pt;}
.y9b{bottom:272.003140pt;}
.y23{bottom:273.602752pt;}
.y47{bottom:274.083984pt;}
.y5b{bottom:275.357582pt;}
.y18{bottom:277.440065pt;}
.y4a{bottom:283.366730pt;}
.y4e{bottom:293.285477pt;}
.y72{bottom:295.037564pt;}
.y91{bottom:297.918375pt;}
.y67{bottom:302.395768pt;}
.y49{bottom:302.563631pt;}
.y85{bottom:304.480601pt;}
.y6{bottom:313.117721pt;}
.y22{bottom:315.041814pt;}
.y2d{bottom:319.206780pt;}
.y7d{bottom:319.366181pt;}
.y48{bottom:321.765124pt;}
.yf{bottom:322.404904pt;}
.y5a{bottom:327.037403pt;}
.y17{bottom:327.843306pt;}
.y71{bottom:336.323608pt;}
.y5{bottom:340.155749pt;}
.y90{bottom:340.315718pt;}
.y66{bottom:343.846065pt;}
.y44{bottom:350.725936pt;}
.y7c{bottom:358.721009pt;}
.y46{bottom:360.003145pt;}
.y21{bottom:365.438763pt;}
.y16{bottom:369.122854pt;}
.y43{bottom:369.921937pt;}
.y8f{bottom:370.236065pt;}
.y2c{bottom:371.045969pt;}
.y70{bottom:375.678469pt;}
.y59{bottom:378.876560pt;}
.y40{bottom:379.206483pt;}
.y99{bottom:381.444023pt;}
.ye{bottom:387.365925pt;}
.y42{bottom:389.125275pt;}
.y65{bottom:394.076376pt;}
.y84{bottom:395.685254pt;}
.y45{bottom:398.402484pt;}
.y20{bottom:399.039764pt;}
.y8e{bottom:400.316380pt;}
.y41{bottom:408.321276pt;}
.y9d{bottom:408.487575pt;}
.y7b{bottom:409.121889pt;}
.y4{bottom:413.113290pt;}
.y58{bottom:418.242056pt;}
.y15{bottom:419.523914pt;}
.y2b{bottom:422.885158pt;}
.y6f{bottom:427.358257pt;}
.y64{bottom:427.841902pt;}
.y83{bottom:434.880747pt;}
.y3f{bottom:436.646941pt;}
.y1f{bottom:440.480089pt;}
.y8d{bottom:442.716773pt;}
.y3{bottom:446.872726pt;}
.y7a{bottom:448.956786pt;}
.yd{bottom:452.316310pt;}
.y3d{bottom:455.842920pt;}
.y14{bottom:460.805643pt;}
.y2a{bottom:462.080619pt;}
.y63{bottom:469.124972pt;}
.y57{bottom:469.921844pt;}
.y3e{bottom:475.046281pt;}
.y6e{bottom:479.197446pt;}
.y1e{bottom:479.686185pt;}
.y2{bottom:480.479809pt;}
.y8c{bottom:485.117165pt;}
.y82{bottom:486.719904pt;}
.y79{bottom:488.956236pt;}
.y38{bottom:494.242259pt;}
.y3c{bottom:504.161029pt;}
.y56{bottom:509.276705pt;}
.y13{bottom:512.644832pt;}
.y37{bottom:513.445620pt;}
.y29{bottom:513.919808pt;}
.y1{bottom:514.239245pt;}
.yc{bottom:517.117931pt;}
.y6d{bottom:518.562910pt;}
.y62{bottom:519.522538pt;}
.y78{bottom:522.557209pt;}
.y3b{bottom:523.202148pt;}
.y81{bottom:526.085400pt;}
.y8b{bottom:527.517539pt;}
.y1d{bottom:531.525374pt;}
.y34{bottom:532.641599pt;}
.y98{bottom:537.604414pt;}
.y3a{bottom:542.405509pt;}
.y36{bottom:551.682696pt;}
.y28{bottom:553.285288pt;}
.y61{bottom:560.956510pt;}
.y55{bottom:561.115878pt;}
.y39{bottom:561.601488pt;}
.y77{bottom:564.005868pt;}
.y12{bottom:564.484005pt;}
.y8a{bottom:569.917931pt;}
.y35{bottom:570.878674pt;}
.y1c{bottom:570.880219pt;}
.y33{bottom:596.645389pt;}
.y89{bottom:612.476749pt;}
.y97{bottom:626.717863pt;}
.y6c{bottom:635.200371pt;}
.y27{bottom:638.079672pt;}
.y32{bottom:644.158206pt;}
.y76{bottom:644.478127pt;}
.yb{bottom:646.885153pt;}
.y5f{bottom:647.997270pt;}
.y11{bottom:649.124612pt;}
.y60{bottom:651.044150pt;}
.y88{bottom:657.275025pt;}
.h4{height:37.854436pt;}
.he{height:38.171312pt;}
.h8{height:43.065250pt;}
.ha{height:43.981875pt;}
.hb{height:44.158864pt;}
.h3{height:56.891342pt;}
.h9{height:57.256968pt;}
.h7{height:66.554748pt;}
.h6{height:76.342624pt;}
.h5{height:80.968315pt;}
.hd{height:81.289846pt;}
.hc{height:83.834033pt;}
.h10{height:85.640404pt;}
.h2{height:95.428280pt;}
.hf{height:151.710246pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:19.515267pt;}
.x8{left:24.801604pt;}
.xf{left:31.357766pt;}
.x2f{left:32.958626pt;}
.xd{left:33.914872pt;}
.xa{left:35.678965pt;}
.x32{left:36.634862pt;}
.x4{left:46.084060pt;}
.x9{left:59.993069pt;}
.x2{left:72.165351pt;}
.x1d{left:75.519581pt;}
.x19{left:76.640031pt;}
.x34{left:77.604032pt;}
.x3{left:80.315759pt;}
.x27{left:81.276617pt;}
.x28{left:83.038372pt;}
.x1a{left:85.279266pt;}
.x1e{left:87.041020pt;}
.x30{left:89.122162pt;}
.xe{left:90.078410pt;}
.xb{left:91.836011pt;}
.x33{left:92.798397pt;}
.x29{left:103.995148pt;}
.x38{left:112.960031pt;}
.x1f{left:114.396138pt;}
.x2a{left:116.157892pt;}
.x31{left:124.641768pt;}
.xc{left:126.881222pt;}
.x1b{left:130.075023pt;}
.x2b{left:138.235113pt;}
.x5{left:160.637612pt;}
.x6{left:166.240815pt;}
.x36{left:253.763023pt;}
.x1c{left:293.756075pt;}
.x3b{left:379.844712pt;}
.x35{left:382.883133pt;}
.x21{left:427.354596pt;}
.x10{left:437.276463pt;}
.x39{left:448.796274pt;}
.x11{left:454.075776pt;}
.x37{left:478.884214pt;}
.x12{left:502.233783pt;}
.x20{left:504.634109pt;}
.x22{left:511.033344pt;}
.x13{left:526.070937pt;}
.x2c{left:769.910927pt;}
.x14{left:778.070084pt;}
.x2d{left:793.748081pt;}
.x23{left:794.867552pt;}
.x15{left:797.751579pt;}
.x17{left:807.030296pt;}
.x3a{left:811.357495pt;}
.x16{left:815.189452pt;}
.x24{left:820.948327pt;}
.x2e{left:981.911223pt;}
.x26{left:986.545948pt;}
.x18{left:990.549536pt;}
.x25{left:995.824665pt;}
.x7{left:1072.002848pt;}
}




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