
    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_e07254d952361f668ba23d9b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.836000;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_45dc9b03ab136ae0ec864ef0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.897000;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_43c71781af3fdf2c48f3cdc0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_27ab73a4f35289b13b703c1a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904000;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_d26b2ae36c659d6c1dd50fe3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_c96847d6d730838ecdf95210.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_b00cc04bf169603c66ae558c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.996000;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_d747c60907dfbd7b118576ba.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914000;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_0bcc18723a125b719f10aacc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.676000;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_5bd6a753e128f2369ce8f448.woff')format("woff");}.ffa{font-family:ffa;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004335px;}
.ls0{letter-spacing:34.360335px;}
.ls1{letter-spacing:34.366335px;}
.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;}
}
.ws13{word-spacing:-34.363665px;}
.ws0{word-spacing:-28.921872px;}
.ws3{word-spacing:-24.101616px;}
.ws6{word-spacing:-18.327288px;}
.ws2a{word-spacing:-13.572660px;}
.ws24{word-spacing:-12.570315px;}
.ws22{word-spacing:-12.569655px;}
.ws3a{word-spacing:-12.566295px;}
.ws3c{word-spacing:-12.563310px;}
.ws1b{word-spacing:-10.042368px;}
.ws16{word-spacing:-0.065455px;}
.ws27{word-spacing:-0.004995px;}
.ws42{word-spacing:-0.004650px;}
.ws1f{word-spacing:-0.002985px;}
.ws20{word-spacing:-0.002325px;}
.ws2d{word-spacing:-0.001980px;}
.ws3d{word-spacing:-0.001320px;}
.ws19{word-spacing:-0.000975px;}
.ws2e{word-spacing:-0.000660px;}
.ws18{word-spacing:0.000000px;}
.ws25{word-spacing:0.000345px;}
.ws37{word-spacing:0.001350px;}
.ws26{word-spacing:0.002010px;}
.ws41{word-spacing:0.002355px;}
.ws28{word-spacing:0.002670px;}
.ws8{word-spacing:0.327273px;}
.ws36{word-spacing:0.785455px;}
.ws29{word-spacing:2.421820px;}
.ws2b{word-spacing:2.487275px;}
.ws1{word-spacing:3.299635px;}
.ws35{word-spacing:3.403639px;}
.ws23{word-spacing:3.406619px;}
.ws3b{word-spacing:3.465209px;}
.ws21{word-spacing:3.468851px;}
.wsd{word-spacing:3.469094px;}
.ws9{word-spacing:3.805503px;}
.ws2f{word-spacing:3.927276px;}
.ws39{word-spacing:4.490010px;}
.ws1d{word-spacing:4.491675px;}
.ws40{word-spacing:4.843640px;}
.ws1e{word-spacing:6.814464px;}
.ws30{word-spacing:6.938188px;}
.wsa{word-spacing:7.069097px;}
.wsc{word-spacing:7.134551px;}
.ws38{word-spacing:7.478010px;}
.wse{word-spacing:7.479675px;}
.ws4{word-spacing:7.985461px;}
.ws2{word-spacing:8.177334px;}
.ws3f{word-spacing:9.032735px;}
.wsb{word-spacing:10.597503px;}
.ws34{word-spacing:11.127282px;}
.ws5{word-spacing:13.090920px;}
.ws7{word-spacing:13.156375px;}
.ws11{word-spacing:16.031382px;}
.ws1a{word-spacing:16.033392px;}
.ws15{word-spacing:16.034052px;}
.ws17{word-spacing:16.035057px;}
.ws3e{word-spacing:16.035717px;}
.ws14{word-spacing:16.036062px;}
.ws1c{word-spacing:16.036377px;}
.wsf{word-spacing:16.036722px;}
.ws12{word-spacing:16.037382px;}
.ws10{word-spacing:16.038387px;}
.ws2c{word-spacing:137.453340px;}
.ws33{word-spacing:343.635675px;}
.ws32{word-spacing:377.997675px;}
.ws31{word-spacing:412.359675px;}
._3{margin-left:-5.248884px;}
._11{margin-left:-3.912044px;}
._0{margin-left:-2.582310px;}
._4{margin-left:-1.356629px;}
._1{width:1.936742px;}
._8{width:2.953486px;}
._9{width:27.913240px;}
._a{width:29.653619px;}
._10{width:33.842713px;}
._b{width:35.822436px;}
._13{width:38.855340px;}
._6{width:40.331697px;}
._12{width:41.843340px;}
._c{width:52.217539px;}
._5{width:57.397830px;}
._f{width:68.727330px;}
._7{width:71.731200px;}
._2{width:86.077200px;}
._d{width:137.454660px;}
._e{width:171.818325px;}
.fcb{color:rgb(171,92,31);}
.fca{color:rgb(163,89,120);}
.fc8{color:rgb(216,67,21);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(186,33,33);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,128,0);}
.fc9{color:rgb(171,33,255);}
.fc7{color:rgb(61,122,122);}
.fc1{color:rgb(48,63,159);}
.fc4{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1d{bottom:63.168000px;}
.yc0{bottom:108.343500px;}
.y90{bottom:112.708500px;}
.yf3{bottom:113.148000px;}
.y41{bottom:114.862500px;}
.yd7{bottom:119.581500px;}
.ybf{bottom:128.667000px;}
.y8f{bottom:133.032000px;}
.yf2{bottom:133.471500px;}
.y40{bottom:135.186000px;}
.yd6{bottom:139.906500px;}
.y52{bottom:145.447500px;}
.ybe{bottom:148.990500px;}
.y8e{bottom:153.357000px;}
.yf1{bottom:153.795000px;}
.ydc{bottom:157.122000px;}
.yd5{bottom:160.230000px;}
.y1c{bottom:163.540500px;}
.y3f{bottom:165.672000px;}
.y68{bottom:166.393500px;}
.ybd{bottom:169.314000px;}
.y8d{bottom:173.680500px;}
.yf0{bottom:174.118500px;}
.yd4{bottom:180.553500px;}
.y51{bottom:184.270500px;}
.y3e{bottom:185.995500px;}
.y67{bottom:186.718500px;}
.ybc{bottom:189.639000px;}
.ydb{bottom:190.716000px;}
.y8c{bottom:194.004000px;}
.yef{bottom:194.442000px;}
.y1b{bottom:194.443500px;}
.yd3{bottom:200.877000px;}
.y50{bottom:204.594000px;}
.y66{bottom:207.042000px;}
.ybb{bottom:209.962500px;}
.y8b{bottom:214.327500px;}
.yee{bottom:214.767000px;}
.yd2{bottom:221.200500px;}
.y3d{bottom:222.459000px;}
.yda{bottom:227.179500px;}
.yba{bottom:230.286000px;}
.y8a{bottom:234.651000px;}
.y65{bottom:237.945000px;}
.yd1{bottom:241.525500px;}
.y3c{bottom:242.784000px;}
.y4f{bottom:244.165500px;}
.y1a{bottom:244.264500px;}
.yd9{bottom:247.503000px;}
.yb9{bottom:250.609500px;}
.yed{bottom:251.230500px;}
.y89{bottom:254.976000px;}
.yd0{bottom:261.849000px;}
.y3b{bottom:263.107500px;}
.y4e{bottom:264.489000px;}
.yb8{bottom:270.933000px;}
.yec{bottom:271.554000px;}
.y88{bottom:275.299500px;}
.y19{bottom:278.770500px;}
.yd8{bottom:281.095500px;}
.ycf{bottom:282.172500px;}
.y64{bottom:287.766000px;}
.yb7{bottom:291.258000px;}
.y87{bottom:295.623000px;}
.y4d{bottom:298.081500px;}
.yce{bottom:302.496000px;}
.y3a{bottom:303.754500px;}
.yb6{bottom:311.581500px;}
.y86{bottom:315.946500px;}
.y63{bottom:321.358500px;}
.ycd{bottom:322.819500px;}
.y39{bottom:324.078000px;}
.y18{bottom:327.844500px;}
.y4c{bottom:328.984500px;}
.yb5{bottom:331.905000px;}
.y85{bottom:336.270000px;}
.y62{bottom:341.682000px;}
.ycc{bottom:343.144500px;}
.y38{bottom:344.403000px;}
.yb4{bottom:352.228500px;}
.y84{bottom:356.595000px;}
.y61{bottom:362.005500px;}
.ycb{bottom:363.468000px;}
.y37{bottom:364.726500px;}
.y17{bottom:366.667500px;}
.yb3{bottom:372.552000px;}
.y83{bottom:376.918500px;}
.y60{bottom:382.329000px;}
.yca{bottom:383.791500px;}
.y36{bottom:385.050000px;}
.y16{bottom:386.991000px;}
.yb2{bottom:392.877000px;}
.y82{bottom:397.242000px;}
.y5f{bottom:402.654000px;}
.yc9{bottom:404.115000px;}
.y15{bottom:408.810000px;}
.yb1{bottom:413.200500px;}
.y81{bottom:417.565500px;}
.y5e{bottom:422.977500px;}
.yc8{bottom:424.438500px;}
.y35{bottom:425.697000px;}
.y14{bottom:429.133500px;}
.yb0{bottom:433.524000px;}
.y80{bottom:437.889000px;}
.y5d{bottom:443.301000px;}
.yc7{bottom:444.763500px;}
.y34{bottom:446.022000px;}
.yaf{bottom:453.847500px;}
.y7f{bottom:458.214000px;}
.y5c{bottom:463.624500px;}
.yc6{bottom:465.087000px;}
.y33{bottom:466.345500px;}
.y13{bottom:468.703500px;}
.yae{bottom:474.171000px;}
.y7e{bottom:478.537500px;}
.y5b{bottom:483.948000px;}
.y32{bottom:486.669000px;}
.y12{bottom:489.027000px;}
.yad{bottom:494.496000px;}
.y7d{bottom:498.861000px;}
.yc5{bottom:501.550500px;}
.y5a{bottom:504.273000px;}
.y31{bottom:506.992500px;}
.y11{bottom:509.350500px;}
.yac{bottom:514.819500px;}
.y7c{bottom:519.184500px;}
.yc4{bottom:521.874000px;}
.y59{bottom:524.596500px;}
.y10{bottom:529.675500px;}
.yab{bottom:535.143000px;}
.y7b{bottom:539.508000px;}
.yc3{bottom:542.197500px;}
.y58{bottom:544.920000px;}
.y30{bottom:547.641000px;}
.yaa{bottom:555.466500px;}
.y7a{bottom:559.833000px;}
.yc2{bottom:562.521000px;}
.y57{bottom:565.243500px;}
.y2f{bottom:567.964500px;}
.yf{bottom:570.322500px;}
.ya9{bottom:575.790000px;}
.y79{bottom:580.156500px;}
.ye{bottom:590.646000px;}
.ya8{bottom:596.115000px;}
.y78{bottom:600.480000px;}
.y2e{bottom:601.557000px;}
.y56{bottom:601.707000px;}
.yc1{bottom:603.169500px;}
.ya7{bottom:616.438500px;}
.y77{bottom:620.803500px;}
.y2d{bottom:621.880500px;}
.y55{bottom:622.030500px;}
.yd{bottom:631.294500px;}
.ya6{bottom:636.762000px;}
.y76{bottom:641.127000px;}
.y2c{bottom:642.204000px;}
.yc{bottom:651.618000px;}
.yeb{bottom:656.869500px;}
.ya5{bottom:657.085500px;}
.y54{bottom:660.855000px;}
.y75{bottom:661.452000px;}
.yb{bottom:671.941500px;}
.ya4{bottom:677.409000px;}
.y2b{bottom:678.667500px;}
.y74{bottom:681.775500px;}
.ya{bottom:692.265000px;}
.yea{bottom:695.694000px;}
.ya3{bottom:697.734000px;}
.y2a{bottom:698.992500px;}
.y53{bottom:699.678000px;}
.y73{bottom:702.099000px;}
.y9{bottom:712.588500px;}
.ye9{bottom:716.017500px;}
.ya2{bottom:718.057500px;}
.y72{bottom:722.422500px;}
.ye8{bottom:736.341000px;}
.ya1{bottom:738.381000px;}
.y29{bottom:739.639500px;}
.y4b{bottom:742.540500px;}
.y71{bottom:742.746000px;}
.y8{bottom:746.182500px;}
.ye7{bottom:756.664500px;}
.ya0{bottom:758.704500px;}
.y28{bottom:759.963000px;}
.y70{bottom:763.071000px;}
.y7{bottom:766.506000px;}
.ye6{bottom:776.988000px;}
.y9f{bottom:779.028000px;}
.y4a{bottom:781.363500px;}
.y6f{bottom:783.394500px;}
.y6{bottom:786.829500px;}
.y9e{bottom:799.353000px;}
.y27{bottom:800.611500px;}
.y6e{bottom:803.718000px;}
.y5{bottom:807.153000px;}
.y49{bottom:814.957500px;}
.ye5{bottom:817.636500px;}
.y9d{bottom:819.676500px;}
.y26{bottom:820.935000px;}
.y6d{bottom:824.041500px;}
.y4{bottom:827.478000px;}
.y9c{bottom:840.000000px;}
.y6c{bottom:844.365000px;}
.y48{bottom:851.421000px;}
.ye4{bottom:858.283500px;}
.y9b{bottom:860.323500px;}
.y25{bottom:861.582000px;}
.y3{bottom:864.022500px;}
.y6b{bottom:864.690000px;}
.ye3{bottom:878.607000px;}
.y9a{bottom:880.647000px;}
.y47{bottom:885.013500px;}
.y24{bottom:895.174500px;}
.ye2{bottom:898.932000px;}
.y99{bottom:900.972000px;}
.y6a{bottom:901.153500px;}
.yf4{bottom:908.026500px;}
.y23{bottom:915.499500px;}
.y98{bottom:921.295500px;}
.y46{bottom:921.477000px;}
.y2{bottom:925.629000px;}
.ye1{bottom:939.579000px;}
.y97{bottom:941.619000px;}
.y45{bottom:941.800500px;}
.y22{bottom:951.963000px;}
.ye0{bottom:959.902500px;}
.y96{bottom:961.942500px;}
.y44{bottom:962.124000px;}
.y21{bottom:972.286500px;}
.y95{bottom:982.266000px;}
.y1{bottom:987.796500px;}
.ydf{bottom:1000.551000px;}
.y43{bottom:1001.695500px;}
.y94{bottom:1002.589500px;}
.y69{bottom:1002.772500px;}
.y20{bottom:1005.879000px;}
.yde{bottom:1020.874500px;}
.y42{bottom:1022.019000px;}
.y93{bottom:1022.914500px;}
.y1f{bottom:1042.342500px;}
.y92{bottom:1043.238000px;}
.ydd{bottom:1061.521500px;}
.y1e{bottom:1062.666000px;}
.y91{bottom:1063.561500px;}
.h7{height:43.592764px;}
.h6{height:45.294583px;}
.h4{height:49.090950px;}
.h5{height:50.203678px;}
.h8{height:50.211840px;}
.h2{height:50.498765px;}
.h3{height:60.426194px;}
.h1{height:72.511265px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:60.562500px;}
.x4{left:69.153000px;}
.x3{left:108.000000px;}
.x5{left:113.977500px;}
.x6{left:126.196500px;}
.x9{left:148.341000px;}
.x1{left:388.024500px;}
.x2{left:397.768500px;}
.xa{left:450.817500px;}
.x7{left:454.909500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003853pt;}
.ls0{letter-spacing:30.542520pt;}
.ls1{letter-spacing:30.547853pt;}
.ws13{word-spacing:-30.545480pt;}
.ws0{word-spacing:-25.708331pt;}
.ws3{word-spacing:-21.423659pt;}
.ws6{word-spacing:-16.290923pt;}
.ws2a{word-spacing:-12.064587pt;}
.ws24{word-spacing:-11.173613pt;}
.ws22{word-spacing:-11.173027pt;}
.ws3a{word-spacing:-11.170040pt;}
.ws3c{word-spacing:-11.167387pt;}
.ws1b{word-spacing:-8.926549pt;}
.ws16{word-spacing:-0.058182pt;}
.ws27{word-spacing:-0.004440pt;}
.ws42{word-spacing:-0.004133pt;}
.ws1f{word-spacing:-0.002653pt;}
.ws20{word-spacing:-0.002067pt;}
.ws2d{word-spacing:-0.001760pt;}
.ws3d{word-spacing:-0.001173pt;}
.ws19{word-spacing:-0.000867pt;}
.ws2e{word-spacing:-0.000587pt;}
.ws18{word-spacing:0.000000pt;}
.ws25{word-spacing:0.000307pt;}
.ws37{word-spacing:0.001200pt;}
.ws26{word-spacing:0.001787pt;}
.ws41{word-spacing:0.002093pt;}
.ws28{word-spacing:0.002373pt;}
.ws8{word-spacing:0.290909pt;}
.ws36{word-spacing:0.698182pt;}
.ws29{word-spacing:2.152729pt;}
.ws2b{word-spacing:2.210911pt;}
.ws1{word-spacing:2.933009pt;}
.ws35{word-spacing:3.025457pt;}
.ws23{word-spacing:3.028106pt;}
.ws3b{word-spacing:3.080186pt;}
.ws21{word-spacing:3.083423pt;}
.wsd{word-spacing:3.083639pt;}
.ws9{word-spacing:3.382669pt;}
.ws2f{word-spacing:3.490912pt;}
.ws39{word-spacing:3.991120pt;}
.ws1d{word-spacing:3.992600pt;}
.ws40{word-spacing:4.305458pt;}
.ws1e{word-spacing:6.057301pt;}
.ws30{word-spacing:6.167278pt;}
.wsa{word-spacing:6.283642pt;}
.wsc{word-spacing:6.341823pt;}
.ws38{word-spacing:6.647120pt;}
.wse{word-spacing:6.648600pt;}
.ws4{word-spacing:7.098188pt;}
.ws2{word-spacing:7.268741pt;}
.ws3f{word-spacing:8.029098pt;}
.wsb{word-spacing:9.420003pt;}
.ws34{word-spacing:9.890917pt;}
.ws5{word-spacing:11.636373pt;}
.ws7{word-spacing:11.694555pt;}
.ws11{word-spacing:14.250117pt;}
.ws1a{word-spacing:14.251904pt;}
.ws15{word-spacing:14.252491pt;}
.ws17{word-spacing:14.253384pt;}
.ws3e{word-spacing:14.253971pt;}
.ws14{word-spacing:14.254277pt;}
.ws1c{word-spacing:14.254557pt;}
.wsf{word-spacing:14.254864pt;}
.ws12{word-spacing:14.255451pt;}
.ws10{word-spacing:14.256344pt;}
.ws2c{word-spacing:122.180747pt;}
.ws33{word-spacing:305.453933pt;}
.ws32{word-spacing:335.997933pt;}
.ws31{word-spacing:366.541933pt;}
._3{margin-left:-4.665675pt;}
._11{margin-left:-3.477372pt;}
._0{margin-left:-2.295387pt;}
._4{margin-left:-1.205893pt;}
._1{width:1.721549pt;}
._8{width:2.625321pt;}
._9{width:24.811769pt;}
._a{width:26.358772pt;}
._10{width:30.082412pt;}
._b{width:31.842165pt;}
._13{width:34.538080pt;}
._6{width:35.850397pt;}
._12{width:37.194080pt;}
._c{width:46.415590pt;}
._5{width:51.020293pt;}
._f{width:61.090960pt;}
._7{width:63.761067pt;}
._2{width:76.513067pt;}
._d{width:122.181920pt;}
._e{width:152.727400pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:56.149333pt;}
.yc0{bottom:96.305333pt;}
.y90{bottom:100.185333pt;}
.yf3{bottom:100.576000pt;}
.y41{bottom:102.100000pt;}
.yd7{bottom:106.294667pt;}
.ybf{bottom:114.370667pt;}
.y8f{bottom:118.250667pt;}
.yf2{bottom:118.641333pt;}
.y40{bottom:120.165333pt;}
.yd6{bottom:124.361333pt;}
.y52{bottom:129.286667pt;}
.ybe{bottom:132.436000pt;}
.y8e{bottom:136.317333pt;}
.yf1{bottom:136.706667pt;}
.ydc{bottom:139.664000pt;}
.yd5{bottom:142.426667pt;}
.y1c{bottom:145.369333pt;}
.y3f{bottom:147.264000pt;}
.y68{bottom:147.905333pt;}
.ybd{bottom:150.501333pt;}
.y8d{bottom:154.382667pt;}
.yf0{bottom:154.772000pt;}
.yd4{bottom:160.492000pt;}
.y51{bottom:163.796000pt;}
.y3e{bottom:165.329333pt;}
.y67{bottom:165.972000pt;}
.ybc{bottom:168.568000pt;}
.ydb{bottom:169.525333pt;}
.y8c{bottom:172.448000pt;}
.yef{bottom:172.837333pt;}
.y1b{bottom:172.838667pt;}
.yd3{bottom:178.557333pt;}
.y50{bottom:181.861333pt;}
.y66{bottom:184.037333pt;}
.ybb{bottom:186.633333pt;}
.y8b{bottom:190.513333pt;}
.yee{bottom:190.904000pt;}
.yd2{bottom:196.622667pt;}
.y3d{bottom:197.741333pt;}
.yda{bottom:201.937333pt;}
.yba{bottom:204.698667pt;}
.y8a{bottom:208.578667pt;}
.y65{bottom:211.506667pt;}
.yd1{bottom:214.689333pt;}
.y3c{bottom:215.808000pt;}
.y4f{bottom:217.036000pt;}
.y1a{bottom:217.124000pt;}
.yd9{bottom:220.002667pt;}
.yb9{bottom:222.764000pt;}
.yed{bottom:223.316000pt;}
.y89{bottom:226.645333pt;}
.yd0{bottom:232.754667pt;}
.y3b{bottom:233.873333pt;}
.y4e{bottom:235.101333pt;}
.yb8{bottom:240.829333pt;}
.yec{bottom:241.381333pt;}
.y88{bottom:244.710667pt;}
.y19{bottom:247.796000pt;}
.yd8{bottom:249.862667pt;}
.ycf{bottom:250.820000pt;}
.y64{bottom:255.792000pt;}
.yb7{bottom:258.896000pt;}
.y87{bottom:262.776000pt;}
.y4d{bottom:264.961333pt;}
.yce{bottom:268.885333pt;}
.y3a{bottom:270.004000pt;}
.yb6{bottom:276.961333pt;}
.y86{bottom:280.841333pt;}
.y63{bottom:285.652000pt;}
.ycd{bottom:286.950667pt;}
.y39{bottom:288.069333pt;}
.y18{bottom:291.417333pt;}
.y4c{bottom:292.430667pt;}
.yb5{bottom:295.026667pt;}
.y85{bottom:298.906667pt;}
.y62{bottom:303.717333pt;}
.ycc{bottom:305.017333pt;}
.y38{bottom:306.136000pt;}
.yb4{bottom:313.092000pt;}
.y84{bottom:316.973333pt;}
.y61{bottom:321.782667pt;}
.ycb{bottom:323.082667pt;}
.y37{bottom:324.201333pt;}
.y17{bottom:325.926667pt;}
.yb3{bottom:331.157333pt;}
.y83{bottom:335.038667pt;}
.y60{bottom:339.848000pt;}
.yca{bottom:341.148000pt;}
.y36{bottom:342.266667pt;}
.y16{bottom:343.992000pt;}
.yb2{bottom:349.224000pt;}
.y82{bottom:353.104000pt;}
.y5f{bottom:357.914667pt;}
.yc9{bottom:359.213333pt;}
.y15{bottom:363.386667pt;}
.yb1{bottom:367.289333pt;}
.y81{bottom:371.169333pt;}
.y5e{bottom:375.980000pt;}
.yc8{bottom:377.278667pt;}
.y35{bottom:378.397333pt;}
.y14{bottom:381.452000pt;}
.yb0{bottom:385.354667pt;}
.y80{bottom:389.234667pt;}
.y5d{bottom:394.045333pt;}
.yc7{bottom:395.345333pt;}
.y34{bottom:396.464000pt;}
.yaf{bottom:403.420000pt;}
.y7f{bottom:407.301333pt;}
.y5c{bottom:412.110667pt;}
.yc6{bottom:413.410667pt;}
.y33{bottom:414.529333pt;}
.y13{bottom:416.625333pt;}
.yae{bottom:421.485333pt;}
.y7e{bottom:425.366667pt;}
.y5b{bottom:430.176000pt;}
.y32{bottom:432.594667pt;}
.y12{bottom:434.690667pt;}
.yad{bottom:439.552000pt;}
.y7d{bottom:443.432000pt;}
.yc5{bottom:445.822667pt;}
.y5a{bottom:448.242667pt;}
.y31{bottom:450.660000pt;}
.y11{bottom:452.756000pt;}
.yac{bottom:457.617333pt;}
.y7c{bottom:461.497333pt;}
.yc4{bottom:463.888000pt;}
.y59{bottom:466.308000pt;}
.y10{bottom:470.822667pt;}
.yab{bottom:475.682667pt;}
.y7b{bottom:479.562667pt;}
.yc3{bottom:481.953333pt;}
.y58{bottom:484.373333pt;}
.y30{bottom:486.792000pt;}
.yaa{bottom:493.748000pt;}
.y7a{bottom:497.629333pt;}
.yc2{bottom:500.018667pt;}
.y57{bottom:502.438667pt;}
.y2f{bottom:504.857333pt;}
.yf{bottom:506.953333pt;}
.ya9{bottom:511.813333pt;}
.y79{bottom:515.694667pt;}
.ye{bottom:525.018667pt;}
.ya8{bottom:529.880000pt;}
.y78{bottom:533.760000pt;}
.y2e{bottom:534.717333pt;}
.y56{bottom:534.850667pt;}
.yc1{bottom:536.150667pt;}
.ya7{bottom:547.945333pt;}
.y77{bottom:551.825333pt;}
.y2d{bottom:552.782667pt;}
.y55{bottom:552.916000pt;}
.yd{bottom:561.150667pt;}
.ya6{bottom:566.010667pt;}
.y76{bottom:569.890667pt;}
.y2c{bottom:570.848000pt;}
.yc{bottom:579.216000pt;}
.yeb{bottom:583.884000pt;}
.ya5{bottom:584.076000pt;}
.y54{bottom:587.426667pt;}
.y75{bottom:587.957333pt;}
.yb{bottom:597.281333pt;}
.ya4{bottom:602.141333pt;}
.y2b{bottom:603.260000pt;}
.y74{bottom:606.022667pt;}
.ya{bottom:615.346667pt;}
.yea{bottom:618.394667pt;}
.ya3{bottom:620.208000pt;}
.y2a{bottom:621.326667pt;}
.y53{bottom:621.936000pt;}
.y73{bottom:624.088000pt;}
.y9{bottom:633.412000pt;}
.ye9{bottom:636.460000pt;}
.ya2{bottom:638.273333pt;}
.y72{bottom:642.153333pt;}
.ye8{bottom:654.525333pt;}
.ya1{bottom:656.338667pt;}
.y29{bottom:657.457333pt;}
.y4b{bottom:660.036000pt;}
.y71{bottom:660.218667pt;}
.y8{bottom:663.273333pt;}
.ye7{bottom:672.590667pt;}
.ya0{bottom:674.404000pt;}
.y28{bottom:675.522667pt;}
.y70{bottom:678.285333pt;}
.y7{bottom:681.338667pt;}
.ye6{bottom:690.656000pt;}
.y9f{bottom:692.469333pt;}
.y4a{bottom:694.545333pt;}
.y6f{bottom:696.350667pt;}
.y6{bottom:699.404000pt;}
.y9e{bottom:710.536000pt;}
.y27{bottom:711.654667pt;}
.y6e{bottom:714.416000pt;}
.y5{bottom:717.469333pt;}
.y49{bottom:724.406667pt;}
.ye5{bottom:726.788000pt;}
.y9d{bottom:728.601333pt;}
.y26{bottom:729.720000pt;}
.y6d{bottom:732.481333pt;}
.y4{bottom:735.536000pt;}
.y9c{bottom:746.666667pt;}
.y6c{bottom:750.546667pt;}
.y48{bottom:756.818667pt;}
.ye4{bottom:762.918667pt;}
.y9b{bottom:764.732000pt;}
.y25{bottom:765.850667pt;}
.y3{bottom:768.020000pt;}
.y6b{bottom:768.613333pt;}
.ye3{bottom:780.984000pt;}
.y9a{bottom:782.797333pt;}
.y47{bottom:786.678667pt;}
.y24{bottom:795.710667pt;}
.ye2{bottom:799.050667pt;}
.y99{bottom:800.864000pt;}
.y6a{bottom:801.025333pt;}
.yf4{bottom:807.134667pt;}
.y23{bottom:813.777333pt;}
.y98{bottom:818.929333pt;}
.y46{bottom:819.090667pt;}
.y2{bottom:822.781333pt;}
.ye1{bottom:835.181333pt;}
.y97{bottom:836.994667pt;}
.y45{bottom:837.156000pt;}
.y22{bottom:846.189333pt;}
.ye0{bottom:853.246667pt;}
.y96{bottom:855.060000pt;}
.y44{bottom:855.221333pt;}
.y21{bottom:864.254667pt;}
.y95{bottom:873.125333pt;}
.y1{bottom:878.041333pt;}
.ydf{bottom:889.378667pt;}
.y43{bottom:890.396000pt;}
.y94{bottom:891.190667pt;}
.y69{bottom:891.353333pt;}
.y20{bottom:894.114667pt;}
.yde{bottom:907.444000pt;}
.y42{bottom:908.461333pt;}
.y93{bottom:909.257333pt;}
.y1f{bottom:926.526667pt;}
.y92{bottom:927.322667pt;}
.ydd{bottom:943.574667pt;}
.y1e{bottom:944.592000pt;}
.y91{bottom:945.388000pt;}
.h7{height:38.749123pt;}
.h6{height:40.261852pt;}
.h4{height:43.636400pt;}
.h5{height:44.625492pt;}
.h8{height:44.632747pt;}
.h2{height:44.887791pt;}
.h3{height:53.712173pt;}
.h1{height:64.454458pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:53.833333pt;}
.x4{left:61.469333pt;}
.x3{left:96.000000pt;}
.x5{left:101.313333pt;}
.x6{left:112.174667pt;}
.x9{left:131.858667pt;}
.x1{left:344.910667pt;}
.x2{left:353.572000pt;}
.xa{left:400.726667pt;}
.x7{left:404.364000pt;}
}




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