
    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_1d2ebdef953de99ee4010b37.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2b8cb878ab42bd7a87907dee.woff')format("woff");}.ff2{font-family:ff2;line-height:1.461000;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_0a56b492b2b21d257c6bfd60.woff')format("woff");}.ff3{font-family:ff3;line-height:1.461000;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_d18cb56cad62efdd987b0413.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3a514f809bed310d13837479.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dac35dfeffb444b0c5bc8816.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f7dea28fe5881db4a55b7724.woff')format("woff");}.ff7{font-family:ff7;line-height:0.980000;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_34c98e6e9da10fa99bba1bf2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-33.066766px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:32.984385px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:107.972093px;}
.ls2{letter-spacing:107.986614px;}
.ls4{letter-spacing:107.990561px;}
.ls3{letter-spacing:107.990750px;}
.ls7{letter-spacing:107.996190px;}
.ls5{letter-spacing:107.999985px;}
.ls9{letter-spacing:108.000354px;}
.ls6{letter-spacing:108.000426px;}
.ls1{letter-spacing:755.331819px;}
.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;}
}
.ws7{word-spacing:-45.878398px;}
.wsf{word-spacing:-38.940003px;}
.wsb{word-spacing:-32.568000px;}
.ws10{word-spacing:-29.736001px;}
.ws8{word-spacing:-28.320000px;}
.ws6{word-spacing:-25.488001px;}
.ws9{word-spacing:-24.072000px;}
.ws4{word-spacing:-22.656001px;}
.ws11{word-spacing:-21.240001px;}
.wsa{word-spacing:-18.408001px;}
.wsc{word-spacing:-16.992001px;}
.ws3{word-spacing:-15.576001px;}
.ws5{word-spacing:-15.180001px;}
.wsd{word-spacing:-12.744000px;}
.ws1{word-spacing:-11.328001px;}
.ws2{word-spacing:-10.716253px;}
.wse{word-spacing:-8.496000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-13.824000px;}
._d{margin-left:-11.797201px;}
._4{margin-left:-9.828000px;}
._2{margin-left:-8.532000px;}
._8{margin-left:-7.221822px;}
._3{margin-left:-5.832000px;}
._9{margin-left:-3.960000px;}
._1{margin-left:-2.332800px;}
._0{margin-left:-1.166400px;}
._5{width:1.080000px;}
._6{width:2.332800px;}
._a{width:3.495600px;}
._b{width:107.990744px;}
._c{width:1085.841086px;}
.fc6{color:transparent;}
.fc5{color:rgb(82,82,81);}
.fc2{color:rgb(255,92,0);}
.fc4{color:rgb(75,75,75);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(14,30,48);}
.fs5{font-size:30.000000px;}
.fs6{font-size:36.000001px;}
.fs1c{font-size:42.000000px;}
.fs8{font-size:46.592403px;}
.fs4{font-size:48.000003px;}
.fs1b{font-size:54.000002px;}
.fsb{font-size:60.000000px;}
.fs2{font-size:66.000004px;}
.fs15{font-size:72.000002px;}
.fs13{font-size:78.000005px;}
.fs10{font-size:84.000000px;}
.fs1a{font-size:90.000003px;}
.fsd{font-size:96.000006px;}
.fs12{font-size:102.000000px;}
.fs1{font-size:108.000003px;}
.fs18{font-size:114.000007px;}
.fs11{font-size:120.000001px;}
.fs1e{font-size:126.000004px;}
.fs19{font-size:132.000007px;}
.fs14{font-size:138.000001px;}
.fs3{font-size:151.200005px;}
.fs9{font-size:156.000011px;}
.fs1d{font-size:165.000011px;}
.fs16{font-size:166.200008px;}
.fs1f{font-size:174.000012px;}
.fsc{font-size:178.200006px;}
.fse{font-size:186.000000px;}
.fs0{font-size:194.399993px;}
.fsa{font-size:198.000006px;}
.fs7{font-size:216.000007px;}
.fsf{font-size:234.000007px;}
.fs17{font-size:236.400024px;}
.y7c{bottom:-23.085020px;}
.y40{bottom:-12.574145px;}
.y0{bottom:0.000000px;}
.y13{bottom:7.475640px;}
.y9d{bottom:9.468048px;}
.yb6{bottom:9.841054px;}
.y3f{bottom:17.305856px;}
.y16{bottom:17.350290px;}
.y6e{bottom:18.536921px;}
.y12{bottom:21.875640px;}
.yc2{bottom:22.001426px;}
.y11{bottom:22.427801px;}
.y7d{bottom:26.799776px;}
.y3d{bottom:27.899273px;}
.y8c{bottom:27.972154px;}
.y6d{bottom:28.055549px;}
.y63{bottom:29.681667px;}
.y3e{bottom:37.105857px;}
.yb5{bottom:39.484102px;}
.y46{bottom:39.553812px;}
.y6c{bottom:45.380187px;}
.y35{bottom:45.614682px;}
.y7b{bottom:45.633402px;}
.y26{bottom:52.661682px;}
.y61{bottom:53.995325px;}
.y45{bottom:55.933812px;}
.y9b{bottom:56.178320px;}
.yc1{bottom:56.195960px;}
.yb3{bottom:58.028641px;}
.y6b{bottom:59.780187px;}
.y9c{bottom:60.055745px;}
.y29{bottom:60.571917px;}
.y62{bottom:67.646345px;}
.y3c{bottom:69.613847px;}
.yb4{bottom:71.884108px;}
.y44{bottom:75.733813px;}
.ycb{bottom:77.169662px;}
.y14{bottom:77.477102px;}
.y9a{bottom:78.498287px;}
.y34{bottom:80.174683px;}
.y60{bottom:80.455359px;}
.y25{bottom:82.181683px;}
.y17{bottom:83.653813px;}
.y87{bottom:85.367256px;}
.y24{bottom:86.946137px;}
.yb2{bottom:90.068653px;}
.y52{bottom:90.475903px;}
.yc0{bottom:93.995972px;}
.yca{bottom:104.169663px;}
.y5f{bottom:106.915383px;}
.y69{bottom:107.923732px;}
.y99{bottom:110.898265px;}
.y23{bottom:116.466138px;}
.y51{bottom:116.485893px;}
.y86{bottom:117.767279px;}
.y6{bottom:120.239534px;}
.yb1{bottom:120.668632px;}
.y33{bottom:120.854696px;}
.yc9{bottom:131.169664px;}
.ybf{bottom:131.795985px;}
.y5e{bottom:133.375406px;}
.y3b{bottom:136.933849px;}
.y5{bottom:140.039529px;}
.y50{bottom:142.405871px;}
.ya5{bottom:142.624054px;}
.y98{bottom:143.298289px;}
.y22{bottom:148.368788px;}
.y85{bottom:150.167280px;}
.yb0{bottom:151.268644px;}
.yf{bottom:152.434122px;}
.y68{bottom:157.333711px;}
.yc8{bottom:158.169664px;}
.y5d{bottom:159.835373px;}
.y32{bottom:161.534697px;}
.y4{bottom:162.359536px;}
.y7a{bottom:165.942773px;}
.ybe{bottom:169.595986px;}
.ya4{bottom:171.604044px;}
.y97{bottom:175.698290px;}
.ycd{bottom:178.221604px;}
.yaf{bottom:181.868645px;}
.y84{bottom:182.567281px;}
.ye{bottom:184.834123px;}
.yc7{bottom:185.169665px;}
.y4f{bottom:186.145873px;}
.y21{bottom:186.168778px;}
.y5c{bottom:186.295363px;}
.y1c{bottom:190.033821px;}
.y3a{bottom:192.733839px;}
.y31{bottom:193.214720px;}
.ya3{bottom:200.584033px;}
.y67{bottom:204.943701px;}
.y79{bottom:205.272763px;}
.ybd{bottom:207.395998px;}
.y96{bottom:208.098291px;}
.y1b{bottom:209.833817px;}
.ycc{bottom:210.621610px;}
.yc6{bottom:212.169666px;}
.yae{bottom:212.468646px;}
.y5b{bottom:212.755352px;}
.y73{bottom:214.001976px;}
.y83{bottom:214.967282px;}
.yd{bottom:217.234124px;}
.ya2{bottom:229.564034px;}
.y1a{bottom:229.633818px;}
.y8f{bottom:232.613977px;}
.y30{bottom:233.894722px;}
.y3{bottom:238.617056px;}
.yc5{bottom:239.169667px;}
.y5a{bottom:239.215331px;}
.y95{bottom:240.498292px;}
.yad{bottom:243.068636px;}
.y78{bottom:244.602753px;}
.ybc{bottom:245.196011px;}
.y20{bottom:245.568757px;}
.y82{bottom:247.367283px;}
.y39{bottom:248.533830px;}
.y19{bottom:249.433819px;}
.yc{bottom:249.634125px;}
.y66{bottom:252.553691px;}
.yd0{bottom:256.900860px;}
.ya1{bottom:258.544024px;}
.y8b{bottom:259.526336px;}
.y72{bottom:263.861978px;}
.y2f{bottom:265.574734px;}
.y59{bottom:265.675343px;}
.yc4{bottom:266.169671px;}
.y4e{bottom:267.235887px;}
.y18{bottom:269.233819px;}
.y94{bottom:272.898293px;}
.y8a{bottom:272.933989px;}
.y28{bottom:273.528912px;}
.yac{bottom:273.668637px;}
.y81{bottom:279.767273px;}
.yb{bottom:282.034126px;}
.ybb{bottom:282.996012px;}
.y77{bottom:285.822755px;}
.ya0{bottom:287.524025px;}
.y58{bottom:292.135349px;}
.yc3{bottom:293.169670px;}
.y2{bottom:296.937058px;}
.y2e{bottom:297.254735px;}
.y8e{bottom:299.321990px;}
.y4d{bottom:299.365876px;}
.y65{bottom:300.163687px;}
.y48{bottom:302.094001px;}
.yab{bottom:304.268638px;}
.y38{bottom:304.333820px;}
.y1f{bottom:304.968770px;}
.y93{bottom:305.298283px;}
.ycf{bottom:309.100862px;}
.y80{bottom:312.167274px;}
.y43{bottom:313.299677px;}
.y71{bottom:313.721991px;}
.ya{bottom:314.434116px;}
.y9f{bottom:316.504014px;}
.y57{bottom:318.595345px;}
.yba{bottom:320.796013px;}
.y2d{bottom:328.934736px;}
.y15{bottom:329.309997px;}
.y76{bottom:329.472745px;}
.y27{bottom:330.876911px;}
.y89{bottom:331.253991px;}
.y6f{bottom:331.253998px;}
.y4c{bottom:331.495877px;}
.yaa{bottom:334.868633px;}
.y92{bottom:337.698284px;}
.y7f{bottom:344.567282px;}
.y56{bottom:345.055345px;}
.y9e{bottom:345.484012px;}
.y42{bottom:345.699685px;}
.y9{bottom:346.834117px;}
.y64{bottom:347.773683px;}
.y8d{bottom:349.181992px;}
.y1{bottom:355.257057px;}
.yb9{bottom:358.596021px;}
.y37{bottom:360.133822px;}
.y47{bottom:360.413992px;}
.y2c{bottom:360.614748px;}
.y70{bottom:363.581992px;}
.y1e{bottom:364.368763px;}
.y4b{bottom:364.975867px;}
.ya9{bottom:365.468629px;}
.y91{bottom:370.098292px;}
.y75{bottom:370.692741px;}
.y55{bottom:371.515341px;}
.y53{bottom:374.464007px;}
.y7e{bottom:376.967288px;}
.y41{bottom:378.099690px;}
.y8{bottom:379.234124px;}
.yce{bottom:385.589389px;}
.y88{bottom:389.573987px;}
.y1d{bottom:390.978297px;}
.y2b{bottom:392.294749px;}
.ya8{bottom:396.068624px;}
.yb8{bottom:396.396020px;}
.y54{bottom:397.975338px;}
.y4a{bottom:400.075863px;}
.y90{bottom:402.498297px;}
.y7{bottom:411.634130px;}
.y74{bottom:414.342736px;}
.y36{bottom:415.933817px;}
.y2a{bottom:423.974750px;}
.y49{bottom:426.535860px;}
.ya7{bottom:426.668621px;}
.yb7{bottom:434.196020px;}
.y6a{bottom:490.504322px;}
.ya6{bottom:490.779172px;}
.y10{bottom:536.139165px;}
.h6{height:28.080001px;}
.h5{height:37.440002px;}
.h1a{height:42.120001px;}
.h13{height:46.800000px;}
.h3{height:51.480003px;}
.h8{height:55.724514px;}
.h15{height:56.160002px;}
.h1d{height:60.840004px;}
.h1b{height:61.064385px;}
.h10{height:65.520000px;}
.h1e{height:70.200002px;}
.hb{height:71.760001px;}
.hd{height:74.880005px;}
.h12{height:79.560000px;}
.h2{height:84.240003px;}
.h18{height:88.920005px;}
.h11{height:93.600001px;}
.h1c{height:98.280003px;}
.h19{height:102.960006px;}
.h14{height:107.640001px;}
.h4{height:117.936004px;}
.h9{height:121.680009px;}
.h16{height:129.636006px;}
.h1f{height:135.720009px;}
.hc{height:138.996004px;}
.he{height:145.080000px;}
.h1{height:151.631994px;}
.h7{height:168.480005px;}
.hf{height:182.520006px;}
.h17{height:184.392019px;}
.ha{height:236.808008px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3f{left:30.310040px;}
.x45{left:35.713584px;}
.x8{left:46.939963px;}
.x48{left:51.190427px;}
.xd{left:54.744088px;}
.x2e{left:56.253073px;}
.x1d{left:64.641733px;}
.x3a{left:66.237552px;}
.x18{left:72.521080px;}
.x3c{left:75.784808px;}
.x2b{left:77.040358px;}
.x9{left:80.001970px;}
.x1b{left:81.972048px;}
.x46{left:83.754925px;}
.xb{left:85.027565px;}
.x39{left:89.243095px;}
.x2f{left:92.672247px;}
.x1{left:97.478344px;}
.x28{left:100.939964px;}
.x25{left:104.085934px;}
.xc{left:106.136223px;}
.x15{left:110.099411px;}
.x11{left:112.100777px;}
.x17{left:116.985244px;}
.x1c{left:118.641734px;}
.x1f{left:139.275589px;}
.x24{left:150.525590px;}
.x10{left:159.693901px;}
.x12{left:172.119223px;}
.x16{left:184.485246px;}
.x35{left:186.735246px;}
.x13{left:191.374757px;}
.x27{left:210.194365px;}
.x34{left:222.750007px;}
.x3d{left:225.089422px;}
.x2{left:233.033396px;}
.x49{left:242.599969px;}
.x19{left:246.373174px;}
.x7{left:248.542332px;}
.x1a{left:269.397650px;}
.x40{left:281.204503px;}
.x1e{left:289.736514px;}
.x3b{left:303.045805px;}
.x4a{left:356.553251px;}
.x21{left:370.169663px;}
.x2d{left:375.147406px;}
.x47{left:379.138287px;}
.x2a{left:382.768696px;}
.xe{left:384.742632px;}
.x4b{left:390.868314px;}
.x4{left:395.545288px;}
.x4c{left:405.023649px;}
.x44{left:417.983278px;}
.xa{left:429.676214px;}
.x6{left:447.063461px;}
.x14{left:448.699942px;}
.x26{left:468.165547px;}
.x41{left:475.839578px;}
.x42{left:491.985619px;}
.x5{left:519.109273px;}
.x3{left:540.000029px;}
.x29{left:580.880944px;}
.x31{left:583.597591px;}
.x33{left:585.492046px;}
.x32{left:587.883736px;}
.x20{left:601.077732px;}
.x30{left:623.861232px;}
.x38{left:647.698858px;}
.x36{left:658.390753px;}
.x2c{left:673.739234px;}
.x37{left:701.698860px;}
.x22{left:725.190998px;}
.x3e{left:742.083706px;}
.x43{left:853.963610px;}
.xf{left:906.525637px;}
.x23{left:938.025638px;}
@media print{
.v1{vertical-align:-29.392681pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.319453pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:95.975194pt;}
.ls2{letter-spacing:95.988101pt;}
.ls4{letter-spacing:95.991610pt;}
.ls3{letter-spacing:95.991778pt;}
.ls7{letter-spacing:95.996613pt;}
.ls5{letter-spacing:95.999987pt;}
.ls9{letter-spacing:96.000315pt;}
.ls6{letter-spacing:96.000379pt;}
.ls1{letter-spacing:671.406061pt;}
.ws7{word-spacing:-40.780798pt;}
.wsf{word-spacing:-34.613336pt;}
.wsb{word-spacing:-28.949334pt;}
.ws10{word-spacing:-26.432001pt;}
.ws8{word-spacing:-25.173334pt;}
.ws6{word-spacing:-22.656001pt;}
.ws9{word-spacing:-21.397333pt;}
.ws4{word-spacing:-20.138668pt;}
.ws11{word-spacing:-18.880001pt;}
.wsa{word-spacing:-16.362668pt;}
.wsc{word-spacing:-15.104000pt;}
.ws3{word-spacing:-13.845334pt;}
.ws5{word-spacing:-13.493334pt;}
.wsd{word-spacing:-11.328000pt;}
.ws1{word-spacing:-10.069334pt;}
.ws2{word-spacing:-9.525558pt;}
.wse{word-spacing:-7.552000pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-12.288000pt;}
._d{margin-left:-10.486401pt;}
._4{margin-left:-8.736000pt;}
._2{margin-left:-7.584000pt;}
._8{margin-left:-6.419398pt;}
._3{margin-left:-5.184000pt;}
._9{margin-left:-3.520000pt;}
._1{margin-left:-2.073600pt;}
._0{margin-left:-1.036800pt;}
._5{width:0.960000pt;}
._6{width:2.073600pt;}
._a{width:3.107200pt;}
._b{width:95.991773pt;}
._c{width:965.192077pt;}
.fs5{font-size:26.666667pt;}
.fs6{font-size:32.000001pt;}
.fs1c{font-size:37.333333pt;}
.fs8{font-size:41.415469pt;}
.fs4{font-size:42.666669pt;}
.fs1b{font-size:48.000002pt;}
.fsb{font-size:53.333334pt;}
.fs2{font-size:58.666670pt;}
.fs15{font-size:64.000002pt;}
.fs13{font-size:69.333338pt;}
.fs10{font-size:74.666666pt;}
.fs1a{font-size:80.000003pt;}
.fsd{font-size:85.333339pt;}
.fs12{font-size:90.666667pt;}
.fs1{font-size:96.000003pt;}
.fs18{font-size:101.333339pt;}
.fs11{font-size:106.666667pt;}
.fs1e{font-size:112.000004pt;}
.fs19{font-size:117.333340pt;}
.fs14{font-size:122.666668pt;}
.fs3{font-size:134.400004pt;}
.fs9{font-size:138.666676pt;}
.fs1d{font-size:146.666677pt;}
.fs16{font-size:147.733341pt;}
.fs1f{font-size:154.666677pt;}
.fsc{font-size:158.400005pt;}
.fse{font-size:165.333333pt;}
.fs0{font-size:172.799994pt;}
.fsa{font-size:176.000006pt;}
.fs7{font-size:192.000006pt;}
.fsf{font-size:208.000007pt;}
.fs17{font-size:210.133355pt;}
.y7c{bottom:-20.520018pt;}
.y40{bottom:-11.177018pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:6.645013pt;}
.y9d{bottom:8.416043pt;}
.yb6{bottom:8.747604pt;}
.y3f{bottom:15.382983pt;}
.y16{bottom:15.422480pt;}
.y6e{bottom:16.477263pt;}
.y12{bottom:19.445013pt;}
.yc2{bottom:19.556823pt;}
.y11{bottom:19.935823pt;}
.y7d{bottom:23.822023pt;}
.y3d{bottom:24.799354pt;}
.y8c{bottom:24.864137pt;}
.y6d{bottom:24.938266pt;}
.y63{bottom:26.383704pt;}
.y3e{bottom:32.982984pt;}
.yb5{bottom:35.096980pt;}
.y46{bottom:35.158944pt;}
.y6c{bottom:40.337944pt;}
.y35{bottom:40.546384pt;}
.y7b{bottom:40.563024pt;}
.y26{bottom:46.810384pt;}
.y61{bottom:47.995844pt;}
.y45{bottom:49.718944pt;}
.y9b{bottom:49.936284pt;}
.yc1{bottom:49.951964pt;}
.yb3{bottom:51.581014pt;}
.y6b{bottom:53.137944pt;}
.y9c{bottom:53.382884pt;}
.y29{bottom:53.841704pt;}
.y62{bottom:60.130085pt;}
.y3c{bottom:61.878975pt;}
.yb4{bottom:63.896985pt;}
.y44{bottom:67.318945pt;}
.ycb{bottom:68.595255pt;}
.y14{bottom:68.868535pt;}
.y9a{bottom:69.776255pt;}
.y34{bottom:71.266385pt;}
.y60{bottom:71.515875pt;}
.y25{bottom:73.050385pt;}
.y17{bottom:74.358945pt;}
.y87{bottom:75.882005pt;}
.y24{bottom:77.285455pt;}
.yb2{bottom:80.061025pt;}
.y52{bottom:80.423025pt;}
.yc0{bottom:83.551975pt;}
.yca{bottom:92.595256pt;}
.y5f{bottom:95.035896pt;}
.y69{bottom:95.932206pt;}
.y99{bottom:98.576236pt;}
.y23{bottom:103.525456pt;}
.y51{bottom:103.543016pt;}
.y86{bottom:104.682026pt;}
.y6{bottom:106.879586pt;}
.yb1{bottom:107.261006pt;}
.y33{bottom:107.426396pt;}
.yc9{bottom:116.595256pt;}
.ybf{bottom:117.151986pt;}
.y5e{bottom:118.555917pt;}
.y3b{bottom:121.718977pt;}
.y5{bottom:124.479582pt;}
.y50{bottom:126.582997pt;}
.ya5{bottom:126.776937pt;}
.y98{bottom:127.376257pt;}
.y22{bottom:131.883367pt;}
.y85{bottom:133.482027pt;}
.yb0{bottom:134.461017pt;}
.yf{bottom:135.496997pt;}
.y68{bottom:139.852187pt;}
.yc8{bottom:140.595257pt;}
.y5d{bottom:142.075887pt;}
.y32{bottom:143.586397pt;}
.y4{bottom:144.319587pt;}
.y7a{bottom:147.504687pt;}
.ybe{bottom:150.751988pt;}
.ya4{bottom:152.536928pt;}
.y97{bottom:156.176258pt;}
.ycd{bottom:158.419204pt;}
.yaf{bottom:161.661018pt;}
.y84{bottom:162.282028pt;}
.ye{bottom:164.296998pt;}
.yc7{bottom:164.595258pt;}
.y4f{bottom:165.462998pt;}
.y21{bottom:165.483358pt;}
.y5c{bottom:165.595878pt;}
.y1c{bottom:168.918952pt;}
.y3a{bottom:171.318968pt;}
.y31{bottom:171.746418pt;}
.ya3{bottom:178.296918pt;}
.y67{bottom:182.172179pt;}
.y79{bottom:182.464679pt;}
.ybd{bottom:184.351999pt;}
.y96{bottom:184.976259pt;}
.y1b{bottom:186.518949pt;}
.ycc{bottom:187.219209pt;}
.yc6{bottom:188.595259pt;}
.yae{bottom:188.861019pt;}
.y5b{bottom:189.115869pt;}
.y73{bottom:190.223979pt;}
.y83{bottom:191.082029pt;}
.yd{bottom:193.096999pt;}
.ya2{bottom:204.056919pt;}
.y1a{bottom:204.118949pt;}
.y8f{bottom:206.767979pt;}
.y30{bottom:207.906419pt;}
.y3{bottom:212.104050pt;}
.yc5{bottom:212.595260pt;}
.y5a{bottom:212.635850pt;}
.y95{bottom:213.776260pt;}
.yad{bottom:216.061010pt;}
.y78{bottom:217.424670pt;}
.ybc{bottom:217.952010pt;}
.y20{bottom:218.283340pt;}
.y82{bottom:219.882030pt;}
.y39{bottom:220.918960pt;}
.y19{bottom:221.718950pt;}
.yc{bottom:221.897000pt;}
.y66{bottom:224.492170pt;}
.yd0{bottom:228.356320pt;}
.ya1{bottom:229.816910pt;}
.y8b{bottom:230.690076pt;}
.y72{bottom:234.543980pt;}
.y2f{bottom:236.066430pt;}
.y59{bottom:236.155860pt;}
.yc4{bottom:236.595263pt;}
.y4e{bottom:237.543010pt;}
.y18{bottom:239.318950pt;}
.y94{bottom:242.576260pt;}
.y8a{bottom:242.607990pt;}
.y28{bottom:243.136811pt;}
.yac{bottom:243.261011pt;}
.y81{bottom:248.682021pt;}
.yb{bottom:250.697001pt;}
.ybb{bottom:251.552011pt;}
.y77{bottom:254.064671pt;}
.ya0{bottom:255.576911pt;}
.y58{bottom:259.675866pt;}
.yc3{bottom:260.595262pt;}
.y2{bottom:263.944051pt;}
.y2e{bottom:264.226431pt;}
.y8e{bottom:266.063991pt;}
.y4d{bottom:266.103001pt;}
.y65{bottom:266.812166pt;}
.y48{bottom:268.528001pt;}
.yab{bottom:270.461011pt;}
.y38{bottom:270.518951pt;}
.y1f{bottom:271.083351pt;}
.y93{bottom:271.376251pt;}
.ycf{bottom:274.756322pt;}
.y80{bottom:277.482022pt;}
.y43{bottom:278.488602pt;}
.y71{bottom:278.863992pt;}
.ya{bottom:279.496992pt;}
.y9f{bottom:281.336902pt;}
.y57{bottom:283.195862pt;}
.yba{bottom:285.152012pt;}
.y2d{bottom:292.386432pt;}
.y15{bottom:292.719997pt;}
.y76{bottom:292.864662pt;}
.y27{bottom:294.112810pt;}
.y89{bottom:294.447992pt;}
.y6f{bottom:294.447998pt;}
.y4c{bottom:294.663002pt;}
.yaa{bottom:297.661007pt;}
.y92{bottom:300.176252pt;}
.y7f{bottom:306.282029pt;}
.y56{bottom:306.715863pt;}
.y9e{bottom:307.096900pt;}
.y42{bottom:307.288609pt;}
.y9{bottom:308.296993pt;}
.y64{bottom:309.132163pt;}
.y8d{bottom:310.383993pt;}
.y1{bottom:315.784051pt;}
.yb9{bottom:318.752019pt;}
.y37{bottom:320.118953pt;}
.y47{bottom:320.367993pt;}
.y2c{bottom:320.546443pt;}
.y70{bottom:323.183993pt;}
.y1e{bottom:323.883345pt;}
.y4b{bottom:324.422993pt;}
.ya9{bottom:324.861003pt;}
.y91{bottom:328.976259pt;}
.y75{bottom:329.504658pt;}
.y55{bottom:330.235858pt;}
.y53{bottom:332.856895pt;}
.y7e{bottom:335.082033pt;}
.y41{bottom:336.088613pt;}
.y8{bottom:337.097000pt;}
.yce{bottom:342.746124pt;}
.y88{bottom:346.287988pt;}
.y1d{bottom:347.536264pt;}
.y2b{bottom:348.706444pt;}
.ya8{bottom:352.060999pt;}
.yb8{bottom:352.352018pt;}
.y54{bottom:353.755856pt;}
.y4a{bottom:355.622989pt;}
.y90{bottom:357.776264pt;}
.y7{bottom:365.897004pt;}
.y74{bottom:368.304655pt;}
.y36{bottom:369.718949pt;}
.y2a{bottom:376.866445pt;}
.y49{bottom:379.142987pt;}
.ya7{bottom:379.260997pt;}
.yb7{bottom:385.952018pt;}
.y6a{bottom:436.003842pt;}
.ya6{bottom:436.248153pt;}
.y10{bottom:476.568147pt;}
.h6{height:24.960001pt;}
.h5{height:33.280002pt;}
.h1a{height:37.440001pt;}
.h13{height:41.600000pt;}
.h3{height:45.760003pt;}
.h8{height:49.532901pt;}
.h15{height:49.920002pt;}
.h1d{height:54.080004pt;}
.h1b{height:54.279454pt;}
.h10{height:58.240000pt;}
.h1e{height:62.400002pt;}
.hb{height:63.786667pt;}
.hd{height:66.560004pt;}
.h12{height:70.720000pt;}
.h2{height:74.880002pt;}
.h18{height:79.040005pt;}
.h11{height:83.200001pt;}
.h1c{height:87.360003pt;}
.h19{height:91.520005pt;}
.h14{height:95.680001pt;}
.h4{height:104.832003pt;}
.h9{height:108.160008pt;}
.h16{height:115.232006pt;}
.h1f{height:120.640008pt;}
.hc{height:123.552004pt;}
.he{height:128.960000pt;}
.h1{height:134.783995pt;}
.h7{height:149.760005pt;}
.hf{height:162.240005pt;}
.h17{height:163.904017pt;}
.ha{height:210.496007pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:26.942258pt;}
.x45{left:31.745408pt;}
.x8{left:41.724411pt;}
.x48{left:45.502601pt;}
.xd{left:48.661412pt;}
.x2e{left:50.002732pt;}
.x1d{left:57.459318pt;}
.x3a{left:58.877824pt;}
.x18{left:64.463182pt;}
.x3c{left:67.364274pt;}
.x2b{left:68.480318pt;}
.x9{left:71.112862pt;}
.x1b{left:72.864042pt;}
.x46{left:74.448822pt;}
.xb{left:75.580057pt;}
.x39{left:79.327196pt;}
.x2f{left:82.375331pt;}
.x1{left:86.647417pt;}
.x28{left:89.724413pt;}
.x25{left:92.520830pt;}
.xc{left:94.343309pt;}
.x15{left:97.866143pt;}
.x11{left:99.645135pt;}
.x17{left:103.986883pt;}
.x1c{left:105.459319pt;}
.x1f{left:123.800524pt;}
.x24{left:133.800524pt;}
.x10{left:141.950135pt;}
.x12{left:152.994865pt;}
.x16{left:163.986885pt;}
.x35{left:165.986885pt;}
.x13{left:170.110895pt;}
.x27{left:186.839436pt;}
.x34{left:198.000006pt;}
.x3d{left:200.079486pt;}
.x2{left:207.140797pt;}
.x49{left:215.644417pt;}
.x19{left:218.998377pt;}
.x7{left:220.926517pt;}
.x1a{left:239.464578pt;}
.x40{left:249.959558pt;}
.x1e{left:257.543568pt;}
.x3b{left:269.374049pt;}
.x4a{left:316.936223pt;}
.x21{left:329.039701pt;}
.x2d{left:333.464361pt;}
.x47{left:337.011811pt;}
.x2a{left:340.238841pt;}
.xe{left:341.993451pt;}
.x4b{left:347.438501pt;}
.x4{left:351.595811pt;}
.x4c{left:360.021022pt;}
.x44{left:371.540692pt;}
.xa{left:381.934412pt;}
.x6{left:397.389743pt;}
.x14{left:398.844393pt;}
.x26{left:416.147153pt;}
.x41{left:422.968514pt;}
.x42{left:437.320550pt;}
.x5{left:461.430465pt;}
.x3{left:480.000025pt;}
.x29{left:516.338617pt;}
.x31{left:518.753415pt;}
.x33{left:520.437375pt;}
.x32{left:522.563321pt;}
.x20{left:534.291317pt;}
.x30{left:554.543318pt;}
.x38{left:575.732318pt;}
.x36{left:585.236225pt;}
.x2c{left:598.879319pt;}
.x37{left:623.732320pt;}
.x22{left:644.614221pt;}
.x3e{left:659.629961pt;}
.x43{left:759.078764pt;}
.xf{left:805.800566pt;}
.x23{left:833.800567pt;}
}




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