
    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_eb587fe4220e0bfc08869d3d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.951172;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_376c425bea368605697ada23.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_4d998c2090c8babe6dfe3723.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_75dda0f617f1b3a821a0094b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.746094;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.056761px;}
.ls3{letter-spacing:0.071845px;}
.ls2{letter-spacing:0.086821px;}
.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;}
}
.wsd{word-spacing:-79.776003px;}
.ws7{word-spacing:-46.536000px;}
.wsa{word-spacing:-41.882401px;}
.ws9{word-spacing:-33.240000px;}
.ws4{word-spacing:-31.578002px;}
.wsc{word-spacing:-28.254000px;}
.ws6{word-spacing:-26.592002px;}
.ws5{word-spacing:-24.930001px;}
.ws2{word-spacing:-23.268000px;}
.ws8{word-spacing:-21.606002px;}
.ws1{word-spacing:-19.944001px;}
.ws3{word-spacing:-18.282001px;}
.wsb{word-spacing:-0.102000px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-16.245601px;}
._9{margin-left:-12.252000px;}
._b{margin-left:-11.188800px;}
._a{margin-left:-9.900000px;}
._1{margin-left:-8.316000px;}
._7{margin-left:-7.260000px;}
._0{margin-left:-6.216000px;}
._3{margin-left:-4.620000px;}
._2{margin-left:-3.108000px;}
._5{margin-left:-1.512000px;}
._4{width:1.535790px;}
._c{width:2.742450px;}
._6{width:107.980497px;}
.fc5{color:rgb(14,16,26);}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(0,151,167);}
.fc1{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:61.200006px;}
.fs8{font-size:66.000004px;}
.fs5{font-size:71.400004px;}
.fs2{font-size:72.000002px;}
.fse{font-size:78.000005px;}
.fs0{font-size:84.000000px;}
.fs7{font-size:90.000003px;}
.fsb{font-size:96.000006px;}
.fsd{font-size:102.000000px;}
.fs4{font-size:108.000003px;}
.fsa{font-size:114.000007px;}
.fs9{font-size:120.000001px;}
.fs3{font-size:144.000005px;}
.fs1{font-size:151.200005px;}
.fsc{font-size:167.999999px;}
.fsf{font-size:288.000009px;}
.y0{bottom:0.000000px;}
.y1{bottom:16.982702px;}
.y10d{bottom:54.641187px;}
.y48{bottom:59.064907px;}
.y123{bottom:60.148085px;}
.y42{bottom:65.556203px;}
.yb8{bottom:66.935908px;}
.y9d{bottom:70.295799px;}
.ya0{bottom:75.382298px;}
.y8d{bottom:78.215889px;}
.ye{bottom:79.506872px;}
.yed{bottom:82.971242px;}
.y10c{bottom:84.875890px;}
.y6e{bottom:85.601560px;}
.yca{bottom:86.167457px;}
.y41{bottom:88.047204px;}
.ydd{bottom:90.171276px;}
.yb7{bottom:90.335886px;}
.y1f{bottom:91.833334px;}
.yfa{bottom:93.335912px;}
.y30{bottom:94.653215px;}
.y9c{bottom:95.495822px;}
.y63{bottom:98.973445px;}
.y120{bottom:103.970450px;}
.y8c{bottom:107.015890px;}
.yd{bottom:108.486884px;}
.yec{bottom:109.971243px;}
.y40{bottom:110.538216px;}
.yc9{bottom:111.367492px;}
.y6d{bottom:112.601560px;}
.ydc{bottom:117.171277px;}
.y10b{bottom:120.065891px;}
.y9b{bottom:120.695857px;}
.y1e{bottom:120.813346px;}
.yf9{bottom:122.315924px;}
.y2f{bottom:123.633228px;}
.y62{bottom:125.973446px;}
.yb6{bottom:128.735928px;}
.y11f{bottom:132.770462px;}
.y3f{bottom:133.029217px;}
.y77{bottom:133.150024px;}
.y8b{bottom:135.815891px;}
.yc8{bottom:136.567515px;}
.yeb{bottom:136.971244px;}
.yc{bottom:137.466896px;}
.y6c{bottom:139.601561px;}
.ya7{bottom:148.745449px;}
.ydf{bottom:149.074249px;}
.y1d{bottom:149.793358px;}
.yf8{bottom:151.295937px;}
.yb5{bottom:152.135907px;}
.y2e{bottom:152.613240px;}
.y61{bottom:152.973447px;}
.y10a{bottom:155.255892px;}
.y3e{bottom:155.520229px;}
.y12c{bottom:157.229983px;}
.y76{bottom:157.900024px;}
.y11e{bottom:161.570463px;}
.yc7{bottom:161.767538px;}
.y9a{bottom:163.895892px;}
.y8a{bottom:164.615892px;}
.yb{bottom:166.446897px;}
.y6b{bottom:166.601562px;}
.ydb{bottom:167.571267px;}
.y11{bottom:169.749098px;}
.y102{bottom:173.460204px;}
.yde{bottom:173.824250px;}
.yb4{bottom:175.535896px;}
.y3d{bottom:178.011229px;}
.y1c{bottom:178.773371px;}
.yf7{bottom:180.275949px;}
.y2d{bottom:181.593252px;}
.y75{bottom:182.650029px;}
.ya6{bottom:183.935461px;}
.yc6{bottom:186.967573px;}
.y99{bottom:189.095915px;}
.y109{bottom:190.445904px;}
.yea{bottom:190.971245px;}
.y10{bottom:194.589099px;}
.ya{bottom:195.426887px;}
.y128{bottom:200.429973px;}
.y3c{bottom:200.502230px;}
.y6a{bottom:202.601563px;}
.y60{bottom:203.373437px;}
.yda{bottom:203.571268px;}
.y24{bottom:205.631683px;}
.y74{bottom:207.400029px;}
.y1b{bottom:207.753349px;}
.y11d{bottom:208.370476px;}
.yf6{bottom:209.255950px;}
.yb3{bottom:213.935894px;}
.y98{bottom:214.295939px;}
.y89{bottom:217.895950px;}
.ye9{bottom:217.971246px;}
.y101{bottom:222.240205px;}
.y3b{bottom:222.993242px;}
.y9{bottom:224.406876px;}
.y108{bottom:225.635905px;}
.y2c{bottom:228.573208px;}
.yfe{bottom:232.824251px;}
.ya5{bottom:237.125463px;}
.yb2{bottom:237.335894px;}
.yc5{bottom:237.367597px;}
.yf5{bottom:238.235939px;}
.y5f{bottom:239.373438px;}
.yd9{bottom:239.571269px;}
.y88{bottom:243.095951px;}
.y12b{bottom:243.629964px;}
.y125{bottom:243.629997px;}
.ye8{bottom:244.971270px;}
.y1a{bottom:245.013350px;}
.y3a{bottom:245.484231px;}
.y80{bottom:245.669197px;}
.yfd{bottom:256.764251px;}
.y97{bottom:257.495940px;}
.y107{bottom:260.825906px;}
.y23{bottom:260.891685px;}
.yc4{bottom:262.567586px;}
.y73{bottom:263.159633px;}
.y4f{bottom:263.741085px;}
.y11c{bottom:265.970489px;}
.y39{bottom:267.975221px;}
.y87{bottom:268.295940px;}
.y100{bottom:271.020207px;}
.yd2{bottom:271.125934px;}
.ya4{bottom:272.315464px;}
.y19{bottom:273.993340px;}
.y69{bottom:274.601566px;}
.y5e{bottom:275.373439px;}
.y2b{bottom:275.553210px;}
.yd8{bottom:275.571271px;}
.yb1{bottom:275.735903px;}
.y7f{bottom:278.069187px;}
.ye7{bottom:279.171271px;}
.yfc{bottom:280.704255px;}
.y8{bottom:282.366867px;}
.y96{bottom:282.695930px;}
.y4e{bottom:283.541086px;}
.yf4{bottom:285.215930px;}
.y126{bottom:286.829976px;}
.yc3{bottom:287.767587px;}
.y58{bottom:289.445322px;}
.y38{bottom:290.466210px;}
.y11b{bottom:294.770478px;}
.yb0{bottom:299.135904px;}
.y72{bottom:299.159635px;}
.y18{bottom:302.973330px;}
.ye6{bottom:306.171272px;}
.ya3{bottom:307.505449px;}
.y95{bottom:307.895919px;}
.y7e{bottom:310.469177px;}
.y68{bottom:310.601567px;}
.y7{bottom:311.346868px;}
.y5d{bottom:311.373441px;}
.yd7{bottom:311.571272px;}
.y37{bottom:312.957200px;}
.yc2{bottom:312.967577px;}
.y57{bottom:314.195323px;}
.yf3{bottom:314.195931px;}
.y22{bottom:316.151687px;}
.y86{bottom:318.695931px;}
.yff{bottom:319.800209px;}
.y2a{bottom:322.533200px;}
.yfb{bottom:322.644256px;}
.y11a{bottom:323.570468px;}
.yd1{bottom:326.385936px;}
.y4d{bottom:328.721099px;}
.y12a{bottom:330.029978px;}
.y124{bottom:330.029989px;}
.y106{bottom:331.205909px;}
.y46{bottom:331.655897px;}
.y17{bottom:331.953331px;}
.ye5{bottom:333.171272px;}
.y71{bottom:335.159636px;}
.y36{bottom:335.448178px;}
.yaf{bottom:337.535901px;}
.yc1{bottom:338.167566px;}
.y56{bottom:338.945324px;}
.y6{bottom:340.326858px;}
.y113{bottom:342.866446px;}
.y7d{bottom:342.869178px;}
.yf2{bottom:343.175920px;}
.y85{bottom:343.895920px;}
.y67{bottom:346.601568px;}
.y5c{bottom:347.373419px;}
.yd6{bottom:347.571273px;}
.y94{bottom:351.095921px;}
.y119{bottom:352.370458px;}
.y35{bottom:357.174179px;}
.y45{bottom:358.655898px;}
.y16{bottom:360.933320px;}
.yae{bottom:360.935908px;}
.ya2{bottom:362.585440px;}
.y55{bottom:363.695325px;}
.y4c{bottom:365.981089px;}
.y105{bottom:366.395910px;}
.ye4{bottom:367.371262px;}
.y5{bottom:369.306855px;}
.y29{bottom:369.513202px;}
.y21{bottom:371.411689px;}
.yf1{bottom:372.155921px;}
.y127{bottom:373.229990px;}
.y7c{bottom:375.269186px;}
.y93{bottom:376.295910px;}
.y34{bottom:376.452179px;}
.y118{bottom:381.170459px;}
.yd0{bottom:381.645938px;}
.y66{bottom:382.601569px;}
.y5b{bottom:383.373420px;}
.y112{bottom:383.546459px;}
.yd5{bottom:383.571263px;}
.yad{bottom:384.335903px;}
.yc0{bottom:387.487557px;}
.y84{bottom:387.815922px;}
.y54{bottom:388.445314px;}
.y15{bottom:389.913321px;}
.ycf{bottom:392.315922px;}
.ye3{bottom:394.371252px;}
.y33{bottom:396.495184px;}
.y4{bottom:398.286851px;}
.yf0{bottom:401.135911px;}
.y92{bottom:401.495905px;}
.y104{bottom:401.585908px;}
.y4b{bottom:403.241090px;}
.ya1{bottom:403.985435px;}
.y70{bottom:407.159638px;}
.ybf{bottom:407.287557px;}
.y7b{bottom:407.669176px;}
.y117{bottom:409.970448px;}
.y44{bottom:412.655903px;}
.y53{bottom:413.195315px;}
.y129{bottom:416.429980px;}
.y28{bottom:416.493192px;}
.y83{bottom:416.615911px;}
.y65{bottom:418.601570px;}
.yce{bottom:421.295912px;}
.yac{bottom:422.735900px;}
.y111{bottom:424.226438px;}
.yd4{bottom:424.971260px;}
.y14{bottom:427.173311px;}
.ybe{bottom:428.167558px;}
.ye2{bottom:428.571253px;}
.yef{bottom:430.115908px;}
.y103{bottom:436.775903px;}
.y32{bottom:436.986187px;}
.y116{bottom:438.770438px;}
.y43{bottom:439.655902px;}
.y7a{bottom:440.069173px;}
.y4a{bottom:440.501102px;}
.y5a{bottom:440.613422px;}
.y6f{bottom:443.159639px;}
.y91{bottom:444.695912px;}
.y82{bottom:445.415901px;}
.y27{bottom:445.473189px;}
.yab{bottom:446.135901px;}
.ycd{bottom:446.495907px;}
.ybd{bottom:453.367559px;}
.ye1{bottom:455.571257px;}
.y13{bottom:456.153309px;}
.yee{bottom:459.095904px;}
.y52{bottom:462.695317px;}
.y3{bottom:463.164997px;}
.y110{bottom:464.906439px;}
.yaa{bottom:469.535902px;}
.y90{bottom:469.895906px;}
.ycc{bottom:471.695909px;}
.y26{bottom:474.453185px;}
.y59{bottom:475.173423px;}
.y31{bottom:477.477185px;}
.ybc{bottom:477.487553px;}
.y49{bottom:477.761103px;}
.y9f{bottom:480.015000px;}
.ye0{bottom:482.571256px;}
.yd3{bottom:484.371255px;}
.y12{bottom:485.133304px;}
.y115{bottom:485.570428px;}
.y51{bottom:487.445316px;}
.y10f{bottom:487.586435px;}
.y81{bottom:492.215903px;}
.y8f{bottom:495.095905px;}
.y78{bottom:496.251255px;}
.ybb{bottom:498.367551px;}
.y64{bottom:499.165000px;}
.ycb{bottom:504.095905px;}
.y9e{bottom:505.214999px;}
.ya9{bottom:508.165000px;}
.y2{bottom:508.524991px;}
.y20{bottom:510.252988px;}
.y122{bottom:511.909095px;}
.y25{bottom:526.524993px;}
.y10e{bottom:528.266432px;}
.y114{bottom:532.370430px;}
.y79{bottom:535.524993px;}
.yb9{bottom:537.674645px;}
.yf{bottom:544.524993px;}
.y8e{bottom:548.055003px;}
.yba{bottom:549.880909px;}
.ya8{bottom:553.524994px;}
.y50{bottom:557.083065px;}
.y121{bottom:557.269088px;}
.y47{bottom:562.524994px;}
.h9{height:45.332231px;}
.hb{height:48.887698px;}
.h7{height:51.981155px;}
.h8{height:52.887600px;}
.h4{height:53.332033px;}
.h13{height:56.786137px;}
.h11{height:57.776371px;}
.h3{height:61.154297px;}
.h1{height:62.220703px;}
.h12{height:65.522463px;}
.ha{height:66.665041px;}
.h14{height:69.890629px;}
.he{height:71.109379px;}
.h10{height:75.553711px;}
.h6{height:79.998049px;}
.hd{height:84.442388px;}
.hc{height:88.886719px;}
.h5{height:106.664066px;}
.h2{height:111.997269px;}
.hf{height:124.441406px;}
.h15{height:213.328132px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xb{left:3.980315px;}
.x3{left:37.939962px;}
.x1a{left:40.018702px;}
.x2{left:46.939963px;}
.x19{left:55.863189px;}
.x1{left:58.615161px;}
.xd{left:64.451191px;}
.x1b{left:68.028550px;}
.xe{left:100.939964px;}
.x6{left:154.939966px;}
.x14{left:215.687021px;}
.x5{left:351.887726px;}
.xc{left:479.491958px;}
.x12{left:537.369092px;}
.x7{left:580.880944px;}
.x17{left:594.726432px;}
.x8{left:597.104421px;}
.xa{left:634.880945px;}
.x9{left:652.643931px;}
.xf{left:660.034198px;}
.x10{left:669.944159px;}
.x15{left:679.275162px;}
.x11{left:689.779530px;}
.x16{left:740.513189px;}
.x13{left:758.899037px;}
.x4{left:762.248083px;}
.x18{left:835.680177px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.050454pt;}
.ls3{letter-spacing:0.063862pt;}
.ls2{letter-spacing:0.077174pt;}
.wsd{word-spacing:-70.912002pt;}
.ws7{word-spacing:-41.365333pt;}
.wsa{word-spacing:-37.228801pt;}
.ws9{word-spacing:-29.546667pt;}
.ws4{word-spacing:-28.069335pt;}
.wsc{word-spacing:-25.114667pt;}
.ws6{word-spacing:-23.637335pt;}
.ws5{word-spacing:-22.160001pt;}
.ws2{word-spacing:-20.682667pt;}
.ws8{word-spacing:-19.205335pt;}
.ws1{word-spacing:-17.728001pt;}
.ws3{word-spacing:-16.250668pt;}
.wsb{word-spacing:-0.090667pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-14.440534pt;}
._9{margin-left:-10.890667pt;}
._b{margin-left:-9.945600pt;}
._a{margin-left:-8.800000pt;}
._1{margin-left:-7.392000pt;}
._7{margin-left:-6.453334pt;}
._0{margin-left:-5.525333pt;}
._3{margin-left:-4.106667pt;}
._2{margin-left:-2.762667pt;}
._5{margin-left:-1.344000pt;}
._4{width:1.365147pt;}
._c{width:2.437733pt;}
._6{width:95.982664pt;}
.fs6{font-size:54.400006pt;}
.fs8{font-size:58.666670pt;}
.fs5{font-size:63.466670pt;}
.fs2{font-size:64.000002pt;}
.fse{font-size:69.333338pt;}
.fs0{font-size:74.666666pt;}
.fs7{font-size:80.000003pt;}
.fsb{font-size:85.333339pt;}
.fsd{font-size:90.666667pt;}
.fs4{font-size:96.000003pt;}
.fsa{font-size:101.333339pt;}
.fs9{font-size:106.666667pt;}
.fs3{font-size:128.000004pt;}
.fs1{font-size:134.400004pt;}
.fsc{font-size:149.333333pt;}
.fsf{font-size:256.000008pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:15.095735pt;}
.y10d{bottom:48.569944pt;}
.y48{bottom:52.502139pt;}
.y123{bottom:53.464964pt;}
.y42{bottom:58.272181pt;}
.yb8{bottom:59.498585pt;}
.y9d{bottom:62.485155pt;}
.ya0{bottom:67.006487pt;}
.y8d{bottom:69.525235pt;}
.ye{bottom:70.672775pt;}
.yed{bottom:73.752215pt;}
.y10c{bottom:75.445235pt;}
.y6e{bottom:76.090275pt;}
.yca{bottom:76.593295pt;}
.y41{bottom:78.264181pt;}
.ydd{bottom:80.152245pt;}
.yb7{bottom:80.298565pt;}
.y1f{bottom:81.629630pt;}
.yfa{bottom:82.965255pt;}
.y30{bottom:84.136191pt;}
.y9c{bottom:84.885175pt;}
.y63{bottom:87.976396pt;}
.y120{bottom:92.418178pt;}
.y8c{bottom:95.125236pt;}
.yd{bottom:96.432786pt;}
.yec{bottom:97.752216pt;}
.y40{bottom:98.256192pt;}
.yc9{bottom:98.993326pt;}
.y6d{bottom:100.090276pt;}
.ydc{bottom:104.152246pt;}
.y10b{bottom:106.725236pt;}
.y9b{bottom:107.285206pt;}
.y1e{bottom:107.389641pt;}
.yf9{bottom:108.725266pt;}
.y2f{bottom:109.896202pt;}
.y62{bottom:111.976396pt;}
.yb6{bottom:114.431936pt;}
.y11f{bottom:118.018188pt;}
.y3f{bottom:118.248193pt;}
.y77{bottom:118.355577pt;}
.y8b{bottom:120.725237pt;}
.yc8{bottom:121.393347pt;}
.yeb{bottom:121.752217pt;}
.yc{bottom:122.192797pt;}
.y6c{bottom:124.090277pt;}
.ya7{bottom:132.218177pt;}
.ydf{bottom:132.510444pt;}
.y1d{bottom:133.149652pt;}
.yf8{bottom:134.485277pt;}
.yb5{bottom:135.231917pt;}
.y2e{bottom:135.656213pt;}
.y61{bottom:135.976397pt;}
.y10a{bottom:138.005237pt;}
.y3e{bottom:138.240203pt;}
.y12c{bottom:139.759985pt;}
.y76{bottom:140.355577pt;}
.y11e{bottom:143.618189pt;}
.yc7{bottom:143.793367pt;}
.y9a{bottom:145.685237pt;}
.y8a{bottom:146.325237pt;}
.yb{bottom:147.952797pt;}
.y6b{bottom:148.090277pt;}
.ydb{bottom:148.952237pt;}
.y11{bottom:150.888088pt;}
.y102{bottom:154.186848pt;}
.yde{bottom:154.510445pt;}
.yb4{bottom:156.031908pt;}
.y3d{bottom:158.232204pt;}
.y1c{bottom:158.909663pt;}
.yf7{bottom:160.245288pt;}
.y2d{bottom:161.416224pt;}
.y75{bottom:162.355581pt;}
.ya6{bottom:163.498188pt;}
.yc6{bottom:166.193398pt;}
.y99{bottom:168.085258pt;}
.y109{bottom:169.285248pt;}
.yea{bottom:169.752218pt;}
.y10{bottom:172.968088pt;}
.ya{bottom:173.712788pt;}
.y128{bottom:178.159976pt;}
.y3c{bottom:178.224204pt;}
.y6a{bottom:180.090278pt;}
.y60{bottom:180.776389pt;}
.yda{bottom:180.952239pt;}
.y24{bottom:182.783719pt;}
.y74{bottom:184.355582pt;}
.y1b{bottom:184.669644pt;}
.y11d{bottom:185.218201pt;}
.yf6{bottom:186.005289pt;}
.yb3{bottom:190.165239pt;}
.y98{bottom:190.485279pt;}
.y89{bottom:193.685289pt;}
.ye9{bottom:193.752219pt;}
.y101{bottom:197.546849pt;}
.y3b{bottom:198.216215pt;}
.y9{bottom:199.472779pt;}
.y108{bottom:200.565249pt;}
.y2c{bottom:203.176185pt;}
.yfe{bottom:206.954889pt;}
.ya5{bottom:210.778189pt;}
.yb2{bottom:210.965239pt;}
.yc5{bottom:210.993419pt;}
.yf5{bottom:211.765279pt;}
.y5f{bottom:212.776390pt;}
.yd9{bottom:212.952240pt;}
.y88{bottom:216.085290pt;}
.y12b{bottom:216.559968pt;}
.y125{bottom:216.559998pt;}
.ye8{bottom:217.752240pt;}
.y1a{bottom:217.789645pt;}
.y3a{bottom:218.208206pt;}
.y80{bottom:218.372620pt;}
.yfd{bottom:228.234890pt;}
.y97{bottom:228.885280pt;}
.y107{bottom:231.845250pt;}
.y23{bottom:231.903720pt;}
.yc4{bottom:233.393410pt;}
.y73{bottom:233.919674pt;}
.y4f{bottom:234.436520pt;}
.y11c{bottom:236.418212pt;}
.y39{bottom:238.200196pt;}
.y87{bottom:238.485280pt;}
.y100{bottom:240.906850pt;}
.yd2{bottom:241.000830pt;}
.ya4{bottom:242.058190pt;}
.y19{bottom:243.549636pt;}
.y69{bottom:244.090281pt;}
.y5e{bottom:244.776391pt;}
.y2b{bottom:244.936187pt;}
.yd8{bottom:244.952241pt;}
.yb1{bottom:245.098581pt;}
.y7f{bottom:247.172611pt;}
.ye7{bottom:248.152241pt;}
.yfc{bottom:249.514894pt;}
.y8{bottom:250.992771pt;}
.y96{bottom:251.285271pt;}
.y4e{bottom:252.036521pt;}
.yf4{bottom:253.525271pt;}
.y126{bottom:254.959979pt;}
.yc3{bottom:255.793411pt;}
.y58{bottom:257.284731pt;}
.y38{bottom:258.192187pt;}
.y11b{bottom:262.018203pt;}
.yb0{bottom:265.898581pt;}
.y72{bottom:265.919675pt;}
.y18{bottom:269.309626pt;}
.ye6{bottom:272.152241pt;}
.ya3{bottom:273.338176pt;}
.y95{bottom:273.685261pt;}
.y7e{bottom:275.972602pt;}
.y68{bottom:276.090282pt;}
.y7{bottom:276.752772pt;}
.y5d{bottom:276.776392pt;}
.yd7{bottom:276.952242pt;}
.y37{bottom:278.184178pt;}
.yc2{bottom:278.193402pt;}
.y57{bottom:279.284732pt;}
.yf3{bottom:279.285272pt;}
.y22{bottom:281.023722pt;}
.y86{bottom:283.285272pt;}
.yff{bottom:284.266853pt;}
.y2a{bottom:286.696178pt;}
.yfb{bottom:286.794894pt;}
.y11a{bottom:287.618194pt;}
.yd1{bottom:290.120832pt;}
.y4d{bottom:292.196532pt;}
.y12a{bottom:293.359980pt;}
.y124{bottom:293.359990pt;}
.y106{bottom:294.405252pt;}
.y46{bottom:294.805242pt;}
.y17{bottom:295.069627pt;}
.ye5{bottom:296.152242pt;}
.y71{bottom:297.919676pt;}
.y36{bottom:298.176158pt;}
.yaf{bottom:300.031912pt;}
.yc1{bottom:300.593392pt;}
.y56{bottom:301.284732pt;}
.y6{bottom:302.512762pt;}
.y113{bottom:304.770174pt;}
.y7d{bottom:304.772602pt;}
.yf2{bottom:305.045262pt;}
.y85{bottom:305.685263pt;}
.y67{bottom:308.090283pt;}
.y5c{bottom:308.776373pt;}
.yd6{bottom:308.952243pt;}
.y94{bottom:312.085263pt;}
.y119{bottom:313.218185pt;}
.y35{bottom:317.488159pt;}
.y45{bottom:318.805243pt;}
.y16{bottom:320.829618pt;}
.yae{bottom:320.831918pt;}
.ya2{bottom:322.298169pt;}
.y55{bottom:323.284733pt;}
.y4c{bottom:325.316523pt;}
.y105{bottom:325.685253pt;}
.ye4{bottom:326.552233pt;}
.y5{bottom:328.272760pt;}
.y29{bottom:328.456179pt;}
.y21{bottom:330.143723pt;}
.yf1{bottom:330.805263pt;}
.y127{bottom:331.759991pt;}
.y7c{bottom:333.572609pt;}
.y93{bottom:334.485253pt;}
.y34{bottom:334.624159pt;}
.y118{bottom:338.818186pt;}
.yd0{bottom:339.240834pt;}
.y66{bottom:340.090284pt;}
.y5b{bottom:340.776374pt;}
.y112{bottom:340.930186pt;}
.yd5{bottom:340.952234pt;}
.yad{bottom:341.631914pt;}
.yc0{bottom:344.433384pt;}
.y84{bottom:344.725264pt;}
.y54{bottom:345.284724pt;}
.y15{bottom:346.589619pt;}
.ycf{bottom:348.725264pt;}
.ye3{bottom:350.552224pt;}
.y33{bottom:352.440164pt;}
.y4{bottom:354.032756pt;}
.yf0{bottom:356.565254pt;}
.y92{bottom:356.885249pt;}
.y104{bottom:356.965251pt;}
.y4b{bottom:358.436524pt;}
.ya1{bottom:359.098164pt;}
.y70{bottom:361.919678pt;}
.ybf{bottom:362.033384pt;}
.y7b{bottom:362.372601pt;}
.y117{bottom:364.418176pt;}
.y44{bottom:366.805247pt;}
.y53{bottom:367.284724pt;}
.y129{bottom:370.159983pt;}
.y28{bottom:370.216171pt;}
.y83{bottom:370.325255pt;}
.y65{bottom:372.090285pt;}
.yce{bottom:374.485255pt;}
.yac{bottom:375.765245pt;}
.y111{bottom:377.090167pt;}
.yd4{bottom:377.752231pt;}
.y14{bottom:379.709610pt;}
.ybe{bottom:380.593385pt;}
.ye2{bottom:380.952225pt;}
.yef{bottom:382.325252pt;}
.y103{bottom:388.245247pt;}
.y32{bottom:388.432166pt;}
.y116{bottom:390.018167pt;}
.y43{bottom:390.805246pt;}
.y7a{bottom:391.172598pt;}
.y4a{bottom:391.556535pt;}
.y5a{bottom:391.656375pt;}
.y6f{bottom:393.919679pt;}
.y91{bottom:395.285255pt;}
.y82{bottom:395.925245pt;}
.y27{bottom:395.976168pt;}
.yab{bottom:396.565245pt;}
.ycd{bottom:396.885250pt;}
.ybd{bottom:402.993386pt;}
.ye1{bottom:404.952229pt;}
.y13{bottom:405.469608pt;}
.yee{bottom:408.085248pt;}
.y52{bottom:411.284726pt;}
.y3{bottom:411.702220pt;}
.y110{bottom:413.250168pt;}
.yaa{bottom:417.365246pt;}
.y90{bottom:417.685250pt;}
.ycc{bottom:419.285252pt;}
.y26{bottom:421.736164pt;}
.y59{bottom:422.376376pt;}
.y31{bottom:424.424164pt;}
.ybc{bottom:424.433380pt;}
.y49{bottom:424.676536pt;}
.y9f{bottom:426.680000pt;}
.ye0{bottom:428.952227pt;}
.yd3{bottom:430.552226pt;}
.y12{bottom:431.229604pt;}
.y115{bottom:431.618159pt;}
.y51{bottom:433.284726pt;}
.y10f{bottom:433.410165pt;}
.y81{bottom:437.525247pt;}
.y8f{bottom:440.085249pt;}
.y78{bottom:441.112227pt;}
.ybb{bottom:442.993379pt;}
.y64{bottom:443.702222pt;}
.ycb{bottom:448.085249pt;}
.y9e{bottom:449.079999pt;}
.ya9{bottom:451.702223pt;}
.y2{bottom:452.022214pt;}
.y20{bottom:453.558211pt;}
.y122{bottom:455.030306pt;}
.y25{bottom:468.022216pt;}
.y10e{bottom:469.570162pt;}
.y114{bottom:473.218160pt;}
.y79{bottom:476.022216pt;}
.yb9{bottom:477.933018pt;}
.yf{bottom:484.022216pt;}
.y8e{bottom:487.160002pt;}
.yba{bottom:488.783030pt;}
.ya8{bottom:492.022217pt;}
.y50{bottom:495.184947pt;}
.y121{bottom:495.350301pt;}
.y47{bottom:500.022217pt;}
.h9{height:40.295317pt;}
.hb{height:43.455732pt;}
.h7{height:46.205471pt;}
.h8{height:47.011200pt;}
.h4{height:47.406252pt;}
.h13{height:50.476566pt;}
.h11{height:51.356774pt;}
.h3{height:54.359375pt;}
.h1{height:55.307291pt;}
.h12{height:58.242189pt;}
.ha{height:59.257814pt;}
.h14{height:62.125004pt;}
.he{height:63.208337pt;}
.h10{height:67.158854pt;}
.h6{height:71.109377pt;}
.hd{height:75.059900pt;}
.hc{height:79.010417pt;}
.h5{height:94.812503pt;}
.h2{height:99.553128pt;}
.hf{height:110.614583pt;}
.h15{height:189.625006pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xb{left:3.538058pt;}
.x3{left:33.724411pt;}
.x1a{left:35.572179pt;}
.x2{left:41.724411pt;}
.x19{left:49.656168pt;}
.x1{left:52.102366pt;}
.xd{left:57.289948pt;}
.x1b{left:60.469822pt;}
.xe{left:89.724413pt;}
.x6{left:137.724414pt;}
.x14{left:191.721796pt;}
.x5{left:312.789090pt;}
.xc{left:426.215074pt;}
.x12{left:477.661415pt;}
.x7{left:516.338617pt;}
.x17{left:528.645717pt;}
.x8{left:530.759485pt;}
.xa{left:564.338618pt;}
.x9{left:580.127939pt;}
.xf{left:586.697065pt;}
.x10{left:595.505919pt;}
.x15{left:603.800144pt;}
.x11{left:613.137360pt;}
.x16{left:658.233946pt;}
.x13{left:674.576922pt;}
.x4{left:677.553852pt;}
.x18{left:742.826824pt;}
}




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