
    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_1609dd59b83062caaa4360c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_dae9e350ab74b2a50e5f9c9a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_3ab65d018ec04d88b83ce557.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_8d8fe2daf897b50c190b7724.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_c7b0dfa017c48d18be39cd3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_0e0ed182a387957b6b45cf4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_b3ec82e302be60a43e8ab492.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_b83b0da13ff523a4e3031b10.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.898000;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_726826a4025d2be3da4a9e37.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_981501c1e7c493c365091e16.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cdf220c692b879dc86bcf8ff.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_aa4c9c4a8c4a81a145d9d96d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.526367;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3b538952bdcf81f973ca42db.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fd589b1623aee964941adf2e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.842000;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:fff;src:url('chunks/assets/font_744395957c20027f35f1bdee.woff2')format("woff");}.fff{font-family:fff;line-height:0.842000;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.226441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226441,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.226443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226443,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,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(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-22.704600px;}
.v4{vertical-align:-15.600000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.600000px;}
.v2{vertical-align:22.800600px;}
.v3{vertical-align:71.859600px;}
.ls7{letter-spacing:-10.347519px;}
.ls8{letter-spacing:-6.598898px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.034200px;}
.ls1{letter-spacing:2.400000px;}
.ls6{letter-spacing:6.000000px;}
.ls0{letter-spacing:30.000000px;}
.ls4{letter-spacing:66.955200px;}
.ls3{letter-spacing:66.958200px;}
.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:-166.800000px;}
.ws1{word-spacing:-60.960000px;}
.ws8{word-spacing:-57.240000px;}
.ws2{word-spacing:-55.632000px;}
.ws3{word-spacing:-54.070200px;}
.wsa{word-spacing:-36.995400px;}
.ws11{word-spacing:-35.112000px;}
.ws9{word-spacing:-33.370920px;}
.ws7{word-spacing:-32.160000px;}
.wsd{word-spacing:-30.000000px;}
.wsc{word-spacing:-25.110000px;}
.ws15{word-spacing:-24.024000px;}
.wsb{word-spacing:-21.960000px;}
.wsf{word-spacing:-2.508000px;}
.ws12{word-spacing:-2.400000px;}
.ws10{word-spacing:-1.200000px;}
.ws6{word-spacing:-0.180000px;}
.ws4{word-spacing:-0.088369px;}
.wse{word-spacing:0.000000px;}
.ws14{word-spacing:6.598898px;}
.ws13{word-spacing:10.347519px;}
.ws5{word-spacing:210.420000px;}
._1a{margin-left:-486.900000px;}
._a{margin-left:-127.644000px;}
._1d{margin-left:-122.504400px;}
._c{margin-left:-64.182000px;}
._1c{margin-left:-61.364400px;}
._e{margin-left:-35.304000px;}
._11{margin-left:-26.400000px;}
._1{margin-left:-24.000000px;}
._12{margin-left:-22.620000px;}
._2{margin-left:-21.000000px;}
._13{margin-left:-18.008400px;}
._7{margin-left:-15.526800px;}
._3{margin-left:-12.000000px;}
._f{margin-left:-10.507200px;}
._0{margin-left:-9.000000px;}
._6{margin-left:-6.840000px;}
._d{margin-left:-5.618400px;}
._8{margin-left:-4.510800px;}
._4{margin-left:-3.000000px;}
._9{margin-left:-1.140000px;}
._b{width:1.368000px;}
._5{width:3.000000px;}
._14{width:4.022360px;}
._19{width:22.357408px;}
._1e{width:24.024000px;}
._10{width:35.112000px;}
._15{width:110.827843px;}
._17{width:122.504402px;}
._18{width:131.214578px;}
._16{width:192.466779px;}
._1b{width:808.800000px;}
.fc9{color:transparent;}
.fc8{color:rgb(30,52,59);}
.fc6{color:rgb(61,174,147);}
.fc5{color:rgb(65,84,98);}
.fc4{color:rgb(251,251,250);}
.fc7{color:rgb(139,200,37);}
.fc2{color:rgb(58,170,147);}
.fc3{color:rgb(254,254,254);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:59.152200px;}
.fs11{font-size:88.369200px;}
.fs1a{font-size:90.000000px;}
.fs7{font-size:106.795800px;}
.fs16{font-size:120.000000px;}
.fs17{font-size:125.928000px;}
.fs19{font-size:132.600000px;}
.fsd{font-size:138.022200px;}
.fs18{font-size:156.000000px;}
.fs8{font-size:170.872800px;}
.fs15{font-size:180.000000px;}
.fs1b{font-size:183.600000px;}
.fs4{font-size:193.800000px;}
.fsc{font-size:197.174400px;}
.fs6{font-size:216.000000px;}
.fs14{font-size:227.548200px;}
.fs3{font-size:228.000000px;}
.fs9{font-size:236.609400px;}
.fs2{font-size:240.000000px;}
.fs10{font-size:280.973400px;}
.fsa{font-size:286.501200px;}
.fsf{font-size:345.055200px;}
.fs13{font-size:356.811000px;}
.fsb{font-size:377.181600px;}
.fs5{font-size:480.000000px;}
.fs1{font-size:540.000000px;}
.fs0{font-size:600.000000px;}
.fs12{font-size:1342.280400px;}
.y30{bottom:-6198.239612px;}
.y2f{bottom:-5892.175650px;}
.y31{bottom:-5438.083007px;}
.y2e{bottom:-5438.082450px;}
.y2c{bottom:-4997.373319px;}
.y2b{bottom:-4923.456010px;}
.y2a{bottom:-4849.538700px;}
.y35{bottom:-4631.761050px;}
.y29{bottom:-3807.922914px;}
.y2d{bottom:-3726.163200px;}
.y28{bottom:-3720.909807px;}
.y27{bottom:-3633.896700px;}
.y34{bottom:-3369.470400px;}
.y33{bottom:-3309.972900px;}
.y32{bottom:-3255.530850px;}
.y26{bottom:-1857.907800px;}
.y25{bottom:-1794.895322px;}
.y24{bottom:-1748.412450px;}
.y3c{bottom:-1505.025951px;}
.y3b{bottom:-1420.733931px;}
.y3a{bottom:-1306.869460px;}
.y39{bottom:-1222.577440px;}
.y38{bottom:-1108.712970px;}
.y37{bottom:-1024.420950px;}
.y36{bottom:-907.559850px;}
.y40{bottom:-610.648137px;}
.y3f{bottom:-515.379600px;}
.y3e{bottom:-392.996400px;}
.y0{bottom:0.000000px;}
.y22{bottom:29.657400px;}
.y23{bottom:140.196000px;}
.y3d{bottom:184.025700px;}
.y50{bottom:524.682300px;}
.y4f{bottom:589.482300px;}
.y4e{bottom:682.742250px;}
.y4d{bottom:747.542250px;}
.y4c{bottom:840.802050px;}
.y4b{bottom:905.602050px;}
.y4a{bottom:998.861850px;}
.y49{bottom:1063.681650px;}
.y1b{bottom:1152.950100px;}
.y48{bottom:1156.921650px;}
.y1a{bottom:1221.349950px;}
.y19{bottom:1383.349950px;}
.y63{bottom:1419.123000px;}
.y57{bottom:1424.198100px;}
.y18{bottom:1455.349950px;}
.y62{bottom:1493.284350px;}
.y56{bottom:1497.713100px;}
.y61{bottom:1567.445550px;}
.y55{bottom:1571.228100px;}
.y60{bottom:1641.607200px;}
.y54{bottom:1644.713100px;}
.y5f{bottom:1715.768550px;}
.y53{bottom:1718.228100px;}
.y5c{bottom:1768.395900px;}
.y42{bottom:1779.730950px;}
.y5e{bottom:1789.929900px;}
.y52{bottom:1791.728100px;}
.y5b{bottom:1801.403400px;}
.y5a{bottom:1834.410900px;}
.y5d{bottom:1864.091550px;}
.y51{bottom:1865.228100px;}
.y41{bottom:1865.995950px;}
.y59{bottom:1867.418400px;}
.y58{bottom:1908.930900px;}
.y17{bottom:2103.359100px;}
.y68{bottom:2114.957550px;}
.y16{bottom:2175.350100px;}
.y69{bottom:2230.823700px;}
.y15{bottom:2243.750250px;}
.y67{bottom:2262.713400px;}
.y6a{bottom:2320.114950px;}
.y14{bottom:2405.759250px;}
.y13{bottom:2477.750250px;}
.y66{bottom:2525.272500px;}
.y12{bottom:2546.150250px;}
.y64{bottom:2606.485050px;}
.y65{bottom:2613.500850px;}
.y11{bottom:2718.879750px;}
.y10{bottom:2956.834200px;}
.yf{bottom:3038.002200px;}
.ye{bottom:3119.146200px;}
.yd{bottom:3200.314200px;}
.yc{bottom:3281.482200px;}
.yb{bottom:3362.638200px;}
.y9{bottom:3527.861850px;}
.ya{bottom:3527.898150px;}
.y8{bottom:3609.029850px;}
.y7{bottom:3690.197850px;}
.y6{bottom:3771.365850px;}
.y5{bottom:3852.521850px;}
.y21{bottom:4109.253600px;}
.y4{bottom:4113.135900px;}
.y20{bottom:4174.053600px;}
.y3{bottom:4293.135900px;}
.y1f{bottom:4303.653600px;}
.y1e{bottom:4368.453600px;}
.y1d{bottom:4433.253600px;}
.y43{bottom:4471.531800px;}
.y1{bottom:4473.135900px;}
.y2{bottom:4476.135900px;}
.y1c{bottom:4498.053600px;}
.y45{bottom:4798.125600px;}
.y47{bottom:4799.188350px;}
.y44{bottom:4862.925600px;}
.y46{bottom:4864.005600px;}
.h12{height:44.482454px;}
.h15{height:62.479786px;}
.hb{height:77.802409px;}
.h1b{height:94.500000px;}
.h11{height:100.551329px;}
.hc{height:124.483505px;}
.h19{height:126.000000px;}
.h10{height:148.275149px;}
.h9{height:151.200000px;}
.h1a{height:163.800000px;}
.ha{height:174.663000px;}
.hd{height:177.930269px;}
.h18{height:189.000000px;}
.h1c{height:192.780000px;}
.h14{height:211.291997px;}
.he{height:215.448902px;}
.h8{height:226.800000px;}
.h5{height:239.400000px;}
.h6{height:239.496000px;}
.h4{height:252.000000px;}
.h13{height:259.481510px;}
.h17{height:268.321872px;}
.hf{height:283.640563px;}
.h7{height:504.000000px;}
.h3{height:567.000000px;}
.h2{height:630.000000px;}
.h16{height:1009.394861px;}
.h0{height:5055.585000px;}
.h1{height:5055.750000px;}
.w2{width:2795.316000px;}
.w0{width:3575.910000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xb{left:35.220000px;}
.x6{left:101.283750px;}
.xf{left:110.071800px;}
.x12{left:120.824100px;}
.x10{left:123.894300px;}
.x18{left:129.121500px;}
.x17{left:134.050800px;}
.x11{left:147.986250px;}
.x4{left:185.093100px;}
.x19{left:218.611528px;}
.x1b{left:315.296850px;}
.x14{left:325.292700px;}
.x13{left:327.709339px;}
.x7{left:419.700150px;}
.x16{left:429.722100px;}
.x1{left:632.247450px;}
.xe{left:774.851400px;}
.x2{left:818.844750px;}
.x3{left:904.343100px;}
.xc{left:1023.439350px;}
.x5{left:1071.293100px;}
.x1a{left:1126.778700px;}
.xa{left:1487.908650px;}
.x1c{left:1680.610350px;}
.x1d{left:1757.155350px;}
.x27{left:2190.580950px;}
.x26{left:2191.682400px;}
.x25{left:2192.898900px;}
.x21{left:2194.728450px;}
.x9{left:2211.023850px;}
.x22{left:2228.442000px;}
.xd{left:2242.122750px;}
.x23{left:2250.413250px;}
.x2e{left:2459.618250px;}
.x15{left:2570.250150px;}
.x29{left:2573.521050px;}
.x20{left:2655.552900px;}
.x2a{left:2677.469850px;}
.x2d{left:2731.666800px;}
.x1f{left:2792.010900px;}
.x2c{left:3073.600650px;}
.x24{left:3114.992400px;}
.x28{left:3216.019050px;}
.x2b{left:3249.320850px;}
.x1e{left:3290.372700px;}
.x8{left:3326.410050px;}
@media print{
.v1{vertical-align:-20.181867pt;}
.v4{vertical-align:-13.866667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.866667pt;}
.v2{vertical-align:20.267200pt;}
.v3{vertical-align:63.875200pt;}
.ls7{letter-spacing:-9.197795pt;}
.ls8{letter-spacing:-5.865687pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.030400pt;}
.ls1{letter-spacing:2.133333pt;}
.ls6{letter-spacing:5.333333pt;}
.ls0{letter-spacing:26.666667pt;}
.ls4{letter-spacing:59.515733pt;}
.ls3{letter-spacing:59.518400pt;}
.ws0{word-spacing:-148.266667pt;}
.ws1{word-spacing:-54.186667pt;}
.ws8{word-spacing:-50.880000pt;}
.ws2{word-spacing:-49.450667pt;}
.ws3{word-spacing:-48.062400pt;}
.wsa{word-spacing:-32.884800pt;}
.ws11{word-spacing:-31.210667pt;}
.ws9{word-spacing:-29.663040pt;}
.ws7{word-spacing:-28.586667pt;}
.wsd{word-spacing:-26.666667pt;}
.wsc{word-spacing:-22.320000pt;}
.ws15{word-spacing:-21.354667pt;}
.wsb{word-spacing:-19.520000pt;}
.wsf{word-spacing:-2.229333pt;}
.ws12{word-spacing:-2.133333pt;}
.ws10{word-spacing:-1.066667pt;}
.ws6{word-spacing:-0.160000pt;}
.ws4{word-spacing:-0.078550pt;}
.wse{word-spacing:0.000000pt;}
.ws14{word-spacing:5.865687pt;}
.ws13{word-spacing:9.197795pt;}
.ws5{word-spacing:187.040000pt;}
._1a{margin-left:-432.800000pt;}
._a{margin-left:-113.461333pt;}
._1d{margin-left:-108.892800pt;}
._c{margin-left:-57.050667pt;}
._1c{margin-left:-54.546133pt;}
._e{margin-left:-31.381333pt;}
._11{margin-left:-23.466667pt;}
._1{margin-left:-21.333333pt;}
._12{margin-left:-20.106667pt;}
._2{margin-left:-18.666667pt;}
._13{margin-left:-16.007467pt;}
._7{margin-left:-13.801600pt;}
._3{margin-left:-10.666667pt;}
._f{margin-left:-9.339733pt;}
._0{margin-left:-8.000000pt;}
._6{margin-left:-6.080000pt;}
._d{margin-left:-4.994133pt;}
._8{margin-left:-4.009600pt;}
._4{margin-left:-2.666667pt;}
._9{margin-left:-1.013333pt;}
._b{width:1.216000pt;}
._5{width:2.666667pt;}
._14{width:3.575431pt;}
._19{width:19.873251pt;}
._1e{width:21.354667pt;}
._10{width:31.210667pt;}
._15{width:98.513638pt;}
._17{width:108.892802pt;}
._18{width:116.635180pt;}
._16{width:171.081581pt;}
._1b{width:718.933333pt;}
.fse{font-size:52.579733pt;}
.fs11{font-size:78.550400pt;}
.fs1a{font-size:80.000000pt;}
.fs7{font-size:94.929600pt;}
.fs16{font-size:106.666667pt;}
.fs17{font-size:111.936000pt;}
.fs19{font-size:117.866667pt;}
.fsd{font-size:122.686400pt;}
.fs18{font-size:138.666667pt;}
.fs8{font-size:151.886933pt;}
.fs15{font-size:160.000000pt;}
.fs1b{font-size:163.200000pt;}
.fs4{font-size:172.266667pt;}
.fsc{font-size:175.266133pt;}
.fs6{font-size:192.000000pt;}
.fs14{font-size:202.265067pt;}
.fs3{font-size:202.666667pt;}
.fs9{font-size:210.319467pt;}
.fs2{font-size:213.333333pt;}
.fs10{font-size:249.754133pt;}
.fsa{font-size:254.667733pt;}
.fsf{font-size:306.715733pt;}
.fs13{font-size:317.165333pt;}
.fsb{font-size:335.272533pt;}
.fs5{font-size:426.666667pt;}
.fs1{font-size:480.000000pt;}
.fs0{font-size:533.333333pt;}
.fs12{font-size:1193.138133pt;}
.y30{bottom:-5509.546322pt;}
.y2f{bottom:-5237.489467pt;}
.y31{bottom:-4833.851562pt;}
.y2e{bottom:-4833.851067pt;}
.y2c{bottom:-4442.109617pt;}
.y2b{bottom:-4376.405342pt;}
.y2a{bottom:-4310.701067pt;}
.y35{bottom:-4117.120933pt;}
.y29{bottom:-3384.820368pt;}
.y2d{bottom:-3312.145067pt;}
.y28{bottom:-3307.475384pt;}
.y27{bottom:-3230.130400pt;}
.y34{bottom:-2995.084800pt;}
.y33{bottom:-2942.198133pt;}
.y32{bottom:-2893.805200pt;}
.y26{bottom:-1651.473600pt;}
.y25{bottom:-1595.462508pt;}
.y24{bottom:-1554.144400pt;}
.y3c{bottom:-1337.800845pt;}
.y3b{bottom:-1262.874605pt;}
.y3a{bottom:-1161.661743pt;}
.y39{bottom:-1086.735503pt;}
.y38{bottom:-985.522640pt;}
.y37{bottom:-910.596400pt;}
.y36{bottom:-806.719867pt;}
.y40{bottom:-542.798344pt;}
.y3f{bottom:-458.115200pt;}
.y3e{bottom:-349.330133pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:26.362133pt;}
.y23{bottom:124.618667pt;}
.y3d{bottom:163.578400pt;}
.y50{bottom:466.384267pt;}
.y4f{bottom:523.984267pt;}
.y4e{bottom:606.882000pt;}
.y4d{bottom:664.482000pt;}
.y4c{bottom:747.379600pt;}
.y4b{bottom:804.979600pt;}
.y4a{bottom:887.877200pt;}
.y49{bottom:945.494800pt;}
.y1b{bottom:1024.844533pt;}
.y48{bottom:1028.374800pt;}
.y1a{bottom:1085.644400pt;}
.y19{bottom:1229.644400pt;}
.y63{bottom:1261.442667pt;}
.y57{bottom:1265.953867pt;}
.y18{bottom:1293.644400pt;}
.y62{bottom:1327.363867pt;}
.y56{bottom:1331.300533pt;}
.y61{bottom:1393.284933pt;}
.y55{bottom:1396.647200pt;}
.y60{bottom:1459.206400pt;}
.y54{bottom:1461.967200pt;}
.y5f{bottom:1525.127600pt;}
.y53{bottom:1527.313867pt;}
.y5c{bottom:1571.907467pt;}
.y42{bottom:1581.983067pt;}
.y5e{bottom:1591.048800pt;}
.y52{bottom:1592.647200pt;}
.y5b{bottom:1601.247467pt;}
.y5a{bottom:1630.587467pt;}
.y5d{bottom:1656.970267pt;}
.y51{bottom:1657.980533pt;}
.y41{bottom:1658.663067pt;}
.y59{bottom:1659.927467pt;}
.y58{bottom:1696.827467pt;}
.y17{bottom:1869.652533pt;}
.y68{bottom:1879.962267pt;}
.y16{bottom:1933.644533pt;}
.y69{bottom:1982.954400pt;}
.y15{bottom:1994.444667pt;}
.y67{bottom:2011.300800pt;}
.y6a{bottom:2062.324400pt;}
.y14{bottom:2138.452667pt;}
.y13{bottom:2202.444667pt;}
.y66{bottom:2244.686667pt;}
.y12{bottom:2263.244667pt;}
.y64{bottom:2316.875600pt;}
.y65{bottom:2323.111867pt;}
.y11{bottom:2416.782000pt;}
.y10{bottom:2628.297067pt;}
.yf{bottom:2700.446400pt;}
.ye{bottom:2772.574400pt;}
.yd{bottom:2844.723733pt;}
.yc{bottom:2916.873067pt;}
.yb{bottom:2989.011733pt;}
.y9{bottom:3135.877200pt;}
.ya{bottom:3135.909467pt;}
.y8{bottom:3208.026533pt;}
.y7{bottom:3280.175867pt;}
.y6{bottom:3352.325200pt;}
.y5{bottom:3424.463867pt;}
.y21{bottom:3652.669867pt;}
.y4{bottom:3656.120800pt;}
.y20{bottom:3710.269867pt;}
.y3{bottom:3816.120800pt;}
.y1f{bottom:3825.469867pt;}
.y1e{bottom:3883.069867pt;}
.y1d{bottom:3940.669867pt;}
.y43{bottom:3974.694933pt;}
.y1{bottom:3976.120800pt;}
.y2{bottom:3978.787467pt;}
.y1c{bottom:3998.269867pt;}
.y45{bottom:4265.000533pt;}
.y47{bottom:4265.945200pt;}
.y44{bottom:4322.600533pt;}
.y46{bottom:4323.560533pt;}
.h12{height:39.539959pt;}
.h15{height:55.537587pt;}
.hb{height:69.157697pt;}
.h1b{height:84.000000pt;}
.h11{height:89.378959pt;}
.hc{height:110.652004pt;}
.h19{height:112.000000pt;}
.h10{height:131.800132pt;}
.h9{height:134.400000pt;}
.h1a{height:145.600000pt;}
.ha{height:155.256000pt;}
.hd{height:158.160239pt;}
.h18{height:168.000000pt;}
.h1c{height:171.360000pt;}
.h14{height:187.815108pt;}
.he{height:191.510135pt;}
.h8{height:201.600000pt;}
.h5{height:212.800000pt;}
.h6{height:212.885333pt;}
.h4{height:224.000000pt;}
.h13{height:230.650231pt;}
.h17{height:238.508331pt;}
.hf{height:252.124945pt;}
.h7{height:448.000000pt;}
.h3{height:504.000000pt;}
.h2{height:560.000000pt;}
.h16{height:897.239876pt;}
.h0{height:4493.853333pt;}
.h1{height:4494.000000pt;}
.w2{width:2484.725333pt;}
.w0{width:3178.586667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xb{left:31.306667pt;}
.x6{left:90.030000pt;}
.xf{left:97.841600pt;}
.x12{left:107.399200pt;}
.x10{left:110.128267pt;}
.x18{left:114.774667pt;}
.x17{left:119.156267pt;}
.x11{left:131.543333pt;}
.x4{left:164.527200pt;}
.x19{left:194.321358pt;}
.x1b{left:280.263867pt;}
.x14{left:289.149067pt;}
.x13{left:291.297190pt;}
.x7{left:373.066800pt;}
.x16{left:381.975200pt;}
.x1{left:561.997733pt;}
.xe{left:688.756800pt;}
.x2{left:727.862000pt;}
.x3{left:803.860533pt;}
.xc{left:909.723867pt;}
.x5{left:952.260533pt;}
.x1a{left:1001.581067pt;}
.xa{left:1322.585467pt;}
.x1c{left:1493.875867pt;}
.x1d{left:1561.915867pt;}
.x27{left:1947.183067pt;}
.x26{left:1948.162133pt;}
.x25{left:1949.243467pt;}
.x21{left:1950.869733pt;}
.x9{left:1965.354533pt;}
.x22{left:1980.837333pt;}
.xd{left:1992.998000pt;}
.x23{left:2000.367333pt;}
.x2e{left:2186.327333pt;}
.x15{left:2284.666800pt;}
.x29{left:2287.574267pt;}
.x20{left:2360.491467pt;}
.x2a{left:2379.973200pt;}
.x2d{left:2428.148267pt;}
.x1f{left:2481.787467pt;}
.x2c{left:2732.089467pt;}
.x24{left:2768.882133pt;}
.x28{left:2858.683600pt;}
.x2b{left:2888.285200pt;}
.x1e{left:2924.775733pt;}
.x8{left:2956.808933pt;}
}




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