
    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_aab4d1afe4f63f2f45125915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_e6db7a130249d7e855a0936f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_8279b6409ca6259ad196b090.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_4abfa589ab68938a853ff95b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_ddef5c0546ac4ed36bd42a2d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.824707;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_b3a26b9fec43b1ff9f4de93d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.866699;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_60c7573675e89835dd2f82f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.858398;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_78457e7422a928cc3bc8eb12.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_98b538f9623ab844c2db1bfa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a5b3d350ceabe57879d18276.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-11.251665px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:106.930515px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.026880px;}
.ls3{letter-spacing:0.056851px;}
.ls2{letter-spacing:108.010533px;}
.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;}
}
.ws5{word-spacing:-86.075995px;}
.ws2{word-spacing:-46.536000px;}
.wsc{word-spacing:-45.312003px;}
.ws8{word-spacing:-39.888001px;}
.wsb{word-spacing:-33.984001px;}
.ws3{word-spacing:-26.592002px;}
.ws9{word-spacing:-24.732001px;}
.wsd{word-spacing:-24.539281px;}
.wsa{word-spacing:-23.268000px;}
.ws7{word-spacing:-18.282001px;}
.ws4{word-spacing:-16.354081px;}
.ws6{word-spacing:-14.958000px;}
.ws1{word-spacing:-13.296001px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-3678.720511px;}
._18{margin-left:-1087.493468px;}
._17{margin-left:-28.080001px;}
._f{margin-left:-20.615796px;}
._6{margin-left:-13.440000px;}
._9{margin-left:-9.600001px;}
._8{margin-left:-8.544001px;}
._0{margin-left:-6.600000px;}
._4{margin-left:-4.620000px;}
._1{margin-left:-3.300000px;}
._5{margin-left:-1.512000px;}
._12{width:1.284615px;}
._14{width:2.369700px;}
._7{width:4.032000px;}
._16{width:36.014064px;}
._3{width:80.991794px;}
._11{width:90.014065px;}
._2{width:108.012306px;}
._c{width:302.400053px;}
._15{width:329.197726px;}
._b{width:352.800053px;}
._a{width:403.200053px;}
._e{width:453.600052px;}
._d{width:504.000052px;}
._13{width:514.460716px;}
.fca{color:rgb(14,40,65);}
.fc9{color:rgb(70,120,134);}
.fc8{color:rgb(192,0,0);}
.fc7{color:rgb(3,47,93);}
.fc6{color:transparent;}
.fcc{color:rgb(38,38,38);}
.fcb{color:rgb(50,156,188);}
.fc5{color:rgb(12,12,12);}
.fc4{color:rgb(102,102,102);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:39.360003px;}
.fs7{font-size:48.000003px;}
.fsf{font-size:54.000002px;}
.fsb{font-size:59.040002px;}
.fs2{font-size:60.000000px;}
.fs10{font-size:66.000004px;}
.fs12{font-size:72.000002px;}
.fs6{font-size:84.000000px;}
.fsa{font-size:96.000006px;}
.fs16{font-size:103.980005px;}
.fs8{font-size:108.000003px;}
.fs1{font-size:120.000001px;}
.fs5{font-size:126.000004px;}
.fsd{font-size:143.459991px;}
.fse{font-size:144.000005px;}
.fs4{font-size:167.999999px;}
.fs14{font-size:192.000012px;}
.fs0{font-size:222.000001px;}
.fs11{font-size:237.600008px;}
.fs13{font-size:240.000002px;}
.fs3{font-size:264.000014px;}
.fs9{font-size:282.000015px;}
.fs15{font-size:391.980028px;}
.y0{bottom:0.000000px;}
.y21{bottom:12.107337px;}
.y80{bottom:17.154886px;}
.y54{bottom:20.785711px;}
.y4d{bottom:21.931625px;}
.y63{bottom:27.764266px;}
.y56{bottom:28.560431px;}
.y85{bottom:31.208832px;}
.y47{bottom:31.749726px;}
.y6f{bottom:33.465800px;}
.y53{bottom:36.985712px;}
.y7f{bottom:42.354880px;}
.y55{bottom:44.760430px;}
.y7e{bottom:67.554878px;}
.y52{bottom:71.185706px;}
.y42{bottom:85.481373px;}
.y7a{bottom:91.082625px;}
.y51{bottom:96.385704px;}
.y5f{bottom:111.267686px;}
.y79{bottom:116.282624px;}
.y7c{bottom:125.008292px;}
.y20{bottom:128.567138px;}
.y11{bottom:136.036778px;}
.y88{bottom:142.371637px;}
.y4a{bottom:151.300108px;}
.y1f{bottom:153.767173px;}
.y8e{bottom:156.627047px;}
.y10{bottom:166.276779px;}
.y5e{bottom:166.587696px;}
.y49{bottom:167.500107px;}
.y8f{bottom:170.172542px;}
.y66{bottom:177.638009px;}
.y48{bottom:183.700106px;}
.y8d{bottom:187.821048px;}
.y7d{bottom:193.416619px;}
.yf{bottom:196.516780px;}
.y65{bottom:202.837998px;}
.y1e{bottom:204.167219px;}
.y5d{bottom:206.907697px;}
.y7{bottom:209.557896px;}
.ye{bottom:226.756781px;}
.y3d{bottom:227.022304px;}
.y64{bottom:230.197999px;}
.y7b{bottom:232.605208px;}
.y2e{bottom:235.386387px;}
.y3c{bottom:252.222338px;}
.y1d{bottom:254.567277px;}
.y5c{bottom:262.227695px;}
.y41{bottom:262.682727px;}
.y2d{bottom:268.506388px;}
.y3b{bottom:277.422362px;}
.y1c{bottom:279.767278px;}
.y40{bottom:285.929724px;}
.y5b{bottom:302.547685px;}
.y3a{bottom:302.622385px;}
.y6{bottom:315.484398px;}
.y2c{bottom:318.906378px;}
.y39{bottom:327.822420px;}
.y3e{bottom:329.429718px;}
.y1b{bottom:330.167268px;}
.y6c{bottom:342.147011px;}
.y87{bottom:348.821091px;}
.y38{bottom:353.022443px;}
.y1a{bottom:355.367258px;}
.y5a{bottom:357.867672px;}
.y91{bottom:358.342579px;}
.y8a{bottom:360.964279px;}
.y3f{bottom:368.429723px;}
.y24{bottom:369.075676px;}
.y2b{bottom:369.306368px;}
.y5{bottom:375.424400px;}
.y37{bottom:378.222444px;}
.y19{bottom:380.567248px;}
.y90{bottom:386.417180px;}
.y6b{bottom:387.507013px;}
.y89{bottom:392.158280px;}
.y59{bottom:398.187673px;}
.y36{bottom:403.422433px;}
.y18{bottom:405.767248px;}
.y23{bottom:414.435672px;}
.y2a{bottom:419.706370px;}
.y35{bottom:428.622434px;}
.y6a{bottom:432.867003px;}
.y4{bottom:435.364391px;}
.y58{bottom:438.507674px;}
.y4e{bottom:438.608758px;}
.y70{bottom:440.014601px;}
.y34{bottom:453.822424px;}
.y73{bottom:455.805935px;}
.y17{bottom:456.167233px;}
.y78{bottom:462.544958px;}
.y22{bottom:474.795668px;}
.y28{bottom:476.876701px;}
.y50{bottom:478.033212px;}
.y57{bottom:478.827668px;}
.y33{bottom:479.022413px;}
.y16{bottom:481.367239px;}
.y46{bottom:485.716377px;}
.y71{bottom:493.582670px;}
.y3{bottom:495.304381px;}
.y4f{bottom:497.833213px;}
.y72{bottom:499.122969px;}
.y32{bottom:504.222414px;}
.y15{bottom:506.567234px;}
.y77{bottom:510.064971px;}
.y29{bottom:520.506366px;}
.y27{bottom:527.276702px;}
.y45{bottom:528.916374px;}
.y31{bottom:529.422404px;}
.y14{bottom:531.767232px;}
.y69{bottom:553.586991px;}
.y30{bottom:554.622399px;}
.y2{bottom:555.244383px;}
.y86{bottom:555.270455px;}
.y4c{bottom:563.663152px;}
.y67{bottom:568.380109px;}
.y44{bottom:572.116380px;}
.y76{bottom:572.584958px;}
.y8c{bottom:574.514194px;}
.y26{bottom:577.676697px;}
.y92{bottom:582.297837px;}
.y8b{bottom:605.708195px;}
.y4b{bottom:606.863153px;}
.y2f{bottom:609.342395px;}
.y1{bottom:615.184367px;}
.y43{bottom:615.316381px;}
.y13{bottom:631.561627px;}
.y6e{bottom:631.569716px;}
.y75{bottom:635.104956px;}
.ya{bottom:638.672120px;}
.yd{bottom:639.337627px;}
.y62{bottom:647.769716px;}
.y68{bottom:667.201617px;}
.y9{bottom:674.672121px;}
.y61{bottom:683.928117px;}
.yc{bottom:689.881629px;}
.y84{bottom:690.149047px;}
.y81{bottom:694.594606px;}
.y12{bottom:702.841623px;}
.y6d{bottom:702.849711px;}
.y25{bottom:705.643815px;}
.y83{bottom:706.327920px;}
.y8{bottom:710.672125px;}
.y74{bottom:712.270635px;}
.y82{bottom:714.374641px;}
.y60{bottom:748.080108px;}
.y93{bottom:749.162597px;}
.yb{bottom:769.193503px;}
.hf{height:28.674377px;}
.h8{height:34.968752px;}
.h13{height:39.339845px;}
.he{height:43.011564px;}
.h3{height:43.710938px;}
.h14{height:48.082034px;}
.h1b{height:48.972658px;}
.h1a{height:52.417970px;}
.h19{height:52.453127px;}
.hd{height:56.970703px;}
.h15{height:61.154297px;}
.h7{height:61.195312px;}
.h1e{height:67.388672px;}
.hc{height:69.937504px;}
.hb{height:72.000005px;}
.h1c{height:73.458987px;}
.h12{height:78.679690px;}
.h23{height:81.104404px;}
.h1f{height:86.642581px;}
.h2{height:87.421876px;}
.h6{height:91.792972px;}
.h10{height:101.290599px;}
.h11{height:104.906253px;}
.h20{height:112.320004px;}
.h16{height:122.308593px;}
.h5{height:122.390625px;}
.ha{height:126.000000px;}
.h21{height:149.760009px;}
.h1{height:161.730470px;}
.h17{height:173.095318px;}
.h24{height:174.726564px;}
.h1d{height:174.843751px;}
.h4{height:192.328136px;}
.h9{height:205.441417px;}
.h18{height:229.321140px;}
.h22{height:266.615321px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x18{left:34.071851px;}
.x2{left:39.525001px;}
.x2f{left:59.211615px;}
.x30{left:65.374019px;}
.x1c{left:74.209581px;}
.xb{left:78.088581px;}
.x2c{left:81.405120px;}
.x23{left:96.756975px;}
.x16{left:98.456617px;}
.x17{left:103.853101px;}
.x4{left:109.125003px;}
.x25{left:114.521364px;}
.x26{left:136.124881px;}
.x27{left:142.690231px;}
.x19{left:146.657486px;}
.x13{left:152.426469px;}
.xa{left:180.672373px;}
.x28{left:230.773266px;}
.x21{left:233.179491px;}
.x15{left:251.051464px;}
.x12{left:317.239019px;}
.x1e{left:338.515773px;}
.x3b{left:363.708795px;}
.x14{left:405.739025px;}
.x2a{left:415.392979px;}
.x34{left:447.426460px;}
.x3d{left:470.925015px;}
.x22{left:493.249437px;}
.x1d{left:498.565518px;}
.x9{left:504.226389px;}
.x3a{left:513.524098px;}
.xc{left:519.849242px;}
.x3c{left:523.725043px;}
.x1f{left:531.714572px;}
.x2e{left:550.426439px;}
.xd{left:562.872494px;}
.x35{left:572.289719px;}
.x2d{left:712.568723px;}
.x5{left:739.961153px;}
.x6{left:777.989230px;}
.x11{left:783.595758px;}
.xe{left:793.983592px;}
.x38{left:810.697365px;}
.x39{left:819.521185px;}
.x32{left:822.016214px;}
.x20{left:874.110628px;}
.x37{left:898.330418px;}
.x29{left:900.314118px;}
.x36{left:914.646060px;}
.x1b{left:920.845604px;}
.x1{left:937.125030px;}
.x33{left:946.879440px;}
.x1a{left:970.089556px;}
.x7{left:983.477091px;}
.x24{left:1002.663996px;}
.x8{left:1011.075040px;}
.xf{left:1020.242733px;}
.x2b{left:1040.498246px;}
.x10{left:1056.701464px;}
.x3{left:1237.396652px;}
.x31{left:1382.464031px;}
@media print{
.v2{vertical-align:-10.001480pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:95.049347pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.023893pt;}
.ls3{letter-spacing:0.050534pt;}
.ls2{letter-spacing:96.009363pt;}
.ws5{word-spacing:-76.511995pt;}
.ws2{word-spacing:-41.365333pt;}
.wsc{word-spacing:-40.277336pt;}
.ws8{word-spacing:-35.456001pt;}
.wsb{word-spacing:-30.208001pt;}
.ws3{word-spacing:-23.637335pt;}
.ws9{word-spacing:-21.984001pt;}
.wsd{word-spacing:-21.812694pt;}
.wsa{word-spacing:-20.682667pt;}
.ws7{word-spacing:-16.250668pt;}
.ws4{word-spacing:-14.536960pt;}
.ws6{word-spacing:-13.296000pt;}
.ws1{word-spacing:-11.818667pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-3269.973787pt;}
._18{margin-left:-966.660861pt;}
._17{margin-left:-24.960001pt;}
._f{margin-left:-18.325152pt;}
._6{margin-left:-11.946667pt;}
._9{margin-left:-8.533334pt;}
._8{margin-left:-7.594667pt;}
._0{margin-left:-5.866667pt;}
._4{margin-left:-4.106667pt;}
._1{margin-left:-2.933333pt;}
._5{margin-left:-1.344000pt;}
._12{width:1.141880pt;}
._14{width:2.106400pt;}
._7{width:3.584000pt;}
._16{width:32.012501pt;}
._3{width:71.992706pt;}
._11{width:80.012503pt;}
._2{width:96.010939pt;}
._c{width:268.800047pt;}
._15{width:292.620201pt;}
._b{width:313.600047pt;}
._a{width:358.400047pt;}
._e{width:403.200047pt;}
._d{width:448.000046pt;}
._13{width:457.298415pt;}
.fsc{font-size:34.986670pt;}
.fs7{font-size:42.666669pt;}
.fsf{font-size:48.000002pt;}
.fsb{font-size:52.480002pt;}
.fs2{font-size:53.333334pt;}
.fs10{font-size:58.666670pt;}
.fs12{font-size:64.000002pt;}
.fs6{font-size:74.666666pt;}
.fsa{font-size:85.333339pt;}
.fs16{font-size:92.426671pt;}
.fs8{font-size:96.000003pt;}
.fs1{font-size:106.666667pt;}
.fs5{font-size:112.000004pt;}
.fsd{font-size:127.519992pt;}
.fse{font-size:128.000004pt;}
.fs4{font-size:149.333333pt;}
.fs14{font-size:170.666677pt;}
.fs0{font-size:197.333334pt;}
.fs11{font-size:211.200007pt;}
.fs13{font-size:213.333335pt;}
.fs3{font-size:234.666680pt;}
.fs9{font-size:250.666680pt;}
.fs15{font-size:348.426691pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:10.762077pt;}
.y80{bottom:15.248787pt;}
.y54{bottom:18.476188pt;}
.y4d{bottom:19.494778pt;}
.y63{bottom:24.679348pt;}
.y56{bottom:25.387050pt;}
.y85{bottom:27.741184pt;}
.y47{bottom:28.221979pt;}
.y6f{bottom:29.747378pt;}
.y53{bottom:32.876188pt;}
.y7f{bottom:37.648782pt;}
.y55{bottom:39.787049pt;}
.y7e{bottom:60.048781pt;}
.y52{bottom:63.276183pt;}
.y42{bottom:75.983442pt;}
.y7a{bottom:80.962334pt;}
.y51{bottom:85.676182pt;}
.y5f{bottom:98.904610pt;}
.y79{bottom:103.362332pt;}
.y7c{bottom:111.118482pt;}
.y20{bottom:114.281901pt;}
.y11{bottom:120.921581pt;}
.y88{bottom:126.552566pt;}
.y4a{bottom:134.488985pt;}
.y1f{bottom:136.681931pt;}
.y8e{bottom:139.224041pt;}
.y10{bottom:147.801582pt;}
.y5e{bottom:148.077952pt;}
.y49{bottom:148.888984pt;}
.y8f{bottom:151.264482pt;}
.y66{bottom:157.900452pt;}
.y48{bottom:163.288983pt;}
.y8d{bottom:166.952042pt;}
.y7d{bottom:171.925883pt;}
.yf{bottom:174.681583pt;}
.y65{bottom:180.300443pt;}
.y1e{bottom:181.481973pt;}
.y5d{bottom:183.917953pt;}
.y7{bottom:186.273685pt;}
.ye{bottom:201.561583pt;}
.y3d{bottom:201.797603pt;}
.y64{bottom:204.620444pt;}
.y7b{bottom:206.760185pt;}
.y2e{bottom:209.232344pt;}
.y3c{bottom:224.197634pt;}
.y1d{bottom:226.282024pt;}
.y5c{bottom:233.091284pt;}
.y41{bottom:233.495757pt;}
.y2d{bottom:238.672345pt;}
.y3b{bottom:246.597655pt;}
.y1c{bottom:248.682025pt;}
.y40{bottom:254.159755pt;}
.y5b{bottom:268.931276pt;}
.y3a{bottom:268.997676pt;}
.y6{bottom:280.430576pt;}
.y2c{bottom:283.472336pt;}
.y39{bottom:291.397706pt;}
.y3e{bottom:292.826416pt;}
.y1b{bottom:293.482016pt;}
.y6c{bottom:304.130677pt;}
.y87{bottom:310.063192pt;}
.y38{bottom:313.797727pt;}
.y1a{bottom:315.882007pt;}
.y5a{bottom:318.104597pt;}
.y91{bottom:318.526737pt;}
.y8a{bottom:320.857137pt;}
.y3f{bottom:327.493087pt;}
.y24{bottom:328.067267pt;}
.y2b{bottom:328.272327pt;}
.y5{bottom:333.710578pt;}
.y37{bottom:336.197728pt;}
.y19{bottom:338.281998pt;}
.y90{bottom:343.481938pt;}
.y6b{bottom:344.450678pt;}
.y89{bottom:348.585138pt;}
.y59{bottom:353.944598pt;}
.y36{bottom:358.597718pt;}
.y18{bottom:360.681999pt;}
.y23{bottom:368.387264pt;}
.y2a{bottom:373.072329pt;}
.y35{bottom:380.997719pt;}
.y6a{bottom:384.770669pt;}
.y4{bottom:386.990569pt;}
.y58{bottom:389.784599pt;}
.y4e{bottom:389.874451pt;}
.y70{bottom:391.124089pt;}
.y34{bottom:403.397710pt;}
.y73{bottom:405.160831pt;}
.y17{bottom:405.481985pt;}
.y78{bottom:411.151074pt;}
.y22{bottom:422.040593pt;}
.y28{bottom:423.890401pt;}
.y50{bottom:424.918411pt;}
.y57{bottom:425.624594pt;}
.y33{bottom:425.797701pt;}
.y16{bottom:427.881991pt;}
.y46{bottom:431.747891pt;}
.y71{bottom:438.740151pt;}
.y3{bottom:440.270561pt;}
.y4f{bottom:442.518411pt;}
.y72{bottom:443.664861pt;}
.y32{bottom:448.197701pt;}
.y15{bottom:450.281985pt;}
.y77{bottom:453.391085pt;}
.y29{bottom:462.672326pt;}
.y27{bottom:468.690402pt;}
.y45{bottom:470.147888pt;}
.y31{bottom:470.597692pt;}
.y14{bottom:472.681984pt;}
.y69{bottom:492.077326pt;}
.y30{bottom:492.997688pt;}
.y2{bottom:493.550563pt;}
.y86{bottom:493.573738pt;}
.y4c{bottom:501.033913pt;}
.y67{bottom:505.226763pt;}
.y44{bottom:508.547893pt;}
.y76{bottom:508.964407pt;}
.y8c{bottom:510.679283pt;}
.y26{bottom:513.490397pt;}
.y92{bottom:517.598078pt;}
.y8b{bottom:538.407284pt;}
.y4b{bottom:539.433914pt;}
.y2f{bottom:541.637684pt;}
.y1{bottom:546.830548pt;}
.y43{bottom:546.947894pt;}
.y13{bottom:561.388113pt;}
.y6e{bottom:561.395303pt;}
.y75{bottom:564.537739pt;}
.ya{bottom:567.708551pt;}
.yd{bottom:568.300113pt;}
.y62{bottom:575.795303pt;}
.y68{bottom:593.068104pt;}
.y9{bottom:599.708552pt;}
.y61{bottom:607.936104pt;}
.yc{bottom:613.228115pt;}
.y84{bottom:613.465820pt;}
.y81{bottom:617.417428pt;}
.y12{bottom:624.748109pt;}
.y6d{bottom:624.755299pt;}
.y25{bottom:627.238947pt;}
.y83{bottom:627.847040pt;}
.y8{bottom:631.708555pt;}
.y74{bottom:633.129453pt;}
.y82{bottom:634.999681pt;}
.y60{bottom:664.960096pt;}
.y93{bottom:665.922308pt;}
.yb{bottom:683.727558pt;}
.hf{height:25.488335pt;}
.h8{height:31.083335pt;}
.h13{height:34.968751pt;}
.he{height:38.232501pt;}
.h3{height:38.854167pt;}
.h14{height:42.739586pt;}
.h1b{height:43.531251pt;}
.h1a{height:46.593751pt;}
.h19{height:46.625001pt;}
.hd{height:50.640625pt;}
.h15{height:54.359375pt;}
.h7{height:54.395833pt;}
.h1e{height:59.901041pt;}
.hc{height:62.166671pt;}
.hb{height:64.000004pt;}
.h1c{height:65.296877pt;}
.h12{height:69.937502pt;}
.h23{height:72.092803pt;}
.h1f{height:77.015627pt;}
.h2{height:77.708334pt;}
.h6{height:81.593753pt;}
.h10{height:90.036088pt;}
.h11{height:93.250003pt;}
.h20{height:99.840003pt;}
.h16{height:108.718750pt;}
.h5{height:108.791666pt;}
.ha{height:112.000000pt;}
.h21{height:133.120008pt;}
.h1{height:143.760417pt;}
.h17{height:153.862505pt;}
.h24{height:155.312501pt;}
.h1d{height:155.416668pt;}
.h4{height:170.958343pt;}
.h9{height:182.614593pt;}
.h18{height:203.841013pt;}
.h22{height:236.991397pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x18{left:30.286090pt;}
.x2{left:35.133334pt;}
.x2f{left:52.632547pt;}
.x30{left:58.110239pt;}
.x1c{left:65.964072pt;}
.xb{left:69.412072pt;}
.x2c{left:72.360106pt;}
.x23{left:86.006200pt;}
.x16{left:87.516993pt;}
.x17{left:92.313868pt;}
.x4{left:97.000003pt;}
.x25{left:101.796768pt;}
.x26{left:120.999894pt;}
.x27{left:126.835761pt;}
.x19{left:130.362210pt;}
.x13{left:135.490194pt;}
.xa{left:160.597665pt;}
.x28{left:205.131792pt;}
.x21{left:207.270659pt;}
.x15{left:223.156857pt;}
.x12{left:281.990239pt;}
.x1e{left:300.902910pt;}
.x3b{left:323.296706pt;}
.x14{left:360.656912pt;}
.x2a{left:369.238204pt;}
.x34{left:397.712409pt;}
.x3d{left:418.600013pt;}
.x22{left:438.443944pt;}
.x1d{left:443.169349pt;}
.x9{left:448.201234pt;}
.x3a{left:456.465865pt;}
.xc{left:462.088215pt;}
.x3c{left:465.533372pt;}
.x1f{left:472.635175pt;}
.x2e{left:489.267946pt;}
.xd{left:500.331106pt;}
.x35{left:508.701972pt;}
.x2d{left:633.394420pt;}
.x5{left:657.743247pt;}
.x6{left:691.545982pt;}
.x11{left:696.529562pt;}
.xe{left:705.763193pt;}
.x38{left:720.619880pt;}
.x39{left:728.463275pt;}
.x32{left:730.681079pt;}
.x20{left:776.987225pt;}
.x37{left:798.515927pt;}
.x29{left:800.279216pt;}
.x36{left:813.018720pt;}
.x1b{left:818.529426pt;}
.x1{left:833.000027pt;}
.x33{left:841.670613pt;}
.x1a{left:862.301828pt;}
.x7{left:874.201859pt;}
.x24{left:891.256885pt;}
.x8{left:898.733369pt;}
.xf{left:906.882429pt;}
.x2b{left:924.887330pt;}
.x10{left:939.290190pt;}
.x3{left:1099.908135pt;}
.x31{left:1228.856916pt;}
}




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