
    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_61464c3652c121da66707f49.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_d03e7b6514cd1ba2d0940b21.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_2ebdf171e457c939390d877d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_5f1f5675c03bd4b4d586a7b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.873535;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_0a4e865d957ceffb3b55f523.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_7bdd4788e0841634c812f949.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730957;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_36ce8fe08509920a44b1e1d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.031738;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_afb960d068dc902dd4cf0974.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.724121;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_9587633ec54831515096df93.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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;}
.ls17{letter-spacing:-0.408960px;}
.ls18{letter-spacing:-0.348480px;}
.lsd{letter-spacing:-0.336960px;}
.ls29{letter-spacing:-0.324000px;}
.ls4{letter-spacing:-0.298800px;}
.ls1a{letter-spacing:-0.288000px;}
.ls2f{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.263520px;}
.ls33{letter-spacing:-0.252000px;}
.ls1{letter-spacing:-0.227520px;}
.ls34{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.204480px;}
.ls1c{letter-spacing:-0.192960px;}
.ls25{letter-spacing:-0.192240px;}
.ls2e{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.168480px;}
.ls1d{letter-spacing:-0.144720px;}
.ls19{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.131760px;}
.ls6{letter-spacing:-0.119520px;}
.ls27{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.048240px;}
.ls3{letter-spacing:0.059760px;}
.ls2a{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.119520px;}
.ls7{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.144720px;}
.ls23{letter-spacing:0.168480px;}
.ls9{letter-spacing:0.174240px;}
.ls2d{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.192960px;}
.ls14{letter-spacing:0.228240px;}
.ls5{letter-spacing:0.239040px;}
.ls28{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.252720px;}
.ls2c{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.306720px;}
.ls12{letter-spacing:0.324000px;}
.ls26{letter-spacing:0.336960px;}
.ls32{letter-spacing:0.384480px;}
.ls10{letter-spacing:24.516000px;}
.ls21{letter-spacing:55.797120px;}
.ls13{letter-spacing:96.768000px;}
.ls8{letter-spacing:98.400960px;}
.lsc{letter-spacing:98.879040px;}
.ls30{letter-spacing:100.332000px;}
.ls31{letter-spacing:102.600000px;}
.ls2b{letter-spacing:103.428000px;}
.ls24{letter-spacing:107.183520px;}
.ls22{letter-spacing:108.288000px;}
.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;}
}
.ws48{word-spacing:-56.952000px;}
.ws62{word-spacing:-41.472000px;}
.ws4f{word-spacing:-39.552480px;}
.ws2b{word-spacing:-32.544000px;}
.ws2c{word-spacing:-32.256000px;}
.wsc{word-spacing:-29.514240px;}
.ws19{word-spacing:-24.732000px;}
.ws61{word-spacing:-24.192000px;}
.ws23{word-spacing:-23.412960px;}
.ws50{word-spacing:-20.430000px;}
.ws52{word-spacing:-20.340000px;}
.ws51{word-spacing:-20.160000px;}
.ws3e{word-spacing:-19.375200px;}
.ws49{word-spacing:-19.290960px;}
.ws3f{word-spacing:-19.038240px;}
.ws14{word-spacing:-18.701280px;}
.ws0{word-spacing:-15.537600px;}
.ws34{word-spacing:-11.818800px;}
.ws35{word-spacing:-11.770560px;}
.ws5c{word-spacing:-2.883600px;}
.ws2e{word-spacing:-2.787840px;}
.ws39{word-spacing:-2.653200px;}
.ws36{word-spacing:-2.613600px;}
.ws45{word-spacing:-2.611440px;}
.ws4b{word-spacing:-2.556000px;}
.ws1d{word-spacing:-2.376000px;}
.wsd{word-spacing:-2.090880px;}
.ws3b{word-spacing:-2.026080px;}
.ws59{word-spacing:-1.890000px;}
.ws33{word-spacing:-1.872000px;}
.ws22{word-spacing:-1.728000px;}
.ws57{word-spacing:-1.710000px;}
.ws3d{word-spacing:-1.688400px;}
.ws31{word-spacing:-1.584000px;}
.ws2d{word-spacing:-1.568160px;}
.ws1b{word-spacing:-1.404000px;}
.ws3c{word-spacing:-1.350720px;}
.ws18{word-spacing:-1.263600px;}
.ws15{word-spacing:-1.219680px;}
.ws44{word-spacing:-1.179360px;}
.ws55{word-spacing:-1.170000px;}
.ws2{word-spacing:-1.023840px;}
.wsf{word-spacing:-1.008000px;}
.ws58{word-spacing:-0.990000px;}
.ws53{word-spacing:-0.864000px;}
.ws1a{word-spacing:-0.696960px;}
.ws25{word-spacing:-0.684720px;}
.ws42{word-spacing:-0.673920px;}
.ws1e{word-spacing:-0.648000px;}
.ws27{word-spacing:-0.613440px;}
.ws4d{word-spacing:-0.589680px;}
.ws5e{word-spacing:-0.504000px;}
.ws3a{word-spacing:-0.482400px;}
.ws24{word-spacing:-0.456480px;}
.ws29{word-spacing:-0.408960px;}
.ws26{word-spacing:-0.378000px;}
.ws20{word-spacing:-0.324000px;}
.ws28{word-spacing:-0.306720px;}
.ws30{word-spacing:-0.288000px;}
.ws56{word-spacing:-0.270000px;}
.ws11{word-spacing:-0.263520px;}
.ws4a{word-spacing:-0.252000px;}
.ws38{word-spacing:-0.241200px;}
.ws1f{word-spacing:-0.216000px;}
.ws54{word-spacing:-0.180000px;}
.ws4c{word-spacing:-0.168480px;}
.wse{word-spacing:-0.144000px;}
.ws1c{word-spacing:-0.108000px;}
.ws5a{word-spacing:-0.090000px;}
.wsa{word-spacing:0.000000px;}
.ws21{word-spacing:0.108000px;}
.ws2f{word-spacing:0.144000px;}
.ws47{word-spacing:0.168480px;}
.ws46{word-spacing:0.216000px;}
.ws4{word-spacing:0.227520px;}
.ws32{word-spacing:0.288000px;}
.ws9{word-spacing:0.298800px;}
.ws2a{word-spacing:0.306720px;}
.ws4e{word-spacing:0.324000px;}
.ws10{word-spacing:0.395280px;}
.ws60{word-spacing:0.432000px;}
.ws5{word-spacing:0.455040px;}
.ws8{word-spacing:0.478080px;}
.ws37{word-spacing:0.482400px;}
.ws12{word-spacing:0.527040px;}
.ws17{word-spacing:0.589680px;}
.ws40{word-spacing:0.648000px;}
.wsb{word-spacing:0.657360px;}
.ws13{word-spacing:0.658800px;}
.ws16{word-spacing:0.758160px;}
.ws5f{word-spacing:0.972000px;}
.ws5d{word-spacing:1.080000px;}
.ws1{word-spacing:1.137600px;}
.ws41{word-spacing:1.263600px;}
.ws43{word-spacing:1.432080px;}
.ws6{word-spacing:1.477440px;}
.ws3{word-spacing:1.592640px;}
.ws5b{word-spacing:2.250000px;}
.ws7{word-spacing:3.576960px;}
._3{margin-left:-2.412576px;}
._2{margin-left:-1.265472px;}
._1{width:1.001088px;}
._0{width:2.718864px;}
._5{width:219.672000px;}
._7{width:227.772000px;}
._4{width:354.240000px;}
._6{width:368.280000px;}
.fc9{color:rgb(167,41,30);}
.fc7{color:rgb(192,0,0);}
.fc8{color:rgb(132,13,53);}
.fc6{color:rgb(245,143,143);}
.fc5{color:rgb(30,45,49);}
.fc3{color:rgb(94,105,108);}
.fc4{color:rgb(175,67,69);}
.fc2{color:rgb(245,94,97);}
.fca{color:rgb(94,94,94);}
.fc1{color:rgb(69,69,69);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fsf{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.fsb{font-size:102.240000px;}
.fs8{font-size:108.000000px;}
.fs0{font-size:113.760000px;}
.fsa{font-size:126.000000px;}
.fs6{font-size:131.760000px;}
.fs4{font-size:144.000000px;}
.fs10{font-size:162.000000px;}
.fs3{font-size:174.240000px;}
.fsd{font-size:192.240000px;}
.fs9{font-size:228.240000px;}
.fse{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:26.444400px;}
.y9{bottom:39.266850px;}
.y8{bottom:57.269550px;}
.y1f{bottom:67.673400px;}
.y12{bottom:99.322650px;}
.y30{bottom:101.419950px;}
.y68{bottom:124.074450px;}
.y46{bottom:136.593750px;}
.y60{bottom:141.345000px;}
.y11{bottom:144.862650px;}
.y51{bottom:148.410000px;}
.y1e{bottom:149.942400px;}
.y70{bottom:150.570000px;}
.y2f{bottom:151.099800px;}
.y7{bottom:163.103610px;}
.y67{bottom:165.294450px;}
.y45{bottom:171.333750px;}
.y5f{bottom:178.785000px;}
.y76{bottom:181.042650px;}
.y50{bottom:182.430000px;}
.y6f{bottom:187.830000px;}
.y10{bottom:190.370610px;}
.y1d{bottom:191.171400px;}
.y36{bottom:191.928720px;}
.y6{bottom:193.157850px;}
.y24{bottom:193.334400px;}
.y2e{bottom:200.779800px;}
.y44{bottom:204.633750px;}
.y79{bottom:205.512900px;}
.y66{bottom:206.514450px;}
.y5e{bottom:207.045000px;}
.y35{bottom:208.487100px;}
.y28{bottom:218.964240px;}
.y4f{bottom:223.650000px;}
.y54{bottom:226.994400px;}
.y75{bottom:229.642650px;}
.y23{bottom:231.134400px;}
.y6e{bottom:234.090000px;}
.y43{bottom:234.333750px;}
.yf{bottom:235.926630px;}
.y5d{bottom:244.485000px;}
.y65{bottom:247.554450px;}
.y2d{bottom:250.459800px;}
.y34{bottom:252.262050px;}
.y5{bottom:252.391680px;}
.y4e{bottom:259.110000px;}
.y27{bottom:264.870000px;}
.y42{bottom:265.293750px;}
.y6d{bottom:271.350000px;}
.y5c{bottom:272.745000px;}
.y1c{bottom:273.440400px;}
.y74{bottom:278.242650px;}
.y78{bottom:278.412900px;}
.ye{bottom:281.482650px;}
.y4{bottom:283.163760px;}
.y64{bottom:288.774450px;}
.y4d{bottom:294.570000px;}
.y41{bottom:298.593750px;}
.y53{bottom:300.086310px;}
.y2c{bottom:300.139950px;}
.y5b{bottom:301.185000px;}
.y22{bottom:303.692610px;}
.y48{bottom:305.147550px;}
.y6c{bottom:308.610000px;}
.y3{bottom:313.935840px;}
.y1b{bottom:314.669400px;}
.y18{bottom:318.742650px;}
.y26{bottom:319.764240px;}
.y73{bottom:326.842650px;}
.yd{bottom:327.022650px;}
.y40{bottom:328.293750px;}
.y63{bottom:329.994450px;}
.y4c{bottom:330.030000px;}
.y5a{bottom:338.445000px;}
.y31{bottom:340.878900px;}
.y37{bottom:341.163900px;}
.y2{bottom:344.707920px;}
.y52{bottom:347.087550px;}
.y2b{bottom:349.819950px;}
.y6b{bottom:354.870000px;}
.y15{bottom:356.537250px;}
.y17{bottom:356.539950px;}
.y3f{bottom:357.993750px;}
.y4b{bottom:365.490000px;}
.y25{bottom:365.670000px;}
.y62{bottom:371.034450px;}
.y21{bottom:372.107550px;}
.yc{bottom:373.642650px;}
.y72{bottom:375.442650px;}
.y1{bottom:375.480000px;}
.y59{bottom:375.885000px;}
.y47{bottom:380.747550px;}
.y3e{bottom:387.513750px;}
.y6a{bottom:392.130000px;}
.y3a{bottom:394.049640px;}
.y14{bottom:394.339950px;}
.y16{bottom:394.342650px;}
.y2a{bottom:399.499950px;}
.y4a{bottom:402.390000px;}
.y33{bottom:410.323020px;}
.y39{bottom:410.608020px;}
.y61{bottom:412.074450px;}
.y58{bottom:413.145000px;}
.y3d{bottom:418.473750px;}
.yb{bottom:423.322650px;}
.y71{bottom:424.042650px;}
.y77{bottom:424.212900px;}
.y32{bottom:426.881400px;}
.y38{bottom:427.166400px;}
.y13{bottom:432.142650px;}
.y1a{bottom:438.140400px;}
.y69{bottom:438.390000px;}
.y57{bottom:441.585000px;}
.y49{bottom:443.430000px;}
.y3c{bottom:453.213750px;}
.y29{bottom:457.614420px;}
.y56{bottom:469.845000px;}
.y55{bottom:498.285000px;}
.ya{bottom:509.799300px;}
.y3b{bottom:519.202650px;}
.y19{bottom:532.222500px;}
.he{height:34.790273px;}
.hf{height:38.700352px;}
.h3{height:44.013240px;}
.h2{height:56.611406px;}
.h7{height:58.367461px;}
.h14{height:62.358398px;}
.hc{height:70.839141px;}
.hb{height:71.982422px;}
.h13{height:74.830078px;}
.h8{height:75.093750px;}
.h1{height:78.821016px;}
.ha{height:87.301758px;}
.h15{height:87.818555px;}
.h6{height:91.292695px;}
.h11{height:93.673125px;}
.h5{height:99.773438px;}
.hd{height:100.125000px;}
.h16{height:119.313000px;}
.h4{height:121.151250px;}
.h10{height:133.666875px;}
.h9{height:158.698125px;}
.h12{height:175.218750px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xa{left:37.815900px;}
.xd{left:42.156450px;}
.x24{left:43.811850px;}
.x4{left:47.613150px;}
.x25{left:54.613050px;}
.x10{left:61.113150px;}
.x5{left:62.553150px;}
.x2b{left:66.191700px;}
.x30{left:70.981350px;}
.x12{left:87.326100px;}
.x6{left:101.613150px;}
.x26{left:106.813050px;}
.x27{left:108.613050px;}
.x2f{left:111.311850px;}
.x13{left:129.982320px;}
.x11{left:160.334400px;}
.x2e{left:165.311850px;}
.x28{left:183.893700px;}
.xb{left:188.335650px;}
.x2a{left:202.440900px;}
.x15{left:211.103400px;}
.x16{left:253.228980px;}
.x14{left:282.953700px;}
.x1b{left:323.185800px;}
.x1{left:376.497000px;}
.x2{left:390.010350px;}
.x1a{left:402.591000px;}
.xc{left:404.335650px;}
.x18{left:449.500350px;}
.x19{left:488.924490px;}
.x17{left:524.192250px;}
.x7{left:581.547330px;}
.x1c{left:582.865200px;}
.x8{left:598.114050px;}
.xe{left:607.703700px;}
.x9{left:635.554050px;}
.xf{left:648.203700px;}
.x29{left:661.703700px;}
.x2c{left:664.763700px;}
.x1e{left:685.735200px;}
.x2d{left:702.203700px;}
.x1f{left:722.457900px;}
.x3{left:765.280500px;}
.x1d{left:766.366950px;}
.x21{left:826.970100px;}
.x22{left:844.975680px;}
.x23{left:873.955860px;}
.x20{left:900.672450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.363520pt;}
.ls18{letter-spacing:-0.309760pt;}
.lsd{letter-spacing:-0.299520pt;}
.ls29{letter-spacing:-0.288000pt;}
.ls4{letter-spacing:-0.265600pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls2f{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.234240pt;}
.ls33{letter-spacing:-0.224000pt;}
.ls1{letter-spacing:-0.202240pt;}
.ls34{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.181760pt;}
.ls1c{letter-spacing:-0.171520pt;}
.ls25{letter-spacing:-0.170880pt;}
.ls2e{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.149760pt;}
.ls1d{letter-spacing:-0.128640pt;}
.ls19{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.117120pt;}
.ls6{letter-spacing:-0.106240pt;}
.ls27{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.042880pt;}
.ls3{letter-spacing:0.053120pt;}
.ls2a{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.128640pt;}
.ls23{letter-spacing:0.149760pt;}
.ls9{letter-spacing:0.154880pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.171520pt;}
.ls14{letter-spacing:0.202880pt;}
.ls5{letter-spacing:0.212480pt;}
.ls28{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.224640pt;}
.ls2c{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.272640pt;}
.ls12{letter-spacing:0.288000pt;}
.ls26{letter-spacing:0.299520pt;}
.ls32{letter-spacing:0.341760pt;}
.ls10{letter-spacing:21.792000pt;}
.ls21{letter-spacing:49.597440pt;}
.ls13{letter-spacing:86.016000pt;}
.ls8{letter-spacing:87.467520pt;}
.lsc{letter-spacing:87.892480pt;}
.ls30{letter-spacing:89.184000pt;}
.ls31{letter-spacing:91.200000pt;}
.ls2b{letter-spacing:91.936000pt;}
.ls24{letter-spacing:95.274240pt;}
.ls22{letter-spacing:96.256000pt;}
.ws48{word-spacing:-50.624000pt;}
.ws62{word-spacing:-36.864000pt;}
.ws4f{word-spacing:-35.157760pt;}
.ws2b{word-spacing:-28.928000pt;}
.ws2c{word-spacing:-28.672000pt;}
.wsc{word-spacing:-26.234880pt;}
.ws19{word-spacing:-21.984000pt;}
.ws61{word-spacing:-21.504000pt;}
.ws23{word-spacing:-20.811520pt;}
.ws50{word-spacing:-18.160000pt;}
.ws52{word-spacing:-18.080000pt;}
.ws51{word-spacing:-17.920000pt;}
.ws3e{word-spacing:-17.222400pt;}
.ws49{word-spacing:-17.147520pt;}
.ws3f{word-spacing:-16.922880pt;}
.ws14{word-spacing:-16.623360pt;}
.ws0{word-spacing:-13.811200pt;}
.ws34{word-spacing:-10.505600pt;}
.ws35{word-spacing:-10.462720pt;}
.ws5c{word-spacing:-2.563200pt;}
.ws2e{word-spacing:-2.478080pt;}
.ws39{word-spacing:-2.358400pt;}
.ws36{word-spacing:-2.323200pt;}
.ws45{word-spacing:-2.321280pt;}
.ws4b{word-spacing:-2.272000pt;}
.ws1d{word-spacing:-2.112000pt;}
.wsd{word-spacing:-1.858560pt;}
.ws3b{word-spacing:-1.800960pt;}
.ws59{word-spacing:-1.680000pt;}
.ws33{word-spacing:-1.664000pt;}
.ws22{word-spacing:-1.536000pt;}
.ws57{word-spacing:-1.520000pt;}
.ws3d{word-spacing:-1.500800pt;}
.ws31{word-spacing:-1.408000pt;}
.ws2d{word-spacing:-1.393920pt;}
.ws1b{word-spacing:-1.248000pt;}
.ws3c{word-spacing:-1.200640pt;}
.ws18{word-spacing:-1.123200pt;}
.ws15{word-spacing:-1.084160pt;}
.ws44{word-spacing:-1.048320pt;}
.ws55{word-spacing:-1.040000pt;}
.ws2{word-spacing:-0.910080pt;}
.wsf{word-spacing:-0.896000pt;}
.ws58{word-spacing:-0.880000pt;}
.ws53{word-spacing:-0.768000pt;}
.ws1a{word-spacing:-0.619520pt;}
.ws25{word-spacing:-0.608640pt;}
.ws42{word-spacing:-0.599040pt;}
.ws1e{word-spacing:-0.576000pt;}
.ws27{word-spacing:-0.545280pt;}
.ws4d{word-spacing:-0.524160pt;}
.ws5e{word-spacing:-0.448000pt;}
.ws3a{word-spacing:-0.428800pt;}
.ws24{word-spacing:-0.405760pt;}
.ws29{word-spacing:-0.363520pt;}
.ws26{word-spacing:-0.336000pt;}
.ws20{word-spacing:-0.288000pt;}
.ws28{word-spacing:-0.272640pt;}
.ws30{word-spacing:-0.256000pt;}
.ws56{word-spacing:-0.240000pt;}
.ws11{word-spacing:-0.234240pt;}
.ws4a{word-spacing:-0.224000pt;}
.ws38{word-spacing:-0.214400pt;}
.ws1f{word-spacing:-0.192000pt;}
.ws54{word-spacing:-0.160000pt;}
.ws4c{word-spacing:-0.149760pt;}
.wse{word-spacing:-0.128000pt;}
.ws1c{word-spacing:-0.096000pt;}
.ws5a{word-spacing:-0.080000pt;}
.wsa{word-spacing:0.000000pt;}
.ws21{word-spacing:0.096000pt;}
.ws2f{word-spacing:0.128000pt;}
.ws47{word-spacing:0.149760pt;}
.ws46{word-spacing:0.192000pt;}
.ws4{word-spacing:0.202240pt;}
.ws32{word-spacing:0.256000pt;}
.ws9{word-spacing:0.265600pt;}
.ws2a{word-spacing:0.272640pt;}
.ws4e{word-spacing:0.288000pt;}
.ws10{word-spacing:0.351360pt;}
.ws60{word-spacing:0.384000pt;}
.ws5{word-spacing:0.404480pt;}
.ws8{word-spacing:0.424960pt;}
.ws37{word-spacing:0.428800pt;}
.ws12{word-spacing:0.468480pt;}
.ws17{word-spacing:0.524160pt;}
.ws40{word-spacing:0.576000pt;}
.wsb{word-spacing:0.584320pt;}
.ws13{word-spacing:0.585600pt;}
.ws16{word-spacing:0.673920pt;}
.ws5f{word-spacing:0.864000pt;}
.ws5d{word-spacing:0.960000pt;}
.ws1{word-spacing:1.011200pt;}
.ws41{word-spacing:1.123200pt;}
.ws43{word-spacing:1.272960pt;}
.ws6{word-spacing:1.313280pt;}
.ws3{word-spacing:1.415680pt;}
.ws5b{word-spacing:2.000000pt;}
.ws7{word-spacing:3.179520pt;}
._3{margin-left:-2.144512pt;}
._2{margin-left:-1.124864pt;}
._1{width:0.889856pt;}
._0{width:2.416768pt;}
._5{width:195.264000pt;}
._7{width:202.464000pt;}
._4{width:314.880000pt;}
._6{width:327.360000pt;}
.fsc{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fsf{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.fsb{font-size:90.880000pt;}
.fs8{font-size:96.000000pt;}
.fs0{font-size:101.120000pt;}
.fsa{font-size:112.000000pt;}
.fs6{font-size:117.120000pt;}
.fs4{font-size:128.000000pt;}
.fs10{font-size:144.000000pt;}
.fs3{font-size:154.880000pt;}
.fsd{font-size:170.880000pt;}
.fs9{font-size:202.880000pt;}
.fse{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:23.506133pt;}
.y9{bottom:34.903867pt;}
.y8{bottom:50.906267pt;}
.y1f{bottom:60.154133pt;}
.y12{bottom:88.286800pt;}
.y30{bottom:90.151067pt;}
.y68{bottom:110.288400pt;}
.y46{bottom:121.416667pt;}
.y60{bottom:125.640000pt;}
.y11{bottom:128.766800pt;}
.y51{bottom:131.920000pt;}
.y1e{bottom:133.282133pt;}
.y70{bottom:133.840000pt;}
.y2f{bottom:134.310933pt;}
.y7{bottom:144.980987pt;}
.y67{bottom:146.928400pt;}
.y45{bottom:152.296667pt;}
.y5f{bottom:158.920000pt;}
.y76{bottom:160.926800pt;}
.y50{bottom:162.160000pt;}
.y6f{bottom:166.960000pt;}
.y10{bottom:169.218320pt;}
.y1d{bottom:169.930133pt;}
.y36{bottom:170.603307pt;}
.y6{bottom:171.695867pt;}
.y24{bottom:171.852800pt;}
.y2e{bottom:178.470933pt;}
.y44{bottom:181.896667pt;}
.y79{bottom:182.678133pt;}
.y66{bottom:183.568400pt;}
.y5e{bottom:184.040000pt;}
.y35{bottom:185.321867pt;}
.y28{bottom:194.634880pt;}
.y4f{bottom:198.800000pt;}
.y54{bottom:201.772800pt;}
.y75{bottom:204.126800pt;}
.y23{bottom:205.452800pt;}
.y6e{bottom:208.080000pt;}
.y43{bottom:208.296667pt;}
.yf{bottom:209.712560pt;}
.y5d{bottom:217.320000pt;}
.y65{bottom:220.048400pt;}
.y2d{bottom:222.630933pt;}
.y34{bottom:224.232933pt;}
.y5{bottom:224.348160pt;}
.y4e{bottom:230.320000pt;}
.y27{bottom:235.440000pt;}
.y42{bottom:235.816667pt;}
.y6d{bottom:241.200000pt;}
.y5c{bottom:242.440000pt;}
.y1c{bottom:243.058133pt;}
.y74{bottom:247.326800pt;}
.y78{bottom:247.478133pt;}
.ye{bottom:250.206800pt;}
.y4{bottom:251.701120pt;}
.y64{bottom:256.688400pt;}
.y4d{bottom:261.840000pt;}
.y41{bottom:265.416667pt;}
.y53{bottom:266.743387pt;}
.y2c{bottom:266.791067pt;}
.y5b{bottom:267.720000pt;}
.y22{bottom:269.948987pt;}
.y48{bottom:271.242267pt;}
.y6c{bottom:274.320000pt;}
.y3{bottom:279.054080pt;}
.y1b{bottom:279.706133pt;}
.y18{bottom:283.326800pt;}
.y26{bottom:284.234880pt;}
.y73{bottom:290.526800pt;}
.yd{bottom:290.686800pt;}
.y40{bottom:291.816667pt;}
.y63{bottom:293.328400pt;}
.y4c{bottom:293.360000pt;}
.y5a{bottom:300.840000pt;}
.y31{bottom:303.003467pt;}
.y37{bottom:303.256800pt;}
.y2{bottom:306.407040pt;}
.y52{bottom:308.522267pt;}
.y2b{bottom:310.951067pt;}
.y6b{bottom:315.440000pt;}
.y15{bottom:316.922000pt;}
.y17{bottom:316.924400pt;}
.y3f{bottom:318.216667pt;}
.y4b{bottom:324.880000pt;}
.y25{bottom:325.040000pt;}
.y62{bottom:329.808400pt;}
.y21{bottom:330.762267pt;}
.yc{bottom:332.126800pt;}
.y72{bottom:333.726800pt;}
.y1{bottom:333.760000pt;}
.y59{bottom:334.120000pt;}
.y47{bottom:338.442267pt;}
.y3e{bottom:344.456667pt;}
.y6a{bottom:348.560000pt;}
.y3a{bottom:350.266347pt;}
.y14{bottom:350.524400pt;}
.y16{bottom:350.526800pt;}
.y2a{bottom:355.111067pt;}
.y4a{bottom:357.680000pt;}
.y33{bottom:364.731573pt;}
.y39{bottom:364.984907pt;}
.y61{bottom:366.288400pt;}
.y58{bottom:367.240000pt;}
.y3d{bottom:371.976667pt;}
.yb{bottom:376.286800pt;}
.y71{bottom:376.926800pt;}
.y77{bottom:377.078133pt;}
.y32{bottom:379.450133pt;}
.y38{bottom:379.703467pt;}
.y13{bottom:384.126800pt;}
.y1a{bottom:389.458133pt;}
.y69{bottom:389.680000pt;}
.y57{bottom:392.520000pt;}
.y49{bottom:394.160000pt;}
.y3c{bottom:402.856667pt;}
.y29{bottom:406.768373pt;}
.y56{bottom:417.640000pt;}
.y55{bottom:442.920000pt;}
.ya{bottom:453.154933pt;}
.y3b{bottom:461.513467pt;}
.y19{bottom:473.086667pt;}
.he{height:30.924687pt;}
.hf{height:34.400312pt;}
.h3{height:39.122880pt;}
.h2{height:50.321250pt;}
.h7{height:51.882187pt;}
.h14{height:55.429688pt;}
.hc{height:62.968125pt;}
.hb{height:63.984375pt;}
.h13{height:66.515625pt;}
.h8{height:66.750000pt;}
.h1{height:70.063125pt;}
.ha{height:77.601562pt;}
.h15{height:78.060937pt;}
.h6{height:81.149062pt;}
.h11{height:83.265000pt;}
.h5{height:88.687500pt;}
.hd{height:89.000000pt;}
.h16{height:106.056000pt;}
.h4{height:107.690000pt;}
.h10{height:118.815000pt;}
.h9{height:141.065000pt;}
.h12{height:155.750000pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xa{left:33.614133pt;}
.xd{left:37.472400pt;}
.x24{left:38.943867pt;}
.x4{left:42.322800pt;}
.x25{left:48.544933pt;}
.x10{left:54.322800pt;}
.x5{left:55.602800pt;}
.x2b{left:58.837067pt;}
.x30{left:63.094533pt;}
.x12{left:77.623200pt;}
.x6{left:90.322800pt;}
.x26{left:94.944933pt;}
.x27{left:96.544933pt;}
.x2f{left:98.943867pt;}
.x13{left:115.539840pt;}
.x11{left:142.519467pt;}
.x2e{left:146.943867pt;}
.x28{left:163.461067pt;}
.xb{left:167.409467pt;}
.x2a{left:179.947467pt;}
.x15{left:187.647467pt;}
.x16{left:225.092427pt;}
.x14{left:251.514400pt;}
.x1b{left:287.276267pt;}
.x1{left:334.664000pt;}
.x2{left:346.675867pt;}
.x1a{left:357.858667pt;}
.xc{left:359.409467pt;}
.x18{left:399.555867pt;}
.x19{left:434.599547pt;}
.x17{left:465.948667pt;}
.x7{left:516.930960pt;}
.x1c{left:518.102400pt;}
.x8{left:531.656933pt;}
.xe{left:540.181067pt;}
.x9{left:564.936933pt;}
.xf{left:576.181067pt;}
.x29{left:588.181067pt;}
.x2c{left:590.901067pt;}
.x1e{left:609.542400pt;}
.x2d{left:624.181067pt;}
.x1f{left:642.184800pt;}
.x3{left:680.249333pt;}
.x1d{left:681.215067pt;}
.x21{left:735.084533pt;}
.x22{left:751.089493pt;}
.x23{left:776.849653pt;}
.x20{left:800.597733pt;}
}




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