
    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_b9a2e15f096f12b5a0025570.woff')format("woff");}.ff1{font-family:ff1;line-height:0.927246;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_24115e6624c1ba39971aa41c.woff')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_252877c4436de8b6b6550102.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_45e89666128d1e0a98847413.woff')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_31ec82871dba8239622cbda6.woff')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v1{vertical-align:-72.052200px;}
.v0{vertical-align:0.000000px;}
.ls2f{letter-spacing:-5.508000px;}
.ls2e{letter-spacing:-3.574080px;}
.ls23{letter-spacing:-3.132000px;}
.lse{letter-spacing:-2.527200px;}
.ls13{letter-spacing:-2.304000px;}
.ls1e{letter-spacing:-2.160000px;}
.ls24{letter-spacing:-1.188000px;}
.ls19{letter-spacing:-0.836640px;}
.ls1d{letter-spacing:-0.756000px;}
.ls2b{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.336960px;}
.ls3{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.298800px;}
.ls20{letter-spacing:-0.240480px;}
.ls18{letter-spacing:-0.239040px;}
.ls14{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.210240px;}
.ls25{letter-spacing:-0.191520px;}
.ls29{letter-spacing:-0.168480px;}
.ls30{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.132480px;}
.ls15{letter-spacing:-0.119520px;}
.lsc{letter-spacing:-0.084240px;}
.ls12{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.059760px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.120240px;}
.ls4{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.167760px;}
.ls28{letter-spacing:0.168480px;}
.lsa{letter-spacing:0.210240px;}
.ls0{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.239040px;}
.ls27{letter-spacing:0.252720px;}
.ls1{letter-spacing:0.264240px;}
.lsb{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.324000px;}
.ls1f{letter-spacing:0.336960px;}
.lsf{letter-spacing:0.454176px;}
.ls2d{letter-spacing:1.036800px;}
.ls1a{letter-spacing:1.080000px;}
.ls22{letter-spacing:2.376000px;}
.ls21{letter-spacing:3.132000px;}
.ls2c{letter-spacing:52.560000px;}
.ls9{letter-spacing:97.524000px;}
.ls8{letter-spacing:97.560000px;}
.ls26{letter-spacing:178.200000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(183,255,245),0 0.015em rgb(183,255,245),0.015em 0 rgb(183,255,245),0 -0.015em  rgb(183,255,245);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(183,255,245);text-shadow:none;}
}
.ws59{word-spacing:-52.560000px;}
.ws13{word-spacing:-40.320000px;}
.ws3c{word-spacing:-33.546960px;}
.wsb{word-spacing:-33.426720px;}
.ws3b{word-spacing:-33.186240px;}
.ws4d{word-spacing:-30.348000px;}
.ws16{word-spacing:-30.240000px;}
.ws12{word-spacing:-30.024000px;}
.ws34{word-spacing:-29.808000px;}
.ws0{word-spacing:-29.700000px;}
.ws33{word-spacing:-29.268000px;}
.ws41{word-spacing:-28.836000px;}
.ws40{word-spacing:-26.892000px;}
.ws42{word-spacing:-26.621280px;}
.ws5b{word-spacing:-24.516000px;}
.ws3a{word-spacing:-23.755680px;}
.ws54{word-spacing:-23.334480px;}
.ws15{word-spacing:-23.081760px;}
.ws14{word-spacing:-20.891520px;}
.ws22{word-spacing:-19.800000px;}
.ws21{word-spacing:-17.712000px;}
.ws24{word-spacing:-16.493760px;}
.ws23{word-spacing:-16.314480px;}
.ws25{word-spacing:-15.776640px;}
.ws5d{word-spacing:-5.190480px;}
.ws60{word-spacing:-4.309200px;}
.ws1b{word-spacing:-3.116880px;}
.ws2{word-spacing:-2.906640px;}
.ws3{word-spacing:-2.642400px;}
.ws1f{word-spacing:-2.442960px;}
.ws10{word-spacing:-2.404800px;}
.ws2a{word-spacing:-2.304000px;}
.ws39{word-spacing:-2.223936px;}
.ws1e{word-spacing:-2.190240px;}
.ws1{word-spacing:-2.113920px;}
.ws11{word-spacing:-1.803600px;}
.ws58{word-spacing:-1.769040px;}
.ws1c{word-spacing:-1.684800px;}
.ws17{word-spacing:-1.681920px;}
.ws51{word-spacing:-1.620000px;}
.ws29{word-spacing:-1.584000px;}
.ws36{word-spacing:-1.583712px;}
.ws32{word-spacing:-1.512000px;}
.ws26{word-spacing:-1.471680px;}
.ws4c{word-spacing:-1.436400px;}
.ws1d{word-spacing:-1.432080px;}
.ws38{word-spacing:-1.103544px;}
.wsf{word-spacing:-0.993600px;}
.ws19{word-spacing:-0.864000px;}
.ws48{word-spacing:-0.756000px;}
.ws37{word-spacing:-0.673920px;}
.ws5f{word-spacing:-0.670320px;}
.wsc{word-spacing:-0.630720px;}
.ws4a{word-spacing:-0.486504px;}
.ws47{word-spacing:-0.432000px;}
.ws30{word-spacing:-0.420480px;}
.ws3f{word-spacing:-0.336960px;}
.ws56{word-spacing:-0.324000px;}
.wse{word-spacing:-0.264960px;}
.ws57{word-spacing:-0.216000px;}
.ws46{word-spacing:-0.167760px;}
.ws2c{word-spacing:-0.144000px;}
.ws31{word-spacing:-0.108000px;}
.ws5{word-spacing:0.000000px;}
.ws2f{word-spacing:0.059760px;}
.ws2d{word-spacing:0.119520px;}
.ws3d{word-spacing:0.132480px;}
.ws49{word-spacing:0.168480px;}
.ws2e{word-spacing:0.179280px;}
.wsd{word-spacing:0.210240px;}
.ws2b{word-spacing:0.216000px;}
.ws45{word-spacing:0.252720px;}
.ws4f{word-spacing:0.259200px;}
.ws43{word-spacing:0.324000px;}
.ws3e{word-spacing:0.336960px;}
.ws5e{word-spacing:0.432000px;}
.ws55{word-spacing:0.503280px;}
.ws20{word-spacing:0.540000px;}
.ws4e{word-spacing:0.669600px;}
.ws5a{word-spacing:0.673920px;}
.ws4{word-spacing:0.766080px;}
.ws44{word-spacing:0.957600px;}
.ws53{word-spacing:1.047600px;}
.ws6{word-spacing:1.296000px;}
.ws50{word-spacing:1.479600px;}
.ws4b{word-spacing:1.684800px;}
.ws28{word-spacing:1.728000px;}
.ws27{word-spacing:2.052000px;}
.ws35{word-spacing:2.376000px;}
.ws1a{word-spacing:2.700000px;}
.ws5c{word-spacing:2.943360px;}
.ws18{word-spacing:3.456000px;}
.ws52{word-spacing:4.320000px;}
.wsa{word-spacing:92.160000px;}
.ws9{word-spacing:122.400000px;}
.ws8{word-spacing:152.640000px;}
.ws7{word-spacing:268.743552px;}
._5{margin-left:-3467.999736px;}
._11{margin-left:-15.398424px;}
._0{margin-left:-12.577824px;}
._c{margin-left:-11.001168px;}
._b{margin-left:-9.386928px;}
._8{margin-left:-8.117928px;}
._6{margin-left:-6.504984px;}
._4{margin-left:-4.855032px;}
._3{margin-left:-3.461544px;}
._7{margin-left:-2.212992px;}
._1{margin-left:-1.189080px;}
._2{width:1.532592px;}
._a{width:2.822616px;}
._9{width:4.577616px;}
._10{width:6.599808px;}
._d{width:31.711896px;}
._e{width:33.620400px;}
._f{width:1995.015000px;}
.fc8{color:transparent;}
.fc7{color:rgb(0,32,96);}
.fc5{color:rgb(0,150,130);}
.fc4{color:rgb(0,71,119);}
.fc6{color:rgb(12,83,126);}
.fc3{color:rgb(168,185,196);}
.fc2{color:rgb(0,45,76);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(183,255,245);}
.fs9{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs6{font-size:120.240000px;}
.fs7{font-size:144.000000px;}
.fsa{font-size:167.760000px;}
.fsb{font-size:192.240000px;}
.fs4{font-size:210.240000px;}
.fs0{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:22.994490px;}
.ya{bottom:26.254050px;}
.y4{bottom:60.795750px;}
.y49{bottom:84.457500px;}
.y31{bottom:96.493200px;}
.y5c{bottom:100.573650px;}
.y27{bottom:107.857500px;}
.y7b{bottom:111.466500px;}
.y30{bottom:114.495900px;}
.y7{bottom:127.065750px;}
.y5b{bottom:128.293650px;}
.y2f{bottom:132.495900px;}
.y7a{bottom:143.866500px;}
.y74{bottom:146.515500px;}
.y26{bottom:149.257500px;}
.y5a{bottom:156.013650px;}
.y3{bottom:157.665000px;}
.y48{bottom:167.257500px;}
.y79{bottom:176.266500px;}
.y73{bottom:179.266500px;}
.y4e{bottom:181.657500px;}
.y3c{bottom:185.257500px;}
.y7d{bottom:186.850500px;}
.y33{bottom:190.155900px;}
.y25{bottom:190.657500px;}
.y81{bottom:194.591550px;}
.y47{bottom:199.657500px;}
.y32{bottom:208.155900px;}
.y72{bottom:212.017500px;}
.y12{bottom:216.338100px;}
.y3b{bottom:217.657500px;}
.y2{bottom:221.025000px;}
.y44{bottom:223.057500px;}
.y7c{bottom:231.481500px;}
.y46{bottom:232.048500px;}
.y34{bottom:248.260950px;}
.y3a{bottom:259.057500px;}
.y71{bottom:259.726500px;}
.y43{bottom:264.457500px;}
.y1c{bottom:271.556850px;}
.y80{bottom:272.891550px;}
.y24{bottom:273.457500px;}
.y6{bottom:280.462950px;}
.y1{bottom:284.385000px;}
.y39{bottom:291.457500px;}
.y70{bottom:292.315500px;}
.y78{bottom:300.466500px;}
.y42{bottom:305.857500px;}
.y1b{bottom:312.947850px;}
.y23{bottom:314.857500px;}
.y7f{bottom:316.091550px;}
.y52{bottom:316.591890px;}
.y6f{bottom:325.066500px;}
.y65{bottom:328.634550px;}
.y38{bottom:332.857500px;}
.y77{bottom:332.866500px;}
.y51{bottom:345.391710px;}
.y41{bottom:347.257500px;}
.y1a{bottom:354.338850px;}
.y22{bottom:356.257500px;}
.y64{bottom:364.274550px;}
.y2e{bottom:364.981050px;}
.y6e{bottom:372.775500px;}
.yd{bottom:373.904850px;}
.y50{bottom:374.191530px;}
.y37{bottom:374.257500px;}
.y40{bottom:388.657500px;}
.y19{bottom:395.729850px;}
.y21{bottom:397.657500px;}
.y4f{bottom:402.991350px;}
.y6d{bottom:405.526500px;}
.y36{bottom:406.657500px;}
.y63{bottom:415.594800px;}
.yc{bottom:422.504850px;}
.y45{bottom:430.057500px;}
.y6c{bottom:438.277500px;}
.y20{bottom:439.057500px;}
.y11{bottom:441.686100px;}
.y62{bottom:447.994800px;}
.y76{bottom:448.048500px;}
.y35{bottom:448.057500px;}
.y59{bottom:456.676350px;}
.yb{bottom:471.104700px;}
.y3f{bottom:471.457500px;}
.y1f{bottom:480.457500px;}
.y66{bottom:480.517350px;}
.y10{bottom:483.086100px;}
.y58{bottom:485.836350px;}
.y6b{bottom:485.986500px;}
.y61{bottom:493.894800px;}
.y3e{bottom:512.857500px;}
.y6a{bottom:518.737500px;}
.yf{bottom:524.486100px;}
.y4c{bottom:524.790630px;}
.y60{bottom:526.294800px;}
.y57{bottom:526.876350px;}
.y75{bottom:530.857500px;}
.y18{bottom:543.212460px;}
.y4b{bottom:549.999450px;}
.y69{bottom:551.488500px;}
.y3d{bottom:554.257350px;}
.y56{bottom:556.036350px;}
.y1e{bottom:563.257500px;}
.y7e{bottom:563.578950px;}
.ye{bottom:565.886100px;}
.y17{bottom:570.927420px;}
.y5f{bottom:572.194800px;}
.y2d{bottom:582.834750px;}
.y68{bottom:584.077500px;}
.y1d{bottom:595.657500px;}
.y55{bottom:597.265350px;}
.y2c{bottom:606.594750px;}
.y16{bottom:607.656060px;}
.y5e{bottom:618.094800px;}
.y67{bottom:622.957500px;}
.y2b{bottom:639.354750px;}
.y15{bottom:644.384700px;}
.y14{bottom:672.099660px;}
.y2a{bottom:672.114750px;}
.y9{bottom:677.683260px;}
.y5d{bottom:685.428300px;}
.y54{bottom:689.709900px;}
.y29{bottom:695.874750px;}
.y13{bottom:708.828300px;}
.y8{bottom:728.088300px;}
.y4a{bottom:728.160000px;}
.y28{bottom:728.634750px;}
.y4d{bottom:729.431550px;}
.y53{bottom:732.369900px;}
.hc{height:43.536094px;}
.hd{height:43.546894px;}
.h7{height:48.256875px;}
.hb{height:52.417969px;}
.h5{height:52.453125px;}
.h12{height:56.146289px;}
.ha{height:61.329023px;}
.h11{height:61.370156px;}
.h3{height:69.715898px;}
.h2{height:69.762656px;}
.h13{height:78.626953px;}
.h4{height:78.679688px;}
.he{height:78.715687px;}
.h8{height:87.538008px;}
.hf{height:87.596719px;}
.h15{height:104.835938px;}
.h9{height:104.906250px;}
.h10{height:125.820000px;}
.h14{height:139.955977px;}
.h6{height:157.680000px;}
.h1{height:198.180000px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x27{left:40.004100px;}
.x29{left:41.738100px;}
.x1{left:43.875000px;}
.x2b{left:45.314850px;}
.x6{left:50.260050px;}
.x28{left:73.781100px;}
.x11{left:75.734850px;}
.x10{left:77.714850px;}
.x2c{left:79.145850px;}
.x7{left:82.120050px;}
.x26{left:93.422400px;}
.x1c{left:109.574850px;}
.x4{left:111.900900px;}
.x31{left:361.653600px;}
.x30{left:409.893600px;}
.x8{left:434.360850px;}
.x32{left:457.413600px;}
.x1d{left:483.750750px;}
.x1e{left:501.588570px;}
.x2f{left:571.330050px;}
.x1a{left:657.153600px;}
.x2a{left:728.504700px;}
.x24{left:752.127600px;}
.x25{left:806.127600px;}
.x21{left:909.802980px;}
.x5{left:927.022650px;}
.x22{left:929.074680px;}
.x20{left:936.089100px;}
.x19{left:956.609550px;}
.x2d{left:960.416850px;}
.x18{left:967.824600px;}
.x23{left:992.802960px;}
.x1f{left:1009.165950px;}
.xf{left:1010.238600px;}
.xa{left:1018.428690px;}
.xd{left:1020.050310px;}
.x9{left:1023.293550px;}
.xc{left:1064.507970px;}
.x13{left:1076.440200px;}
.x16{left:1077.700200px;}
.x12{left:1080.760200px;}
.x2e{left:1084.265850px;}
.x2{left:1105.630650px;}
.x15{left:1116.040200px;}
.xb{left:1138.660230px;}
.x14{left:1179.580200px;}
.xe{left:1186.003110px;}
.x1b{left:1187.768400px;}
.x17{left:1220.440200px;}
.x3{left:1272.817350px;}
@media print{
.v1{vertical-align:-64.046400pt;}
.v0{vertical-align:0.000000pt;}
.ls2f{letter-spacing:-4.896000pt;}
.ls2e{letter-spacing:-3.176960pt;}
.ls23{letter-spacing:-2.784000pt;}
.lse{letter-spacing:-2.246400pt;}
.ls13{letter-spacing:-2.048000pt;}
.ls1e{letter-spacing:-1.920000pt;}
.ls24{letter-spacing:-1.056000pt;}
.ls19{letter-spacing:-0.743680pt;}
.ls1d{letter-spacing:-0.672000pt;}
.ls2b{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.299520pt;}
.ls3{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.265600pt;}
.ls20{letter-spacing:-0.213760pt;}
.ls18{letter-spacing:-0.212480pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.186880pt;}
.ls25{letter-spacing:-0.170240pt;}
.ls29{letter-spacing:-0.149760pt;}
.ls30{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.117760pt;}
.ls15{letter-spacing:-0.106240pt;}
.lsc{letter-spacing:-0.074880pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.053120pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.106880pt;}
.ls4{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.149120pt;}
.ls28{letter-spacing:0.149760pt;}
.lsa{letter-spacing:0.186880pt;}
.ls0{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.212480pt;}
.ls27{letter-spacing:0.224640pt;}
.ls1{letter-spacing:0.234880pt;}
.lsb{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls1f{letter-spacing:0.299520pt;}
.lsf{letter-spacing:0.403712pt;}
.ls2d{letter-spacing:0.921600pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls22{letter-spacing:2.112000pt;}
.ls21{letter-spacing:2.784000pt;}
.ls2c{letter-spacing:46.720000pt;}
.ls9{letter-spacing:86.688000pt;}
.ls8{letter-spacing:86.720000pt;}
.ls26{letter-spacing:158.400000pt;}
.ws59{word-spacing:-46.720000pt;}
.ws13{word-spacing:-35.840000pt;}
.ws3c{word-spacing:-29.819520pt;}
.wsb{word-spacing:-29.712640pt;}
.ws3b{word-spacing:-29.498880pt;}
.ws4d{word-spacing:-26.976000pt;}
.ws16{word-spacing:-26.880000pt;}
.ws12{word-spacing:-26.688000pt;}
.ws34{word-spacing:-26.496000pt;}
.ws0{word-spacing:-26.400000pt;}
.ws33{word-spacing:-26.016000pt;}
.ws41{word-spacing:-25.632000pt;}
.ws40{word-spacing:-23.904000pt;}
.ws42{word-spacing:-23.663360pt;}
.ws5b{word-spacing:-21.792000pt;}
.ws3a{word-spacing:-21.116160pt;}
.ws54{word-spacing:-20.741760pt;}
.ws15{word-spacing:-20.517120pt;}
.ws14{word-spacing:-18.570240pt;}
.ws22{word-spacing:-17.600000pt;}
.ws21{word-spacing:-15.744000pt;}
.ws24{word-spacing:-14.661120pt;}
.ws23{word-spacing:-14.501760pt;}
.ws25{word-spacing:-14.023680pt;}
.ws5d{word-spacing:-4.613760pt;}
.ws60{word-spacing:-3.830400pt;}
.ws1b{word-spacing:-2.770560pt;}
.ws2{word-spacing:-2.583680pt;}
.ws3{word-spacing:-2.348800pt;}
.ws1f{word-spacing:-2.171520pt;}
.ws10{word-spacing:-2.137600pt;}
.ws2a{word-spacing:-2.048000pt;}
.ws39{word-spacing:-1.976832pt;}
.ws1e{word-spacing:-1.946880pt;}
.ws1{word-spacing:-1.879040pt;}
.ws11{word-spacing:-1.603200pt;}
.ws58{word-spacing:-1.572480pt;}
.ws1c{word-spacing:-1.497600pt;}
.ws17{word-spacing:-1.495040pt;}
.ws51{word-spacing:-1.440000pt;}
.ws29{word-spacing:-1.408000pt;}
.ws36{word-spacing:-1.407744pt;}
.ws32{word-spacing:-1.344000pt;}
.ws26{word-spacing:-1.308160pt;}
.ws4c{word-spacing:-1.276800pt;}
.ws1d{word-spacing:-1.272960pt;}
.ws38{word-spacing:-0.980928pt;}
.wsf{word-spacing:-0.883200pt;}
.ws19{word-spacing:-0.768000pt;}
.ws48{word-spacing:-0.672000pt;}
.ws37{word-spacing:-0.599040pt;}
.ws5f{word-spacing:-0.595840pt;}
.wsc{word-spacing:-0.560640pt;}
.ws4a{word-spacing:-0.432448pt;}
.ws47{word-spacing:-0.384000pt;}
.ws30{word-spacing:-0.373760pt;}
.ws3f{word-spacing:-0.299520pt;}
.ws56{word-spacing:-0.288000pt;}
.wse{word-spacing:-0.235520pt;}
.ws57{word-spacing:-0.192000pt;}
.ws46{word-spacing:-0.149120pt;}
.ws2c{word-spacing:-0.128000pt;}
.ws31{word-spacing:-0.096000pt;}
.ws5{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.053120pt;}
.ws2d{word-spacing:0.106240pt;}
.ws3d{word-spacing:0.117760pt;}
.ws49{word-spacing:0.149760pt;}
.ws2e{word-spacing:0.159360pt;}
.wsd{word-spacing:0.186880pt;}
.ws2b{word-spacing:0.192000pt;}
.ws45{word-spacing:0.224640pt;}
.ws4f{word-spacing:0.230400pt;}
.ws43{word-spacing:0.288000pt;}
.ws3e{word-spacing:0.299520pt;}
.ws5e{word-spacing:0.384000pt;}
.ws55{word-spacing:0.447360pt;}
.ws20{word-spacing:0.480000pt;}
.ws4e{word-spacing:0.595200pt;}
.ws5a{word-spacing:0.599040pt;}
.ws4{word-spacing:0.680960pt;}
.ws44{word-spacing:0.851200pt;}
.ws53{word-spacing:0.931200pt;}
.ws6{word-spacing:1.152000pt;}
.ws50{word-spacing:1.315200pt;}
.ws4b{word-spacing:1.497600pt;}
.ws28{word-spacing:1.536000pt;}
.ws27{word-spacing:1.824000pt;}
.ws35{word-spacing:2.112000pt;}
.ws1a{word-spacing:2.400000pt;}
.ws5c{word-spacing:2.616320pt;}
.ws18{word-spacing:3.072000pt;}
.ws52{word-spacing:3.840000pt;}
.wsa{word-spacing:81.920000pt;}
.ws9{word-spacing:108.800000pt;}
.ws8{word-spacing:135.680000pt;}
.ws7{word-spacing:238.883157pt;}
._5{margin-left:-3082.666432pt;}
._11{margin-left:-13.687488pt;}
._0{margin-left:-11.180288pt;}
._c{margin-left:-9.778816pt;}
._b{margin-left:-8.343936pt;}
._8{margin-left:-7.215936pt;}
._6{margin-left:-5.782208pt;}
._4{margin-left:-4.315584pt;}
._3{margin-left:-3.076928pt;}
._7{margin-left:-1.967104pt;}
._1{margin-left:-1.056960pt;}
._2{width:1.362304pt;}
._a{width:2.508992pt;}
._9{width:4.068992pt;}
._10{width:5.866496pt;}
._d{width:28.188352pt;}
._e{width:29.884800pt;}
._f{width:1773.346667pt;}
.fs9{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs6{font-size:106.880000pt;}
.fs7{font-size:128.000000pt;}
.fsa{font-size:149.120000pt;}
.fsb{font-size:170.880000pt;}
.fs4{font-size:186.880000pt;}
.fs0{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:20.439547pt;}
.ya{bottom:23.336933pt;}
.y4{bottom:54.040667pt;}
.y49{bottom:75.073333pt;}
.y31{bottom:85.771733pt;}
.y5c{bottom:89.398800pt;}
.y27{bottom:95.873333pt;}
.y7b{bottom:99.081333pt;}
.y30{bottom:101.774133pt;}
.y7{bottom:112.947333pt;}
.y5b{bottom:114.038800pt;}
.y2f{bottom:117.774133pt;}
.y7a{bottom:127.881333pt;}
.y74{bottom:130.236000pt;}
.y26{bottom:132.673333pt;}
.y5a{bottom:138.678800pt;}
.y3{bottom:140.146667pt;}
.y48{bottom:148.673333pt;}
.y79{bottom:156.681333pt;}
.y73{bottom:159.348000pt;}
.y4e{bottom:161.473333pt;}
.y3c{bottom:164.673333pt;}
.y7d{bottom:166.089333pt;}
.y33{bottom:169.027467pt;}
.y25{bottom:169.473333pt;}
.y81{bottom:172.970267pt;}
.y47{bottom:177.473333pt;}
.y32{bottom:185.027467pt;}
.y72{bottom:188.460000pt;}
.y12{bottom:192.300533pt;}
.y3b{bottom:193.473333pt;}
.y2{bottom:196.466667pt;}
.y44{bottom:198.273333pt;}
.y7c{bottom:205.761333pt;}
.y46{bottom:206.265333pt;}
.y34{bottom:220.676400pt;}
.y3a{bottom:230.273333pt;}
.y71{bottom:230.868000pt;}
.y43{bottom:235.073333pt;}
.y1c{bottom:241.383867pt;}
.y80{bottom:242.570267pt;}
.y24{bottom:243.073333pt;}
.y6{bottom:249.300400pt;}
.y1{bottom:252.786667pt;}
.y39{bottom:259.073333pt;}
.y70{bottom:259.836000pt;}
.y78{bottom:267.081333pt;}
.y42{bottom:271.873333pt;}
.y1b{bottom:278.175867pt;}
.y23{bottom:279.873333pt;}
.y7f{bottom:280.970267pt;}
.y52{bottom:281.415013pt;}
.y6f{bottom:288.948000pt;}
.y65{bottom:292.119600pt;}
.y38{bottom:295.873333pt;}
.y77{bottom:295.881333pt;}
.y51{bottom:307.014853pt;}
.y41{bottom:308.673333pt;}
.y1a{bottom:314.967867pt;}
.y22{bottom:316.673333pt;}
.y64{bottom:323.799600pt;}
.y2e{bottom:324.427600pt;}
.y6e{bottom:331.356000pt;}
.yd{bottom:332.359867pt;}
.y50{bottom:332.614693pt;}
.y37{bottom:332.673333pt;}
.y40{bottom:345.473333pt;}
.y19{bottom:351.759867pt;}
.y21{bottom:353.473333pt;}
.y4f{bottom:358.214533pt;}
.y6d{bottom:360.468000pt;}
.y36{bottom:361.473333pt;}
.y63{bottom:369.417600pt;}
.yc{bottom:375.559867pt;}
.y45{bottom:382.273333pt;}
.y6c{bottom:389.580000pt;}
.y20{bottom:390.273333pt;}
.y11{bottom:392.609867pt;}
.y62{bottom:398.217600pt;}
.y76{bottom:398.265333pt;}
.y35{bottom:398.273333pt;}
.y59{bottom:405.934533pt;}
.yb{bottom:418.759733pt;}
.y3f{bottom:419.073333pt;}
.y1f{bottom:427.073333pt;}
.y66{bottom:427.126533pt;}
.y10{bottom:429.409867pt;}
.y58{bottom:431.854533pt;}
.y6b{bottom:431.988000pt;}
.y61{bottom:439.017600pt;}
.y3e{bottom:455.873333pt;}
.y6a{bottom:461.100000pt;}
.yf{bottom:466.209867pt;}
.y4c{bottom:466.480560pt;}
.y60{bottom:467.817600pt;}
.y57{bottom:468.334533pt;}
.y75{bottom:471.873333pt;}
.y18{bottom:482.855520pt;}
.y4b{bottom:488.888400pt;}
.y69{bottom:490.212000pt;}
.y3d{bottom:492.673200pt;}
.y56{bottom:494.254533pt;}
.y1e{bottom:500.673333pt;}
.y7e{bottom:500.959067pt;}
.ye{bottom:503.009867pt;}
.y17{bottom:507.491040pt;}
.y5f{bottom:508.617600pt;}
.y2d{bottom:518.075333pt;}
.y68{bottom:519.180000pt;}
.y1d{bottom:529.473333pt;}
.y55{bottom:530.902533pt;}
.y2c{bottom:539.195333pt;}
.y16{bottom:540.138720pt;}
.y5e{bottom:549.417600pt;}
.y67{bottom:553.740000pt;}
.y2b{bottom:568.315333pt;}
.y15{bottom:572.786400pt;}
.y14{bottom:597.421920pt;}
.y2a{bottom:597.435333pt;}
.y9{bottom:602.385120pt;}
.y5d{bottom:609.269600pt;}
.y54{bottom:613.075467pt;}
.y29{bottom:618.555333pt;}
.y13{bottom:630.069600pt;}
.y8{bottom:647.189600pt;}
.y4a{bottom:647.253333pt;}
.y28{bottom:647.675333pt;}
.y4d{bottom:648.383600pt;}
.y53{bottom:650.995467pt;}
.hc{height:38.698750pt;}
.hd{height:38.708350pt;}
.h7{height:42.895000pt;}
.hb{height:46.593750pt;}
.h5{height:46.625000pt;}
.h12{height:49.907812pt;}
.ha{height:54.514687pt;}
.h11{height:54.551250pt;}
.h3{height:61.969687pt;}
.h2{height:62.011250pt;}
.h13{height:69.890625pt;}
.h4{height:69.937500pt;}
.he{height:69.969500pt;}
.h8{height:77.811562pt;}
.hf{height:77.863750pt;}
.h15{height:93.187500pt;}
.h9{height:93.250000pt;}
.h10{height:111.840000pt;}
.h14{height:124.405313pt;}
.h6{height:140.160000pt;}
.h1{height:176.160000pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x27{left:35.559200pt;}
.x29{left:37.100533pt;}
.x1{left:39.000000pt;}
.x2b{left:40.279867pt;}
.x6{left:44.675600pt;}
.x28{left:65.583200pt;}
.x11{left:67.319867pt;}
.x10{left:69.079867pt;}
.x2c{left:70.351867pt;}
.x7{left:72.995600pt;}
.x26{left:83.042133pt;}
.x1c{left:97.399867pt;}
.x4{left:99.467467pt;}
.x31{left:321.469867pt;}
.x30{left:364.349867pt;}
.x8{left:386.098533pt;}
.x32{left:406.589867pt;}
.x1d{left:430.000667pt;}
.x1e{left:445.856507pt;}
.x2f{left:507.848933pt;}
.x1a{left:584.136533pt;}
.x2a{left:647.559733pt;}
.x24{left:668.557867pt;}
.x25{left:716.557867pt;}
.x21{left:808.713760pt;}
.x5{left:824.020133pt;}
.x22{left:825.844160pt;}
.x20{left:832.079200pt;}
.x19{left:850.319600pt;}
.x2d{left:853.703867pt;}
.x18{left:860.288533pt;}
.x23{left:882.491520pt;}
.x1f{left:897.036400pt;}
.xf{left:897.989867pt;}
.xa{left:905.269947pt;}
.xd{left:906.711387pt;}
.x9{left:909.594267pt;}
.xc{left:946.229307pt;}
.x13{left:956.835733pt;}
.x16{left:957.955733pt;}
.x12{left:960.675733pt;}
.x2e{left:963.791867pt;}
.x2{left:982.782800pt;}
.x15{left:992.035733pt;}
.xb{left:1012.142427pt;}
.x14{left:1048.515733pt;}
.xe{left:1054.224987pt;}
.x1b{left:1055.794133pt;}
.x17{left:1084.835733pt;}
.x3{left:1131.393200pt;}
}




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