
    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_2a8a7772c3ca819583374142.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_bf459781ac26b285d84f895e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_abba8e40fb3c4a4c6638a910.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_08372ce04979a69f7347521a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_d0f6d671b40eb96343b4af85.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896000;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_7992789ee0f394aada1043b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.500000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:24.209118px;}
.ls2{letter-spacing:24.388445px;}
.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;}
}
.ws5c{word-spacing:-16.605662px;}
.ws17{word-spacing:-5.379825px;}
.ws6c{word-spacing:-3.335478px;}
.ws68{word-spacing:-3.275703px;}
.ws6a{word-spacing:-3.036600px;}
.ws34{word-spacing:-2.917049px;}
.ws4f{word-spacing:-2.498620px;}
.ws53{word-spacing:-2.080191px;}
.ws4e{word-spacing:-1.960640px;}
.ws2f{word-spacing:-1.601986px;}
.ws29{word-spacing:-1.362884px;}
.wsd{word-spacing:-1.303108px;}
.ws2b{word-spacing:-1.123781px;}
.ws1c{word-spacing:-0.944454px;}
.ws1f{word-spacing:-0.884679px;}
.ws30{word-spacing:-0.824903px;}
.ws65{word-spacing:-0.585801px;}
.ws14{word-spacing:-0.406474px;}
.ws4a{word-spacing:-0.346698px;}
.ws4b{word-spacing:-0.107596px;}
.ws1b{word-spacing:0.000000px;}
.ws3f{word-spacing:0.071731px;}
.ws2d{word-spacing:0.131506px;}
.ws5{word-spacing:0.191282px;}
.ws46{word-spacing:0.370609px;}
.ws2a{word-spacing:0.430384px;}
.ws66{word-spacing:0.669487px;}
.ws71{word-spacing:0.789038px;}
.ws6b{word-spacing:0.848814px;}
.ws10{word-spacing:1.028140px;}
.ws33{word-spacing:1.147692px;}
.ws3b{word-spacing:1.506345px;}
.ws21{word-spacing:1.625896px;}
.ws63{word-spacing:1.685672px;}
.ws5d{word-spacing:1.924774px;}
.ws3{word-spacing:2.044326px;}
.ws6e{word-spacing:2.223652px;}
.ws12{word-spacing:2.343204px;}
.ws47{word-spacing:2.522530px;}
.ws3e{word-spacing:2.701857px;}
.ws55{word-spacing:2.761633px;}
.ws41{word-spacing:2.821408px;}
.ws62{word-spacing:3.060511px;}
.ws6{word-spacing:3.180062px;}
.ws60{word-spacing:3.239838px;}
.ws9{word-spacing:3.299613px;}
.ws48{word-spacing:3.359389px;}
.ws3c{word-spacing:3.419164px;}
.ws51{word-spacing:3.538716px;}
.ws3d{word-spacing:3.837594px;}
.ws13{word-spacing:3.897369px;}
.ws40{word-spacing:4.315798px;}
.wsa{word-spacing:4.495125px;}
.ws5b{word-spacing:4.734228px;}
.ws54{word-spacing:4.794003px;}
.ws4{word-spacing:4.853779px;}
.ws26{word-spacing:4.973330px;}
.ws35{word-spacing:5.212432px;}
.wsb{word-spacing:5.331984px;}
.ws2{word-spacing:5.379825px;}
.wse{word-spacing:5.511310px;}
.ws61{word-spacing:5.571086px;}
.ws69{word-spacing:5.690637px;}
.wsc{word-spacing:5.750413px;}
.ws2e{word-spacing:6.228618px;}
.ws15{word-spacing:6.288393px;}
.ws8{word-spacing:6.527496px;}
.ws43{word-spacing:6.766598px;}
.ws5e{word-spacing:6.886149px;}
.ws19{word-spacing:7.065476px;}
.ws70{word-spacing:7.185027px;}
.ws24{word-spacing:7.364354px;}
.ws3a{word-spacing:7.483905px;}
.ws5f{word-spacing:7.603456px;}
.ws72{word-spacing:7.663232px;}
.ws22{word-spacing:7.782783px;}
.ws38{word-spacing:7.842559px;}
.wsf{word-spacing:8.081661px;}
.ws52{word-spacing:8.500090px;}
.ws1d{word-spacing:8.619642px;}
.ws1a{word-spacing:8.858744px;}
.ws11{word-spacing:9.038071px;}
.ws36{word-spacing:9.097846px;}
.ws67{word-spacing:9.576051px;}
.ws23{word-spacing:9.635827px;}
.ws32{word-spacing:9.815154px;}
.ws16{word-spacing:9.934705px;}
.ws27{word-spacing:10.114032px;}
.ws42{word-spacing:10.173807px;}
.ws44{word-spacing:10.286225px;}
.ws18{word-spacing:10.293358px;}
.ws20{word-spacing:10.532461px;}
.ws1e{word-spacing:11.010666px;}
.ws31{word-spacing:11.429095px;}
.ws37{word-spacing:11.548646px;}
.ws7{word-spacing:11.608422px;}
.ws25{word-spacing:11.907300px;}
.ws39{word-spacing:12.086626px;}
.ws28{word-spacing:12.325729px;}
.ws45{word-spacing:12.564831px;}
.ws6f{word-spacing:14.716753px;}
.ws5a{word-spacing:16.510021px;}
.ws4d{word-spacing:16.749123px;}
.ws56{word-spacing:19.498801px;}
.ws64{word-spacing:20.012949px;}
.ws6d{word-spacing:22.164879px;}
.ws49{word-spacing:22.834279px;}
.ws2c{word-spacing:23.025651px;}
.ws1{word-spacing:23.312640px;}
.ws4c{word-spacing:26.731648px;}
.ws59{word-spacing:30.796389px;}
.ws0{word-spacing:31.091012px;}
.ws50{word-spacing:34.741579px;}
.ws58{word-spacing:39.702954px;}
.ws57{word-spacing:84.594429px;}
._17{margin-left:-8.091257px;}
._3{margin-left:-5.810227px;}
._15{margin-left:-4.551545px;}
._0{margin-left:-2.685602px;}
._7{margin-left:-1.673717px;}
._6{width:1.673717px;}
._2{width:2.685602px;}
._19{width:14.943900px;}
._e{width:16.796944px;}
._1b{width:18.183776px;}
._a{width:24.986201px;}
._23{width:26.121937px;}
._1a{width:27.138122px;}
._c{width:28.273859px;}
._8{width:30.361705px;}
._b{width:32.154973px;}
._22{width:34.072092px;}
._18{width:35.387155px;}
._d{width:37.632946px;}
._11{width:40.169203px;}
._1{width:41.936714px;}
._5{width:43.038600px;}
._12{width:44.767625px;}
._1c{width:46.262015px;}
._10{width:48.238909px;}
._f{width:49.793075px;}
._9{width:51.466792px;}
._13{width:53.136209px;}
._14{width:54.511048px;}
._21{width:61.341760px;}
._1f{width:72.442553px;}
._20{width:76.608708px;}
._16{width:78.364670px;}
._4{width:96.836850px;}
._1e{width:187.152788px;}
._1d{width:224.713312px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y21{bottom:134.047500px;}
.y68{bottom:180.582000px;}
.y20{bottom:193.108500px;}
.y7d{bottom:193.906500px;}
.y4b{bottom:195.358500px;}
.y67{bottom:198.514500px;}
.y1f{bottom:211.042500px;}
.y7c{bottom:211.839000px;}
.y4a{bottom:213.291000px;}
.y66{bottom:216.447000px;}
.y1e{bottom:228.975000px;}
.y7b{bottom:229.771500px;}
.y49{bottom:231.225000px;}
.y65{bottom:234.379500px;}
.y7a{bottom:247.704000px;}
.y48{bottom:249.157500px;}
.y64{bottom:252.312000px;}
.y1d{bottom:261.706500px;}
.y79{bottom:265.636500px;}
.y47{bottom:267.090000px;}
.y78{bottom:283.570500px;}
.y46{bottom:285.022500px;}
.y63{bottom:288.178500px;}
.y1c{bottom:288.604500px;}
.y45{bottom:302.955000px;}
.y77{bottom:316.300500px;}
.y44{bottom:320.887500px;}
.y62{bottom:320.971500px;}
.y1b{bottom:338.023500px;}
.y43{bottom:338.821500px;}
.y61{bottom:338.904000px;}
.y76{bottom:343.200000px;}
.y1a{bottom:355.956000px;}
.y42{bottom:356.754000px;}
.y60{bottom:356.836500px;}
.y19{bottom:373.890000px;}
.y41{bottom:374.686500px;}
.y5f{bottom:374.770500px;}
.y18{bottom:391.822500px;}
.y40{bottom:392.619000px;}
.y5e{bottom:392.703000px;}
.y17{bottom:409.755000px;}
.y3f{bottom:410.551500px;}
.y5d{bottom:410.635500px;}
.y16{bottom:427.687500px;}
.y3e{bottom:428.484000px;}
.y5c{bottom:429.166500px;}
.y15{bottom:445.620000px;}
.y3d{bottom:446.418000px;}
.y5b{bottom:447.099000px;}
.y14{bottom:463.552500px;}
.y3c{bottom:464.350500px;}
.y5a{bottom:465.031500px;}
.y13{bottom:481.486500px;}
.y75{bottom:482.283000px;}
.y59{bottom:482.964000px;}
.y3b{bottom:497.082000px;}
.y12{bottom:499.419000px;}
.y74{bottom:500.215500px;}
.y58{bottom:501.495000px;}
.y11{bottom:517.351500px;}
.y73{bottom:518.148000px;}
.y57{bottom:519.427500px;}
.y3a{bottom:523.980000px;}
.y10{bottom:535.284000px;}
.y72{bottom:536.082000px;}
.y56{bottom:537.360000px;}
.yf{bottom:553.216500px;}
.y71{bottom:554.014500px;}
.y55{bottom:555.292500px;}
.ye{bottom:571.150500px;}
.y70{bottom:571.947000px;}
.y39{bottom:573.399000px;}
.y54{bottom:573.823500px;}
.yd{bottom:589.083000px;}
.y6f{bottom:589.879500px;}
.y38{bottom:591.333000px;}
.yc{bottom:607.015500px;}
.y53{bottom:607.812000px;}
.y37{bottom:609.265500px;}
.yb{bottom:624.948000px;}
.y52{bottom:625.744500px;}
.y36{bottom:627.198000px;}
.ya{bottom:642.880500px;}
.y51{bottom:643.678500px;}
.y35{bottom:645.130500px;}
.y9{bottom:660.813000px;}
.y50{bottom:661.611000px;}
.y34{bottom:663.063000px;}
.y8{bottom:678.747000px;}
.y4f{bottom:679.543500px;}
.y33{bottom:680.995500px;}
.y7{bottom:696.679500px;}
.y4e{bottom:697.476000px;}
.y32{bottom:698.929500px;}
.y6{bottom:714.612000px;}
.y6e{bottom:715.408500px;}
.y31{bottom:716.862000px;}
.y4d{bottom:730.207500px;}
.y6d{bottom:733.341000px;}
.y30{bottom:734.794500px;}
.y5{bottom:747.343500px;}
.y6c{bottom:751.275000px;}
.y2f{bottom:752.727000px;}
.y4c{bottom:757.107000px;}
.y6b{bottom:769.207500px;}
.y2e{bottom:770.659500px;}
.y2d{bottom:788.592000px;}
.y6a{bottom:801.939000px;}
.y2c{bottom:806.526000px;}
.y4{bottom:811.705500px;}
.y2b{bottom:824.458500px;}
.y69{bottom:828.837000px;}
.y2a{bottom:842.391000px;}
.y3{bottom:846.874500px;}
.y29{bottom:860.323500px;}
.y28{bottom:878.256000px;}
.y2{bottom:890.211000px;}
.y27{bottom:896.188500px;}
.y26{bottom:914.122500px;}
.y1{bottom:923.088000px;}
.y25{bottom:932.055000px;}
.y24{bottom:949.987500px;}
.y23{bottom:967.920000px;}
.y22{bottom:985.852500px;}
.h5{height:41.544042px;}
.h4{height:42.799330px;}
.h2{height:50.498765px;}
.h3{height:60.254040px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:200.652000px;}
.x1{left:208.131000px;}
.x9{left:209.619000px;}
.x2{left:210.861000px;}
.xc{left:213.811500px;}
.x6{left:223.068000px;}
.x7{left:236.967000px;}
.x3{left:267.322500px;}
.xa{left:397.630500px;}
.x4{left:400.029000px;}
.x8{left:454.699500px;}
.xb{left:628.161000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:21.519216pt;}
.ls2{letter-spacing:21.678618pt;}
.ws5c{word-spacing:-14.760588pt;}
.ws17{word-spacing:-4.782067pt;}
.ws6c{word-spacing:-2.964870pt;}
.ws68{word-spacing:-2.911736pt;}
.ws6a{word-spacing:-2.699200pt;}
.ws34{word-spacing:-2.592933pt;}
.ws4f{word-spacing:-2.220996pt;}
.ws53{word-spacing:-1.849059pt;}
.ws4e{word-spacing:-1.742791pt;}
.ws2f{word-spacing:-1.423988pt;}
.ws29{word-spacing:-1.211452pt;}
.wsd{word-spacing:-1.158318pt;}
.ws2b{word-spacing:-0.998917pt;}
.ws1c{word-spacing:-0.839515pt;}
.ws1f{word-spacing:-0.786381pt;}
.ws30{word-spacing:-0.733247pt;}
.ws65{word-spacing:-0.520712pt;}
.ws14{word-spacing:-0.361310pt;}
.ws4a{word-spacing:-0.308176pt;}
.ws4b{word-spacing:-0.095641pt;}
.ws1b{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.063761pt;}
.ws2d{word-spacing:0.116895pt;}
.ws5{word-spacing:0.170028pt;}
.ws46{word-spacing:0.329430pt;}
.ws2a{word-spacing:0.382564pt;}
.ws66{word-spacing:0.595099pt;}
.ws71{word-spacing:0.701367pt;}
.ws6b{word-spacing:0.754501pt;}
.ws10{word-spacing:0.913903pt;}
.ws33{word-spacing:1.020170pt;}
.ws3b{word-spacing:1.338973pt;}
.ws21{word-spacing:1.445241pt;}
.ws63{word-spacing:1.498375pt;}
.ws5d{word-spacing:1.710911pt;}
.ws3{word-spacing:1.817178pt;}
.ws6e{word-spacing:1.976580pt;}
.ws12{word-spacing:2.082848pt;}
.ws47{word-spacing:2.242249pt;}
.ws3e{word-spacing:2.401651pt;}
.ws55{word-spacing:2.454785pt;}
.ws41{word-spacing:2.507919pt;}
.ws62{word-spacing:2.720454pt;}
.ws6{word-spacing:2.826722pt;}
.ws60{word-spacing:2.879856pt;}
.ws9{word-spacing:2.932989pt;}
.ws48{word-spacing:2.986123pt;}
.ws3c{word-spacing:3.039257pt;}
.ws51{word-spacing:3.145525pt;}
.ws3d{word-spacing:3.411194pt;}
.ws13{word-spacing:3.464328pt;}
.ws40{word-spacing:3.836265pt;}
.wsa{word-spacing:3.995667pt;}
.ws5b{word-spacing:4.208202pt;}
.ws54{word-spacing:4.261336pt;}
.ws4{word-spacing:4.314470pt;}
.ws26{word-spacing:4.420738pt;}
.ws35{word-spacing:4.633273pt;}
.wsb{word-spacing:4.739541pt;}
.ws2{word-spacing:4.782067pt;}
.wse{word-spacing:4.898943pt;}
.ws61{word-spacing:4.952076pt;}
.ws69{word-spacing:5.058344pt;}
.wsc{word-spacing:5.111478pt;}
.ws2e{word-spacing:5.536549pt;}
.ws15{word-spacing:5.589683pt;}
.ws8{word-spacing:5.802218pt;}
.ws43{word-spacing:6.014754pt;}
.ws5e{word-spacing:6.121021pt;}
.ws19{word-spacing:6.280423pt;}
.ws70{word-spacing:6.386691pt;}
.ws24{word-spacing:6.546092pt;}
.ws3a{word-spacing:6.652360pt;}
.ws5f{word-spacing:6.758628pt;}
.ws72{word-spacing:6.811762pt;}
.ws22{word-spacing:6.918029pt;}
.ws38{word-spacing:6.971163pt;}
.wsf{word-spacing:7.183699pt;}
.ws52{word-spacing:7.555636pt;}
.ws1d{word-spacing:7.661904pt;}
.ws1a{word-spacing:7.874439pt;}
.ws11{word-spacing:8.033841pt;}
.ws36{word-spacing:8.086975pt;}
.ws67{word-spacing:8.512045pt;}
.ws23{word-spacing:8.565179pt;}
.ws32{word-spacing:8.724581pt;}
.ws16{word-spacing:8.830849pt;}
.ws27{word-spacing:8.990250pt;}
.ws42{word-spacing:9.043384pt;}
.ws44{word-spacing:9.143311pt;}
.ws18{word-spacing:9.149652pt;}
.ws20{word-spacing:9.362187pt;}
.ws1e{word-spacing:9.787258pt;}
.ws31{word-spacing:10.159195pt;}
.ws37{word-spacing:10.265463pt;}
.ws7{word-spacing:10.318597pt;}
.ws25{word-spacing:10.584266pt;}
.ws39{word-spacing:10.743668pt;}
.ws28{word-spacing:10.956203pt;}
.ws45{word-spacing:11.168739pt;}
.ws6f{word-spacing:13.081558pt;}
.ws5a{word-spacing:14.675574pt;}
.ws4d{word-spacing:14.888109pt;}
.ws56{word-spacing:17.332267pt;}
.ws64{word-spacing:17.789288pt;}
.ws6d{word-spacing:19.702115pt;}
.ws49{word-spacing:20.297137pt;}
.ws2c{word-spacing:20.467245pt;}
.ws1{word-spacing:20.722347pt;}
.ws4c{word-spacing:23.761465pt;}
.ws59{word-spacing:27.374568pt;}
.ws0{word-spacing:27.636455pt;}
.ws50{word-spacing:30.881403pt;}
.ws58{word-spacing:35.291514pt;}
.ws57{word-spacing:75.195048pt;}
._17{margin-left:-7.192228pt;}
._3{margin-left:-5.164646pt;}
._15{margin-left:-4.045818pt;}
._0{margin-left:-2.387202pt;}
._7{margin-left:-1.487748pt;}
._6{width:1.487748pt;}
._2{width:2.387202pt;}
._19{width:13.283467pt;}
._e{width:14.930617pt;}
._1b{width:16.163357pt;}
._a{width:22.209956pt;}
._23{width:23.219500pt;}
._1a{width:24.122775pt;}
._c{width:25.132319pt;}
._8{width:26.988182pt;}
._b{width:28.582198pt;}
._22{width:30.286304pt;}
._18{width:31.455249pt;}
._d{width:33.451507pt;}
._11{width:35.705958pt;}
._1{width:37.277079pt;}
._5{width:38.256533pt;}
._12{width:39.793444pt;}
._1c{width:41.121791pt;}
._10{width:42.879030pt;}
._f{width:44.260511pt;}
._9{width:45.748259pt;}
._13{width:47.232186pt;}
._14{width:48.454265pt;}
._21{width:54.526009pt;}
._1f{width:64.393380pt;}
._20{width:68.096629pt;}
._16{width:69.657485pt;}
._4{width:86.077200pt;}
._1e{width:166.358034pt;}
._1d{width:199.745167pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:119.153333pt;}
.y68{bottom:160.517333pt;}
.y20{bottom:171.652000pt;}
.y7d{bottom:172.361333pt;}
.y4b{bottom:173.652000pt;}
.y67{bottom:176.457333pt;}
.y1f{bottom:187.593333pt;}
.y7c{bottom:188.301333pt;}
.y4a{bottom:189.592000pt;}
.y66{bottom:192.397333pt;}
.y1e{bottom:203.533333pt;}
.y7b{bottom:204.241333pt;}
.y49{bottom:205.533333pt;}
.y65{bottom:208.337333pt;}
.y7a{bottom:220.181333pt;}
.y48{bottom:221.473333pt;}
.y64{bottom:224.277333pt;}
.y1d{bottom:232.628000pt;}
.y79{bottom:236.121333pt;}
.y47{bottom:237.413333pt;}
.y78{bottom:252.062667pt;}
.y46{bottom:253.353333pt;}
.y63{bottom:256.158667pt;}
.y1c{bottom:256.537333pt;}
.y45{bottom:269.293333pt;}
.y77{bottom:281.156000pt;}
.y44{bottom:285.233333pt;}
.y62{bottom:285.308000pt;}
.y1b{bottom:300.465333pt;}
.y43{bottom:301.174667pt;}
.y61{bottom:301.248000pt;}
.y76{bottom:305.066667pt;}
.y1a{bottom:316.405333pt;}
.y42{bottom:317.114667pt;}
.y60{bottom:317.188000pt;}
.y19{bottom:332.346667pt;}
.y41{bottom:333.054667pt;}
.y5f{bottom:333.129333pt;}
.y18{bottom:348.286667pt;}
.y40{bottom:348.994667pt;}
.y5e{bottom:349.069333pt;}
.y17{bottom:364.226667pt;}
.y3f{bottom:364.934667pt;}
.y5d{bottom:365.009333pt;}
.y16{bottom:380.166667pt;}
.y3e{bottom:380.874667pt;}
.y5c{bottom:381.481333pt;}
.y15{bottom:396.106667pt;}
.y3d{bottom:396.816000pt;}
.y5b{bottom:397.421333pt;}
.y14{bottom:412.046667pt;}
.y3c{bottom:412.756000pt;}
.y5a{bottom:413.361333pt;}
.y13{bottom:427.988000pt;}
.y75{bottom:428.696000pt;}
.y59{bottom:429.301333pt;}
.y3b{bottom:441.850667pt;}
.y12{bottom:443.928000pt;}
.y74{bottom:444.636000pt;}
.y58{bottom:445.773333pt;}
.y11{bottom:459.868000pt;}
.y73{bottom:460.576000pt;}
.y57{bottom:461.713333pt;}
.y3a{bottom:465.760000pt;}
.y10{bottom:475.808000pt;}
.y72{bottom:476.517333pt;}
.y56{bottom:477.653333pt;}
.yf{bottom:491.748000pt;}
.y71{bottom:492.457333pt;}
.y55{bottom:493.593333pt;}
.ye{bottom:507.689333pt;}
.y70{bottom:508.397333pt;}
.y39{bottom:509.688000pt;}
.y54{bottom:510.065333pt;}
.yd{bottom:523.629333pt;}
.y6f{bottom:524.337333pt;}
.y38{bottom:525.629333pt;}
.yc{bottom:539.569333pt;}
.y53{bottom:540.277333pt;}
.y37{bottom:541.569333pt;}
.yb{bottom:555.509333pt;}
.y52{bottom:556.217333pt;}
.y36{bottom:557.509333pt;}
.ya{bottom:571.449333pt;}
.y51{bottom:572.158667pt;}
.y35{bottom:573.449333pt;}
.y9{bottom:587.389333pt;}
.y50{bottom:588.098667pt;}
.y34{bottom:589.389333pt;}
.y8{bottom:603.330667pt;}
.y4f{bottom:604.038667pt;}
.y33{bottom:605.329333pt;}
.y7{bottom:619.270667pt;}
.y4e{bottom:619.978667pt;}
.y32{bottom:621.270667pt;}
.y6{bottom:635.210667pt;}
.y6e{bottom:635.918667pt;}
.y31{bottom:637.210667pt;}
.y4d{bottom:649.073333pt;}
.y6d{bottom:651.858667pt;}
.y30{bottom:653.150667pt;}
.y5{bottom:664.305333pt;}
.y6c{bottom:667.800000pt;}
.y2f{bottom:669.090667pt;}
.y4c{bottom:672.984000pt;}
.y6b{bottom:683.740000pt;}
.y2e{bottom:685.030667pt;}
.y2d{bottom:700.970667pt;}
.y6a{bottom:712.834667pt;}
.y2c{bottom:716.912000pt;}
.y4{bottom:721.516000pt;}
.y2b{bottom:732.852000pt;}
.y69{bottom:736.744000pt;}
.y2a{bottom:748.792000pt;}
.y3{bottom:752.777333pt;}
.y29{bottom:764.732000pt;}
.y28{bottom:780.672000pt;}
.y2{bottom:791.298667pt;}
.y27{bottom:796.612000pt;}
.y26{bottom:812.553333pt;}
.y1{bottom:820.522667pt;}
.y25{bottom:828.493333pt;}
.y24{bottom:844.433333pt;}
.y23{bottom:860.373333pt;}
.y22{bottom:876.313333pt;}
.h5{height:36.928037pt;}
.h4{height:38.043849pt;}
.h2{height:44.887791pt;}
.h3{height:53.559147pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:178.357333pt;}
.x1{left:185.005333pt;}
.x9{left:186.328000pt;}
.x2{left:187.432000pt;}
.xc{left:190.054667pt;}
.x6{left:198.282667pt;}
.x7{left:210.637333pt;}
.x3{left:237.620000pt;}
.xa{left:353.449333pt;}
.x4{left:355.581333pt;}
.x8{left:404.177333pt;}
.xb{left:558.365333pt;}
}




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