
    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_22f76c34952f37875cbd7005.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_67c9c4d2212e630928c92f3b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_a63525496f4da8ced531df2f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_de2e5c01e8e1158e01accbe8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_29a8350e5d41111e2fa32d30.woff')format("woff");}.ff6{font-family:ff6;line-height:0.981934;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_859c72d942ed727e728fa5e8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.948000px;}
.lsc{letter-spacing:-0.544800px;}
.ls19{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.463800px;}
.ls13{letter-spacing:-0.326400px;}
.ls15{letter-spacing:-0.228000px;}
.ls17{letter-spacing:-0.214800px;}
.ls1e{letter-spacing:-0.208800px;}
.ls6{letter-spacing:-0.132600px;}
.lse{letter-spacing:-0.115800px;}
.ls16{letter-spacing:-0.078000px;}
.ls20{letter-spacing:-0.069600px;}
.lsb{letter-spacing:-0.058320px;}
.ls1a{letter-spacing:-0.055440px;}
.ls22{letter-spacing:-0.038160px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.038880px;}
.ls27{letter-spacing:0.043920px;}
.lsf{letter-spacing:0.140400px;}
.ls8{letter-spacing:0.150000px;}
.ls23{letter-spacing:0.174000px;}
.lsa{letter-spacing:0.190200px;}
.ls18{letter-spacing:0.314400px;}
.ls26{letter-spacing:0.348600px;}
.ls1f{letter-spacing:0.357000px;}
.ls14{letter-spacing:0.393600px;}
.ls0{letter-spacing:0.433440px;}
.ls21{letter-spacing:0.479400px;}
.ls25{letter-spacing:0.479520px;}
.ls2{letter-spacing:0.617760px;}
.lsd{letter-spacing:0.654000px;}
.ls1b{letter-spacing:15.786720px;}
.ls10{letter-spacing:17.226720px;}
.ls24{letter-spacing:19.386720px;}
.ls11{letter-spacing:20.106720px;}
.ls3{letter-spacing:21.546720px;}
.ls12{letter-spacing:22.986720px;}
.ls1c{letter-spacing:24.426720px;}
.ls1d{letter-spacing:25.866720px;}
.ls1{letter-spacing:38.106720px;}
.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:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsf{word-spacing:-13.862760px;}
.ws12{word-spacing:-13.854360px;}
.wsc{word-spacing:-13.820160px;}
.ws13{word-spacing:-13.549680px;}
.ws6{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.467600px;}
.wsd{word-spacing:-13.450320px;}
.ws7{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.436160px;}
.wsa{word-spacing:-13.427760px;}
.ws8{word-spacing:-13.389960px;}
.wse{word-spacing:-13.296960px;}
.wsb{word-spacing:-13.290960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._22{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._44{margin-left:-10.038240px;}
._29{margin-left:-4.292160px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.317240px;}
._2d{width:2.451720px;}
._2c{width:4.105440px;}
._31{width:5.497920px;}
._30{width:6.633360px;}
._2f{width:8.426160px;}
._2e{width:9.583200px;}
._33{width:10.816560px;}
._34{width:12.308040px;}
._35{width:14.544480px;}
._32{width:15.716880px;}
._41{width:16.767480px;}
._38{width:17.870760px;}
._36{width:19.240200px;}
._37{width:20.440440px;}
._45{width:23.151240px;}
._46{width:24.266520px;}
._42{width:25.373880px;}
._3f{width:28.087200px;}
._40{width:29.098080px;}
._3c{width:34.780320px;}
._2a{width:37.250640px;}
._2b{width:38.255040px;}
._43{width:39.505680px;}
._3d{width:40.514760px;}
._39{width:41.533200px;}
._3a{width:70.394760px;}
._3b{width:71.413200px;}
._3e{width:100.635840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y75{bottom:6.660000px;}
.y86{bottom:6.705000px;}
.y7e{bottom:27.720000px;}
.y8b{bottom:28.440000px;}
.y8f{bottom:48.780000px;}
.y77{bottom:50.220000px;}
.y83{bottom:50.265000px;}
.y7b{bottom:50.400000px;}
.y6{bottom:61.380000px;}
.y8e{bottom:69.840000px;}
.y7a{bottom:71.460000px;}
.yad{bottom:91.800000px;}
.y30{bottom:92.160000px;}
.y94{bottom:101.880000px;}
.y63{bottom:106.380000px;}
.yac{bottom:108.900000px;}
.yab{bottom:112.320000px;}
.y2f{bottom:113.220000px;}
.y93{bottom:122.940000px;}
.y62{bottom:127.440000px;}
.yaa{bottom:133.380000px;}
.y2e{bottom:134.280000px;}
.y89{bottom:135.180000px;}
.y92{bottom:144.000000px;}
.y61{bottom:148.500000px;}
.ya9{bottom:154.470000px;}
.y2d{bottom:155.370000px;}
.y88{bottom:156.240000px;}
.y91{bottom:165.090000px;}
.y60{bottom:169.590000px;}
.ya8{bottom:175.530000px;}
.y2c{bottom:176.430000px;}
.y90{bottom:186.150000px;}
.y5f{bottom:190.650000px;}
.ya7{bottom:196.590000px;}
.y2b{bottom:197.490000px;}
.y87{bottom:201.270000px;}
.y5e{bottom:211.710000px;}
.ya6{bottom:217.650000px;}
.y2a{bottom:218.550000px;}
.y5d{bottom:232.770000px;}
.ya5{bottom:238.710000px;}
.y29{bottom:239.610000px;}
.y5c{bottom:253.830000px;}
.ya4{bottom:259.770000px;}
.y28{bottom:260.670000px;}
.ya3{bottom:280.830000px;}
.y27{bottom:281.730000px;}
.y5b{bottom:283.890000px;}
.y8d{bottom:286.230000px;}
.ya2{bottom:301.890000px;}
.y26{bottom:302.790000px;}
.y5a{bottom:304.950000px;}
.ya1{bottom:322.950000px;}
.y25{bottom:323.850000px;}
.y59{bottom:326.010000px;}
.y8a{bottom:329.070000px;}
.ya0{bottom:344.010000px;}
.y24{bottom:344.910000px;}
.y58{bottom:347.070000px;}
.y8c{bottom:350.850000px;}
.y9f{bottom:365.070000px;}
.y23{bottom:365.970000px;}
.y57{bottom:368.130000px;}
.y82{bottom:372.810000px;}
.y9e{bottom:386.130000px;}
.y22{bottom:387.030000px;}
.y56{bottom:389.190000px;}
.y85{bottom:394.590000px;}
.y9d{bottom:407.235000px;}
.y21{bottom:408.135000px;}
.y55{bottom:410.295000px;}
.y84{bottom:416.415000px;}
.y9c{bottom:428.295000px;}
.y20{bottom:429.195000px;}
.y7f{bottom:438.195000px;}
.y54{bottom:440.355000px;}
.y9b{bottom:449.355000px;}
.y1f{bottom:450.255000px;}
.y81{bottom:459.975000px;}
.y53{bottom:461.415000px;}
.y9a{bottom:470.415000px;}
.y1e{bottom:471.315000px;}
.y80{bottom:481.755000px;}
.y52{bottom:482.475000px;}
.y99{bottom:491.475000px;}
.y1d{bottom:492.375000px;}
.y51{bottom:503.535000px;}
.y98{bottom:512.535000px;}
.y1c{bottom:513.435000px;}
.y50{bottom:524.595000px;}
.y97{bottom:533.595000px;}
.y1b{bottom:534.495000px;}
.y4f{bottom:545.655000px;}
.y7d{bottom:546.555000px;}
.y96{bottom:554.655000px;}
.y4e{bottom:566.715000px;}
.y7c{bottom:568.335000px;}
.y95{bottom:575.715000px;}
.y1a{bottom:578.955000px;}
.y76{bottom:590.115000px;}
.y4d{bottom:596.775000px;}
.y19{bottom:608.835000px;}
.y79{bottom:611.895000px;}
.y4c{bottom:617.835000px;}
.y18{bottom:629.895000px;}
.y78{bottom:633.675000px;}
.y4b{bottom:638.895000px;}
.y17{bottom:650.985000px;}
.y74{bottom:655.485000px;}
.y4a{bottom:659.805000px;}
.y16{bottom:672.045000px;}
.y49{bottom:680.865000px;}
.y73{bottom:683.925000px;}
.y15{bottom:693.105000px;}
.y48{bottom:701.925000px;}
.y72{bottom:704.985000px;}
.y14{bottom:714.165000px;}
.y47{bottom:722.985000px;}
.y71{bottom:726.045000px;}
.y13{bottom:735.225000px;}
.y46{bottom:744.045000px;}
.y70{bottom:747.105000px;}
.y12{bottom:756.285000px;}
.y45{bottom:765.105000px;}
.y6f{bottom:768.165000px;}
.y11{bottom:777.345000px;}
.y44{bottom:786.165000px;}
.y6e{bottom:789.225000px;}
.y10{bottom:798.405000px;}
.y43{bottom:807.225000px;}
.y6d{bottom:810.285000px;}
.yf{bottom:819.465000px;}
.y42{bottom:828.285000px;}
.y6c{bottom:831.345000px;}
.ye{bottom:842.685000px;}
.y41{bottom:849.345000px;}
.y6b{bottom:852.405000px;}
.yd{bottom:868.965000px;}
.y40{bottom:870.405000px;}
.y6a{bottom:873.465000px;}
.yc{bottom:890.025000px;}
.y3f{bottom:891.465000px;}
.y69{bottom:903.570000px;}
.yb{bottom:911.130000px;}
.y3e{bottom:912.570000px;}
.y68{bottom:924.630000px;}
.ya{bottom:927.870000px;}
.y3d{bottom:933.630000px;}
.y67{bottom:945.690000px;}
.y9{bottom:950.190000px;}
.y3c{bottom:954.690000px;}
.y66{bottom:966.750000px;}
.y8{bottom:975.390000px;}
.y3b{bottom:975.750000px;}
.y65{bottom:987.810000px;}
.y3a{bottom:996.810000px;}
.y64{bottom:1008.870000px;}
.y7{bottom:1009.050000px;}
.y39{bottom:1017.870000px;}
.y38{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.y37{bottom:1059.990000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.y35{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.y34{bottom:1123.170000px;}
.y33{bottom:1144.230000px;}
.y2{bottom:1145.670000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.hb{height:21.060000px;}
.hd{height:21.096000px;}
.h7{height:38.671172px;}
.hf{height:42.120000px;}
.h12{height:42.840000px;}
.ha{height:48.029766px;}
.h8{height:48.088125px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.h10{height:64.620000px;}
.hc{height:64.656000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h13{height:84.240000px;}
.he{height:85.860000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h11{height:170.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:137.520000px;}
.w5{width:268.590000px;}
.w4{width:286.455000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x6{left:53.999987px;}
.x8{left:70.199987px;}
.x7{left:75.599987px;}
.xd{left:96.515987px;}
.x9{left:107.496000px;}
.x5{left:176.969987px;}
.xb{left:245.730000px;}
.x3{left:272.234987px;}
.x2{left:350.534987px;}
.x4{left:419.114987px;}
.x1{left:479.264987px;}
.xc{left:532.905000px;}
.xe{left:859.679987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.842667pt;}
.lsc{letter-spacing:-0.484267pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls13{letter-spacing:-0.290133pt;}
.ls15{letter-spacing:-0.202667pt;}
.ls17{letter-spacing:-0.190933pt;}
.ls1e{letter-spacing:-0.185600pt;}
.ls6{letter-spacing:-0.117867pt;}
.lse{letter-spacing:-0.102933pt;}
.ls16{letter-spacing:-0.069333pt;}
.ls20{letter-spacing:-0.061867pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls1a{letter-spacing:-0.049280pt;}
.ls22{letter-spacing:-0.033920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.034560pt;}
.ls27{letter-spacing:0.039040pt;}
.lsf{letter-spacing:0.124800pt;}
.ls8{letter-spacing:0.133333pt;}
.ls23{letter-spacing:0.154667pt;}
.lsa{letter-spacing:0.169067pt;}
.ls18{letter-spacing:0.279467pt;}
.ls26{letter-spacing:0.309867pt;}
.ls1f{letter-spacing:0.317333pt;}
.ls14{letter-spacing:0.349867pt;}
.ls0{letter-spacing:0.385280pt;}
.ls21{letter-spacing:0.426133pt;}
.ls25{letter-spacing:0.426240pt;}
.ls2{letter-spacing:0.549120pt;}
.lsd{letter-spacing:0.581333pt;}
.ls1b{letter-spacing:14.032640pt;}
.ls10{letter-spacing:15.312640pt;}
.ls24{letter-spacing:17.232640pt;}
.ls11{letter-spacing:17.872640pt;}
.ls3{letter-spacing:19.152640pt;}
.ls12{letter-spacing:20.432640pt;}
.ls1c{letter-spacing:21.712640pt;}
.ls1d{letter-spacing:22.992640pt;}
.ls1{letter-spacing:33.872640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsf{word-spacing:-12.322453pt;}
.ws12{word-spacing:-12.314987pt;}
.wsc{word-spacing:-12.284587pt;}
.ws13{word-spacing:-12.044160pt;}
.ws6{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.971200pt;}
.wsd{word-spacing:-11.955840pt;}
.ws7{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.943253pt;}
.wsa{word-spacing:-11.935787pt;}
.ws8{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.819520pt;}
.wsb{word-spacing:-11.814187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._22{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._44{margin-left:-8.922880pt;}
._29{margin-left:-3.815253pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.170880pt;}
._2d{width:2.179307pt;}
._2c{width:3.649280pt;}
._31{width:4.887040pt;}
._30{width:5.896320pt;}
._2f{width:7.489920pt;}
._2e{width:8.518400pt;}
._33{width:9.614720pt;}
._34{width:10.940480pt;}
._35{width:12.928427pt;}
._32{width:13.970560pt;}
._41{width:14.904427pt;}
._38{width:15.885120pt;}
._36{width:17.102400pt;}
._37{width:18.169280pt;}
._45{width:20.578880pt;}
._46{width:21.570240pt;}
._42{width:22.554560pt;}
._3f{width:24.966400pt;}
._40{width:25.864960pt;}
._3c{width:30.915840pt;}
._2a{width:33.111680pt;}
._2b{width:34.004480pt;}
._43{width:35.116160pt;}
._3d{width:36.013120pt;}
._39{width:36.918400pt;}
._3a{width:62.573120pt;}
._3b{width:63.478400pt;}
._3e{width:89.454080pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:5.920000pt;}
.y86{bottom:5.960000pt;}
.y7e{bottom:24.640000pt;}
.y8b{bottom:25.280000pt;}
.y8f{bottom:43.360000pt;}
.y77{bottom:44.640000pt;}
.y83{bottom:44.680000pt;}
.y7b{bottom:44.800000pt;}
.y6{bottom:54.560000pt;}
.y8e{bottom:62.080000pt;}
.y7a{bottom:63.520000pt;}
.yad{bottom:81.600000pt;}
.y30{bottom:81.920000pt;}
.y94{bottom:90.560000pt;}
.y63{bottom:94.560000pt;}
.yac{bottom:96.800000pt;}
.yab{bottom:99.840000pt;}
.y2f{bottom:100.640000pt;}
.y93{bottom:109.280000pt;}
.y62{bottom:113.280000pt;}
.yaa{bottom:118.560000pt;}
.y2e{bottom:119.360000pt;}
.y89{bottom:120.160000pt;}
.y92{bottom:128.000000pt;}
.y61{bottom:132.000000pt;}
.ya9{bottom:137.306667pt;}
.y2d{bottom:138.106667pt;}
.y88{bottom:138.880000pt;}
.y91{bottom:146.746667pt;}
.y60{bottom:150.746667pt;}
.ya8{bottom:156.026667pt;}
.y2c{bottom:156.826667pt;}
.y90{bottom:165.466667pt;}
.y5f{bottom:169.466667pt;}
.ya7{bottom:174.746667pt;}
.y2b{bottom:175.546667pt;}
.y87{bottom:178.906667pt;}
.y5e{bottom:188.186667pt;}
.ya6{bottom:193.466667pt;}
.y2a{bottom:194.266667pt;}
.y5d{bottom:206.906667pt;}
.ya5{bottom:212.186667pt;}
.y29{bottom:212.986667pt;}
.y5c{bottom:225.626667pt;}
.ya4{bottom:230.906667pt;}
.y28{bottom:231.706667pt;}
.ya3{bottom:249.626667pt;}
.y27{bottom:250.426667pt;}
.y5b{bottom:252.346667pt;}
.y8d{bottom:254.426667pt;}
.ya2{bottom:268.346667pt;}
.y26{bottom:269.146667pt;}
.y5a{bottom:271.066667pt;}
.ya1{bottom:287.066667pt;}
.y25{bottom:287.866667pt;}
.y59{bottom:289.786667pt;}
.y8a{bottom:292.506667pt;}
.ya0{bottom:305.786667pt;}
.y24{bottom:306.586667pt;}
.y58{bottom:308.506667pt;}
.y8c{bottom:311.866667pt;}
.y9f{bottom:324.506667pt;}
.y23{bottom:325.306667pt;}
.y57{bottom:327.226667pt;}
.y82{bottom:331.386667pt;}
.y9e{bottom:343.226667pt;}
.y22{bottom:344.026667pt;}
.y56{bottom:345.946667pt;}
.y85{bottom:350.746667pt;}
.y9d{bottom:361.986667pt;}
.y21{bottom:362.786667pt;}
.y55{bottom:364.706667pt;}
.y84{bottom:370.146667pt;}
.y9c{bottom:380.706667pt;}
.y20{bottom:381.506667pt;}
.y7f{bottom:389.506667pt;}
.y54{bottom:391.426667pt;}
.y9b{bottom:399.426667pt;}
.y1f{bottom:400.226667pt;}
.y81{bottom:408.866667pt;}
.y53{bottom:410.146667pt;}
.y9a{bottom:418.146667pt;}
.y1e{bottom:418.946667pt;}
.y80{bottom:428.226667pt;}
.y52{bottom:428.866667pt;}
.y99{bottom:436.866667pt;}
.y1d{bottom:437.666667pt;}
.y51{bottom:447.586667pt;}
.y98{bottom:455.586667pt;}
.y1c{bottom:456.386667pt;}
.y50{bottom:466.306667pt;}
.y97{bottom:474.306667pt;}
.y1b{bottom:475.106667pt;}
.y4f{bottom:485.026667pt;}
.y7d{bottom:485.826667pt;}
.y96{bottom:493.026667pt;}
.y4e{bottom:503.746667pt;}
.y7c{bottom:505.186667pt;}
.y95{bottom:511.746667pt;}
.y1a{bottom:514.626667pt;}
.y76{bottom:524.546667pt;}
.y4d{bottom:530.466667pt;}
.y19{bottom:541.186667pt;}
.y79{bottom:543.906667pt;}
.y4c{bottom:549.186667pt;}
.y18{bottom:559.906667pt;}
.y78{bottom:563.266667pt;}
.y4b{bottom:567.906667pt;}
.y17{bottom:578.653333pt;}
.y74{bottom:582.653333pt;}
.y4a{bottom:586.493333pt;}
.y16{bottom:597.373333pt;}
.y49{bottom:605.213333pt;}
.y73{bottom:607.933333pt;}
.y15{bottom:616.093333pt;}
.y48{bottom:623.933333pt;}
.y72{bottom:626.653333pt;}
.y14{bottom:634.813333pt;}
.y47{bottom:642.653333pt;}
.y71{bottom:645.373333pt;}
.y13{bottom:653.533333pt;}
.y46{bottom:661.373333pt;}
.y70{bottom:664.093333pt;}
.y12{bottom:672.253333pt;}
.y45{bottom:680.093333pt;}
.y6f{bottom:682.813333pt;}
.y11{bottom:690.973333pt;}
.y44{bottom:698.813333pt;}
.y6e{bottom:701.533333pt;}
.y10{bottom:709.693333pt;}
.y43{bottom:717.533333pt;}
.y6d{bottom:720.253333pt;}
.yf{bottom:728.413333pt;}
.y42{bottom:736.253333pt;}
.y6c{bottom:738.973333pt;}
.ye{bottom:749.053333pt;}
.y41{bottom:754.973333pt;}
.y6b{bottom:757.693333pt;}
.yd{bottom:772.413333pt;}
.y40{bottom:773.693333pt;}
.y6a{bottom:776.413333pt;}
.yc{bottom:791.133333pt;}
.y3f{bottom:792.413333pt;}
.y69{bottom:803.173333pt;}
.yb{bottom:809.893333pt;}
.y3e{bottom:811.173333pt;}
.y68{bottom:821.893333pt;}
.ya{bottom:824.773333pt;}
.y3d{bottom:829.893333pt;}
.y67{bottom:840.613333pt;}
.y9{bottom:844.613333pt;}
.y3c{bottom:848.613333pt;}
.y66{bottom:859.333333pt;}
.y8{bottom:867.013333pt;}
.y3b{bottom:867.333333pt;}
.y65{bottom:878.053333pt;}
.y3a{bottom:886.053333pt;}
.y64{bottom:896.773333pt;}
.y7{bottom:896.933333pt;}
.y39{bottom:904.773333pt;}
.y38{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.y37{bottom:942.213333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.y35{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.y34{bottom:998.373333pt;}
.y33{bottom:1017.093333pt;}
.y2{bottom:1018.373333pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.hb{height:18.720000pt;}
.hd{height:18.752000pt;}
.h7{height:34.374375pt;}
.hf{height:37.440000pt;}
.h12{height:38.080000pt;}
.ha{height:42.693125pt;}
.h8{height:42.745000pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.h10{height:57.440000pt;}
.hc{height:57.472000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h13{height:74.880000pt;}
.he{height:76.320000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h11{height:151.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:122.240000pt;}
.w5{width:238.746667pt;}
.w4{width:254.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x6{left:47.999988pt;}
.x8{left:62.399988pt;}
.x7{left:67.199988pt;}
.xd{left:85.791988pt;}
.x9{left:95.552000pt;}
.x5{left:157.306655pt;}
.xb{left:218.426667pt;}
.x3{left:241.986655pt;}
.x2{left:311.586655pt;}
.x4{left:372.546655pt;}
.x1{left:426.013322pt;}
.xc{left:473.693333pt;}
.xe{left:764.159988pt;}
}




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