
    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_3c036e665e720056b9443788.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_2dc9619180bf7e22c27fa2fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_c7ba2b4f863ab22833987e35.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_0cce197ef2f53ac457c5b1a9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4fd525c6fdc7470410f025d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049100;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_23e24ce8930f37ede325b6e9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.034000;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_700f8113595cd2a31e335976.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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_917f21152a0b72d7a1af0e2a.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.088646px;}
.ls0{letter-spacing:0.187842px;}
.ls2{letter-spacing:0.375684px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-46.433501px;}
.ws4{word-spacing:-42.333667px;}
.ws3{word-spacing:-41.957983px;}
.ws0{word-spacing:-12.059995px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-5.716815px;}
._c{margin-left:-4.694720px;}
._8{margin-left:-3.176734px;}
._0{margin-left:-1.440826px;}
._2{width:1.002396px;}
._5{width:2.152195px;}
._7{width:3.816965px;}
._6{width:5.180827px;}
._b{width:6.244533px;}
._9{width:7.245852px;}
._a{width:8.397721px;}
._10{width:10.378874px;}
._f{width:13.383752px;}
._e{width:80.776048px;}
._1{width:100.137638px;}
._3{width:231.194081px;}
._4{width:1036.867572px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:17.999993px;}
.fs4{font-size:23.759990px;}
.fs7{font-size:30.239988px;}
.fsa{font-size:35.999986px;}
.fs2{font-size:48.239981px;}
.fs0{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs9{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs8{font-size:84.239966px;}
.fs6{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.418927px;}
.y9{bottom:68.880272px;}
.y8{bottom:78.600269px;}
.y7{bottom:96.599961px;}
.y41{bottom:141.599943px;}
.y71{bottom:149.339940px;}
.ya1{bottom:149.879940px;}
.y40{bottom:160.499936px;}
.y70{bottom:168.239933px;}
.ya0{bottom:168.779932px;}
.y3f{bottom:179.399928px;}
.y6f{bottom:187.139925px;}
.y9f{bottom:187.499925px;}
.y3e{bottom:198.299921px;}
.y6e{bottom:206.039918px;}
.y9e{bottom:206.399917px;}
.y3d{bottom:217.199913px;}
.y6d{bottom:229.259908px;}
.y9d{bottom:229.799908px;}
.y3c{bottom:235.919906px;}
.y9c{bottom:248.699901px;}
.y6c{bottom:252.839899px;}
.y3b{bottom:254.819898px;}
.y9b{bottom:267.599893px;}
.y6b{bottom:271.739891px;}
.y3a{bottom:273.719891px;}
.y6a{bottom:290.639884px;}
.y9a{bottom:290.999884px;}
.y39{bottom:292.619883px;}
.y69{bottom:309.359876px;}
.y99{bottom:309.899876px;}
.y38{bottom:311.519875px;}
.y98{bottom:328.799868px;}
.y37{bottom:330.419868px;}
.y68{bottom:332.579867px;}
.y97{bottom:347.699861px;}
.y36{bottom:349.319860px;}
.y67{bottom:356.159858px;}
.y35{bottom:368.219853px;}
.y96{bottom:371.099852px;}
.y66{bottom:375.059850px;}
.y34{bottom:387.119845px;}
.y95{bottom:389.819844px;}
.y65{bottom:393.959842px;}
.y33{bottom:406.019838px;}
.y94{bottom:408.719837px;}
.y64{bottom:412.859835px;}
.yb1{bottom:419.339832px;}
.y32{bottom:424.739830px;}
.y93{bottom:432.119827px;}
.y63{bottom:436.079826px;}
.yb0{bottom:441.659823px;}
.y31{bottom:443.639823px;}
.y92{bottom:451.019820px;}
.y62{bottom:459.659816px;}
.y30{bottom:462.539815px;}
.yaf{bottom:463.619815px;}
.y91{bottom:469.919812px;}
.y61{bottom:478.559809px;}
.y2f{bottom:481.259807px;}
.yae{bottom:482.519807px;}
.y90{bottom:488.819804px;}
.y60{bottom:497.459801px;}
.yad{bottom:501.419799px;}
.y2e{bottom:501.599799px;}
.y8f{bottom:507.719797px;}
.y5f{bottom:516.179794px;}
.yac{bottom:520.319792px;}
.y2d{bottom:524.099790px;}
.y8e{bottom:526.619789px;}
.y5e{bottom:535.079786px;}
.y2c{bottom:537.599785px;}
.yab{bottom:539.219784px;}
.y8d{bottom:545.519782px;}
.y2b{bottom:554.699778px;}
.yaa{bottom:558.119777px;}
.y5d{bottom:558.299777px;}
.y2a{bottom:564.959774px;}
.y8c{bottom:568.919772px;}
.ya9{bottom:577.019769px;}
.y5c{bottom:581.879767px;}
.y29{bottom:583.859766px;}
.y8b{bottom:587.639765px;}
.ya8{bottom:595.919762px;}
.y5b{bottom:600.779760px;}
.y28{bottom:602.759759px;}
.y8a{bottom:606.539757px;}
.ya7{bottom:614.639754px;}
.y5a{bottom:619.679752px;}
.y27{bottom:621.659751px;}
.y89{bottom:625.439750px;}
.ya6{bottom:633.539747px;}
.y59{bottom:638.579745px;}
.y26{bottom:640.559744px;}
.y88{bottom:644.339742px;}
.ya5{bottom:652.259739px;}
.y58{bottom:657.479737px;}
.y25{bottom:659.459736px;}
.y87{bottom:663.239735px;}
.ya4{bottom:671.159732px;}
.y57{bottom:676.379729px;}
.y24{bottom:678.359729px;}
.y86{bottom:686.639725px;}
.ya3{bottom:690.239724px;}
.y23{bottom:697.259721px;}
.y56{bottom:699.599720px;}
.y85{bottom:705.539718px;}
.ya2{bottom:709.139716px;}
.y22{bottom:716.159714px;}
.y84{bottom:724.439710px;}
.y55{bottom:728.039709px;}
.y21{bottom:734.879706px;}
.y83{bottom:743.339703px;}
.y54{bottom:746.939701px;}
.y20{bottom:753.779698px;}
.y53{bottom:765.839694px;}
.y82{bottom:766.739693px;}
.y1f{bottom:772.679691px;}
.y52{bottom:784.739686px;}
.y81{bottom:785.459686px;}
.y1e{bottom:791.579683px;}
.y51{bottom:803.459679px;}
.y80{bottom:804.359678px;}
.y1d{bottom:810.479676px;}
.y50{bottom:822.359671px;}
.y7f{bottom:823.259671px;}
.y1c{bottom:829.379668px;}
.y4f{bottom:841.259663px;}
.y7e{bottom:842.159663px;}
.y1b{bottom:848.279661px;}
.y4e{bottom:860.159656px;}
.y7d{bottom:860.879656px;}
.y1a{bottom:864.119654px;}
.y19{bottom:874.019650px;}
.y4d{bottom:879.059648px;}
.y7c{bottom:879.779648px;}
.y18{bottom:893.999642px;}
.y4c{bottom:897.959641px;}
.y7b{bottom:903.359639px;}
.y4b{bottom:916.859633px;}
.y17{bottom:917.759633px;}
.y7a{bottom:922.259631px;}
.y16{bottom:933.239627px;}
.y4a{bottom:935.759626px;}
.y79{bottom:941.159624px;}
.y15{bottom:952.319619px;}
.y49{bottom:954.659618px;}
.y78{bottom:960.059616px;}
.y14{bottom:971.219612px;}
.y48{bottom:973.559611px;}
.y77{bottom:983.099607px;}
.y13{bottom:987.419605px;}
.y47{bottom:992.279603px;}
.y12{bottom:997.859601px;}
.y76{bottom:1006.679597px;}
.y46{bottom:1011.179596px;}
.y11{bottom:1016.759593px;}
.y75{bottom:1025.579590px;}
.y45{bottom:1030.079588px;}
.y10{bottom:1038.359585px;}
.y74{bottom:1044.479582px;}
.y44{bottom:1048.979580px;}
.y73{bottom:1063.379575px;}
.yf{bottom:1067.339573px;}
.y43{bottom:1067.879573px;}
.y72{bottom:1086.599565px;}
.y42{bottom:1086.779565px;}
.ye{bottom:1088.039565px;}
.y6{bottom:1113.059555px;}
.y5{bottom:1125.479550px;}
.y4{bottom:1133.759546px;}
.y3{bottom:1150.499540px;}
.yd{bottom:1155.359538px;}
.y2{bottom:1163.639535px;}
.yc{bottom:1169.579532px;}
.ya{bottom:1180.200600px;}
.y1{bottom:1196.039522px;}
.h2{height:13.104487px;}
.h7{height:14.040000px;}
.h6{height:15.836126px;}
.h10{height:17.297923px;}
.h11{height:17.321126px;}
.hd{height:24.222230px;}
.h13{height:26.208974px;}
.h14{height:28.835988px;}
.h3{height:35.049361px;}
.h4{height:35.167134px;}
.h16{height:36.492173px;}
.h1{height:39.313461px;}
.h15{height:40.384671px;}
.h8{height:43.253983px;}
.h9{height:43.307983px;}
.hf{height:43.419358px;}
.h5{height:43.506897px;}
.h12{height:48.289199px;}
.ha{height:52.312479px;}
.h17{height:52.417948px;}
.hc{height:57.671977px;}
.he{height:61.328999px;}
.hb{height:96.312201px;}
.h0{height:1263.000000px;}
.w2{width:5.580000px;}
.w1{width:146.160000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x14{left:129.239948px;}
.x12{left:134.999930px;}
.x15{left:150.479940px;}
.x10{left:154.793938px;}
.x4{left:160.019662px;}
.x13{left:161.999935px;}
.xc{left:179.459928px;}
.x11{left:194.741922px;}
.x5{left:206.459917px;}
.xf{left:253.979948px;}
.xb{left:313.559875px;}
.xe{left:340.199864px;}
.x2{left:353.160301px;}
.xd{left:413.459835px;}
.x16{left:423.179193px;}
.x6{left:431.999827px;}
.x3{left:446.400357px;}
.x7{left:633.600000px;}
.x9{left:680.939728px;}
.xa{left:718.919687px;}
.x8{left:779.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.078797pt;}
.ls0{letter-spacing:0.166971pt;}
.ls2{letter-spacing:0.333941pt;}
.ws2{word-spacing:-41.274223pt;}
.ws4{word-spacing:-37.629926pt;}
.ws3{word-spacing:-37.295985pt;}
.ws0{word-spacing:-10.719996pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-5.081613pt;}
._c{margin-left:-4.173085pt;}
._8{margin-left:-2.823764pt;}
._0{margin-left:-1.280735pt;}
._2{width:0.891019pt;}
._5{width:1.913062pt;}
._7{width:3.392858pt;}
._6{width:4.605180pt;}
._b{width:5.550696pt;}
._9{width:6.440757pt;}
._a{width:7.464641pt;}
._10{width:9.225666pt;}
._f{width:11.896669pt;}
._e{width:71.800931pt;}
._1{width:89.011234pt;}
._3{width:205.505850pt;}
._4{width:921.660064pt;}
.fs1{font-size:15.999994pt;}
.fs4{font-size:21.119992pt;}
.fs7{font-size:26.879989pt;}
.fsa{font-size:31.999987pt;}
.fs2{font-size:42.879983pt;}
.fs0{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs9{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs8{font-size:74.879970pt;}
.fs6{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.039046pt;}
.y9{bottom:61.226909pt;}
.y8{bottom:69.866905pt;}
.y7{bottom:85.866632pt;}
.y41{bottom:125.866616pt;}
.y71{bottom:132.746614pt;}
.ya1{bottom:133.226613pt;}
.y40{bottom:142.666610pt;}
.y70{bottom:149.546607pt;}
.ya0{bottom:150.026607pt;}
.y3f{bottom:159.466603pt;}
.y6f{bottom:166.346600pt;}
.y9f{bottom:166.666600pt;}
.y3e{bottom:176.266596pt;}
.y6e{bottom:183.146593pt;}
.y9e{bottom:183.466593pt;}
.y3d{bottom:193.066589pt;}
.y6d{bottom:203.786585pt;}
.y9d{bottom:204.266585pt;}
.y3c{bottom:209.706583pt;}
.y9c{bottom:221.066578pt;}
.y6c{bottom:224.746577pt;}
.y3b{bottom:226.506576pt;}
.y9b{bottom:237.866572pt;}
.y6b{bottom:241.546570pt;}
.y3a{bottom:243.306569pt;}
.y6a{bottom:258.346563pt;}
.y9a{bottom:258.666563pt;}
.y39{bottom:260.106563pt;}
.y69{bottom:274.986557pt;}
.y99{bottom:275.466556pt;}
.y38{bottom:276.906556pt;}
.y98{bottom:292.266550pt;}
.y37{bottom:293.706549pt;}
.y68{bottom:295.626548pt;}
.y97{bottom:309.066543pt;}
.y36{bottom:310.506542pt;}
.y67{bottom:316.586540pt;}
.y35{bottom:327.306536pt;}
.y96{bottom:329.866535pt;}
.y66{bottom:333.386533pt;}
.y34{bottom:344.106529pt;}
.y95{bottom:346.506528pt;}
.y65{bottom:350.186527pt;}
.y33{bottom:360.906522pt;}
.y94{bottom:363.306521pt;}
.y64{bottom:366.986520pt;}
.yb1{bottom:372.746518pt;}
.y32{bottom:377.546516pt;}
.y93{bottom:384.106513pt;}
.y63{bottom:387.626512pt;}
.yb0{bottom:392.586510pt;}
.y31{bottom:394.346509pt;}
.y92{bottom:400.906506pt;}
.y62{bottom:408.586503pt;}
.y30{bottom:411.146502pt;}
.yaf{bottom:412.106502pt;}
.y91{bottom:417.706500pt;}
.y61{bottom:425.386497pt;}
.y2f{bottom:427.786496pt;}
.yae{bottom:428.906495pt;}
.y90{bottom:434.506493pt;}
.y60{bottom:442.186490pt;}
.yad{bottom:445.706488pt;}
.y2e{bottom:445.866488pt;}
.y8f{bottom:451.306486pt;}
.y5f{bottom:458.826483pt;}
.yac{bottom:462.506482pt;}
.y2d{bottom:465.866480pt;}
.y8e{bottom:468.106479pt;}
.y5e{bottom:475.626476pt;}
.y2c{bottom:477.866476pt;}
.yab{bottom:479.306475pt;}
.y8d{bottom:484.906473pt;}
.y2b{bottom:493.066469pt;}
.yaa{bottom:496.106468pt;}
.y5d{bottom:496.266468pt;}
.y2a{bottom:502.186466pt;}
.y8c{bottom:505.706464pt;}
.ya9{bottom:512.906462pt;}
.y5c{bottom:517.226460pt;}
.y29{bottom:518.986459pt;}
.y8b{bottom:522.346458pt;}
.ya8{bottom:529.706455pt;}
.y5b{bottom:534.026453pt;}
.y28{bottom:535.786452pt;}
.y8a{bottom:539.146451pt;}
.ya7{bottom:546.346448pt;}
.y5a{bottom:550.826446pt;}
.y27{bottom:552.586446pt;}
.y89{bottom:555.946444pt;}
.ya6{bottom:563.146441pt;}
.y59{bottom:567.626440pt;}
.y26{bottom:569.386439pt;}
.y88{bottom:572.746438pt;}
.ya5{bottom:579.786435pt;}
.y58{bottom:584.426433pt;}
.y25{bottom:586.186432pt;}
.y87{bottom:589.546431pt;}
.ya4{bottom:596.586428pt;}
.y57{bottom:601.226426pt;}
.y24{bottom:602.986425pt;}
.y86{bottom:610.346423pt;}
.ya3{bottom:613.546421pt;}
.y23{bottom:619.786419pt;}
.y56{bottom:621.866418pt;}
.y85{bottom:627.146416pt;}
.ya2{bottom:630.346415pt;}
.y22{bottom:636.586412pt;}
.y84{bottom:643.946409pt;}
.y55{bottom:647.146408pt;}
.y21{bottom:653.226405pt;}
.y83{bottom:660.746402pt;}
.y54{bottom:663.946401pt;}
.y20{bottom:670.026399pt;}
.y53{bottom:680.746394pt;}
.y82{bottom:681.546394pt;}
.y1f{bottom:686.826392pt;}
.y52{bottom:697.546388pt;}
.y81{bottom:698.186387pt;}
.y1e{bottom:703.626385pt;}
.y51{bottom:714.186381pt;}
.y80{bottom:714.986381pt;}
.y1d{bottom:720.426378pt;}
.y50{bottom:730.986374pt;}
.y7f{bottom:731.786374pt;}
.y1c{bottom:737.226372pt;}
.y4f{bottom:747.786368pt;}
.y7e{bottom:748.586367pt;}
.y1b{bottom:754.026365pt;}
.y4e{bottom:764.586361pt;}
.y7d{bottom:765.226361pt;}
.y1a{bottom:768.106359pt;}
.y19{bottom:776.906356pt;}
.y4d{bottom:781.386354pt;}
.y7c{bottom:782.026354pt;}
.y18{bottom:794.666349pt;}
.y4c{bottom:798.186347pt;}
.y7b{bottom:802.986345pt;}
.y4b{bottom:814.986341pt;}
.y17{bottom:815.786340pt;}
.y7a{bottom:819.786339pt;}
.y16{bottom:829.546335pt;}
.y4a{bottom:831.786334pt;}
.y79{bottom:836.586332pt;}
.y15{bottom:846.506328pt;}
.y49{bottom:848.586327pt;}
.y78{bottom:853.386325pt;}
.y14{bottom:863.306321pt;}
.y48{bottom:865.386321pt;}
.y77{bottom:873.866317pt;}
.y13{bottom:877.706316pt;}
.y47{bottom:882.026314pt;}
.y12{bottom:886.986312pt;}
.y76{bottom:894.826309pt;}
.y46{bottom:898.826307pt;}
.y11{bottom:903.786305pt;}
.y75{bottom:911.626302pt;}
.y45{bottom:915.626300pt;}
.y10{bottom:922.986297pt;}
.y74{bottom:928.426295pt;}
.y44{bottom:932.426294pt;}
.y73{bottom:945.226289pt;}
.yf{bottom:948.746287pt;}
.y43{bottom:949.226287pt;}
.y72{bottom:965.866280pt;}
.y42{bottom:966.026280pt;}
.ye{bottom:967.146280pt;}
.y6{bottom:989.386271pt;}
.y5{bottom:1000.426266pt;}
.y4{bottom:1007.786264pt;}
.y3{bottom:1022.666258pt;}
.yd{bottom:1026.986256pt;}
.y2{bottom:1034.346253pt;}
.yc{bottom:1039.626251pt;}
.ya{bottom:1049.067200pt;}
.y1{bottom:1063.146241pt;}
.h2{height:11.648433pt;}
.h7{height:12.480000pt;}
.h6{height:14.076557pt;}
.h10{height:15.375931pt;}
.h11{height:15.396556pt;}
.hd{height:21.530871pt;}
.h13{height:23.296866pt;}
.h14{height:25.631990pt;}
.h3{height:31.154988pt;}
.h4{height:31.259675pt;}
.h16{height:32.437487pt;}
.h1{height:34.945299pt;}
.h15{height:35.897486pt;}
.h8{height:38.447985pt;}
.h9{height:38.495985pt;}
.hf{height:38.594985pt;}
.h5{height:38.672797pt;}
.h12{height:42.923733pt;}
.ha{height:46.499981pt;}
.h17{height:46.593731pt;}
.hc{height:51.263979pt;}
.he{height:54.514666pt;}
.hb{height:85.610846pt;}
.h0{height:1122.666667pt;}
.w2{width:4.960000pt;}
.w1{width:129.920000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x14{left:114.879954pt;}
.x12{left:119.999938pt;}
.x15{left:133.759946pt;}
.x10{left:137.594612pt;}
.x4{left:142.239699pt;}
.x13{left:143.999942pt;}
.xc{left:159.519936pt;}
.x11{left:173.103931pt;}
.x5{left:183.519927pt;}
.xf{left:225.759954pt;}
.xb{left:278.719889pt;}
.xe{left:302.399879pt;}
.x2{left:313.920268pt;}
.xd{left:367.519853pt;}
.x16{left:376.159283pt;}
.x6{left:383.999846pt;}
.x3{left:396.800317pt;}
.x7{left:563.200000pt;}
.x9{left:605.279758pt;}
.xa{left:639.039722pt;}
.x8{left:693.120000pt;}
}




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