
    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_4b8cc32deb2a732f70c5f4f7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_48a83ff78070dd929ec3e4ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926000;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_dd14cb314053f6c78c88b761.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008000;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_638110c49b05137c7711b769.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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;}
.v1{vertical-align:32.400000px;}
.ls1{letter-spacing:-0.300000px;}
.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;}
}
.ws2{word-spacing:-19.224000px;}
.ws1{word-spacing:-16.020000px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-1388.165342px;}
._3{margin-left:-9.216000px;}
._5{margin-left:-7.860000px;}
._7{margin-left:-6.120000px;}
._0{margin-left:-4.440000px;}
._2{margin-left:-3.432000px;}
._1{margin-left:-2.040000px;}
._6{margin-left:-1.020000px;}
._4{width:1.200000px;}
._8{width:2.580000px;}
._a{width:4.272000px;}
._9{width:5.640000px;}
._d{width:1592.080800px;}
._b{width:1624.780800px;}
._e{width:1830.760800px;}
._c{width:1863.460800px;}
.fc1{color:rgb(60,60,61);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.078400px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:85.320000px;}
.y141{bottom:90.963000px;}
.y65{bottom:96.559950px;}
.y4{bottom:97.125005px;}
.y89{bottom:103.320000px;}
.y15e{bottom:105.138000px;}
.ya8{bottom:107.989500px;}
.y11a{bottom:111.813000px;}
.ye4{bottom:114.469500px;}
.y44{bottom:119.835600px;}
.y88{bottom:121.320000px;}
.y64{bottom:123.559950px;}
.y15d{bottom:124.563000px;}
.y140{bottom:127.188000px;}
.yc1{bottom:130.320000px;}
.y119{bottom:131.238000px;}
.y161{bottom:131.980500px;}
.ya7{bottom:134.989500px;}
.y43{bottom:139.260600px;}
.y20{bottom:139.264499px;}
.ye3{bottom:141.469500px;}
.y13f{bottom:146.613000px;}
.y87{bottom:148.320000px;}
.y63{bottom:150.559950px;}
.y42{bottom:158.685600px;}
.y15c{bottom:160.788000px;}
.ya6{bottom:161.989500px;}
.y13e{bottom:166.038000px;}
.yc0{bottom:166.320000px;}
.y118{bottom:167.463000px;}
.ye2{bottom:168.469500px;}
.yf3{bottom:174.145500px;}
.y86{bottom:175.320000px;}
.y62{bottom:177.559950px;}
.y41{bottom:178.110600px;}
.y15b{bottom:180.213000px;}
.y85{bottom:193.320000px;}
.ye1{bottom:195.469500px;}
.y17{bottom:196.933500px;}
.y40{bottom:197.535600px;}
.y15a{bottom:199.638000px;}
.yce{bottom:201.145500px;}
.y13d{bottom:202.263000px;}
.y117{bottom:203.688000px;}
.ya5{bottom:206.341500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y3f{bottom:216.960600px;}
.y13c{bottom:221.688000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.ye0{bottom:222.469500px;}
.y116{bottom:223.113000px;}
.y61{bottom:224.719950px;}
.ybf{bottom:226.981500px;}
.ycd{bottom:228.145500px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y159{bottom:235.863000px;}
.y3e{bottom:236.385600px;}
.y115{bottom:242.538000px;}
.ydf{bottom:249.469500px;}
.y60{bottom:251.719950px;}
.y84{bottom:252.817500px;}
.ybe{bottom:253.981500px;}
.ycc{bottom:255.145500px;}
.y158{bottom:255.288000px;}
.y3d{bottom:255.810600px;}
.y13b{bottom:257.913000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.ya4{bottom:263.149500px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y3c{bottom:275.235600px;}
.yde{bottom:276.469500px;}
.y13a{bottom:277.338000px;}
.y5f{bottom:278.719950px;}
.y114{bottom:278.763000px;}
.y83{bottom:280.981500px;}
.ybd{bottom:282.145500px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.ya3{bottom:290.149500px;}
.y157{bottom:291.513000px;}
.y3b{bottom:294.660600px;}
.y113{bottom:298.188000px;}
.ydd{bottom:303.469500px;}
.y5e{bottom:305.719950px;}
.y82{bottom:307.981500px;}
.ybc{bottom:309.145500px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y156{bottom:310.938000px;}
.y139{bottom:313.563000px;}
.y3a{bottom:314.085600px;}
.ya2{bottom:317.149500px;}
.y112{bottom:317.613000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.yf2{bottom:329.305500px;}
.yf9{bottom:330.469500px;}
.y5d{bottom:332.719950px;}
.y138{bottom:332.988000px;}
.y39{bottom:333.510600px;}
.y81{bottom:334.981500px;}
.ycb{bottom:336.145500px;}
.ya1{bottom:344.149500px;}
.y155{bottom:347.163000px;}
.ye{bottom:348.133500px;}
.ydc{bottom:350.629500px;}
.y137{bottom:352.413000px;}
.y111{bottom:353.838000px;}
.ybb{bottom:356.305500px;}
.yf8{bottom:357.469500px;}
.y5c{bottom:359.719950px;}
.yca{bottom:363.145500px;}
.y154{bottom:366.588000px;}
.y110{bottom:373.263000px;}
.ydb{bottom:377.629500px;}
.y80{bottom:382.141500px;}
.yf1{bottom:383.305500px;}
.yba{bottom:384.469500px;}
.y5b{bottom:386.719950px;}
.yd{bottom:386.785499px;}
.y136{bottom:388.638000px;}
.yc9{bottom:390.145500px;}
.ya0{bottom:391.309500px;}
.y153{bottom:402.813000px;}
.yda{bottom:404.629500px;}
.yc{bottom:408.044999px;}
.y135{bottom:408.063000px;}
.y7f{bottom:409.141500px;}
.y10f{bottom:409.488000px;}
.yf0{bottom:410.305500px;}
.yb9{bottom:411.469500px;}
.y5a{bottom:413.719950px;}
.yc8{bottom:417.145500px;}
.y9f{bottom:418.309500px;}
.y152{bottom:422.238000px;}
.y10e{bottom:428.913000px;}
.yd9{bottom:431.629500px;}
.y7e{bottom:436.141500px;}
.yef{bottom:437.305500px;}
.yb8{bottom:438.469500px;}
.y59{bottom:440.719950px;}
.yc7{bottom:444.145500px;}
.y134{bottom:444.288000px;}
.y9e{bottom:445.309500px;}
.y151{bottom:458.463000px;}
.yd8{bottom:458.629500px;}
.y7d{bottom:463.141500px;}
.y133{bottom:463.713000px;}
.yee{bottom:464.305500px;}
.y10d{bottom:465.138000px;}
.yb7{bottom:465.469500px;}
.y58{bottom:467.719950px;}
.yc6{bottom:471.145500px;}
.y9d{bottom:472.309500px;}
.y150{bottom:477.888000px;}
.y10c{bottom:484.563000px;}
.yd7{bottom:485.629500px;}
.y7c{bottom:491.305500px;}
.yb6{bottom:492.469500px;}
.y57{bottom:494.719950px;}
.yc5{bottom:498.145500px;}
.y9c{bottom:499.309500px;}
.y132{bottom:499.938000px;}
.yb{bottom:502.864502px;}
.y10b{bottom:503.988000px;}
.y38{bottom:511.633350px;}
.yd6{bottom:512.629500px;}
.y14f{bottom:514.113000px;}
.y7b{bottom:518.305500px;}
.y131{bottom:519.363000px;}
.yb5{bottom:519.469500px;}
.ya{bottom:520.864502px;}
.yc4{bottom:525.145500px;}
.y9b{bottom:526.309500px;}
.y14e{bottom:533.538000px;}
.y9{bottom:538.864499px;}
.yd5{bottom:539.629500px;}
.y10a{bottom:540.213000px;}
.y56{bottom:541.879950px;}
.y7a{bottom:545.305500px;}
.y37{bottom:546.058350px;}
.yb4{bottom:546.469500px;}
.yc3{bottom:552.145500px;}
.y14d{bottom:552.963000px;}
.y130{bottom:555.588000px;}
.y8{bottom:556.864499px;}
.y109{bottom:559.638000px;}
.y36{bottom:565.483350px;}
.yd4{bottom:566.629500px;}
.y55{bottom:568.879950px;}
.y79{bottom:572.305500px;}
.y9a{bottom:573.469500px;}
.y14c{bottom:589.188000px;}
.y12f{bottom:591.813000px;}
.yd3{bottom:593.629500px;}
.y108{bottom:595.863000px;}
.y54{bottom:595.879950px;}
.y78{bottom:599.305500px;}
.y35{bottom:599.908350px;}
.y99{bottom:600.469500px;}
.y14b{bottom:608.613000px;}
.y107{bottom:615.288000px;}
.y34{bottom:619.333350px;}
.yb3{bottom:620.629500px;}
.y53{bottom:622.879950px;}
.yed{bottom:626.305500px;}
.y98{bottom:627.469500px;}
.y12e{bottom:628.038000px;}
.y33{bottom:638.758350px;}
.y77{bottom:643.657500px;}
.y14a{bottom:644.838000px;}
.y7{bottom:645.510000px;}
.y12d{bottom:647.463000px;}
.yb2{bottom:647.629500px;}
.y106{bottom:651.513000px;}
.yec{bottom:653.305500px;}
.y97{bottom:654.469500px;}
.y32{bottom:658.183350px;}
.y149{bottom:664.263000px;}
.y6{bottom:666.771000px;}
.y52{bottom:667.231950px;}
.y105{bottom:670.938000px;}
.yb1{bottom:674.629500px;}
.y31{bottom:677.608350px;}
.yeb{bottom:680.305500px;}
.y96{bottom:681.469500px;}
.y12c{bottom:683.688000px;}
.y30{bottom:696.320850px;}
.yf7{bottom:698.821500px;}
.y76{bottom:700.465500px;}
.yb0{bottom:701.629500px;}
.y12b{bottom:703.113000px;}
.y104{bottom:707.163000px;}
.yea{bottom:707.305500px;}
.y95{bottom:708.469500px;}
.y2f{bottom:714.320850px;}
.y148{bottom:719.913000px;}
.y12a{bottom:722.538000px;}
.y51{bottom:724.039950px;}
.y5{bottom:726.298500px;}
.y103{bottom:726.588000px;}
.y75{bottom:727.465500px;}
.yaf{bottom:728.629500px;}
.y2e{bottom:733.033350px;}
.ye9{bottom:734.305500px;}
.y94{bottom:735.469500px;}
.y147{bottom:739.338000px;}
.y50{bottom:751.039950px;}
.y2d{bottom:752.458350px;}
.y3{bottom:752.599495px;}
.y74{bottom:754.465500px;}
.yae{bottom:755.629500px;}
.y129{bottom:758.763000px;}
.ye8{bottom:761.305500px;}
.y93{bottom:762.469500px;}
.y102{bottom:762.813000px;}
.y2c{bottom:771.883350px;}
.y4f{bottom:778.039950px;}
.y128{bottom:778.188000px;}
.y73{bottom:781.465500px;}
.y101{bottom:782.238000px;}
.yad{bottom:782.629500px;}
.ye7{bottom:788.305500px;}
.y92{bottom:789.469500px;}
.y2b{bottom:791.308350px;}
.y127{bottom:797.613000px;}
.y4e{bottom:805.039950px;}
.y72{bottom:808.465500px;}
.yac{bottom:809.629500px;}
.y2a{bottom:810.733350px;}
.y146{bottom:814.413000px;}
.y91{bottom:816.469500px;}
.y100{bottom:818.463000px;}
.y29{bottom:830.158350px;}
.y4d{bottom:832.039950px;}
.y126{bottom:833.838000px;}
.y71{bottom:835.465500px;}
.yab{bottom:836.629500px;}
.yff{bottom:837.888000px;}
.y90{bottom:843.469500px;}
.y125{bottom:853.263000px;}
.yfe{bottom:857.313000px;}
.y160{bottom:858.871800px;}
.y4c{bottom:859.039950px;}
.y70{bottom:862.465500px;}
.yaa{bottom:863.629500px;}
.y28{bottom:864.583350px;}
.y145{bottom:870.063000px;}
.ye6{bottom:870.469500px;}
.y124{bottom:872.688000px;}
.y2{bottom:879.369000px;}
.yd2{bottom:883.789500px;}
.y27{bottom:884.008350px;}
.y6f{bottom:889.465500px;}
.y144{bottom:889.488000px;}
.y8f{bottom:890.629500px;}
.yfd{bottom:893.538000px;}
.y4b{bottom:906.199950px;}
.y123{bottom:908.913000px;}
.yd1{bottom:910.789500px;}
.yfc{bottom:912.963000px;}
.y6e{bottom:916.465500px;}
.y8e{bottom:917.629500px;}
.y26{bottom:918.433350px;}
.y143{bottom:925.713000px;}
.y122{bottom:928.338000px;}
.yfb{bottom:932.388000px;}
.y4a{bottom:933.199950px;}
.yd0{bottom:937.789500px;}
.y6d{bottom:943.465500px;}
.y8d{bottom:944.629500px;}
.y142{bottom:945.138000px;}
.y25{bottom:953.864850px;}
.y49{bottom:960.199950px;}
.y121{bottom:964.563000px;}
.ycf{bottom:964.789500px;}
.y1{bottom:966.726000px;}
.yfa{bottom:968.656500px;}
.y6c{bottom:970.465500px;}
.y8c{bottom:971.629500px;}
.y24{bottom:977.174850px;}
.yc2{bottom:988.981500px;}
.ya9{bottom:991.789500px;}
.y6b{bottom:998.629500px;}
.y23{bottom:1000.484850px;}
.y120{bottom:1000.788000px;}
.y48{bottom:1004.551950px;}
.ye5{bottom:1015.981500px;}
.y8b{bottom:1018.789500px;}
.y11f{bottom:1020.213000px;}
.yf6{bottom:1025.629500px;}
.y22{bottom:1038.395850px;}
.y6a{bottom:1045.789500px;}
.yf5{bottom:1052.629500px;}
.y11e{bottom:1056.438000px;}
.y69{bottom:1072.789500px;}
.y11d{bottom:1075.863000px;}
.yf4{bottom:1079.629500px;}
.y21{bottom:1080.575850px;}
.y47{bottom:1084.658100px;}
.y15f{bottom:1095.288000px;}
.y68{bottom:1099.789500px;}
.y46{bottom:1104.083100px;}
.y11c{bottom:1112.088000px;}
.y67{bottom:1126.789500px;}
.y11b{bottom:1131.513000px;}
.y45{bottom:1178.430300px;}
.y66{bottom:1194.375150px;}
.h10{height:29.624995px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h9{height:46.680000px;}
.h3{height:48.195000px;}
.hb{height:51.408000px;}
.h2{height:55.080000px;}
.hd{height:56.016000px;}
.hc{height:77.112000px;}
.h5{height:78.030000px;}
.he{height:79.080000px;}
.ha{height:85.680000px;}
.h4{height:119.055004px;}
.hf{height:175.733400px;}
.h0{height:1262.833500px;}
.h8{height:1262.834700px;}
.h1{height:1263.000000px;}
.w4{width:637.495650px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:112.169100px;}
.x6{left:127.559100px;}
.x8{left:161.309100px;}
.x4{left:203.484001px;}
.x5{left:212.598450px;}
.xa{left:266.876700px;}
.x7{left:284.881950px;}
.x3{left:454.959000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.800000pt;}
.ls1{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-17.088000pt;}
.ws1{word-spacing:-14.240000pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-1233.924749pt;}
._3{margin-left:-8.192000pt;}
._5{margin-left:-6.986667pt;}
._7{margin-left:-5.440000pt;}
._0{margin-left:-3.946667pt;}
._2{margin-left:-3.050667pt;}
._1{margin-left:-1.813333pt;}
._6{margin-left:-0.906667pt;}
._4{width:1.066667pt;}
._8{width:2.293333pt;}
._a{width:3.797333pt;}
._9{width:5.013333pt;}
._d{width:1415.182933pt;}
._b{width:1444.249600pt;}
._e{width:1627.342933pt;}
._c{width:1656.409600pt;}
.fs7{font-size:33.847467pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:75.840000pt;}
.y141{bottom:80.856000pt;}
.y65{bottom:85.831067pt;}
.y4{bottom:86.333337pt;}
.y89{bottom:91.840000pt;}
.y15e{bottom:93.456000pt;}
.ya8{bottom:95.990667pt;}
.y11a{bottom:99.389333pt;}
.ye4{bottom:101.750667pt;}
.y44{bottom:106.520533pt;}
.y88{bottom:107.840000pt;}
.y64{bottom:109.831067pt;}
.y15d{bottom:110.722667pt;}
.y140{bottom:113.056000pt;}
.yc1{bottom:115.840000pt;}
.y119{bottom:116.656000pt;}
.y161{bottom:117.316000pt;}
.ya7{bottom:119.990667pt;}
.y43{bottom:123.787200pt;}
.y20{bottom:123.790666pt;}
.ye3{bottom:125.750667pt;}
.y13f{bottom:130.322667pt;}
.y87{bottom:131.840000pt;}
.y63{bottom:133.831067pt;}
.y42{bottom:141.053867pt;}
.y15c{bottom:142.922667pt;}
.ya6{bottom:143.990667pt;}
.y13e{bottom:147.589333pt;}
.yc0{bottom:147.840000pt;}
.y118{bottom:148.856000pt;}
.ye2{bottom:149.750667pt;}
.yf3{bottom:154.796000pt;}
.y86{bottom:155.840000pt;}
.y62{bottom:157.831067pt;}
.y41{bottom:158.320533pt;}
.y15b{bottom:160.189333pt;}
.y85{bottom:171.840000pt;}
.ye1{bottom:173.750667pt;}
.y17{bottom:175.052000pt;}
.y40{bottom:175.587200pt;}
.y15a{bottom:177.456000pt;}
.yce{bottom:178.796000pt;}
.y13d{bottom:179.789333pt;}
.y117{bottom:181.056000pt;}
.ya5{bottom:183.414667pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y3f{bottom:192.853867pt;}
.y13c{bottom:197.056000pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.ye0{bottom:197.750667pt;}
.y116{bottom:198.322667pt;}
.y61{bottom:199.751067pt;}
.ybf{bottom:201.761333pt;}
.ycd{bottom:202.796000pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y159{bottom:209.656000pt;}
.y3e{bottom:210.120533pt;}
.y115{bottom:215.589333pt;}
.ydf{bottom:221.750667pt;}
.y60{bottom:223.751067pt;}
.y84{bottom:224.726667pt;}
.ybe{bottom:225.761333pt;}
.ycc{bottom:226.796000pt;}
.y158{bottom:226.922667pt;}
.y3d{bottom:227.387200pt;}
.y13b{bottom:229.256000pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.ya4{bottom:233.910667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y3c{bottom:244.653867pt;}
.yde{bottom:245.750667pt;}
.y13a{bottom:246.522667pt;}
.y5f{bottom:247.751067pt;}
.y114{bottom:247.789333pt;}
.y83{bottom:249.761333pt;}
.ybd{bottom:250.796000pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.ya3{bottom:257.910667pt;}
.y157{bottom:259.122667pt;}
.y3b{bottom:261.920533pt;}
.y113{bottom:265.056000pt;}
.ydd{bottom:269.750667pt;}
.y5e{bottom:271.751067pt;}
.y82{bottom:273.761333pt;}
.ybc{bottom:274.796000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y156{bottom:276.389333pt;}
.y139{bottom:278.722667pt;}
.y3a{bottom:279.187200pt;}
.ya2{bottom:281.910667pt;}
.y112{bottom:282.322667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.yf2{bottom:292.716000pt;}
.yf9{bottom:293.750667pt;}
.y5d{bottom:295.751067pt;}
.y138{bottom:295.989333pt;}
.y39{bottom:296.453867pt;}
.y81{bottom:297.761333pt;}
.ycb{bottom:298.796000pt;}
.ya1{bottom:305.910667pt;}
.y155{bottom:308.589333pt;}
.ye{bottom:309.452000pt;}
.ydc{bottom:311.670667pt;}
.y137{bottom:313.256000pt;}
.y111{bottom:314.522667pt;}
.ybb{bottom:316.716000pt;}
.yf8{bottom:317.750667pt;}
.y5c{bottom:319.751067pt;}
.yca{bottom:322.796000pt;}
.y154{bottom:325.856000pt;}
.y110{bottom:331.789333pt;}
.ydb{bottom:335.670667pt;}
.y80{bottom:339.681333pt;}
.yf1{bottom:340.716000pt;}
.yba{bottom:341.750667pt;}
.y5b{bottom:343.751067pt;}
.yd{bottom:343.809333pt;}
.y136{bottom:345.456000pt;}
.yc9{bottom:346.796000pt;}
.ya0{bottom:347.830667pt;}
.y153{bottom:358.056000pt;}
.yda{bottom:359.670667pt;}
.yc{bottom:362.706666pt;}
.y135{bottom:362.722667pt;}
.y7f{bottom:363.681333pt;}
.y10f{bottom:363.989333pt;}
.yf0{bottom:364.716000pt;}
.yb9{bottom:365.750667pt;}
.y5a{bottom:367.751067pt;}
.yc8{bottom:370.796000pt;}
.y9f{bottom:371.830667pt;}
.y152{bottom:375.322667pt;}
.y10e{bottom:381.256000pt;}
.yd9{bottom:383.670667pt;}
.y7e{bottom:387.681333pt;}
.yef{bottom:388.716000pt;}
.yb8{bottom:389.750667pt;}
.y59{bottom:391.751067pt;}
.yc7{bottom:394.796000pt;}
.y134{bottom:394.922667pt;}
.y9e{bottom:395.830667pt;}
.y151{bottom:407.522667pt;}
.yd8{bottom:407.670667pt;}
.y7d{bottom:411.681333pt;}
.y133{bottom:412.189333pt;}
.yee{bottom:412.716000pt;}
.y10d{bottom:413.456000pt;}
.yb7{bottom:413.750667pt;}
.y58{bottom:415.751067pt;}
.yc6{bottom:418.796000pt;}
.y9d{bottom:419.830667pt;}
.y150{bottom:424.789333pt;}
.y10c{bottom:430.722667pt;}
.yd7{bottom:431.670667pt;}
.y7c{bottom:436.716000pt;}
.yb6{bottom:437.750667pt;}
.y57{bottom:439.751067pt;}
.yc5{bottom:442.796000pt;}
.y9c{bottom:443.830667pt;}
.y132{bottom:444.389333pt;}
.yb{bottom:446.990669pt;}
.y10b{bottom:447.989333pt;}
.y38{bottom:454.785200pt;}
.yd6{bottom:455.670667pt;}
.y14f{bottom:456.989333pt;}
.y7b{bottom:460.716000pt;}
.y131{bottom:461.656000pt;}
.yb5{bottom:461.750667pt;}
.ya{bottom:462.990669pt;}
.yc4{bottom:466.796000pt;}
.y9b{bottom:467.830667pt;}
.y14e{bottom:474.256000pt;}
.y9{bottom:478.990666pt;}
.yd5{bottom:479.670667pt;}
.y10a{bottom:480.189333pt;}
.y56{bottom:481.671067pt;}
.y7a{bottom:484.716000pt;}
.y37{bottom:485.385200pt;}
.yb4{bottom:485.750667pt;}
.yc3{bottom:490.796000pt;}
.y14d{bottom:491.522667pt;}
.y130{bottom:493.856000pt;}
.y8{bottom:494.990666pt;}
.y109{bottom:497.456000pt;}
.y36{bottom:502.651867pt;}
.yd4{bottom:503.670667pt;}
.y55{bottom:505.671067pt;}
.y79{bottom:508.716000pt;}
.y9a{bottom:509.750667pt;}
.y14c{bottom:523.722667pt;}
.y12f{bottom:526.056000pt;}
.yd3{bottom:527.670667pt;}
.y108{bottom:529.656000pt;}
.y54{bottom:529.671067pt;}
.y78{bottom:532.716000pt;}
.y35{bottom:533.251867pt;}
.y99{bottom:533.750667pt;}
.y14b{bottom:540.989333pt;}
.y107{bottom:546.922667pt;}
.y34{bottom:550.518533pt;}
.yb3{bottom:551.670667pt;}
.y53{bottom:553.671067pt;}
.yed{bottom:556.716000pt;}
.y98{bottom:557.750667pt;}
.y12e{bottom:558.256000pt;}
.y33{bottom:567.785200pt;}
.y77{bottom:572.140000pt;}
.y14a{bottom:573.189333pt;}
.y7{bottom:573.786667pt;}
.y12d{bottom:575.522667pt;}
.yb2{bottom:575.670667pt;}
.y106{bottom:579.122667pt;}
.yec{bottom:580.716000pt;}
.y97{bottom:581.750667pt;}
.y32{bottom:585.051867pt;}
.y149{bottom:590.456000pt;}
.y6{bottom:592.685334pt;}
.y52{bottom:593.095067pt;}
.y105{bottom:596.389333pt;}
.yb1{bottom:599.670667pt;}
.y31{bottom:602.318533pt;}
.yeb{bottom:604.716000pt;}
.y96{bottom:605.750667pt;}
.y12c{bottom:607.722667pt;}
.y30{bottom:618.951867pt;}
.yf7{bottom:621.174667pt;}
.y76{bottom:622.636000pt;}
.yb0{bottom:623.670667pt;}
.y12b{bottom:624.989333pt;}
.y104{bottom:628.589333pt;}
.yea{bottom:628.716000pt;}
.y95{bottom:629.750667pt;}
.y2f{bottom:634.951867pt;}
.y148{bottom:639.922667pt;}
.y12a{bottom:642.256000pt;}
.y51{bottom:643.591067pt;}
.y5{bottom:645.598667pt;}
.y103{bottom:645.856000pt;}
.y75{bottom:646.636000pt;}
.yaf{bottom:647.670667pt;}
.y2e{bottom:651.585200pt;}
.ye9{bottom:652.716000pt;}
.y94{bottom:653.750667pt;}
.y147{bottom:657.189333pt;}
.y50{bottom:667.591067pt;}
.y2d{bottom:668.851867pt;}
.y3{bottom:668.977329pt;}
.y74{bottom:670.636000pt;}
.yae{bottom:671.670667pt;}
.y129{bottom:674.456000pt;}
.ye8{bottom:676.716000pt;}
.y93{bottom:677.750667pt;}
.y102{bottom:678.056000pt;}
.y2c{bottom:686.118533pt;}
.y4f{bottom:691.591067pt;}
.y128{bottom:691.722667pt;}
.y73{bottom:694.636000pt;}
.y101{bottom:695.322667pt;}
.yad{bottom:695.670667pt;}
.ye7{bottom:700.716000pt;}
.y92{bottom:701.750667pt;}
.y2b{bottom:703.385200pt;}
.y127{bottom:708.989333pt;}
.y4e{bottom:715.591067pt;}
.y72{bottom:718.636000pt;}
.yac{bottom:719.670667pt;}
.y2a{bottom:720.651867pt;}
.y146{bottom:723.922667pt;}
.y91{bottom:725.750667pt;}
.y100{bottom:727.522667pt;}
.y29{bottom:737.918533pt;}
.y4d{bottom:739.591067pt;}
.y126{bottom:741.189333pt;}
.y71{bottom:742.636000pt;}
.yab{bottom:743.670667pt;}
.yff{bottom:744.789333pt;}
.y90{bottom:749.750667pt;}
.y125{bottom:758.456000pt;}
.yfe{bottom:762.056000pt;}
.y160{bottom:763.441600pt;}
.y4c{bottom:763.591067pt;}
.y70{bottom:766.636000pt;}
.yaa{bottom:767.670667pt;}
.y28{bottom:768.518533pt;}
.y145{bottom:773.389333pt;}
.ye6{bottom:773.750667pt;}
.y124{bottom:775.722667pt;}
.y2{bottom:781.661334pt;}
.yd2{bottom:785.590667pt;}
.y27{bottom:785.785200pt;}
.y6f{bottom:790.636000pt;}
.y144{bottom:790.656000pt;}
.y8f{bottom:791.670667pt;}
.yfd{bottom:794.256000pt;}
.y4b{bottom:805.511067pt;}
.y123{bottom:807.922667pt;}
.yd1{bottom:809.590667pt;}
.yfc{bottom:811.522667pt;}
.y6e{bottom:814.636000pt;}
.y8e{bottom:815.670667pt;}
.y26{bottom:816.385200pt;}
.y143{bottom:822.856000pt;}
.y122{bottom:825.189333pt;}
.yfb{bottom:828.789333pt;}
.y4a{bottom:829.511067pt;}
.yd0{bottom:833.590667pt;}
.y6d{bottom:838.636000pt;}
.y8d{bottom:839.670667pt;}
.y142{bottom:840.122667pt;}
.y25{bottom:847.879867pt;}
.y49{bottom:853.511067pt;}
.y121{bottom:857.389333pt;}
.ycf{bottom:857.590667pt;}
.y1{bottom:859.312000pt;}
.yfa{bottom:861.028000pt;}
.y6c{bottom:862.636000pt;}
.y8c{bottom:863.670667pt;}
.y24{bottom:868.599867pt;}
.yc2{bottom:879.094667pt;}
.ya9{bottom:881.590667pt;}
.y6b{bottom:887.670667pt;}
.y23{bottom:889.319867pt;}
.y120{bottom:889.589333pt;}
.y48{bottom:892.935067pt;}
.ye5{bottom:903.094667pt;}
.y8b{bottom:905.590667pt;}
.y11f{bottom:906.856000pt;}
.yf6{bottom:911.670667pt;}
.y22{bottom:923.018533pt;}
.y6a{bottom:929.590667pt;}
.yf5{bottom:935.670667pt;}
.y11e{bottom:939.056000pt;}
.y69{bottom:953.590667pt;}
.y11d{bottom:956.322667pt;}
.yf4{bottom:959.670667pt;}
.y21{bottom:960.511867pt;}
.y47{bottom:964.140533pt;}
.y15f{bottom:973.589333pt;}
.y68{bottom:977.590667pt;}
.y46{bottom:981.407200pt;}
.y11c{bottom:988.522667pt;}
.y67{bottom:1001.590667pt;}
.y11b{bottom:1005.789333pt;}
.y45{bottom:1047.493600pt;}
.y66{bottom:1061.666800pt;}
.h10{height:26.333329pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h9{height:41.493333pt;}
.h3{height:42.840000pt;}
.hb{height:45.696000pt;}
.h2{height:48.960000pt;}
.hd{height:49.792000pt;}
.hc{height:68.544000pt;}
.h5{height:69.360000pt;}
.he{height:70.293333pt;}
.ha{height:76.160000pt;}
.h4{height:105.826671pt;}
.hf{height:156.207467pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w4{width:566.662800pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:99.705867pt;}
.x6{left:113.385867pt;}
.x8{left:143.385867pt;}
.x4{left:180.874667pt;}
.x5{left:188.976400pt;}
.xa{left:237.223733pt;}
.x7{left:253.228400pt;}
.x3{left:404.408000pt;}
}




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