
    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_894650fedff793527c229391.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.125000;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_da322210600e6b5435d92d09.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112793;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_cc7fb83e137b59c44aa9e152.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.184000;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_e46737a890ee66b8a93671bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172444;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_483c506034a5c9e7945d3381.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979004;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_d098cdb41f896d8cc7168c53.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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_b46a278a3fbbfd08bfb66fa9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_65dc09c73f1cbdb88e481727.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.903320;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);}
.v2{vertical-align:-25.974000px;}
.v1{vertical-align:-4.358400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.794000px;}
.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;}
}
.ws0{word-spacing:-21.684000px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-22.176000px;}
._1b{margin-left:-14.448000px;}
._7{margin-left:-12.198000px;}
._2{margin-left:-10.350000px;}
._5{margin-left:-7.722000px;}
._11{margin-left:-6.240000px;}
._a{margin-left:-4.992000px;}
._4{margin-left:-3.870000px;}
._f{margin-left:-2.232000px;}
._3{margin-left:-1.170000px;}
._1{width:1.260000px;}
._e{width:2.262000px;}
._8{width:3.744000px;}
._6{width:5.304000px;}
._d{width:6.318000px;}
._c{width:7.926000px;}
._b{width:8.970000px;}
._15{width:10.404000px;}
._1c{width:11.484000px;}
._12{width:17.814000px;}
._10{width:19.236000px;}
._17{width:31.512000px;}
._16{width:39.156000px;}
._19{width:43.212000px;}
._13{width:166.608000px;}
._14{width:188.292000px;}
._18{width:194.298000px;}
._1a{width:201.474000px;}
._0{width:1901.532600px;}
.fc4{color:rgb(95,43,132);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(140,149,156);}
.fc1{color:rgb(137,58,182);}
.fc0{color:rgb(138,148,157);}
.fs5{font-size:45.474000px;}
.fs6{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:75.000000px;}
.fs4{font-size:78.000000px;}
.fs0{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y76{bottom:33.670650px;}
.y27{bottom:33.670800px;}
.y74{bottom:34.760250px;}
.y2{bottom:34.760400px;}
.yc5{bottom:82.222200px;}
.y24{bottom:85.062450px;}
.y140{bottom:85.420200px;}
.y73{bottom:104.892300px;}
.y23{bottom:105.055950px;}
.y4d{bottom:105.154800px;}
.ye7{bottom:105.932550px;}
.y102{bottom:105.973050px;}
.yc4{bottom:106.226700px;}
.y72{bottom:128.896800px;}
.y4c{bottom:129.159300px;}
.ye6{bottom:129.937050px;}
.y9c{bottom:129.977550px;}
.yc3{bottom:130.231200px;}
.y71{bottom:152.901300px;}
.ye5{bottom:153.941550px;}
.y9b{bottom:153.982050px;}
.yc2{bottom:154.235700px;}
.y137{bottom:170.192850px;}
.y70{bottom:176.905800px;}
.y4b{bottom:177.168300px;}
.ye4{bottom:177.946050px;}
.y9a{bottom:177.986550px;}
.yc1{bottom:178.240200px;}
.y136{bottom:192.692850px;}
.y22{bottom:200.335050px;}
.y6f{bottom:200.910300px;}
.y4a{bottom:201.172800px;}
.ye3{bottom:201.950550px;}
.y99{bottom:201.991050px;}
.yc0{bottom:202.244700px;}
.y135{bottom:215.192850px;}
.y21{bottom:223.735050px;}
.y6e{bottom:224.914800px;}
.y49{bottom:225.177300px;}
.ye2{bottom:225.955050px;}
.y98{bottom:225.995550px;}
.ybf{bottom:226.249200px;}
.y6d{bottom:248.919300px;}
.y48{bottom:249.181800px;}
.ye1{bottom:249.959550px;}
.y97{bottom:250.000050px;}
.ybe{bottom:250.253700px;}
.y134{bottom:260.192850px;}
.y20{bottom:270.535050px;}
.y6c{bottom:272.923800px;}
.y47{bottom:273.186300px;}
.ye0{bottom:273.964050px;}
.y96{bottom:274.024050px;}
.y101{bottom:274.036050px;}
.ybd{bottom:274.277700px;}
.y1f{bottom:293.935050px;}
.y6b{bottom:296.928300px;}
.y46{bottom:297.190800px;}
.ydf{bottom:297.968550px;}
.y95{bottom:298.018050px;}
.y100{bottom:298.030050px;}
.ybc{bottom:298.271700px;}
.y133{bottom:305.192850px;}
.y1e{bottom:317.335050px;}
.y6a{bottom:320.932800px;}
.yde{bottom:321.973050px;}
.y94{bottom:322.012050px;}
.yff{bottom:322.024050px;}
.ybb{bottom:322.265700px;}
.y1{bottom:325.497600px;}
.y4e{bottom:325.497750px;}
.y75{bottom:326.737650px;}
.y26{bottom:326.737950px;}
.y132{bottom:327.692850px;}
.y1d{bottom:340.735050px;}
.y69{bottom:344.937300px;}
.y45{bottom:345.232800px;}
.ydd{bottom:345.977550px;}
.y93{bottom:346.006050px;}
.yfe{bottom:346.018050px;}
.yba{bottom:346.259700px;}
.y1c{bottom:364.135050px;}
.y68{bottom:368.961300px;}
.y44{bottom:369.226800px;}
.ydc{bottom:369.982050px;}
.y92{bottom:370.000050px;}
.yfd{bottom:370.012050px;}
.yb9{bottom:370.123200px;}
.y131{bottom:372.692850px;}
.y1b{bottom:387.535050px;}
.y67{bottom:392.955300px;}
.y43{bottom:393.220800px;}
.ydb{bottom:393.986550px;}
.yfc{bottom:394.006050px;}
.yb8{bottom:394.127700px;}
.y130{bottom:395.192850px;}
.y1a{bottom:410.935050px;}
.y66{bottom:416.949300px;}
.y42{bottom:417.214800px;}
.y91{bottom:417.946050px;}
.yfb{bottom:417.968550px;}
.yda{bottom:417.991050px;}
.yb7{bottom:418.132200px;}
.y19{bottom:434.335050px;}
.y12f{bottom:440.192850px;}
.y65{bottom:440.943300px;}
.y41{bottom:441.208800px;}
.y90{bottom:441.950550px;}
.yfa{bottom:441.973050px;}
.yd9{bottom:441.995550px;}
.yb6{bottom:442.136700px;}
.y18{bottom:457.735050px;}
.y12e{bottom:462.692850px;}
.y64{bottom:464.844300px;}
.y40{bottom:465.202800px;}
.y11b{bottom:465.459750px;}
.y8f{bottom:465.955050px;}
.yf9{bottom:465.977550px;}
.yd8{bottom:466.000050px;}
.yb5{bottom:466.141200px;}
.y17{bottom:481.135050px;}
.y63{bottom:488.848800px;}
.y3f{bottom:489.196800px;}
.y11a{bottom:489.464250px;}
.y8e{bottom:489.959550px;}
.yf8{bottom:489.982050px;}
.yd7{bottom:490.030050px;}
.yb4{bottom:490.145700px;}
.y16{bottom:504.535050px;}
.y12d{bottom:507.692850px;}
.y62{bottom:512.853300px;}
.y3e{bottom:513.087300px;}
.y119{bottom:513.468750px;}
.y8d{bottom:513.964050px;}
.yf7{bottom:513.986550px;}
.yd6{bottom:514.024050px;}
.yb3{bottom:514.150200px;}
.y15{bottom:527.935050px;}
.y3d{bottom:537.091800px;}
.y118{bottom:537.473250px;}
.y8c{bottom:537.968550px;}
.yf6{bottom:537.991050px;}
.yd5{bottom:538.018050px;}
.yb2{bottom:538.154700px;}
.y14{bottom:551.335050px;}
.y12c{bottom:552.692850px;}
.y61{bottom:560.862300px;}
.y3c{bottom:561.096300px;}
.y117{bottom:561.477750px;}
.y8b{bottom:561.973050px;}
.yf5{bottom:561.995550px;}
.yd4{bottom:562.012050px;}
.yb1{bottom:562.159200px;}
.y13{bottom:574.735050px;}
.y12b{bottom:575.192850px;}
.y3b{bottom:585.100800px;}
.y116{bottom:585.482250px;}
.y8a{bottom:585.977550px;}
.yf4{bottom:586.000050px;}
.yd3{bottom:586.006050px;}
.yb0{bottom:586.163700px;}
.y12{bottom:598.135050px;}
.y3a{bottom:609.105300px;}
.y115{bottom:609.486750px;}
.y89{bottom:609.982050px;}
.yd2{bottom:610.000050px;}
.yf3{bottom:610.018050px;}
.yaf{bottom:610.168200px;}
.y12a{bottom:620.192850px;}
.y11{bottom:621.535050px;}
.y39{bottom:633.109800px;}
.y114{bottom:633.491250px;}
.y88{bottom:633.986550px;}
.yf2{bottom:634.012050px;}
.yae{bottom:634.172700px;}
.y10{bottom:644.935050px;}
.y60{bottom:656.860800px;}
.y38{bottom:657.114300px;}
.y113{bottom:657.495750px;}
.yd1{bottom:657.968550px;}
.y87{bottom:657.991050px;}
.yf1{bottom:658.006050px;}
.yad{bottom:658.177200px;}
.y129{bottom:665.192850px;}
.yf{bottom:668.335050px;}
.y5f{bottom:680.865300px;}
.y37{bottom:681.118800px;}
.y112{bottom:681.500250px;}
.yd0{bottom:681.973050px;}
.y86{bottom:681.995550px;}
.yf0{bottom:682.000050px;}
.yac{bottom:682.181700px;}
.y128{bottom:687.692850px;}
.ye{bottom:691.735050px;}
.y5e{bottom:704.869800px;}
.y36{bottom:705.123300px;}
.y111{bottom:705.504750px;}
.ycf{bottom:705.977550px;}
.y85{bottom:706.000050px;}
.yab{bottom:706.186200px;}
.yd{bottom:715.135050px;}
.y5d{bottom:728.874300px;}
.y35{bottom:729.127800px;}
.y110{bottom:729.509250px;}
.yef{bottom:729.937050px;}
.yce{bottom:729.982050px;}
.y84{bottom:730.036050px;}
.yaa{bottom:730.190700px;}
.y127{bottom:732.692850px;}
.yc{bottom:738.535050px;}
.y5c{bottom:752.878800px;}
.y34{bottom:753.132300px;}
.y10f{bottom:753.513750px;}
.yee{bottom:753.941550px;}
.ycd{bottom:753.986550px;}
.y83{bottom:754.030050px;}
.ya9{bottom:754.195200px;}
.y126{bottom:755.192850px;}
.yb{bottom:761.935050px;}
.y5b{bottom:776.883300px;}
.y33{bottom:777.136800px;}
.y10e{bottom:777.518250px;}
.yed{bottom:777.946050px;}
.ycc{bottom:777.991050px;}
.y82{bottom:778.024050px;}
.ya8{bottom:778.199700px;}
.ya{bottom:785.335050px;}
.y125{bottom:800.192850px;}
.y5a{bottom:800.887800px;}
.y32{bottom:801.141300px;}
.y10d{bottom:801.522750px;}
.yec{bottom:801.950550px;}
.ycb{bottom:801.995550px;}
.y81{bottom:802.018050px;}
.ya7{bottom:802.204200px;}
.y9{bottom:808.735050px;}
.y124{bottom:822.692850px;}
.y59{bottom:824.892300px;}
.y31{bottom:825.145800px;}
.y10c{bottom:825.527250px;}
.yeb{bottom:825.955050px;}
.yca{bottom:826.000050px;}
.y80{bottom:826.012050px;}
.ya6{bottom:826.208700px;}
.y8{bottom:832.135050px;}
.y13f{bottom:841.495800px;}
.y123{bottom:845.192850px;}
.y58{bottom:848.896800px;}
.y30{bottom:849.150300px;}
.y10b{bottom:849.531750px;}
.yea{bottom:849.959550px;}
.y7f{bottom:850.006050px;}
.yc9{bottom:850.024050px;}
.ya5{bottom:850.213200px;}
.y57{bottom:872.901300px;}
.y2f{bottom:873.154800px;}
.y10a{bottom:873.536250px;}
.ye9{bottom:873.964050px;}
.y7e{bottom:874.000050px;}
.yc8{bottom:874.018050px;}
.ya4{bottom:874.217700px;}
.y13e{bottom:886.495800px;}
.y122{bottom:890.192850px;}
.y56{bottom:896.905800px;}
.y2e{bottom:897.159300px;}
.y109{bottom:897.540750px;}
.ye8{bottom:897.968550px;}
.yc7{bottom:898.012050px;}
.ya3{bottom:898.222200px;}
.y7{bottom:900.543450px;}
.y13d{bottom:908.995800px;}
.y121{bottom:912.692850px;}
.y55{bottom:920.910300px;}
.y2d{bottom:921.163800px;}
.y108{bottom:921.545250px;}
.y7d{bottom:921.973050px;}
.yc6{bottom:922.006050px;}
.y6{bottom:922.143450px;}
.ya2{bottom:922.226700px;}
.y13c{bottom:931.495800px;}
.y120{bottom:935.192850px;}
.y5{bottom:943.743450px;}
.y54{bottom:944.914800px;}
.y2c{bottom:945.168300px;}
.y107{bottom:945.549750px;}
.y7c{bottom:945.977550px;}
.ya1{bottom:946.231200px;}
.y11f{bottom:957.692850px;}
.y4{bottom:965.343450px;}
.y53{bottom:968.919300px;}
.y2b{bottom:969.172800px;}
.y106{bottom:969.554250px;}
.y7b{bottom:969.982050px;}
.ya0{bottom:970.235700px;}
.y13b{bottom:976.495800px;}
.y52{bottom:992.923800px;}
.y2a{bottom:993.177300px;}
.y105{bottom:993.558750px;}
.y7a{bottom:993.986550px;}
.y9f{bottom:994.240200px;}
.y13a{bottom:998.995800px;}
.y11e{bottom:1002.692850px;}
.y25{bottom:1010.667000px;}
.y51{bottom:1016.928300px;}
.y29{bottom:1017.181800px;}
.y104{bottom:1017.563250px;}
.y79{bottom:1017.991050px;}
.y9e{bottom:1018.244700px;}
.y139{bottom:1021.495800px;}
.y11d{bottom:1025.192850px;}
.y50{bottom:1040.932800px;}
.y78{bottom:1041.995550px;}
.y3{bottom:1052.871300px;}
.y4f{bottom:1064.937300px;}
.y28{bottom:1065.190800px;}
.y103{bottom:1065.572250px;}
.y77{bottom:1066.000050px;}
.y9d{bottom:1066.253700px;}
.y138{bottom:1066.495800px;}
.y11c{bottom:1070.192850px;}
.h9{height:41.745132px;}
.h11{height:45.246094px;}
.ha{height:55.080000px;}
.hd{height:58.110000px;}
.h8{height:58.500000px;}
.hc{height:59.071289px;}
.h3{height:64.441406px;}
.h6{height:65.408000px;}
.h5{height:66.096000px;}
.hb{height:67.500000px;}
.hf{height:68.478516px;}
.h10{height:68.850000px;}
.h7{height:69.811523px;}
.he{height:71.604000px;}
.h4{height:79.013672px;}
.h2{height:80.551758px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:34.901550px;}
.xb{left:46.151550px;}
.x9{left:84.507900px;}
.x2{left:86.102400px;}
.x3{left:106.660500px;}
.xd{left:127.559100px;}
.xe{left:178.590600px;}
.xa{left:186.281850px;}
.x4{left:332.798550px;}
.x5{left:344.786550px;}
.x7{left:376.214550px;}
.x10{left:402.835800px;}
.x6{left:417.236550px;}
.x8{left:471.976350px;}
.xc{left:702.081600px;}
.x1{left:836.574900px;}
@media print{
.v2{vertical-align:-23.088000pt;}
.v1{vertical-align:-3.874133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.594667pt;}
.ws0{word-spacing:-19.274667pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-19.712000pt;}
._1b{margin-left:-12.842667pt;}
._7{margin-left:-10.842667pt;}
._2{margin-left:-9.200000pt;}
._5{margin-left:-6.864000pt;}
._11{margin-left:-5.546667pt;}
._a{margin-left:-4.437333pt;}
._4{margin-left:-3.440000pt;}
._f{margin-left:-1.984000pt;}
._3{margin-left:-1.040000pt;}
._1{width:1.120000pt;}
._e{width:2.010667pt;}
._8{width:3.328000pt;}
._6{width:4.714667pt;}
._d{width:5.616000pt;}
._c{width:7.045333pt;}
._b{width:7.973333pt;}
._15{width:9.248000pt;}
._1c{width:10.208000pt;}
._12{width:15.834667pt;}
._10{width:17.098667pt;}
._17{width:28.010667pt;}
._16{width:34.805333pt;}
._19{width:38.410667pt;}
._13{width:148.096000pt;}
._14{width:167.370667pt;}
._18{width:172.709333pt;}
._1a{width:179.088000pt;}
._0{width:1690.251200pt;}
.fs5{font-size:40.421333pt;}
.fs6{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:66.666667pt;}
.fs4{font-size:69.333333pt;}
.fs0{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:29.929467pt;}
.y27{bottom:29.929600pt;}
.y74{bottom:30.898000pt;}
.y2{bottom:30.898133pt;}
.yc5{bottom:73.086400pt;}
.y24{bottom:75.611067pt;}
.y140{bottom:75.929067pt;}
.y73{bottom:93.237600pt;}
.y23{bottom:93.383067pt;}
.y4d{bottom:93.470933pt;}
.ye7{bottom:94.162267pt;}
.y102{bottom:94.198267pt;}
.yc4{bottom:94.423733pt;}
.y72{bottom:114.574933pt;}
.y4c{bottom:114.808267pt;}
.ye6{bottom:115.499600pt;}
.y9c{bottom:115.535600pt;}
.yc3{bottom:115.761067pt;}
.y71{bottom:135.912267pt;}
.ye5{bottom:136.836933pt;}
.y9b{bottom:136.872933pt;}
.yc2{bottom:137.098400pt;}
.y137{bottom:151.282533pt;}
.y70{bottom:157.249600pt;}
.y4b{bottom:157.482933pt;}
.ye4{bottom:158.174267pt;}
.y9a{bottom:158.210267pt;}
.yc1{bottom:158.435733pt;}
.y136{bottom:171.282533pt;}
.y22{bottom:178.075600pt;}
.y6f{bottom:178.586933pt;}
.y4a{bottom:178.820267pt;}
.ye3{bottom:179.511600pt;}
.y99{bottom:179.547600pt;}
.yc0{bottom:179.773067pt;}
.y135{bottom:191.282533pt;}
.y21{bottom:198.875600pt;}
.y6e{bottom:199.924267pt;}
.y49{bottom:200.157600pt;}
.ye2{bottom:200.848933pt;}
.y98{bottom:200.884933pt;}
.ybf{bottom:201.110400pt;}
.y6d{bottom:221.261600pt;}
.y48{bottom:221.494933pt;}
.ye1{bottom:222.186267pt;}
.y97{bottom:222.222267pt;}
.ybe{bottom:222.447733pt;}
.y134{bottom:231.282533pt;}
.y20{bottom:240.475600pt;}
.y6c{bottom:242.598933pt;}
.y47{bottom:242.832267pt;}
.ye0{bottom:243.523600pt;}
.y96{bottom:243.576933pt;}
.y101{bottom:243.587600pt;}
.ybd{bottom:243.802400pt;}
.y1f{bottom:261.275600pt;}
.y6b{bottom:263.936267pt;}
.y46{bottom:264.169600pt;}
.ydf{bottom:264.860933pt;}
.y95{bottom:264.904933pt;}
.y100{bottom:264.915600pt;}
.ybc{bottom:265.130400pt;}
.y133{bottom:271.282533pt;}
.y1e{bottom:282.075600pt;}
.y6a{bottom:285.273600pt;}
.yde{bottom:286.198267pt;}
.y94{bottom:286.232933pt;}
.yff{bottom:286.243600pt;}
.ybb{bottom:286.458400pt;}
.y1{bottom:289.331200pt;}
.y4e{bottom:289.331333pt;}
.y75{bottom:290.433467pt;}
.y26{bottom:290.433733pt;}
.y132{bottom:291.282533pt;}
.y1d{bottom:302.875600pt;}
.y69{bottom:306.610933pt;}
.y45{bottom:306.873600pt;}
.ydd{bottom:307.535600pt;}
.y93{bottom:307.560933pt;}
.yfe{bottom:307.571600pt;}
.yba{bottom:307.786400pt;}
.y1c{bottom:323.675600pt;}
.y68{bottom:327.965600pt;}
.y44{bottom:328.201600pt;}
.ydc{bottom:328.872933pt;}
.y92{bottom:328.888933pt;}
.yfd{bottom:328.899600pt;}
.yb9{bottom:328.998400pt;}
.y131{bottom:331.282533pt;}
.y1b{bottom:344.475600pt;}
.y67{bottom:349.293600pt;}
.y43{bottom:349.529600pt;}
.ydb{bottom:350.210267pt;}
.yfc{bottom:350.227600pt;}
.yb8{bottom:350.335733pt;}
.y130{bottom:351.282533pt;}
.y1a{bottom:365.275600pt;}
.y66{bottom:370.621600pt;}
.y42{bottom:370.857600pt;}
.y91{bottom:371.507600pt;}
.yfb{bottom:371.527600pt;}
.yda{bottom:371.547600pt;}
.yb7{bottom:371.673067pt;}
.y19{bottom:386.075600pt;}
.y12f{bottom:391.282533pt;}
.y65{bottom:391.949600pt;}
.y41{bottom:392.185600pt;}
.y90{bottom:392.844933pt;}
.yfa{bottom:392.864933pt;}
.yd9{bottom:392.884933pt;}
.yb6{bottom:393.010400pt;}
.y18{bottom:406.875600pt;}
.y12e{bottom:411.282533pt;}
.y64{bottom:413.194933pt;}
.y40{bottom:413.513600pt;}
.y11b{bottom:413.742000pt;}
.y8f{bottom:414.182267pt;}
.yf9{bottom:414.202267pt;}
.yd8{bottom:414.222267pt;}
.yb5{bottom:414.347733pt;}
.y17{bottom:427.675600pt;}
.y63{bottom:434.532267pt;}
.y3f{bottom:434.841600pt;}
.y11a{bottom:435.079333pt;}
.y8e{bottom:435.519600pt;}
.yf8{bottom:435.539600pt;}
.yd7{bottom:435.582267pt;}
.yb4{bottom:435.685067pt;}
.y16{bottom:448.475600pt;}
.y12d{bottom:451.282533pt;}
.y62{bottom:455.869600pt;}
.y3e{bottom:456.077600pt;}
.y119{bottom:456.416667pt;}
.y8d{bottom:456.856933pt;}
.yf7{bottom:456.876933pt;}
.yd6{bottom:456.910267pt;}
.yb3{bottom:457.022400pt;}
.y15{bottom:469.275600pt;}
.y3d{bottom:477.414933pt;}
.y118{bottom:477.754000pt;}
.y8c{bottom:478.194267pt;}
.yf6{bottom:478.214267pt;}
.yd5{bottom:478.238267pt;}
.yb2{bottom:478.359733pt;}
.y14{bottom:490.075600pt;}
.y12c{bottom:491.282533pt;}
.y61{bottom:498.544267pt;}
.y3c{bottom:498.752267pt;}
.y117{bottom:499.091333pt;}
.y8b{bottom:499.531600pt;}
.yf5{bottom:499.551600pt;}
.yd4{bottom:499.566267pt;}
.yb1{bottom:499.697067pt;}
.y13{bottom:510.875600pt;}
.y12b{bottom:511.282533pt;}
.y3b{bottom:520.089600pt;}
.y116{bottom:520.428667pt;}
.y8a{bottom:520.868933pt;}
.yf4{bottom:520.888933pt;}
.yd3{bottom:520.894267pt;}
.yb0{bottom:521.034400pt;}
.y12{bottom:531.675600pt;}
.y3a{bottom:541.426933pt;}
.y115{bottom:541.766000pt;}
.y89{bottom:542.206267pt;}
.yd2{bottom:542.222267pt;}
.yf3{bottom:542.238267pt;}
.yaf{bottom:542.371733pt;}
.y12a{bottom:551.282533pt;}
.y11{bottom:552.475600pt;}
.y39{bottom:562.764267pt;}
.y114{bottom:563.103333pt;}
.y88{bottom:563.543600pt;}
.yf2{bottom:563.566267pt;}
.yae{bottom:563.709067pt;}
.y10{bottom:573.275600pt;}
.y60{bottom:583.876267pt;}
.y38{bottom:584.101600pt;}
.y113{bottom:584.440667pt;}
.yd1{bottom:584.860933pt;}
.y87{bottom:584.880933pt;}
.yf1{bottom:584.894267pt;}
.yad{bottom:585.046400pt;}
.y129{bottom:591.282533pt;}
.yf{bottom:594.075600pt;}
.y5f{bottom:605.213600pt;}
.y37{bottom:605.438933pt;}
.y112{bottom:605.778000pt;}
.yd0{bottom:606.198267pt;}
.y86{bottom:606.218267pt;}
.yf0{bottom:606.222267pt;}
.yac{bottom:606.383733pt;}
.y128{bottom:611.282533pt;}
.ye{bottom:614.875600pt;}
.y5e{bottom:626.550933pt;}
.y36{bottom:626.776267pt;}
.y111{bottom:627.115333pt;}
.ycf{bottom:627.535600pt;}
.y85{bottom:627.555600pt;}
.yab{bottom:627.721067pt;}
.yd{bottom:635.675600pt;}
.y5d{bottom:647.888267pt;}
.y35{bottom:648.113600pt;}
.y110{bottom:648.452667pt;}
.yef{bottom:648.832933pt;}
.yce{bottom:648.872933pt;}
.y84{bottom:648.920933pt;}
.yaa{bottom:649.058400pt;}
.y127{bottom:651.282533pt;}
.yc{bottom:656.475600pt;}
.y5c{bottom:669.225600pt;}
.y34{bottom:669.450933pt;}
.y10f{bottom:669.790000pt;}
.yee{bottom:670.170267pt;}
.ycd{bottom:670.210267pt;}
.y83{bottom:670.248933pt;}
.ya9{bottom:670.395733pt;}
.y126{bottom:671.282533pt;}
.yb{bottom:677.275600pt;}
.y5b{bottom:690.562933pt;}
.y33{bottom:690.788267pt;}
.y10e{bottom:691.127333pt;}
.yed{bottom:691.507600pt;}
.ycc{bottom:691.547600pt;}
.y82{bottom:691.576933pt;}
.ya8{bottom:691.733067pt;}
.ya{bottom:698.075600pt;}
.y125{bottom:711.282533pt;}
.y5a{bottom:711.900267pt;}
.y32{bottom:712.125600pt;}
.y10d{bottom:712.464667pt;}
.yec{bottom:712.844933pt;}
.ycb{bottom:712.884933pt;}
.y81{bottom:712.904933pt;}
.ya7{bottom:713.070400pt;}
.y9{bottom:718.875600pt;}
.y124{bottom:731.282533pt;}
.y59{bottom:733.237600pt;}
.y31{bottom:733.462933pt;}
.y10c{bottom:733.802000pt;}
.yeb{bottom:734.182267pt;}
.yca{bottom:734.222267pt;}
.y80{bottom:734.232933pt;}
.ya6{bottom:734.407733pt;}
.y8{bottom:739.675600pt;}
.y13f{bottom:747.996267pt;}
.y123{bottom:751.282533pt;}
.y58{bottom:754.574933pt;}
.y30{bottom:754.800267pt;}
.y10b{bottom:755.139333pt;}
.yea{bottom:755.519600pt;}
.y7f{bottom:755.560933pt;}
.yc9{bottom:755.576933pt;}
.ya5{bottom:755.745067pt;}
.y57{bottom:775.912267pt;}
.y2f{bottom:776.137600pt;}
.y10a{bottom:776.476667pt;}
.ye9{bottom:776.856933pt;}
.y7e{bottom:776.888933pt;}
.yc8{bottom:776.904933pt;}
.ya4{bottom:777.082400pt;}
.y13e{bottom:787.996267pt;}
.y122{bottom:791.282533pt;}
.y56{bottom:797.249600pt;}
.y2e{bottom:797.474933pt;}
.y109{bottom:797.814000pt;}
.ye8{bottom:798.194267pt;}
.yc7{bottom:798.232933pt;}
.ya3{bottom:798.419733pt;}
.y7{bottom:800.483067pt;}
.y13d{bottom:807.996267pt;}
.y121{bottom:811.282533pt;}
.y55{bottom:818.586933pt;}
.y2d{bottom:818.812267pt;}
.y108{bottom:819.151333pt;}
.y7d{bottom:819.531600pt;}
.yc6{bottom:819.560933pt;}
.y6{bottom:819.683067pt;}
.ya2{bottom:819.757067pt;}
.y13c{bottom:827.996267pt;}
.y120{bottom:831.282533pt;}
.y5{bottom:838.883067pt;}
.y54{bottom:839.924267pt;}
.y2c{bottom:840.149600pt;}
.y107{bottom:840.488667pt;}
.y7c{bottom:840.868933pt;}
.ya1{bottom:841.094400pt;}
.y11f{bottom:851.282533pt;}
.y4{bottom:858.083067pt;}
.y53{bottom:861.261600pt;}
.y2b{bottom:861.486933pt;}
.y106{bottom:861.826000pt;}
.y7b{bottom:862.206267pt;}
.ya0{bottom:862.431733pt;}
.y13b{bottom:867.996267pt;}
.y52{bottom:882.598933pt;}
.y2a{bottom:882.824267pt;}
.y105{bottom:883.163333pt;}
.y7a{bottom:883.543600pt;}
.y9f{bottom:883.769067pt;}
.y13a{bottom:887.996267pt;}
.y11e{bottom:891.282533pt;}
.y25{bottom:898.370667pt;}
.y51{bottom:903.936267pt;}
.y29{bottom:904.161600pt;}
.y104{bottom:904.500667pt;}
.y79{bottom:904.880933pt;}
.y9e{bottom:905.106400pt;}
.y139{bottom:907.996267pt;}
.y11d{bottom:911.282533pt;}
.y50{bottom:925.273600pt;}
.y78{bottom:926.218267pt;}
.y3{bottom:935.885600pt;}
.y4f{bottom:946.610933pt;}
.y28{bottom:946.836267pt;}
.y103{bottom:947.175333pt;}
.y77{bottom:947.555600pt;}
.y9d{bottom:947.781067pt;}
.y138{bottom:947.996267pt;}
.y11c{bottom:951.282533pt;}
.h9{height:37.106784pt;}
.h11{height:40.218750pt;}
.ha{height:48.960000pt;}
.hd{height:51.653333pt;}
.h8{height:52.000000pt;}
.hc{height:52.507812pt;}
.h3{height:57.281250pt;}
.h6{height:58.140444pt;}
.h5{height:58.752000pt;}
.hb{height:60.000000pt;}
.hf{height:60.869792pt;}
.h10{height:61.200000pt;}
.h7{height:62.054688pt;}
.he{height:63.648000pt;}
.h4{height:70.234375pt;}
.h2{height:71.601562pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:31.023600pt;}
.xb{left:41.023600pt;}
.x9{left:75.118133pt;}
.x2{left:76.535467pt;}
.x3{left:94.809333pt;}
.xd{left:113.385867pt;}
.xe{left:158.747200pt;}
.xa{left:165.583867pt;}
.x4{left:295.820933pt;}
.x5{left:306.476933pt;}
.x7{left:334.412933pt;}
.x10{left:358.076267pt;}
.x6{left:370.876933pt;}
.x8{left:419.534533pt;}
.xc{left:624.072533pt;}
.x1{left:743.622133pt;}
}




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