
    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_282c22a94d8590495884a2da.woff')format("woff");}.ff1{font-family:ff1;line-height:0.915039;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_440bad1cdb15c3e865ea2d7c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_baf89d66bd1484e0db4258e3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.928223;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_7fe6c06ab9abf6273d19672b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.928223;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_89690bb981bec3761589bdb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.866699;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_fb167e942eb19066b6e42ee0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b442b4dfdc5c22335d566066.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2b1c45383317f5163611ceae.woff')format("woff");}.ff8{font-family:ff8;line-height:0.854980;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.249567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.558110px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.005475px;}
.ls6{letter-spacing:0.006069px;}
.ls7{letter-spacing:0.184602px;}
.ls9{letter-spacing:0.184674px;}
.ls1{letter-spacing:0.339036px;}
.lsb{letter-spacing:9.425146px;}
.lsa{letter-spacing:60.069122px;}
.ls8{letter-spacing:60.069190px;}
.ls3{letter-spacing:183.528455px;}
.ls0{letter-spacing:460.225588px;}
.ls2{letter-spacing:833.385894px;}
.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:-62.258871px;}
.ws4{word-spacing:-62.147700px;}
.ws1{word-spacing:-37.355323px;}
.ws6{word-spacing:-37.294689px;}
.ws5{word-spacing:-37.288620px;}
.ws2{word-spacing:-33.701363px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-9.983892px;}
._14{margin-left:-8.728800px;}
._20{margin-left:-6.860523px;}
._1d{margin-left:-5.617569px;}
._1e{margin-left:-3.734931px;}
._57{margin-left:-2.492158px;}
._1{margin-left:-1.245177px;}
._0{width:1.123379px;}
._1a{width:3.755362px;}
._15{width:4.996092px;}
._d{width:6.253408px;}
._2d{width:8.666487px;}
._26{width:9.915510px;}
._2b{width:13.069224px;}
._2a{width:14.306109px;}
._c{width:18.701155px;}
._f{width:21.775971px;}
._e{width:23.000718px;}
._3f{width:25.492695px;}
._9{width:26.699235px;}
._8{width:27.932274px;}
._4{width:29.884258px;}
._17{width:31.106419px;}
._4e{width:32.942127px;}
._37{width:41.047827px;}
._7{width:42.926620px;}
._30{width:44.092298px;}
._52{width:45.279008px;}
._24{width:46.641120px;}
._4f{width:48.499482px;}
._50{width:50.147312px;}
._3d{width:51.386222px;}
._2c{width:55.293246px;}
._33{width:56.593045px;}
._35{width:59.673930px;}
._4d{width:64.035913px;}
._11{width:65.306356px;}
._a{width:67.149861px;}
._b{width:68.368539px;}
._36{width:69.611493px;}
._4b{width:71.481993px;}
._3{width:75.955823px;}
._2{width:77.201000px;}
._28{width:80.194809px;}
._4c{width:81.433918px;}
._1c{width:83.322625px;}
._2f{width:84.553441px;}
._47{width:87.646464px;}
._48{width:88.877280px;}
._18{width:92.618280px;}
._42{width:93.875596px;}
._10{width:101.897952px;}
._45{width:103.155267px;}
._32{width:104.420274px;}
._31{width:106.305136px;}
._41{width:118.068492px;}
._12{width:120.596883px;}
._25{width:121.835992px;}
._55{width:130.491963px;}
._54{width:133.323042px;}
._27{width:138.625786px;}
._3b{width:139.826256px;}
._4a{width:142.945779px;}
._29{width:157.885503px;}
._49{width:159.087942px;}
._19{width:167.764599px;}
._22{width:176.550244px;}
._3a{width:177.760629px;}
._3e{width:182.098830px;}
._21{width:195.182416px;}
._44{width:205.138186px;}
._34{width:213.190887px;}
._38{width:214.421703px;}
._40{width:241.708224px;}
._39{width:251.898513px;}
._1f{width:278.826306px;}
._56{width:280.164919px;}
._58{width:289.503750px;}
._6{width:298.986993px;}
._16{width:316.997977px;}
._1b{width:352.974660px;}
._53{width:354.348899px;}
._2e{width:390.896895px;}
._3c{width:401.549689px;}
._59{width:417.134436px;}
._51{width:426.930423px;}
._43{width:428.791008px;}
._5{width:485.521914px;}
._23{width:503.441077px;}
._46{width:577.317942px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:56.068200px;}
.fs0{font-size:56.168938px;}
.fs5{font-size:62.147700px;}
.fs1{font-size:62.258871px;}
.fs2{font-size:90.004191px;}
.fs3{font-size:101.508708px;}
.y0{bottom:0.000000px;}
.ycf{bottom:4.312968px;}
.yca{bottom:4.317699px;}
.yd6{bottom:4.317746px;}
.yd3{bottom:4.322477px;}
.y9{bottom:6.844813px;}
.y3e{bottom:71.820030px;}
.y7{bottom:71.822393px;}
.y3d{bottom:107.639992px;}
.y6{bottom:107.641936px;}
.y3c{bottom:125.820030px;}
.y5{bottom:125.820053px;}
.y3b{bottom:145.080025px;}
.y4{bottom:145.081202px;}
.y37{bottom:176.758804px;}
.y8a{bottom:180.360008px;}
.y64{bottom:186.659981px;}
.y36{bottom:194.404961px;}
.ya1{bottom:196.559967px;}
.y89{bottom:204.299973px;}
.y63{bottom:210.779983px;}
.y35{bottom:212.041655px;}
.ya0{bottom:214.019989px;}
.y88{bottom:228.240006px;}
.y34{bottom:229.683081px;}
.y9f{bottom:231.659981px;}
.y62{bottom:234.720017px;}
.y33{bottom:247.139239px;}
.y9e{bottom:249.299973px;}
.y87{bottom:252.360008px;}
.y61{bottom:258.659981px;}
.y32{bottom:264.595397px;}
.y9d{bottom:266.940033px;}
.y86{bottom:276.120002px;}
.y31{bottom:282.246286px;}
.y60{bottom:282.600013px;}
.y9c{bottom:284.399986px;}
.ydc{bottom:292.140428px;}
.y85{bottom:300.240006px;}
.y9b{bottom:301.860008px;}
.y5f{bottom:306.720017px;}
.y9a{bottom:319.500000px;}
.y30{bottom:322.920266px;}
.y84{bottom:324.179970px;}
.ydb{bottom:324.540082px;}
.y5e{bottom:330.480011px;}
.y99{bottom:337.139992px;}
.y2f{bottom:340.385980px;}
.yda{bottom:344.884169px;}
.y83{bottom:348.120002px;}
.y5d{bottom:354.600013px;}
.y2e{bottom:358.022581px;}
.yd8{bottom:360.720604px;}
.yd7{bottom:365.038350px;}
.y82{bottom:372.059967px;}
.y98{bottom:372.240006px;}
.y2d{bottom:375.664007px;}
.y5c{bottom:378.539977px;}
.yd5{bottom:381.240496px;}
.yd9{bottom:385.558242px;}
.y97{bottom:389.879998px;}
.y2c{bottom:393.300701px;}
.y81{bottom:396.179970px;}
.y5b{bottom:402.480011px;}
.y96{bottom:407.340019px;}
.y2b{bottom:410.761591px;}
.yd4{bottom:417.957803px;}
.y80{bottom:419.940033px;}
.y95{bottom:424.980011px;}
.y5a{bottom:426.419975px;}
.y2a{bottom:428.217749px;}
.yd2{bottom:433.979459px;}
.yd1{bottom:438.301937px;}
.y94{bottom:442.440033px;}
.y7f{bottom:444.059967px;}
.y29{bottom:445.863906px;}
.y59{bottom:450.539977px;}
.yd0{bottom:458.456071px;}
.y93{bottom:460.080025px;}
.y28{bottom:463.505332px;}
.y7e{bottom:468.000000px;}
.y58{bottom:474.299973px;}
.y92{bottom:477.720017px;}
.y27{bottom:480.595849px;}
.yce{bottom:486.723200px;}
.ycd{bottom:491.036168px;}
.y7d{bottom:491.940033px;}
.y91{bottom:495.360008px;}
.y26{bottom:496.610210px;}
.y57{bottom:498.419975px;}
.ycc{bottom:511.385080px;}
.y90{bottom:512.639992px;}
.y25{bottom:513.000071px;}
.y7c{bottom:515.879998px;}
.y56{bottom:522.360008px;}
.y8f{bottom:530.279983px;}
.y24{bottom:530.641451px;}
.y7b{bottom:540.000000px;}
.ycb{bottom:543.599373px;}
.y55{bottom:546.299973px;}
.y8e{bottom:547.919975px;}
.y23{bottom:548.097609px;}
.yc9{bottom:559.621076px;}
.y7a{bottom:563.759994px;}
.yc8{bottom:563.938775px;}
.y8d{bottom:565.559967px;}
.y22{bottom:565.563276px;}
.y54{bottom:570.240006px;}
.y8c{bottom:583.019989px;}
.y21{bottom:583.204702px;}
.yc7{bottom:584.458667px;}
.y79{bottom:587.879998px;}
.y53{bottom:594.360008px;}
.y8b{bottom:600.659981px;}
.y20{bottom:600.841350px;}
.y78{bottom:611.820030px;}
.yc6{bottom:616.682516px;}
.y52{bottom:618.120002px;}
.y1f{bottom:618.482729px;}
.y77{bottom:635.759994px;}
.y1e{bottom:635.938887px;}
.yc5{bottom:637.017141px;}
.y51{bottom:642.240006px;}
.y1d{bottom:653.404554px;}
.yc4{bottom:657.361274px;}
.y76{bottom:659.699993px;}
.y50{bottom:666.180004px;}
.y1c{bottom:671.041202px;}
.y75{bottom:683.819995px;}
.y1b{bottom:688.682628px;}
.y4f{bottom:690.120002px;}
.yc3{bottom:692.278368px;}
.y1a{bottom:706.138786px;}
.y74{bottom:707.579990px;}
.y4e{bottom:714.060001px;}
.y19{bottom:723.779238px;}
.yc2{bottom:726.659606px;}
.y73{bottom:731.699993px;}
.y4d{bottom:738.180004px;}
.y18{bottom:741.418762px;}
.y72{bottom:755.639992px;}
.yb3{bottom:757.257052px;}
.yc1{bottom:758.518672px;}
.y17{bottom:758.883455px;}
.y4c{bottom:761.939999px;}
.yb2{bottom:774.896576px;}
.y16{bottom:776.340587px;}
.y71{bottom:779.579990px;}
.y4b{bottom:786.060001px;}
.yc0{bottom:791.282088px;}
.yb1{bottom:792.543661px;}
.y15{bottom:793.980065px;}
.y70{bottom:803.519989px;}
.y4a{bottom:810.000000px;}
.yb0{bottom:810.000793px;}
.y14{bottom:811.619588px;}
.ybf{bottom:811.801980px;}
.yaf{bottom:827.457902px;}
.y6f{bottom:827.639992px;}
.y13{bottom:829.259089px;}
.ybe{bottom:832.139480px;}
.y49{bottom:833.939999px;}
.yae{bottom:845.097403px;}
.y12{bottom:848.880193px;}
.y6e{bottom:851.399986px;}
.ybd{bottom:852.302173px;}
.y48{bottom:857.879998px;}
.yad{bottom:862.736904px;}
.ybc{bottom:872.822065px;}
.y11{bottom:874.446557px;}
.y6d{bottom:875.519989px;}
.yac{bottom:880.201620px;}
.y47{bottom:882.000000px;}
.ybb{bottom:893.159543px;}
.yab{bottom:897.841121px;}
.y6c{bottom:899.459988px;}
.y10{bottom:900.001958px;}
.y46{bottom:905.759994px;}
.yba{bottom:913.497043px;}
.yaa{bottom:915.480645px;}
.y6b{bottom:923.400003px;}
.yf{bottom:926.285457px;}
.y45{bottom:929.879998px;}
.ya9{bottom:932.937754px;}
.yb9{bottom:933.659736px;}
.y6a{bottom:947.340002px;}
.ya8{bottom:950.577254px;}
.y44{bottom:953.819996px;}
.yb8{bottom:954.179628px;}
.ye{bottom:960.836102px;}
.yd{bottom:960.837200px;}
.y8{bottom:965.340697px;}
.ya7{bottom:968.041947px;}
.y69{bottom:971.460004px;}
.yb7{bottom:974.517128px;}
.y43{bottom:977.759994px;}
.ya6{bottom:985.681471px;}
.yb6{bottom:994.862213px;}
.y68{bottom:995.219999px;}
.yc{bottom:995.577063px;}
.y42{bottom:1001.699993px;}
.ya5{bottom:1003.320972px;}
.yb5{bottom:1015.382105px;}
.y67{bottom:1019.340002px;}
.ya4{bottom:1020.960484px;}
.y41{bottom:1025.819996px;}
.yb4{bottom:1035.537202px;}
.ya3{bottom:1038.242786px;}
.yb{bottom:1038.785172px;}
.y66{bottom:1043.280001px;}
.y40{bottom:1049.579999px;}
.ya2{bottom:1055.882298px;}
.y65{bottom:1067.219999px;}
.ya{bottom:1073.521799px;}
.y3f{bottom:1073.700002px;}
.y3{bottom:1091.700908px;}
.y3a{bottom:1091.879998px;}
.y2{bottom:1109.340414px;}
.y39{bottom:1109.519998px;}
.y1{bottom:1126.441805px;}
.y38{bottom:1126.619999px;}
.h11{height:16.738884px;}
.h12{height:16.738930px;}
.h10{height:16.743662px;}
.h5{height:25.742175px;}
.ha{height:38.095047px;}
.hb{height:39.587215px;}
.h1{height:39.658342px;}
.hf{height:42.149978px;}
.h9{height:42.225377px;}
.hc{height:43.879675px;}
.h2{height:43.958168px;}
.he{height:45.245225px;}
.h4{height:45.326160px;}
.hd{height:61.813899px;}
.h3{height:61.924473px;}
.h6{height:63.547881px;}
.h7{height:71.670699px;}
.h8{height:75.105991px;}
.h0{height:1188.000000px;}
.w1{width:7.556910px;}
.w2{width:7.920642px;}
.w3{width:91.800522px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:140.401689px;}
.x10{left:148.322331px;}
.xc{left:153.902142px;}
.xd{left:160.746126px;}
.x3{left:199.798909px;}
.x1{left:210.063225px;}
.xe{left:228.418312px;}
.x14{left:232.202211px;}
.x2{left:246.419904px;}
.x11{left:248.043495px;}
.x6{left:262.265376px;}
.x7{left:277.563814px;}
.x8{left:300.239302px;}
.x9{left:323.098669px;}
.xb{left:344.337560px;}
.x4{left:368.818084px;}
.x12{left:380.160366px;}
.xf{left:483.480011px;}
.x13{left:577.978154px;}
.xa{left:631.084316px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.273876pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.004867pt;}
.ls6{letter-spacing:0.005395pt;}
.ls7{letter-spacing:0.164090pt;}
.ls9{letter-spacing:0.164154pt;}
.ls1{letter-spacing:0.301365pt;}
.lsb{letter-spacing:8.377907pt;}
.lsa{letter-spacing:53.394775pt;}
.ls8{letter-spacing:53.394835pt;}
.ls3{letter-spacing:163.136405pt;}
.ls0{letter-spacing:409.089411pt;}
.ls2{letter-spacing:740.787461pt;}
.ws0{word-spacing:-55.341219pt;}
.ws4{word-spacing:-55.242400pt;}
.ws1{word-spacing:-33.204731pt;}
.ws6{word-spacing:-33.150835pt;}
.ws5{word-spacing:-33.145440pt;}
.ws2{word-spacing:-29.956767pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-8.874571pt;}
._14{margin-left:-7.758933pt;}
._20{margin-left:-6.098243pt;}
._1d{margin-left:-4.993395pt;}
._1e{margin-left:-3.319939pt;}
._57{margin-left:-2.215252pt;}
._1{margin-left:-1.106824pt;}
._0{width:0.998559pt;}
._1a{width:3.338099pt;}
._15{width:4.440971pt;}
._d{width:5.558585pt;}
._2d{width:7.703544pt;}
._26{width:8.813787pt;}
._2b{width:11.617088pt;}
._2a{width:12.716542pt;}
._c{width:16.623249pt;}
._f{width:19.356419pt;}
._e{width:20.445083pt;}
._3f{width:22.660174pt;}
._9{width:23.732653pt;}
._8{width:24.828688pt;}
._4{width:26.563785pt;}
._17{width:27.650150pt;}
._4e{width:29.281890pt;}
._37{width:36.486958pt;}
._7{width:38.156996pt;}
._30{width:39.193154pt;}
._52{width:40.248007pt;}
._24{width:41.458774pt;}
._4f{width:43.110651pt;}
._50{width:44.575388pt;}
._3d{width:45.676642pt;}
._2c{width:49.149552pt;}
._33{width:50.304929pt;}
._35{width:53.043494pt;}
._4d{width:56.920812pt;}
._11{width:58.050094pt;}
._a{width:59.688766pt;}
._b{width:60.772035pt;}
._36{width:61.876883pt;}
._4b{width:63.539550pt;}
._3{width:67.516287pt;}
._2{width:68.623111pt;}
._28{width:71.284275pt;}
._4c{width:72.385705pt;}
._1c{width:74.064556pt;}
._2f{width:75.158614pt;}
._47{width:77.907968pt;}
._48{width:79.002027pt;}
._18{width:82.327360pt;}
._42{width:83.444974pt;}
._10{width:90.575957pt;}
._45{width:91.693571pt;}
._32{width:92.818022pt;}
._31{width:94.493454pt;}
._41{width:104.949770pt;}
._12{width:107.197230pt;}
._25{width:108.298659pt;}
._55{width:115.992856pt;}
._54{width:118.509371pt;}
._27{width:123.222921pt;}
._3b{width:124.290005pt;}
._4a{width:127.062915pt;}
._29{width:140.342670pt;}
._49{width:141.411504pt;}
._19{width:149.124088pt;}
._22{width:156.933550pt;}
._3a{width:158.009448pt;}
._3e{width:161.865627pt;}
._21{width:173.495481pt;}
._44{width:182.345054pt;}
._34{width:189.503011pt;}
._38{width:190.597070pt;}
._40{width:214.851754pt;}
._39{width:223.909790pt;}
._1f{width:247.845606pt;}
._56{width:249.035484pt;}
._58{width:257.336667pt;}
._6{width:265.766216pt;}
._16{width:281.775980pt;}
._1b{width:313.755253pt;}
._53{width:314.976799pt;}
._2e{width:347.463906pt;}
._3c{width:356.933057pt;}
._59{width:370.786165pt;}
._51{width:379.493709pt;}
._43{width:381.147563pt;}
._5{width:431.575035pt;}
._23{width:447.503180pt;}
._46{width:513.171504pt;}
.fs4{font-size:49.838400pt;}
.fs0{font-size:49.927945pt;}
.fs5{font-size:55.242400pt;}
.fs1{font-size:55.341219pt;}
.fs2{font-size:80.003726pt;}
.fs3{font-size:90.229963pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:3.833749pt;}
.yca{bottom:3.837955pt;}
.yd6{bottom:3.837996pt;}
.yd3{bottom:3.842202pt;}
.y9{bottom:6.084279pt;}
.y3e{bottom:63.840027pt;}
.y7{bottom:63.842127pt;}
.y3d{bottom:95.679993pt;}
.y6{bottom:95.681721pt;}
.y3c{bottom:111.840027pt;}
.y5{bottom:111.840047pt;}
.y3b{bottom:128.960022pt;}
.y4{bottom:128.961068pt;}
.y37{bottom:157.118937pt;}
.y8a{bottom:160.320007pt;}
.y64{bottom:165.919983pt;}
.y36{bottom:172.804410pt;}
.ya1{bottom:174.719971pt;}
.y89{bottom:181.599976pt;}
.y63{bottom:187.359985pt;}
.y35{bottom:188.481471pt;}
.ya0{bottom:190.239990pt;}
.y88{bottom:202.880005pt;}
.y34{bottom:204.162739pt;}
.y9f{bottom:205.919983pt;}
.y62{bottom:208.640015pt;}
.y33{bottom:219.679324pt;}
.y9e{bottom:221.599976pt;}
.y87{bottom:224.320007pt;}
.y61{bottom:229.919983pt;}
.y32{bottom:235.195909pt;}
.y9d{bottom:237.280029pt;}
.y86{bottom:245.440002pt;}
.y31{bottom:250.885587pt;}
.y60{bottom:251.200012pt;}
.y9c{bottom:252.799988pt;}
.ydc{bottom:259.680380pt;}
.y85{bottom:266.880005pt;}
.y9b{bottom:268.320007pt;}
.y5f{bottom:272.640015pt;}
.y9a{bottom:284.000000pt;}
.y30{bottom:287.040236pt;}
.y84{bottom:288.159973pt;}
.ydb{bottom:288.480073pt;}
.y5e{bottom:293.760010pt;}
.y99{bottom:299.679993pt;}
.y2f{bottom:302.565315pt;}
.yda{bottom:306.563706pt;}
.y83{bottom:309.440002pt;}
.y5d{bottom:315.200012pt;}
.y2e{bottom:318.242294pt;}
.yd8{bottom:320.640537pt;}
.yd7{bottom:324.478533pt;}
.y82{bottom:330.719971pt;}
.y98{bottom:330.880005pt;}
.y2d{bottom:333.923562pt;}
.y5c{bottom:336.479980pt;}
.yd5{bottom:338.880441pt;}
.yd9{bottom:342.718437pt;}
.y97{bottom:346.559998pt;}
.y2c{bottom:349.600623pt;}
.y81{bottom:352.159973pt;}
.y5b{bottom:357.760010pt;}
.y96{bottom:362.080017pt;}
.y2b{bottom:365.121414pt;}
.yd4{bottom:371.518047pt;}
.y80{bottom:373.280029pt;}
.y95{bottom:377.760010pt;}
.y5a{bottom:379.039978pt;}
.y2a{bottom:380.637999pt;}
.yd2{bottom:385.759519pt;}
.yd1{bottom:389.601721pt;}
.y94{bottom:393.280029pt;}
.y7f{bottom:394.719971pt;}
.y29{bottom:396.323472pt;}
.y59{bottom:400.479980pt;}
.yd0{bottom:407.516508pt;}
.y93{bottom:408.960022pt;}
.y28{bottom:412.004739pt;}
.y7e{bottom:416.000000pt;}
.y58{bottom:421.599976pt;}
.y92{bottom:424.640015pt;}
.y27{bottom:427.196310pt;}
.yce{bottom:432.642845pt;}
.ycd{bottom:436.476594pt;}
.y7d{bottom:437.280029pt;}
.y91{bottom:440.320007pt;}
.y26{bottom:441.431298pt;}
.y57{bottom:443.039978pt;}
.ycc{bottom:454.564515pt;}
.y90{bottom:455.679993pt;}
.y25{bottom:456.000063pt;}
.y7c{bottom:458.559998pt;}
.y56{bottom:464.320007pt;}
.y8f{bottom:471.359985pt;}
.y24{bottom:471.681289pt;}
.y7b{bottom:480.000000pt;}
.ycb{bottom:483.199443pt;}
.y55{bottom:485.599976pt;}
.y8e{bottom:487.039978pt;}
.y23{bottom:487.197874pt;}
.yc9{bottom:497.440956pt;}
.y7a{bottom:501.119995pt;}
.yc8{bottom:501.278911pt;}
.y8d{bottom:502.719971pt;}
.y22{bottom:502.722912pt;}
.y54{bottom:506.880005pt;}
.y8c{bottom:518.239990pt;}
.y21{bottom:518.404179pt;}
.yc7{bottom:519.518815pt;}
.y79{bottom:522.559998pt;}
.y53{bottom:528.320007pt;}
.y8b{bottom:533.919983pt;}
.y20{bottom:534.081200pt;}
.y78{bottom:543.840027pt;}
.yc6{bottom:548.162237pt;}
.y52{bottom:549.440002pt;}
.y1f{bottom:549.762426pt;}
.y77{bottom:565.119995pt;}
.y1e{bottom:565.279011pt;}
.yc5{bottom:566.237458pt;}
.y51{bottom:570.880005pt;}
.y1d{bottom:580.804048pt;}
.yc4{bottom:584.321133pt;}
.y76{bottom:586.399994pt;}
.y50{bottom:592.160004pt;}
.y1c{bottom:596.481069pt;}
.y75{bottom:607.839996pt;}
.y1b{bottom:612.162336pt;}
.y4f{bottom:613.440002pt;}
.yc3{bottom:615.358550pt;}
.y1a{bottom:627.678921pt;}
.y74{bottom:628.959991pt;}
.y4e{bottom:634.720001pt;}
.y19{bottom:643.359322pt;}
.yc2{bottom:645.919650pt;}
.y73{bottom:650.399994pt;}
.y4d{bottom:656.160004pt;}
.y18{bottom:659.038899pt;}
.y72{bottom:671.679993pt;}
.yb3{bottom:673.117380pt;}
.yc1{bottom:674.238819pt;}
.y17{bottom:674.563071pt;}
.y4c{bottom:677.279999pt;}
.yb2{bottom:688.796957pt;}
.y16{bottom:690.080522pt;}
.y71{bottom:692.959991pt;}
.y4b{bottom:698.720001pt;}
.yc0{bottom:703.361856pt;}
.yb1{bottom:704.483254pt;}
.y15{bottom:705.760057pt;}
.y70{bottom:714.239990pt;}
.y4a{bottom:720.000000pt;}
.yb0{bottom:720.000705pt;}
.y14{bottom:721.439634pt;}
.ybf{bottom:721.601760pt;}
.yaf{bottom:735.518135pt;}
.y6f{bottom:735.679993pt;}
.y13{bottom:737.119190pt;}
.ybe{bottom:739.679538pt;}
.y49{bottom:741.279999pt;}
.yae{bottom:751.197691pt;}
.y12{bottom:754.560171pt;}
.y6e{bottom:756.799988pt;}
.ybd{bottom:757.601932pt;}
.y48{bottom:762.559998pt;}
.yad{bottom:766.877248pt;}
.ybc{bottom:775.841836pt;}
.y11{bottom:777.285829pt;}
.y6d{bottom:778.239990pt;}
.yac{bottom:782.401440pt;}
.y47{bottom:784.000000pt;}
.ybb{bottom:793.919593pt;}
.yab{bottom:798.080996pt;}
.y6c{bottom:799.519989pt;}
.y10{bottom:800.001740pt;}
.y46{bottom:805.119995pt;}
.yba{bottom:811.997371pt;}
.yaa{bottom:813.760573pt;}
.y6b{bottom:820.800003pt;}
.yf{bottom:823.364850pt;}
.y45{bottom:826.559998pt;}
.ya9{bottom:829.278003pt;}
.yb9{bottom:829.919765pt;}
.y6a{bottom:842.080002pt;}
.ya8{bottom:844.957559pt;}
.y44{bottom:847.839996pt;}
.yb8{bottom:848.159669pt;}
.ye{bottom:854.076535pt;}
.yd{bottom:854.077511pt;}
.y8{bottom:858.080619pt;}
.ya7{bottom:860.481731pt;}
.y69{bottom:863.520004pt;}
.yb7{bottom:866.237447pt;}
.y43{bottom:869.119995pt;}
.ya6{bottom:876.161308pt;}
.yb6{bottom:884.321967pt;}
.y68{bottom:884.639999pt;}
.yc{bottom:884.957390pt;}
.y42{bottom:890.399994pt;}
.ya5{bottom:891.840864pt;}
.yb5{bottom:902.561871pt;}
.y67{bottom:906.080002pt;}
.ya4{bottom:907.520430pt;}
.y41{bottom:911.839996pt;}
.yb4{bottom:920.477513pt;}
.ya3{bottom:922.882476pt;}
.yb{bottom:923.364597pt;}
.y66{bottom:927.360001pt;}
.y40{bottom:932.959999pt;}
.ya2{bottom:938.562043pt;}
.y65{bottom:948.639999pt;}
.ya{bottom:954.241599pt;}
.y3f{bottom:954.400002pt;}
.y3{bottom:970.400807pt;}
.y3a{bottom:970.559998pt;}
.y2{bottom:986.080368pt;}
.y39{bottom:986.239998pt;}
.y1{bottom:1001.281605pt;}
.y38{bottom:1001.439999pt;}
.h11{height:14.879008pt;}
.h12{height:14.879049pt;}
.h10{height:14.883255pt;}
.h5{height:22.881933pt;}
.ha{height:33.862264pt;}
.hb{height:35.188636pt;}
.h1{height:35.251860pt;}
.hf{height:37.466647pt;}
.h9{height:37.533668pt;}
.hc{height:39.004155pt;}
.h2{height:39.073927pt;}
.he{height:40.217978pt;}
.h4{height:40.289920pt;}
.hd{height:54.945688pt;}
.h3{height:55.043976pt;}
.h6{height:56.487006pt;}
.h7{height:63.707288pt;}
.h8{height:66.760881pt;}
.h0{height:1056.000000pt;}
.w1{width:6.717253pt;}
.w2{width:7.040571pt;}
.w3{width:81.600464pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:124.801501pt;}
.x10{left:131.842072pt;}
.xc{left:136.801904pt;}
.xd{left:142.885445pt;}
.x3{left:177.599031pt;}
.x1{left:186.722867pt;}
.xe{left:203.038500pt;}
.x14{left:206.401965pt;}
.x2{left:219.039915pt;}
.x11{left:220.483107pt;}
.x6{left:233.124779pt;}
.x7{left:246.723391pt;}
.x8{left:266.879379pt;}
.x9{left:287.198817pt;}
.xb{left:306.077831pt;}
.x4{left:327.838297pt;}
.x12{left:337.920326pt;}
.xf{left:429.760010pt;}
.x13{left:513.758359pt;}
.xa{left:560.963836pt;}
}




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