
    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_674842aac942fb2d9871636b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121000;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_428d0a41d71c5a2fe2c6fa5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_a739be90b787619da78e8b19.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.028000;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_30adc3877af3c1dfc96b469b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.062000;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_593bd6c2f6870ae0aaf7929c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_0240fc3507987a2a73e0b6df.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.062000;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_3b90262cae939930aaaa9069.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_37d1b95f7f1cdff80187146d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.028000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7e70fbdacbebda9436b58df8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9fce88a2bdf3f623eda5f307.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.028000;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:ffb;src:url('chunks/assets/font_fbc92ad0c5a804d7af74e62d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.069000;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:ffc;src:url('chunks/assets/font_e313adc9ffc29589524db6ee.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.061000;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:ffd;src:url('chunks/assets/font_14501331bcc22e9fec2059d1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005000;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:ffe;src:url('chunks/assets/font_9578c507d907e557bf694af7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.124000;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;}
.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;}
}
.ws1{word-spacing:-18.006785px;}
.ws0{word-spacing:-16.498716px;}
.ws5{word-spacing:-15.001902px;}
.ws7{word-spacing:-12.004672px;}
.ws6{word-spacing:-10.504681px;}
.ws3{word-spacing:-6.996050px;}
.ws4{word-spacing:-5.901460px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-1.007426px;}
._6{width:1.591001px;}
._b{width:2.619211px;}
._2{width:3.753376px;}
._14{width:5.678141px;}
._0{width:7.419695px;}
._37{width:8.429926px;}
._e{width:9.667267px;}
._1a{width:11.510274px;}
._1d{width:13.301708px;}
._19{width:14.480643px;}
._4{width:18.502445px;}
._27{width:19.669223px;}
._22{width:20.713412px;}
._c{width:22.312450px;}
._1c{width:23.831527px;}
._d{width:25.202944px;}
._15{width:26.328636px;}
._7{width:27.360502px;}
._10{width:28.384539px;}
._12{width:29.426493px;}
._16{width:30.494886px;}
._20{width:32.373351px;}
._9{width:33.727526px;}
._18{width:34.848702px;}
._f{width:36.596967px;}
._3{width:37.833441px;}
._36{width:39.093334px;}
._2c{width:40.510008px;}
._2f{width:41.851753px;}
._a{width:43.084710px;}
._1e{width:45.268032px;}
._1b{width:46.723428px;}
._11{width:48.654620px;}
._21{width:49.957533px;}
._13{width:51.879753px;}
._32{width:53.043862px;}
._8{width:54.282981px;}
._30{width:55.778479px;}
._23{width:57.388996px;}
._1f{width:58.896752px;}
._2e{width:60.596604px;}
._33{width:62.166677px;}
._2d{width:63.175275px;}
._29{width:64.800010px;}
._26{width:66.309460px;}
._34{width:68.465954px;}
._2a{width:72.671433px;}
._24{width:75.586920px;}
._38{width:77.348041px;}
._1{width:78.760634px;}
._28{width:82.613776px;}
._2b{width:100.049121px;}
._31{width:101.861358px;}
._17{width:102.883871px;}
._35{width:104.260247px;}
._25{width:116.934612px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.675507px;}
.fs4{font-size:27.984200px;}
.fs6{font-size:29.750527px;}
.fs7{font-size:42.018724px;}
.fs8{font-size:48.018688px;}
.fs3{font-size:60.007609px;}
.fs0{font-size:65.994864px;}
.fs2{font-size:72.027138px;}
.fs1{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yd6{bottom:5.604055px;}
.yd5{bottom:15.520897px;}
.yd4{bottom:25.437740px;}
.yd3{bottom:35.354582px;}
.y52{bottom:43.095078px;}
.yd2{bottom:45.271424px;}
.y8e{bottom:57.777103px;}
.y51{bottom:63.352711px;}
.yd1{bottom:63.495018px;}
.yce{bottom:69.341374px;}
.y8d{bottom:78.034736px;}
.y39{bottom:78.767192px;}
.yca{bottom:79.357787px;}
.y50{bottom:83.610344px;}
.ycd{bottom:87.697305px;}
.ycf{bottom:88.570477px;}
.y38{bottom:101.275673px;}
.yc9{bottom:101.866268px;}
.ycc{bottom:104.835572px;}
.y37{bottom:123.784154px;}
.yc8{bottom:124.374748px;}
.y36{bottom:146.292634px;}
.yc7{bottom:146.883229px;}
.y35{bottom:168.801115px;}
.yc6{bottom:169.391710px;}
.yd7{bottom:177.702007px;}
.y34{bottom:191.309596px;}
.yc5{bottom:191.900190px;}
.ydb{bottom:212.105405px;}
.y33{bottom:213.818076px;}
.yc4{bottom:214.408671px;}
.yda{bottom:228.111635px;}
.y32{bottom:236.326557px;}
.yc3{bottom:236.917151px;}
.yd9{bottom:244.117864px;}
.yc2{bottom:259.425632px;}
.yd0{bottom:268.878324px;}
.y67{bottom:275.893615px;}
.y4a{bottom:281.268495px;}
.y31{bottom:297.931252px;}
.y66{bottom:298.402096px;}
.ycb{bottom:299.625578px;}
.y56{bottom:316.635054px;}
.y30{bottom:320.439733px;}
.y65{bottom:320.910577px;}
.ye4{bottom:325.916915px;}
.y20{bottom:326.210453px;}
.y55{bottom:336.892686px;}
.ya0{bottom:339.825505px;}
.ye3{bottom:341.923145px;}
.y2f{bottom:342.948213px;}
.y64{bottom:343.419057px;}
.y1f{bottom:348.718934px;}
.y54{bottom:357.150319px;}
.ye2{bottom:357.929374px;}
.y9f{bottom:362.333986px;}
.y2e{bottom:365.456694px;}
.y63{bottom:365.927538px;}
.y1e{bottom:371.227415px;}
.ye1{bottom:373.935604px;}
.y53{bottom:377.407951px;}
.y9e{bottom:384.842467px;}
.y2d{bottom:387.965175px;}
.y62{bottom:388.436019px;}
.ye0{bottom:389.941833px;}
.y1d{bottom:393.735895px;}
.ydf{bottom:405.948063px;}
.y9d{bottom:407.350947px;}
.y2c{bottom:410.473655px;}
.y61{bottom:410.944499px;}
.y1c{bottom:416.244376px;}
.yde{bottom:421.954292px;}
.ybe{bottom:425.073584px;}
.y9c{bottom:429.859428px;}
.y2b{bottom:432.982136px;}
.y60{bottom:433.452980px;}
.ydd{bottom:437.960522px;}
.y1b{bottom:438.752857px;}
.ybd{bottom:447.582065px;}
.y9b{bottom:452.367909px;}
.ydc{bottom:453.966751px;}
.y2a{bottom:455.490617px;}
.y5f{bottom:455.961461px;}
.y1a{bottom:461.261337px;}
.ybc{bottom:470.090546px;}
.y9a{bottom:474.876389px;}
.y29{bottom:477.999097px;}
.y5e{bottom:478.469941px;}
.y19{bottom:483.769818px;}
.yd8{bottom:484.900203px;}
.ybb{bottom:492.599026px;}
.y99{bottom:497.384870px;}
.y28{bottom:500.507578px;}
.y5d{bottom:500.978422px;}
.y18{bottom:506.278299px;}
.yba{bottom:515.107507px;}
.y98{bottom:519.893350px;}
.y5c{bottom:523.486903px;}
.y17{bottom:528.786779px;}
.yb9{bottom:537.615988px;}
.y97{bottom:542.401831px;}
.y4c{bottom:545.674516px;}
.y5b{bottom:545.995383px;}
.y16{bottom:551.295260px;}
.y96{bottom:564.910312px;}
.y5a{bottom:568.503864px;}
.y15{bottom:573.803741px;}
.yb8{bottom:582.632949px;}
.y95{bottom:587.418792px;}
.y27{bottom:590.616474px;}
.y59{bottom:591.012345px;}
.y14{bottom:596.312221px;}
.yb7{bottom:605.141430px;}
.y94{bottom:609.927273px;}
.y26{bottom:613.124955px;}
.y58{bottom:613.520825px;}
.y13{bottom:618.820702px;}
.yb6{bottom:627.649910px;}
.y93{bottom:632.435754px;}
.y25{bottom:635.633436px;}
.y12{bottom:641.329183px;}
.yb5{bottom:650.158391px;}
.y57{bottom:653.961061px;}
.y92{bottom:654.944234px;}
.y24{bottom:658.141916px;}
.y11{bottom:663.837663px;}
.yb4{bottom:672.666872px;}
.y91{bottom:677.452715px;}
.y23{bottom:680.650397px;}
.y10{bottom:686.346144px;}
.y4f{bottom:693.425925px;}
.yb3{bottom:695.175352px;}
.y90{bottom:699.961196px;}
.y22{bottom:703.158878px;}
.yf{bottom:708.854625px;}
.y4e{bottom:713.683558px;}
.y7b{bottom:714.387338px;}
.yb2{bottom:717.683833px;}
.y21{bottom:725.667358px;}
.ye{bottom:731.363105px;}
.y4d{bottom:733.941190px;}
.y7a{bottom:736.895819px;}
.yb1{bottom:740.192314px;}
.y8c{bottom:744.354054px;}
.yd{bottom:753.871586px;}
.y79{bottom:759.404300px;}
.yc1{bottom:761.286095px;}
.yb0{bottom:762.700794px;}
.y8b{bottom:766.862535px;}
.y4b{bottom:770.609318px;}
.yc{bottom:776.380067px;}
.yc0{bottom:781.543728px;}
.y78{bottom:781.912780px;}
.yaf{bottom:785.209275px;}
.y8a{bottom:789.371015px;}
.yb{bottom:798.888547px;}
.ybf{bottom:801.801360px;}
.y77{bottom:804.421261px;}
.yae{bottom:807.717756px;}
.y89{bottom:811.879496px;}
.y45{bottom:815.551226px;}
.ya{bottom:821.397028px;}
.y76{bottom:826.929742px;}
.y88{bottom:834.387977px;}
.y44{bottom:838.059706px;}
.y9{bottom:843.905509px;}
.y75{bottom:849.438222px;}
.yad{bottom:852.734717px;}
.y87{bottom:856.896457px;}
.y43{bottom:860.568187px;}
.y8{bottom:866.413989px;}
.y74{bottom:871.946703px;}
.yac{bottom:875.243198px;}
.y86{bottom:879.404938px;}
.y42{bottom:883.076668px;}
.y7{bottom:888.922470px;}
.y73{bottom:894.455184px;}
.yab{bottom:897.751678px;}
.y85{bottom:901.913419px;}
.y41{bottom:905.585148px;}
.y6{bottom:911.430951px;}
.y72{bottom:916.963664px;}
.yaa{bottom:920.260159px;}
.y84{bottom:924.421899px;}
.y40{bottom:928.093629px;}
.y5{bottom:933.939431px;}
.y71{bottom:939.472145px;}
.ya9{bottom:942.768640px;}
.y83{bottom:946.930380px;}
.y3f{bottom:950.602110px;}
.y4{bottom:956.447912px;}
.y70{bottom:961.980626px;}
.ya8{bottom:965.277120px;}
.y82{bottom:969.438861px;}
.y3e{bottom:973.110590px;}
.y3{bottom:978.956393px;}
.y6f{bottom:984.489106px;}
.ya7{bottom:987.785601px;}
.y81{bottom:991.947341px;}
.y3d{bottom:995.619071px;}
.y2{bottom:1001.464873px;}
.y6e{bottom:1006.997587px;}
.y80{bottom:1014.455822px;}
.y3c{bottom:1018.127552px;}
.y6d{bottom:1029.506068px;}
.ya6{bottom:1032.802562px;}
.y7f{bottom:1036.964303px;}
.y49{bottom:1037.409812px;}
.y3b{bottom:1040.636032px;}
.y6c{bottom:1052.014548px;}
.ya5{bottom:1055.311043px;}
.y7e{bottom:1059.472783px;}
.y48{bottom:1062.169141px;}
.y3a{bottom:1063.144513px;}
.y6b{bottom:1074.523029px;}
.ya4{bottom:1077.819524px;}
.y7d{bottom:1081.981264px;}
.y6a{bottom:1097.031510px;}
.ya3{bottom:1100.328004px;}
.y7c{bottom:1104.489745px;}
.y47{bottom:1106.614810px;}
.y69{bottom:1119.539990px;}
.ya2{bottom:1122.836485px;}
.y8f{bottom:1141.073099px;}
.y68{bottom:1142.048471px;}
.ya1{bottom:1145.344966px;}
.y46{bottom:1168.408029px;}
.ha{height:15.033783px;}
.h9{height:22.751155px;}
.hd{height:24.187179px;}
.he{height:34.161222px;}
.hf{height:42.016352px;}
.hb{height:48.786186px;}
.h7{height:48.846194px;}
.h6{height:49.686300px;}
.hc{height:53.639998px;}
.h8{height:53.719820px;}
.h3{height:57.745506px;}
.h5{height:59.638470px;}
.h4{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:43.552352px;}
.x5{left:44.746071px;}
.x1{left:45.939796px;}
.x9{left:47.967125px;}
.xc{left:53.391773px;}
.xa{left:119.519995px;}
.xb{left:127.283452px;}
.x3{left:186.094339px;}
.x2{left:469.235590px;}
.x8{left:496.419632px;}
.x7{left:618.659038px;}
.x6{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.006031pt;}
.ws0{word-spacing:-14.665525pt;}
.ws5{word-spacing:-13.335024pt;}
.ws7{word-spacing:-10.670820pt;}
.ws6{word-spacing:-9.337494pt;}
.ws3{word-spacing:-6.218711pt;}
.ws4{word-spacing:-5.245742pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-0.895490pt;}
._6{width:1.414223pt;}
._b{width:2.328188pt;}
._2{width:3.336335pt;}
._14{width:5.047237pt;}
._0{width:6.595284pt;}
._37{width:7.493268pt;}
._e{width:8.593127pt;}
._1a{width:10.231354pt;}
._1d{width:11.823740pt;}
._19{width:12.871682pt;}
._4{width:16.446618pt;}
._27{width:17.483754pt;}
._22{width:18.411922pt;}
._c{width:19.833289pt;}
._1c{width:21.183579pt;}
._d{width:22.402617pt;}
._15{width:23.403232pt;}
._7{width:24.320446pt;}
._10{width:25.230702pt;}
._12{width:26.156883pt;}
._16{width:27.106565pt;}
._20{width:28.776312pt;}
._9{width:29.980023pt;}
._18{width:30.976624pt;}
._f{width:32.530638pt;}
._3{width:33.629725pt;}
._36{width:34.749630pt;}
._2c{width:36.008896pt;}
._2f{width:37.201558pt;}
._a{width:38.297520pt;}
._1e{width:40.238251pt;}
._1b{width:41.531936pt;}
._11{width:43.248551pt;}
._21{width:44.406696pt;}
._13{width:46.115336pt;}
._32{width:47.150100pt;}
._8{width:48.251539pt;}
._30{width:49.580870pt;}
._23{width:51.012441pt;}
._1f{width:52.352669pt;}
._2e{width:53.863648pt;}
._33{width:55.259268pt;}
._2d{width:56.155800pt;}
._29{width:57.600009pt;}
._26{width:58.941743pt;}
._34{width:60.858626pt;}
._2a{width:64.596830pt;}
._24{width:67.188374pt;}
._38{width:68.753815pt;}
._1{width:70.009452pt;}
._28{width:73.434467pt;}
._2b{width:88.932552pt;}
._31{width:90.543429pt;}
._17{width:91.452330pt;}
._35{width:92.675775pt;}
._25{width:103.941877pt;}
.fs5{font-size:16.600451pt;}
.fs4{font-size:24.874844pt;}
.fs6{font-size:26.444913pt;}
.fs7{font-size:37.349977pt;}
.fs8{font-size:42.683279pt;}
.fs3{font-size:53.340097pt;}
.fs0{font-size:58.662102pt;}
.fs2{font-size:64.024123pt;}
.fs1{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yd6{bottom:4.981382pt;}
.yd5{bottom:13.796353pt;}
.yd4{bottom:22.611324pt;}
.yd3{bottom:31.426295pt;}
.y52{bottom:38.306736pt;}
.yd2{bottom:40.241266pt;}
.y8e{bottom:51.357425pt;}
.y51{bottom:56.313521pt;}
.yd1{bottom:56.440016pt;}
.yce{bottom:61.636777pt;}
.y8d{bottom:69.364210pt;}
.y39{bottom:70.015282pt;}
.yca{bottom:70.540255pt;}
.y50{bottom:74.320305pt;}
.ycd{bottom:77.953160pt;}
.ycf{bottom:78.729313pt;}
.y38{bottom:90.022821pt;}
.yc9{bottom:90.547793pt;}
.ycc{bottom:93.187175pt;}
.y37{bottom:110.030359pt;}
.yc8{bottom:110.555332pt;}
.y36{bottom:130.037897pt;}
.yc7{bottom:130.562870pt;}
.y35{bottom:150.045436pt;}
.yc6{bottom:150.570408pt;}
.yd7{bottom:157.957340pt;}
.y34{bottom:170.052974pt;}
.yc5{bottom:170.577947pt;}
.ydb{bottom:188.538138pt;}
.y33{bottom:190.060512pt;}
.yc4{bottom:190.585485pt;}
.yda{bottom:202.765897pt;}
.y32{bottom:210.068051pt;}
.yc3{bottom:210.593024pt;}
.yd9{bottom:216.993657pt;}
.yc2{bottom:230.600562pt;}
.yd0{bottom:239.002955pt;}
.y67{bottom:245.238769pt;}
.y4a{bottom:250.016440pt;}
.y31{bottom:264.827780pt;}
.y66{bottom:265.246308pt;}
.ycb{bottom:266.333847pt;}
.y56{bottom:281.453381pt;}
.y30{bottom:284.835318pt;}
.y65{bottom:285.253846pt;}
.ye4{bottom:289.703925pt;}
.y20{bottom:289.964847pt;}
.y55{bottom:299.460165pt;}
.ya0{bottom:302.067116pt;}
.ye3{bottom:303.931684pt;}
.y2f{bottom:304.842856pt;}
.y64{bottom:305.261384pt;}
.y1f{bottom:309.972386pt;}
.y54{bottom:317.466950pt;}
.ye2{bottom:318.159444pt;}
.y9f{bottom:322.074654pt;}
.y2e{bottom:324.850395pt;}
.y63{bottom:325.268923pt;}
.y1e{bottom:329.979924pt;}
.ye1{bottom:332.387203pt;}
.y53{bottom:335.473735pt;}
.y9e{bottom:342.082192pt;}
.y2d{bottom:344.857933pt;}
.y62{bottom:345.276461pt;}
.ye0{bottom:346.614963pt;}
.y1d{bottom:349.987463pt;}
.ydf{bottom:360.842723pt;}
.y9d{bottom:362.089731pt;}
.y2c{bottom:364.865472pt;}
.y61{bottom:365.283999pt;}
.y1c{bottom:369.995001pt;}
.yde{bottom:375.070482pt;}
.ybe{bottom:377.843186pt;}
.y9c{bottom:382.097269pt;}
.y2b{bottom:384.873010pt;}
.y60{bottom:385.291538pt;}
.ydd{bottom:389.298242pt;}
.y1b{bottom:390.002539pt;}
.ybd{bottom:397.850725pt;}
.y9b{bottom:402.104808pt;}
.ydc{bottom:403.526001pt;}
.y2a{bottom:404.880548pt;}
.y5f{bottom:405.299076pt;}
.y1a{bottom:410.010078pt;}
.ybc{bottom:417.858263pt;}
.y9a{bottom:422.112346pt;}
.y29{bottom:424.888087pt;}
.y5e{bottom:425.306615pt;}
.y19{bottom:430.017616pt;}
.yd8{bottom:431.022403pt;}
.ybb{bottom:437.865801pt;}
.y99{bottom:442.119884pt;}
.y28{bottom:444.895625pt;}
.y5d{bottom:445.314153pt;}
.y18{bottom:450.025154pt;}
.yba{bottom:457.873340pt;}
.y98{bottom:462.127423pt;}
.y5c{bottom:465.321691pt;}
.y17{bottom:470.032693pt;}
.yb9{bottom:477.880878pt;}
.y97{bottom:482.134961pt;}
.y4c{bottom:485.044014pt;}
.y5b{bottom:485.329230pt;}
.y16{bottom:490.040231pt;}
.y96{bottom:502.142499pt;}
.y5a{bottom:505.336768pt;}
.y15{bottom:510.047769pt;}
.yb8{bottom:517.895955pt;}
.y95{bottom:522.150038pt;}
.y27{bottom:524.992422pt;}
.y59{bottom:525.344306pt;}
.y14{bottom:530.055308pt;}
.yb7{bottom:537.903493pt;}
.y94{bottom:542.157576pt;}
.y26{bottom:544.999960pt;}
.y58{bottom:545.351845pt;}
.y13{bottom:550.062846pt;}
.yb6{bottom:557.911031pt;}
.y93{bottom:562.165114pt;}
.y25{bottom:565.007498pt;}
.y12{bottom:570.070385pt;}
.yb5{bottom:577.918570pt;}
.y57{bottom:581.298721pt;}
.y92{bottom:582.172653pt;}
.y24{bottom:585.015037pt;}
.y11{bottom:590.077923pt;}
.yb4{bottom:597.926108pt;}
.y91{bottom:602.180191pt;}
.y23{bottom:605.022575pt;}
.y10{bottom:610.085461pt;}
.y4f{bottom:616.378600pt;}
.yb3{bottom:617.933647pt;}
.y90{bottom:622.187730pt;}
.y22{bottom:625.030113pt;}
.yf{bottom:630.093000pt;}
.y4e{bottom:634.385385pt;}
.y7b{bottom:635.010967pt;}
.yb2{bottom:637.941185pt;}
.y21{bottom:645.037652pt;}
.ye{bottom:650.100538pt;}
.y4d{bottom:652.392169pt;}
.y7a{bottom:655.018506pt;}
.yb1{bottom:657.948723pt;}
.y8c{bottom:661.648048pt;}
.yd{bottom:670.108076pt;}
.y79{bottom:675.026044pt;}
.yc1{bottom:676.698751pt;}
.yb0{bottom:677.956262pt;}
.y8b{bottom:681.655586pt;}
.y4b{bottom:684.986060pt;}
.yc{bottom:690.115615pt;}
.yc0{bottom:694.705536pt;}
.y78{bottom:695.033583pt;}
.yaf{bottom:697.963800pt;}
.y8a{bottom:701.663125pt;}
.yb{bottom:710.123153pt;}
.ybf{bottom:712.712320pt;}
.y77{bottom:715.041121pt;}
.yae{bottom:717.971338pt;}
.y89{bottom:721.670663pt;}
.y45{bottom:724.934423pt;}
.ya{bottom:730.130691pt;}
.y76{bottom:735.048659pt;}
.y88{bottom:741.678201pt;}
.y44{bottom:744.941961pt;}
.y9{bottom:750.138230pt;}
.y75{bottom:755.056198pt;}
.yad{bottom:757.986415pt;}
.y87{bottom:761.685740pt;}
.y43{bottom:764.949500pt;}
.y8{bottom:770.145768pt;}
.y74{bottom:775.063736pt;}
.yac{bottom:777.993954pt;}
.y86{bottom:781.693278pt;}
.y42{bottom:784.957038pt;}
.y7{bottom:790.153307pt;}
.y73{bottom:795.071274pt;}
.yab{bottom:798.001492pt;}
.y85{bottom:801.700817pt;}
.y41{bottom:804.964576pt;}
.y6{bottom:810.160845pt;}
.y72{bottom:815.078813pt;}
.yaa{bottom:818.009030pt;}
.y84{bottom:821.708355pt;}
.y40{bottom:824.972115pt;}
.y5{bottom:830.168383pt;}
.y71{bottom:835.086351pt;}
.ya9{bottom:838.016569pt;}
.y83{bottom:841.715893pt;}
.y3f{bottom:844.979653pt;}
.y4{bottom:850.175922pt;}
.y70{bottom:855.093889pt;}
.ya8{bottom:858.024107pt;}
.y82{bottom:861.723432pt;}
.y3e{bottom:864.987191pt;}
.y3{bottom:870.183460pt;}
.y6f{bottom:875.101428pt;}
.ya7{bottom:878.031645pt;}
.y81{bottom:881.730970pt;}
.y3d{bottom:884.994730pt;}
.y2{bottom:890.190998pt;}
.y6e{bottom:895.108966pt;}
.y80{bottom:901.738508pt;}
.y3c{bottom:905.002268pt;}
.y6d{bottom:915.116505pt;}
.ya6{bottom:918.046722pt;}
.y7f{bottom:921.746047pt;}
.y49{bottom:922.142055pt;}
.y3b{bottom:925.009807pt;}
.y6c{bottom:935.124043pt;}
.ya5{bottom:938.054260pt;}
.y7e{bottom:941.753585pt;}
.y48{bottom:944.150347pt;}
.y3a{bottom:945.017345pt;}
.y6b{bottom:955.131581pt;}
.ya4{bottom:958.061799pt;}
.y7d{bottom:961.761123pt;}
.y6a{bottom:975.139120pt;}
.ya3{bottom:978.069337pt;}
.y7c{bottom:981.768662pt;}
.y47{bottom:983.657609pt;}
.y69{bottom:995.146658pt;}
.ya2{bottom:998.076876pt;}
.y8f{bottom:1014.287199pt;}
.y68{bottom:1015.154196pt;}
.ya1{bottom:1018.084414pt;}
.y46{bottom:1038.584915pt;}
.ha{height:13.363363pt;}
.h9{height:20.223249pt;}
.hd{height:21.499714pt;}
.he{height:30.365531pt;}
.hf{height:37.347869pt;}
.hb{height:43.365499pt;}
.h7{height:43.418839pt;}
.h6{height:44.165600pt;}
.hc{height:47.679998pt;}
.h8{height:47.750951pt;}
.h3{height:51.329339pt;}
.h5{height:53.011974pt;}
.h4{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:38.713202pt;}
.x5{left:39.774285pt;}
.x1{left:40.835374pt;}
.x9{left:42.637445pt;}
.xc{left:47.459354pt;}
.xa{left:106.239996pt;}
.xb{left:113.140846pt;}
.x3{left:165.417191pt;}
.x2{left:417.098303pt;}
.x8{left:441.261895pt;}
.x7{left:549.919145pt;}
.x6{left:551.612297pt;}
}




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