
    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_205276ab8ada4866755f62e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_b819f32d74db7b54a8cbf79b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_0c25885a0af3393cddfe1bea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_0afdf6885f13de1fd25494a9.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_cca38658762a852f8aab5359.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0cbdec481a463181d3af0645.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.363000;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_7e50f5f202c228987c0843a1.woff2')format("woff");}.ff7{font-family:ff7;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.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.043674px;}
.ls3{letter-spacing:0.126722px;}
.ls5{letter-spacing:0.973516px;}
.ls6{letter-spacing:1.694896px;}
.ls1{letter-spacing:15.870703px;}
.ls2{letter-spacing:37.510774px;}
.ls4{letter-spacing:60.122692px;}
.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:-15.567144px;}
.ws3{word-spacing:-14.087809px;}
.ws0{word-spacing:-14.044134px;}
.ws4{word-spacing:-12.690715px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-2.613365px;}
._2{margin-left:-1.007996px;}
._1{width:1.048404px;}
._12{width:2.555361px;}
._8{width:3.946450px;}
._9{width:5.006101px;}
._b{width:6.740360px;}
._c{width:8.183323px;}
._d{width:9.267401px;}
._17{width:10.290572px;}
._e{width:11.898247px;}
._f{width:12.940973px;}
._1d{width:14.042289px;}
._13{width:15.073704px;}
._5{width:16.327291px;}
._a{width:17.436729px;}
._15{width:19.076852px;}
._14{width:21.074690px;}
._6{width:22.149237px;}
._7{width:23.482424px;}
._16{width:24.623466px;}
._18{width:25.881401px;}
._1c{width:26.884173px;}
._1a{width:27.890974px;}
._19{width:29.456709px;}
._11{width:34.126909px;}
._10{width:35.616266px;}
._3{width:855.342057px;}
._0{width:958.258897px;}
._1b{width:1798.663141px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:33.839986px;}
.fs4{font-size:36.548625px;}
.fs1{font-size:45.348462px;}
.fs0{font-size:50.762860px;}
.fs2{font-size:56.176538px;}
.fs6{font-size:62.268575px;}
.fs3{font-size:73.099171px;}
.ya{bottom:-0.360395px;}
.y0{bottom:0.000000px;}
.y8{bottom:140.399944px;}
.y7{bottom:163.079935px;}
.ybc{bottom:222.299911px;}
.y2f{bottom:227.699909px;}
.yab{bottom:228.779908px;}
.y9c{bottom:230.039908px;}
.y73{bottom:230.579908px;}
.y54{bottom:234.179906px;}
.ycd{bottom:236.879905px;}
.y89{bottom:239.579904px;}
.y2e{bottom:247.139901px;}
.yaa{bottom:248.219901px;}
.y9b{bottom:249.659900px;}
.y72{bottom:250.019900px;}
.ybb{bottom:250.199900px;}
.y53{bottom:253.619899px;}
.ye8{bottom:255.599898px;}
.ycc{bottom:256.319897px;}
.y88{bottom:259.019896px;}
.y2d{bottom:266.579893px;}
.ya9{bottom:267.659893px;}
.y9a{bottom:269.099892px;}
.y71{bottom:269.459892px;}
.yba{bottom:269.639892px;}
.y52{bottom:273.059891px;}
.ye7{bottom:273.239891px;}
.ycb{bottom:275.759890px;}
.y87{bottom:278.459889px;}
.y2c{bottom:286.199886px;}
.ya8{bottom:287.099885px;}
.y99{bottom:288.539885px;}
.y70{bottom:289.079884px;}
.ye6{bottom:290.699884px;}
.y51{bottom:292.499883px;}
.y86{bottom:297.899881px;}
.yca{bottom:303.659879px;}
.y2b{bottom:305.639878px;}
.ya7{bottom:306.539877px;}
.ye5{bottom:308.339877px;}
.y6f{bottom:308.519877px;}
.yb9{bottom:308.699877px;}
.y98{bottom:311.759875px;}
.y85{bottom:317.339873px;}
.y50{bottom:320.399872px;}
.yc9{bottom:323.099871px;}
.y2a{bottom:325.079870px;}
.ye4{bottom:325.799870px;}
.y6e{bottom:327.959869px;}
.yb8{bottom:328.139869px;}
.ya6{bottom:334.619866px;}
.y84{bottom:336.959865px;}
.y4f{bottom:340.019864px;}
.yc8{bottom:342.719863px;}
.y29{bottom:344.699862px;}
.y6d{bottom:347.399861px;}
.yb7{bottom:347.579861px;}
.y97{bottom:348.479861px;}
.ye3{bottom:351.719859px;}
.y83{bottom:356.399857px;}
.y4e{bottom:359.459856px;}
.yc7{bottom:362.159855px;}
.ya5{bottom:364.499854px;}
.yb6{bottom:367.019853px;}
.ye2{bottom:369.179852px;}
.y96{bottom:374.939850px;}
.y6c{bottom:375.479850px;}
.y82{bottom:375.839850px;}
.y28{bottom:376.559849px;}
.y4d{bottom:378.899848px;}
.yb5{bottom:386.459845px;}
.ye1{bottom:386.639845px;}
.yc6{bottom:390.059844px;}
.ya4{bottom:392.399843px;}
.y81{bottom:395.279842px;}
.y95{bottom:396.899841px;}
.y4c{bottom:398.339841px;}
.y27{bottom:404.459838px;}
.y6b{bottom:405.179838px;}
.ya3{bottom:411.839835px;}
.ye0{bottom:412.739835px;}
.yb4{bottom:414.359834px;}
.y80{bottom:414.719834px;}
.y4b{bottom:417.779833px;}
.yc5{bottom:419.759832px;}
.y26{bottom:423.899830px;}
.ydf{bottom:430.199828px;}
.y6a{bottom:433.079827px;}
.yb3{bottom:433.799826px;}
.y7f{bottom:434.159826px;}
.y4a{bottom:437.039825px;}
.ya2{bottom:439.739824px;}
.yc4{bottom:447.659821px;}
.y25{bottom:451.799819px;}
.y69{bottom:452.699819px;}
.yb2{bottom:453.239819px;}
.y7e{bottom:453.599819px;}
.yde{bottom:456.119818px;}
.y49{bottom:456.479817px;}
.ya1{bottom:466.199814px;}
.yc3{bottom:467.099813px;}
.y24{bottom:471.239812px;}
.y68{bottom:472.139811px;}
.yb1{bottom:472.679811px;}
.y7d{bottom:473.039811px;}
.ydd{bottom:473.579811px;}
.y48{bottom:475.919810px;}
.yc2{bottom:486.719805px;}
.ya0{bottom:487.979805px;}
.y23{bottom:490.679804px;}
.y67{bottom:492.479803px;}
.y47{bottom:495.359802px;}
.yb0{bottom:499.139800px;}
.ydc{bottom:499.679800px;}
.y22{bottom:510.119796px;}
.y66{bottom:511.919795px;}
.y7c{bottom:512.099795px;}
.yc1{bottom:514.619794px;}
.yaf{bottom:514.799794px;}
.y46{bottom:514.979794px;}
.ydb{bottom:517.139793px;}
.y21{bottom:529.559788px;}
.y65{bottom:532.259787px;}
.yc0{bottom:534.059786px;}
.y45{bottom:534.419786px;}
.yda{bottom:534.779786px;}
.y7b{bottom:535.139786px;}
.yae{bottom:536.759785px;}
.y20{bottom:548.999780px;}
.y64{bottom:551.699779px;}
.y44{bottom:553.859778px;}
.yd9{bottom:560.519776px;}
.ybf{bottom:561.959775px;}
.y63{bottom:571.319771px;}
.y7a{bottom:572.039771px;}
.y43{bottom:573.299771px;}
.y1f{bottom:577.079769px;}
.yd8{bottom:578.159769px;}
.ybe{bottom:588.419765px;}
.y62{bottom:591.659763px;}
.y42{bottom:592.739763px;}
.y1e{bottom:596.519761px;}
.y79{bottom:599.939760px;}
.yd7{bottom:604.079758px;}
.ybd{bottom:610.379756px;}
.y41{bottom:612.179755px;}
.y1d{bottom:615.959754px;}
.y78{bottom:619.559752px;}
.y61{bottom:620.639752px;}
.yd6{bottom:621.719751px;}
.y1c{bottom:635.399746px;}
.yd5{bottom:639.179744px;}
.y40{bottom:640.259744px;}
.y77{bottom:647.459741px;}
.y60{bottom:648.539741px;}
.y1b{bottom:654.659738px;}
.yd4{bottom:665.099734px;}
.y5f{bottom:667.979733px;}
.y3f{bottom:670.139732px;}
.y76{bottom:673.739731px;}
.y1a{bottom:674.099730px;}
.yd3{bottom:682.559727px;}
.y5e{bottom:687.419725px;}
.y19{bottom:693.539723px;}
.y75{bottom:695.699722px;}
.y3e{bottom:698.039721px;}
.yd2{bottom:700.199720px;}
.y94{bottom:704.699718px;}
.y5d{bottom:707.039717px;}
.y18{bottom:712.979715px;}
.y3d{bottom:717.479713px;}
.y9f{bottom:725.939710px;}
.y5c{bottom:726.479709px;}
.yd1{bottom:727.019709px;}
.y17{bottom:732.419707px;}
.y93{bottom:732.599707px;}
.y3c{bottom:745.379702px;}
.y5b{bottom:745.919702px;}
.y16{bottom:752.039699px;}
.y92{bottom:752.219699px;}
.yd0{bottom:756.899697px;}
.y3b{bottom:764.819694px;}
.y5a{bottom:765.359694px;}
.y15{bottom:771.659691px;}
.y3a{bottom:784.259686px;}
.y59{bottom:784.799686px;}
.y91{bottom:791.099684px;}
.yad{bottom:795.239682px;}
.y39{bottom:803.699679px;}
.y58{bottom:804.239678px;}
.y90{bottom:810.539676px;}
.y14{bottom:811.079676px;}
.y13{bottom:816.659673px;}
.y38{bottom:823.139671px;}
.y57{bottom:823.679671px;}
.y12{bottom:828.539669px;}
.y8f{bottom:829.979668px;}
.y11{bottom:834.119666px;}
.y37{bottom:842.579663px;}
.ycf{bottom:843.119663px;}
.yf{bottom:846.359661px;}
.y8e{bottom:849.419660px;}
.y9e{bottom:851.039660px;}
.y56{bottom:851.759659px;}
.y10{bottom:852.839659px;}
.y36{bottom:862.199655px;}
.yd{bottom:865.799654px;}
.y8d{bottom:868.859652px;}
.y9d{bottom:870.659652px;}
.yce{bottom:871.199652px;}
.ye{bottom:872.279651px;}
.y55{bottom:881.639647px;}
.y8c{bottom:888.299645px;}
.y35{bottom:890.099644px;}
.yc{bottom:895.679642px;}
.yac{bottom:901.079640px;}
.y8b{bottom:907.739637px;}
.y34{bottom:909.539636px;}
.y74{bottom:920.519632px;}
.yb{bottom:920.879632px;}
.y33{bottom:928.979628px;}
.y8a{bottom:930.959628px;}
.y6{bottom:940.859624px;}
.y32{bottom:948.419621px;}
.y5{bottom:953.999618px;}
.y31{bottom:967.859613px;}
.y4{bottom:968.759612px;}
.y3{bottom:983.339607px;}
.y9{bottom:987.660000px;}
.y2{bottom:997.919601px;}
.y1{bottom:1012.319595px;}
.y30{bottom:1013.759594px;}
.h5{height:12.240000px;}
.h8{height:26.059170px;}
.h9{height:30.117588px;}
.he{height:30.972999px;}
.h4{height:34.671033px;}
.hb{height:38.368575px;}
.hc{height:39.267400px;}
.h7{height:40.053871px;}
.h2{height:40.360131px;}
.ha{height:43.525734px;}
.hd{height:44.397494px;}
.h1{height:45.178945px;}
.h3{height:49.997118px;}
.h6{height:52.119709px;}
.h0{height:1188.000000px;}
.w1{width:6.300000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:190.799924px;}
.x3{left:206.820136px;}
.x14{left:213.479915px;}
.x1e{left:230.759908px;}
.x20{left:232.199470px;}
.x2c{left:238.139905px;}
.x17{left:246.779901px;}
.x21{left:257.579891px;}
.x10{left:265.319894px;}
.x11{left:269.459892px;}
.x29{left:284.039886px;}
.x7{left:291.599883px;}
.xb{left:317.699873px;}
.xc{left:322.379871px;}
.xa{left:326.340000px;}
.x8{left:330.299868px;}
.x23{left:335.879866px;}
.x2b{left:341.099864px;}
.x1f{left:349.379860px;}
.x9{left:355.139858px;}
.x26{left:364.319854px;}
.x1{left:368.639853px;}
.x12{left:378.179849px;}
.x13{left:382.319847px;}
.x15{left:436.859825px;}
.x16{left:444.419822px;}
.x24{left:450.719820px;}
.x27{left:466.559813px;}
.x4{left:471.419811px;}
.x5{left:474.299810px;}
.xd{left:478.799808px;}
.x19{left:492.659803px;}
.x1a{left:495.899802px;}
.x1b{left:530.819788px;}
.x2{left:546.839512px;}
.x1d{left:555.119778px;}
.xe{left:608.759756px;}
.xf{left:613.799754px;}
.x28{left:620.819467px;}
.x2a{left:651.599158px;}
.x22{left:668.519731px;}
.x25{left:670.680506px;}
.x1c{left:710.639716px;}
.x6{left:726.480198px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.038822pt;}
.ls3{letter-spacing:0.112642pt;}
.ls5{letter-spacing:0.865347pt;}
.ls6{letter-spacing:1.506574pt;}
.ls1{letter-spacing:14.107291pt;}
.ls2{letter-spacing:33.342910pt;}
.ls4{letter-spacing:53.442393pt;}
.ws2{word-spacing:-13.837461pt;}
.ws3{word-spacing:-12.522497pt;}
.ws0{word-spacing:-12.483675pt;}
.ws4{word-spacing:-11.280635pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-2.322991pt;}
._2{margin-left:-0.895996pt;}
._1{width:0.931915pt;}
._12{width:2.271432pt;}
._8{width:3.507955pt;}
._9{width:4.449867pt;}
._b{width:5.991431pt;}
._c{width:7.274065pt;}
._d{width:8.237690pt;}
._17{width:9.147175pt;}
._e{width:10.576219pt;}
._f{width:11.503087pt;}
._1d{width:12.482034pt;}
._13{width:13.398848pt;}
._5{width:14.513148pt;}
._a{width:15.499314pt;}
._15{width:16.957202pt;}
._14{width:18.733057pt;}
._6{width:19.688211pt;}
._7{width:20.873266pt;}
._16{width:21.887525pt;}
._18{width:23.005690pt;}
._1c{width:23.897043pt;}
._1a{width:24.791976pt;}
._19{width:26.183741pt;}
._11{width:30.335030pt;}
._10{width:31.658903pt;}
._3{width:760.304050pt;}
._0{width:851.785686pt;}
._1b{width:1598.811680pt;}
.fs5{font-size:30.079988pt;}
.fs4{font-size:32.487667pt;}
.fs1{font-size:40.309744pt;}
.fs0{font-size:45.122542pt;}
.fs2{font-size:49.934700pt;}
.fs6{font-size:55.349845pt;}
.fs3{font-size:64.977041pt;}
.ya{bottom:-0.320351pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:124.799950pt;}
.y7{bottom:144.959942pt;}
.ybc{bottom:197.599921pt;}
.y2f{bottom:202.399919pt;}
.yab{bottom:203.359919pt;}
.y9c{bottom:204.479918pt;}
.y73{bottom:204.959918pt;}
.y54{bottom:208.159917pt;}
.ycd{bottom:210.559916pt;}
.y89{bottom:212.959915pt;}
.y2e{bottom:219.679912pt;}
.yaa{bottom:220.639912pt;}
.y9b{bottom:221.919911pt;}
.y72{bottom:222.239911pt;}
.ybb{bottom:222.399911pt;}
.y53{bottom:225.439910pt;}
.ye8{bottom:227.199909pt;}
.ycc{bottom:227.839909pt;}
.y88{bottom:230.239908pt;}
.y2d{bottom:236.959905pt;}
.ya9{bottom:237.919905pt;}
.y9a{bottom:239.199904pt;}
.y71{bottom:239.519904pt;}
.yba{bottom:239.679904pt;}
.y52{bottom:242.719903pt;}
.ye7{bottom:242.879903pt;}
.ycb{bottom:245.119902pt;}
.y87{bottom:247.519901pt;}
.y2c{bottom:254.399898pt;}
.ya8{bottom:255.199898pt;}
.y99{bottom:256.479897pt;}
.y70{bottom:256.959897pt;}
.ye6{bottom:258.399897pt;}
.y51{bottom:259.999896pt;}
.y86{bottom:264.799894pt;}
.yca{bottom:269.919892pt;}
.y2b{bottom:271.679891pt;}
.ya7{bottom:272.479891pt;}
.ye5{bottom:274.079890pt;}
.y6f{bottom:274.239890pt;}
.yb9{bottom:274.399890pt;}
.y98{bottom:277.119889pt;}
.y85{bottom:282.079887pt;}
.y50{bottom:284.799886pt;}
.yc9{bottom:287.199885pt;}
.y2a{bottom:288.959884pt;}
.ye4{bottom:289.599884pt;}
.y6e{bottom:291.519883pt;}
.yb8{bottom:291.679883pt;}
.ya6{bottom:297.439881pt;}
.y84{bottom:299.519880pt;}
.y4f{bottom:302.239879pt;}
.yc8{bottom:304.639878pt;}
.y29{bottom:306.399877pt;}
.y6d{bottom:308.799876pt;}
.yb7{bottom:308.959876pt;}
.y97{bottom:309.759876pt;}
.ye3{bottom:312.639875pt;}
.y83{bottom:316.799873pt;}
.y4e{bottom:319.519872pt;}
.yc7{bottom:321.919871pt;}
.ya5{bottom:323.999870pt;}
.yb6{bottom:326.239870pt;}
.ye2{bottom:328.159869pt;}
.y96{bottom:333.279867pt;}
.y6c{bottom:333.759866pt;}
.y82{bottom:334.079866pt;}
.y28{bottom:334.719866pt;}
.y4d{bottom:336.799865pt;}
.yb5{bottom:343.519863pt;}
.ye1{bottom:343.679863pt;}
.yc6{bottom:346.719861pt;}
.ya4{bottom:348.799860pt;}
.y81{bottom:351.359859pt;}
.y95{bottom:352.799859pt;}
.y4c{bottom:354.079858pt;}
.y27{bottom:359.519856pt;}
.y6b{bottom:360.159856pt;}
.ya3{bottom:366.079854pt;}
.ye0{bottom:366.879853pt;}
.yb4{bottom:368.319853pt;}
.y80{bottom:368.639853pt;}
.y4b{bottom:371.359851pt;}
.yc5{bottom:373.119851pt;}
.y26{bottom:376.799849pt;}
.ydf{bottom:382.399847pt;}
.y6a{bottom:384.959846pt;}
.yb3{bottom:385.599846pt;}
.y7f{bottom:385.919846pt;}
.y4a{bottom:388.479845pt;}
.ya2{bottom:390.879844pt;}
.yc4{bottom:397.919841pt;}
.y25{bottom:401.599839pt;}
.y69{bottom:402.399839pt;}
.yb2{bottom:402.879839pt;}
.y7e{bottom:403.199839pt;}
.yde{bottom:405.439838pt;}
.y49{bottom:405.759838pt;}
.ya1{bottom:414.399834pt;}
.yc3{bottom:415.199834pt;}
.y24{bottom:418.879832pt;}
.y68{bottom:419.679832pt;}
.yb1{bottom:420.159832pt;}
.y7d{bottom:420.479832pt;}
.ydd{bottom:420.959832pt;}
.y48{bottom:423.039831pt;}
.yc2{bottom:432.639827pt;}
.ya0{bottom:433.759826pt;}
.y23{bottom:436.159826pt;}
.y67{bottom:437.759825pt;}
.y47{bottom:440.319824pt;}
.yb0{bottom:443.679823pt;}
.ydc{bottom:444.159822pt;}
.y22{bottom:453.439819pt;}
.y66{bottom:455.039818pt;}
.y7c{bottom:455.199818pt;}
.yc1{bottom:457.439817pt;}
.yaf{bottom:457.599817pt;}
.y46{bottom:457.759817pt;}
.ydb{bottom:459.679816pt;}
.y21{bottom:470.719812pt;}
.y65{bottom:473.119811pt;}
.yc0{bottom:474.719810pt;}
.y45{bottom:475.039810pt;}
.yda{bottom:475.359810pt;}
.y7b{bottom:475.679810pt;}
.yae{bottom:477.119809pt;}
.y20{bottom:487.999805pt;}
.y64{bottom:490.399804pt;}
.y44{bottom:492.319803pt;}
.yd9{bottom:498.239801pt;}
.ybf{bottom:499.519800pt;}
.y63{bottom:507.839797pt;}
.y7a{bottom:508.479797pt;}
.y43{bottom:509.599796pt;}
.y1f{bottom:512.959795pt;}
.yd8{bottom:513.919794pt;}
.ybe{bottom:523.039791pt;}
.y62{bottom:525.919790pt;}
.y42{bottom:526.879789pt;}
.y1e{bottom:530.239788pt;}
.y79{bottom:533.279787pt;}
.yd7{bottom:536.959785pt;}
.ybd{bottom:542.559783pt;}
.y41{bottom:544.159782pt;}
.y1d{bottom:547.519781pt;}
.y78{bottom:550.719780pt;}
.y61{bottom:551.679779pt;}
.yd6{bottom:552.639779pt;}
.y1c{bottom:564.799774pt;}
.yd5{bottom:568.159773pt;}
.y40{bottom:569.119772pt;}
.y77{bottom:575.519770pt;}
.y60{bottom:576.479769pt;}
.y1b{bottom:581.919767pt;}
.yd4{bottom:591.199764pt;}
.y5f{bottom:593.759762pt;}
.y3f{bottom:595.679762pt;}
.y76{bottom:598.879760pt;}
.y1a{bottom:599.199760pt;}
.yd3{bottom:606.719757pt;}
.y5e{bottom:611.039756pt;}
.y19{bottom:616.479753pt;}
.y75{bottom:618.399753pt;}
.y3e{bottom:620.479752pt;}
.yd2{bottom:622.399751pt;}
.y94{bottom:626.399749pt;}
.y5d{bottom:628.479749pt;}
.y18{bottom:633.759746pt;}
.y3d{bottom:637.759745pt;}
.y9f{bottom:645.279742pt;}
.y5c{bottom:645.759742pt;}
.yd1{bottom:646.239742pt;}
.y17{bottom:651.039740pt;}
.y93{bottom:651.199740pt;}
.y3c{bottom:662.559735pt;}
.y5b{bottom:663.039735pt;}
.y16{bottom:668.479733pt;}
.y92{bottom:668.639733pt;}
.yd0{bottom:672.799731pt;}
.y3b{bottom:679.839728pt;}
.y5a{bottom:680.319728pt;}
.y15{bottom:685.919726pt;}
.y3a{bottom:697.119721pt;}
.y59{bottom:697.599721pt;}
.y91{bottom:703.199719pt;}
.yad{bottom:706.879717pt;}
.y39{bottom:714.399714pt;}
.y58{bottom:714.879714pt;}
.y90{bottom:720.479712pt;}
.y14{bottom:720.959712pt;}
.y13{bottom:725.919710pt;}
.y38{bottom:731.679707pt;}
.y57{bottom:732.159707pt;}
.y12{bottom:736.479705pt;}
.y8f{bottom:737.759705pt;}
.y11{bottom:741.439703pt;}
.y37{bottom:748.959700pt;}
.ycf{bottom:749.439700pt;}
.yf{bottom:752.319699pt;}
.y8e{bottom:755.039698pt;}
.y9e{bottom:756.479697pt;}
.y56{bottom:757.119697pt;}
.y10{bottom:758.079697pt;}
.y36{bottom:766.399693pt;}
.yd{bottom:769.599692pt;}
.y8d{bottom:772.319691pt;}
.y9d{bottom:773.919690pt;}
.yce{bottom:774.399690pt;}
.ye{bottom:775.359690pt;}
.y55{bottom:783.679687pt;}
.y8c{bottom:789.599684pt;}
.y35{bottom:791.199684pt;}
.yc{bottom:796.159682pt;}
.yac{bottom:800.959680pt;}
.y8b{bottom:806.879677pt;}
.y34{bottom:808.479677pt;}
.y74{bottom:818.239673pt;}
.yb{bottom:818.559673pt;}
.y33{bottom:825.759670pt;}
.y8a{bottom:827.519669pt;}
.y6{bottom:836.319665pt;}
.y32{bottom:843.039663pt;}
.y5{bottom:847.999661pt;}
.y31{bottom:860.319656pt;}
.y4{bottom:861.119656pt;}
.y3{bottom:874.079650pt;}
.y9{bottom:877.920000pt;}
.y2{bottom:887.039645pt;}
.y1{bottom:899.839640pt;}
.y30{bottom:901.119640pt;}
.h5{height:10.880000pt;}
.h8{height:23.163707pt;}
.h9{height:26.771189pt;}
.he{height:27.531555pt;}
.h4{height:30.818696pt;}
.hb{height:34.105400pt;}
.hc{height:34.904355pt;}
.h7{height:35.603441pt;}
.h2{height:35.875672pt;}
.ha{height:38.689541pt;}
.hd{height:39.464439pt;}
.h1{height:40.159062pt;}
.h3{height:44.441883pt;}
.h6{height:46.328630pt;}
.h0{height:1056.000000pt;}
.w1{width:5.600000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:169.599932pt;}
.x3{left:183.840121pt;}
.x14{left:189.759924pt;}
.x1e{left:205.119918pt;}
.x20{left:206.399529pt;}
.x2c{left:211.679915pt;}
.x17{left:219.359912pt;}
.x21{left:228.959903pt;}
.x10{left:235.839906pt;}
.x11{left:239.519904pt;}
.x29{left:252.479899pt;}
.x7{left:259.199896pt;}
.xb{left:282.399887pt;}
.xc{left:286.559885pt;}
.xa{left:290.080000pt;}
.x8{left:293.599883pt;}
.x23{left:298.559881pt;}
.x2b{left:303.199879pt;}
.x1f{left:310.559876pt;}
.x9{left:315.679874pt;}
.x26{left:323.839870pt;}
.x1{left:327.679869pt;}
.x12{left:336.159866pt;}
.x13{left:339.839864pt;}
.x15{left:388.319845pt;}
.x16{left:395.039842pt;}
.x24{left:400.639840pt;}
.x27{left:414.719834pt;}
.x4{left:419.039832pt;}
.x5{left:421.599831pt;}
.xd{left:425.599830pt;}
.x19{left:437.919825pt;}
.x1a{left:440.799824pt;}
.x1b{left:471.839811pt;}
.x2{left:486.079566pt;}
.x1d{left:493.439803pt;}
.xe{left:541.119784pt;}
.xf{left:545.599782pt;}
.x28{left:551.839526pt;}
.x2a{left:579.199252pt;}
.x22{left:594.239760pt;}
.x25{left:596.160450pt;}
.x1c{left:631.679747pt;}
.x6{left:645.760176pt;}
}




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