
    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_7783a4ce76872e34f94bbdee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.032000;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;}
.ff2{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff3;src:url('chunks/assets/font_beec007fa019133c1c61ce91.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.261000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_02db8d46010265e9f97305f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.077000;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0a88e1eb8aa4f7808c580005.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.701000;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_0a97c16e5e39c1209e87b742.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ab1c4e3ade45872d65103cc8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932129;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0a88e1eb8aa4f7808c580005.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.701000;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;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fdaeffb07bcb449f270ed521.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.701000;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;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4e5eeddcfe13d18c2ced23fe.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.086000;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;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff16;src:url('chunks/assets/font_0a88e1eb8aa4f7808c580005.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.701000;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;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-96.404005px;}
.ws2{word-spacing:-48.179580px;}
.ws4{word-spacing:-38.540049px;}
.ws5{word-spacing:-31.312660px;}
.ws3{word-spacing:-13.580163px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-1249.978247px;}
._3{margin-left:-1064.530301px;}
._0{margin-left:-5.355665px;}
._1{margin-left:-1.818576px;}
.fc7{color:transparent;}
.fc6{color:rgb(49,53,110);}
.fc4{color:rgb(100,204,27);}
.fc2{color:rgb(48,68,67);}
.fc5{color:rgb(0,4,55);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.879039px;}
.fsd{font-size:104.375534px;}
.fsa{font-size:128.466829px;}
.fs9{font-size:140.512476px;}
.fs0{font-size:148.542380px;}
.fs7{font-size:160.508247px;}
.fs3{font-size:160.598599px;}
.fs5{font-size:169.271456px;}
.fse{font-size:176.649418px;}
.fs2{font-size:187.511793px;}
.fs6{font-size:188.213239px;}
.fs1{font-size:188.611846px;}
.fsc{font-size:192.730357px;}
.fsb{font-size:210.384415px;}
.fs8{font-size:619.630654px;}
.y0{bottom:0.000000px;}
.y9a{bottom:14.467512px;}
.y87{bottom:17.408183px;}
.y8c{bottom:17.435355px;}
.y89{bottom:17.476913px;}
.y8f{bottom:17.573255px;}
.y85{bottom:19.149237px;}
.y80{bottom:21.107300px;}
.y78{bottom:21.124925px;}
.y76{bottom:21.170097px;}
.y6a{bottom:21.358864px;}
.y1a{bottom:21.359694px;}
.y61{bottom:22.896766px;}
.y9c{bottom:23.632729px;}
.y8{bottom:24.783210px;}
.y6c{bottom:24.982450px;}
.y5{bottom:25.210309px;}
.y91{bottom:27.999105px;}
.y3{bottom:30.374465px;}
.y59{bottom:40.978995px;}
.y99{bottom:50.604454px;}
.y92{bottom:51.974989px;}
.y58{bottom:54.428748px;}
.y8b{bottom:61.853679px;}
.y8e{bottom:61.991580px;}
.y7f{bottom:76.818419px;}
.y75{bottom:76.881216px;}
.y69{bottom:77.069983px;}
.y19{bottom:77.070813px;}
.y79{bottom:79.694988px;}
.y2{bottom:82.123555px;}
.y83{bottom:82.343744px;}
.y98{bottom:86.741396px;}
.y33{bottom:95.989055px;}
.y97{bottom:122.878338px;}
.y7e{bottom:132.529537px;}
.y74{bottom:132.592334px;}
.y68{bottom:132.781102px;}
.y18{bottom:132.781932px;}
.y96{bottom:159.015280px;}
.y32{bottom:160.163084px;}
.y7d{bottom:188.240656px;}
.y73{bottom:188.303453px;}
.y67{bottom:188.492221px;}
.y17{bottom:188.493051px;}
.y95{bottom:195.152222px;}
.y82{bottom:221.239128px;}
.y31{bottom:224.337113px;}
.y48{bottom:224.346935px;}
.y94{bottom:231.289164px;}
.y47{bottom:237.779107px;}
.y7c{bottom:243.951775px;}
.y72{bottom:244.014572px;}
.y66{bottom:244.203339px;}
.y16{bottom:244.204169px;}
.y46{bottom:251.228860px;}
.y93{bottom:281.629937px;}
.y30{bottom:288.510999px;}
.y7b{bottom:299.662894px;}
.y71{bottom:299.725691px;}
.y65{bottom:299.914458px;}
.y15{bottom:299.915288px;}
.y9b{bottom:313.334978px;}
.y2f{bottom:352.684848px;}
.y7a{bottom:355.374013px;}
.y70{bottom:355.436809px;}
.y64{bottom:355.625577px;}
.y14{bottom:355.626407px;}
.y45{bottom:399.134710px;}
.y6f{bottom:411.147928px;}
.y63{bottom:411.336696px;}
.y13{bottom:411.337526px;}
.y2e{bottom:416.859057px;}
.y27{bottom:449.327996px;}
.y6e{bottom:466.859047px;}
.y77{bottom:471.374972px;}
.y1d{bottom:480.192703px;}
.y2d{bottom:496.312530px;}
.y1e{bottom:519.613745px;}
.y12{bottom:522.759763px;}
.y25{bottom:528.781469px;}
.y4c{bottom:557.732406px;}
.y1b{bottom:568.571116px;}
.y4b{bottom:571.182159px;}
.y11{bottom:578.470882px;}
.y9{bottom:590.894967px;}
.y29{bottom:603.651242px;}
.y44{bottom:606.331318px;}
.y5a{bottom:609.686533px;}
.y43{bottom:619.781071px;}
.y42{bottom:633.213243px;}
.y10{bottom:634.182001px;}
.y22{bottom:645.211548px;}
.y41{bottom:646.662996px;}
.yf{bottom:689.893120px;}
.y5e{bottom:703.193316px;}
.y57{bottom:707.485527px;}
.y40{bottom:710.833127px;}
.y5d{bottom:716.643069px;}
.y56{bottom:720.917699px;}
.y3f{bottom:724.282881px;}
.y55{bottom:734.367452px;}
.ye{bottom:745.604238px;}
.y3e{bottom:794.880590px;}
.yd{bottom:801.315357px;}
.y3d{bottom:808.330343px;}
.y3c{bottom:821.762515px;}
.y3b{bottom:835.212268px;}
.y4f{bottom:846.519039px;}
.yc{bottom:857.026476px;}
.y26{bottom:867.681351px;}
.y50{bottom:910.693105px;}
.yb{bottom:912.737595px;}
.y3a{bottom:914.675707px;}
.y4d{bottom:924.139140px;}
.y39{bottom:928.107878px;}
.y38{bottom:941.557631px;}
.ya{bottom:968.448714px;}
.y37{bottom:1017.961601px;}
.y4e{bottom:1025.289452px;}
.y36{bottom:1031.411354px;}
.y35{bottom:1044.843525px;}
.y34{bottom:1058.293279px;}
.y2a{bottom:1133.850543px;}
.y28{bottom:1149.129987px;}
.y53{bottom:1161.898496px;}
.y5c{bottom:1168.607740px;}
.y52{bottom:1175.330668px;}
.y5b{bottom:1182.057493px;}
.y51{bottom:1188.780421px;}
.y23{bottom:1214.526396px;}
.y4a{bottom:1226.979264px;}
.y24{bottom:1249.669307px;}
.y2c{bottom:1296.653877px;}
.y2b{bottom:1360.827906px;}
.y20{bottom:1384.129121px;}
.y1c{bottom:1393.296809px;}
.y54{bottom:1400.860156px;}
.y5f{bottom:1431.113691px;}
.y49{bottom:1510.567164px;}
.y21{bottom:1538.452223px;}
.y1f{bottom:1543.036138px;}
.y7{bottom:1595.654925px;}
.y6d{bottom:1743.974919px;}
.y90{bottom:2240.774898px;}
.y6b{bottom:2248.334898px;}
.y8a{bottom:2413.214891px;}
.y8d{bottom:2420.774891px;}
.y62{bottom:2481.254888px;}
.y88{bottom:2684.654880px;}
.y6{bottom:2774.775213px;}
.y1{bottom:2775.104541px;}
.y4{bottom:2922.974870px;}
.y60{bottom:2929.814869px;}
.y86{bottom:3056.174864px;}
.y84{bottom:3097.934862px;}
.y81{bottom:3112.694862px;}
.h10{height:35.418210px;}
.h20{height:52.919998px;}
.h1e{height:57.599998px;}
.h18{height:65.879997px;}
.h11{height:70.559997px;}
.h2f{height:72.719997px;}
.h7{height:77.399997px;}
.h4{height:77.759997px;}
.h2d{height:83.813554px;}
.h26{height:86.399996px;}
.h25{height:90.055247px;}
.h24{height:97.559996px;}
.h1f{height:98.499246px;}
.h2c{height:99.156757px;}
.h2e{height:103.227403px;}
.h22{height:104.315065px;}
.hc{height:112.579618px;}
.h3{height:114.377633px;}
.h21{height:122.043487px;}
.h23{height:127.053693px;}
.h1a{height:128.888123px;}
.he{height:128.960675px;}
.h2{height:132.747665px;}
.h13{height:135.924979px;}
.h31{height:141.849482px;}
.h9{height:150.571970px;}
.h16{height:151.135231px;}
.h19{height:152.482835px;}
.hb{height:152.568669px;}
.h2b{height:154.762477px;}
.hd{height:158.832014px;}
.h12{height:160.807883px;}
.h30{height:167.816947px;}
.h28{height:168.938685px;}
.h8{height:178.136203px;}
.h15{height:178.802577px;}
.h5{height:179.181254px;}
.h2a{height:183.093839px;}
.h6{height:186.537116px;}
.h27{height:199.865194px;}
.h29{height:335.159986px;}
.h1c{height:393.479984px;}
.h1b{height:399.959983px;}
.h14{height:455.759981px;}
.h1d{height:497.563415px;}
.h17{height:511.559979px;}
.ha{height:1013.039958px;}
.hf{height:1561.472503px;}
.h1{height:3576.000000px;}
.h0{height:3576.374842px;}
.w13{width:158.399993px;}
.w14{width:161.279993px;}
.w12{width:225.359991px;}
.w11{width:271.439989px;}
.w2{width:274.495154px;}
.w4{width:274.495244px;}
.w5{width:383.399984px;}
.wc{width:397.079983px;}
.w8{width:412.199983px;}
.wa{width:457.919981px;}
.w16{width:493.559979px;}
.w17{width:540.719977px;}
.w15{width:548.639977px;}
.wd{width:600.839975px;}
.w3{width:644.399973px;}
.w9{width:657.359973px;}
.wb{width:677.879972px;}
.w6{width:731.879970px;}
.wf{width:752.399969px;}
.w10{width:1520.999937px;}
.w7{width:1582.847178px;}
.we{width:2437.559898px;}
.w0{width:2525.625000px;}
.w1{width:2526.000000px;}
.x0{left:0.000000px;}
.x7{left:24.855032px;}
.x1a{left:29.431124px;}
.x43{left:31.452955px;}
.x52{left:36.641802px;}
.x42{left:38.924937px;}
.xe{left:40.101583px;}
.xd{left:41.759998px;}
.x5c{left:44.455309px;}
.xc{left:46.915191px;}
.x3{left:63.473494px;}
.x9{left:70.522198px;}
.x51{left:73.439997px;}
.x6{left:89.471084px;}
.xb{left:100.474796px;}
.x53{left:104.904394px;}
.x2{left:125.646229px;}
.x59{left:151.411363px;}
.x5d{left:153.571938px;}
.x48{left:169.054552px;}
.x3e{left:185.446433px;}
.x40{left:195.309449px;}
.x18{left:197.348861px;}
.x3d{left:198.368567px;}
.x3b{left:199.388273px;}
.x3c{left:205.154885px;}
.x41{left:206.174591px;}
.x19{left:208.917248px;}
.x3f{left:210.939078px;}
.x10{left:244.736431px;}
.x11{left:256.780884px;}
.x4e{left:277.462008px;}
.x49{left:366.784327px;}
.x50{left:370.639321px;}
.x4a{left:378.828780px;}
.x4f{left:390.166445px;}
.x46{left:406.481887px;}
.x3a{left:444.175840px;}
.x39{left:445.195546px;}
.x38{left:448.254663px;}
.x20{left:451.313781px;}
.x4b{left:475.630392px;}
.x4c{left:487.674845px;}
.x54{left:515.159979px;}
.x1e{left:517.884350px;}
.x4d{left:555.652935px;}
.x47{left:561.239977px;}
.x17{left:573.878230px;}
.xf{left:578.450264px;}
.x35{left:639.451453px;}
.x16{left:649.334998px;}
.x37{left:651.002259px;}
.x14{left:801.228772px;}
.x31{left:821.394334px;}
.x1f{left:840.083080px;}
.x36{left:849.242851px;}
.x12{left:900.169954px;}
.x5a{left:911.879962px;}
.x15{left:998.841828px;}
.x32{left:1009.021305px;}
.x33{left:1024.756421px;}
.x34{left:1029.749463px;}
.x5e{left:1189.799950px;}
.x26{left:1236.501236px;}
.x25{left:1237.556104px;}
.x30{left:1238.558229px;}
.x29{left:1240.580059px;}
.x2f{left:1245.115992px;}
.x2a{left:1247.718000px;}
.x22{left:1249.423370px;}
.x2c{left:1252.166027px;}
.x2d{left:1256.895352px;}
.x24{left:1259.936889px;}
.x13{left:1262.450991px;}
.x2b{left:1264.015712px;}
.x28{left:1267.883562px;}
.x21{left:1272.876604px;}
.x27{left:1276.937846px;}
.x2e{left:1278.291593px;}
.x1b{left:1280.348586px;}
.x1{left:1281.557323px;}
.x1d{left:1285.429534px;}
.x23{left:1288.154610px;}
.x1c{left:1289.842399px;}
.x55{left:1292.399946px;}
.x45{left:1479.730230px;}
.x4{left:1486.439938px;}
.x44{left:1490.138262px;}
.x5{left:1574.247426px;}
.x56{left:1583.999934px;}
.x8{left:1866.574794px;}
.x58{left:1899.359921px;}
.x5b{left:2005.559916px;}
.xa{left:2161.160766px;}
.x57{left:2182.679909px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-85.692449pt;}
.ws2{word-spacing:-42.826293pt;}
.ws4{word-spacing:-34.257821pt;}
.ws5{word-spacing:-27.833476pt;}
.ws3{word-spacing:-12.071256pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-1111.091775pt;}
._3{margin-left:-946.249157pt;}
._0{margin-left:-4.760591pt;}
._1{margin-left:-1.616512pt;}
.fs4{font-size:43.448034pt;}
.fsd{font-size:92.778252pt;}
.fsa{font-size:114.192736pt;}
.fs9{font-size:124.899979pt;}
.fs0{font-size:132.037671pt;}
.fs7{font-size:142.673998pt;}
.fs3{font-size:142.754310pt;}
.fs5{font-size:150.463516pt;}
.fse{font-size:157.021705pt;}
.fs2{font-size:166.677149pt;}
.fs6{font-size:167.300657pt;}
.fs1{font-size:167.654975pt;}
.fsc{font-size:171.315873pt;}
.fsb{font-size:187.008369pt;}
.fs8{font-size:550.782803pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:12.860011pt;}
.y87{bottom:15.473940pt;}
.y8c{bottom:15.498093pt;}
.y89{bottom:15.535034pt;}
.y8f{bottom:15.620671pt;}
.y85{bottom:17.021544pt;}
.y80{bottom:18.762044pt;}
.y78{bottom:18.777711pt;}
.y76{bottom:18.817864pt;}
.y6a{bottom:18.985657pt;}
.y1a{bottom:18.986395pt;}
.y61{bottom:20.352681pt;}
.y9c{bottom:21.006870pt;}
.y8{bottom:22.029520pt;}
.y6c{bottom:22.206622pt;}
.y5{bottom:22.409164pt;}
.y91{bottom:24.888094pt;}
.y3{bottom:26.999524pt;}
.y59{bottom:36.425774pt;}
.y99{bottom:44.981737pt;}
.y92{bottom:46.199991pt;}
.y58{bottom:48.381110pt;}
.y8b{bottom:54.981048pt;}
.y8e{bottom:55.103626pt;}
.y7f{bottom:68.283039pt;}
.y75{bottom:68.338858pt;}
.y69{bottom:68.506652pt;}
.y19{bottom:68.507389pt;}
.y79{bottom:70.839990pt;}
.y2{bottom:72.998716pt;}
.y83{bottom:73.194439pt;}
.y98{bottom:77.103463pt;}
.y33{bottom:85.323604pt;}
.y97{bottom:109.225189pt;}
.y7e{bottom:117.804033pt;}
.y74{bottom:117.859853pt;}
.y68{bottom:118.027646pt;}
.y18{bottom:118.028384pt;}
.y96{bottom:141.346915pt;}
.y32{bottom:142.367186pt;}
.y7d{bottom:167.325028pt;}
.y73{bottom:167.380847pt;}
.y67{bottom:167.548641pt;}
.y17{bottom:167.549378pt;}
.y95{bottom:173.468642pt;}
.y82{bottom:196.657003pt;}
.y31{bottom:199.410767pt;}
.y48{bottom:199.419498pt;}
.y94{bottom:205.590368pt;}
.y47{bottom:211.359206pt;}
.y7c{bottom:216.846022pt;}
.y72{bottom:216.901842pt;}
.y66{bottom:217.069635pt;}
.y16{bottom:217.070373pt;}
.y46{bottom:223.314542pt;}
.y93{bottom:250.337722pt;}
.y30{bottom:256.454221pt;}
.y7b{bottom:266.367017pt;}
.y71{bottom:266.422836pt;}
.y65{bottom:266.590630pt;}
.y15{bottom:266.591367pt;}
.y9b{bottom:278.519981pt;}
.y2f{bottom:313.497643pt;}
.y7a{bottom:315.888011pt;}
.y70{bottom:315.943831pt;}
.y64{bottom:316.111624pt;}
.y14{bottom:316.112362pt;}
.y45{bottom:354.786409pt;}
.y6f{bottom:365.464825pt;}
.y63{bottom:365.632619pt;}
.y13{bottom:365.633356pt;}
.y2e{bottom:370.541384pt;}
.y27{bottom:399.402663pt;}
.y6e{bottom:414.985820pt;}
.y77{bottom:418.999975pt;}
.y1d{bottom:426.837958pt;}
.y2d{bottom:441.166693pt;}
.y1e{bottom:461.878885pt;}
.y12{bottom:464.675345pt;}
.y25{bottom:470.027972pt;}
.y4c{bottom:495.762138pt;}
.y1b{bottom:505.396547pt;}
.y4b{bottom:507.717475pt;}
.y11{bottom:514.196340pt;}
.y9{bottom:525.239971pt;}
.y29{bottom:536.578881pt;}
.y44{bottom:538.961171pt;}
.y5a{bottom:541.943585pt;}
.y43{bottom:550.916507pt;}
.y42{bottom:562.856216pt;}
.y10{bottom:563.717334pt;}
.y22{bottom:573.521376pt;}
.y41{bottom:574.811552pt;}
.yf{bottom:613.238329pt;}
.y5e{bottom:625.060725pt;}
.y57{bottom:628.876024pt;}
.y40{bottom:631.851669pt;}
.y5d{bottom:637.016061pt;}
.y56{bottom:640.815732pt;}
.y3f{bottom:643.807005pt;}
.y55{bottom:652.771069pt;}
.ye{bottom:662.759323pt;}
.y3e{bottom:706.560524pt;}
.yd{bottom:712.280318pt;}
.y3d{bottom:718.515860pt;}
.y3c{bottom:730.455569pt;}
.y3b{bottom:742.410905pt;}
.y4f{bottom:752.461368pt;}
.yc{bottom:761.801312pt;}
.y26{bottom:771.272312pt;}
.y50{bottom:809.504982pt;}
.yb{bottom:811.322307pt;}
.y3a{bottom:813.045073pt;}
.y4d{bottom:821.457014pt;}
.y39{bottom:824.984781pt;}
.y38{bottom:836.940117pt;}
.ya{bottom:860.843301pt;}
.y37{bottom:904.854756pt;}
.y4e{bottom:911.368402pt;}
.y36{bottom:916.810092pt;}
.y35{bottom:928.749800pt;}
.y34{bottom:940.705137pt;}
.y2a{bottom:1007.867150pt;}
.y28{bottom:1021.448877pt;}
.y53{bottom:1032.798663pt;}
.y5c{bottom:1038.762436pt;}
.y52{bottom:1044.738372pt;}
.y5b{bottom:1050.717772pt;}
.y51{bottom:1056.693708pt;}
.y23{bottom:1079.579019pt;}
.y4a{bottom:1090.648234pt;}
.y24{bottom:1110.817161pt;}
.y2c{bottom:1152.581224pt;}
.y2b{bottom:1209.624805pt;}
.y20{bottom:1230.336996pt;}
.y1c{bottom:1238.486052pt;}
.y54{bottom:1245.209028pt;}
.y5f{bottom:1272.101059pt;}
.y49{bottom:1342.726368pt;}
.y21{bottom:1367.513087pt;}
.y1f{bottom:1371.587679pt;}
.y7{bottom:1418.359933pt;}
.y6d{bottom:1550.199928pt;}
.y90{bottom:1991.799909pt;}
.y6b{bottom:1998.519909pt;}
.y8a{bottom:2145.079903pt;}
.y8d{bottom:2151.799903pt;}
.y62{bottom:2205.559901pt;}
.y88{bottom:2386.359893pt;}
.y6{bottom:2466.466856pt;}
.y1{bottom:2466.759592pt;}
.y4{bottom:2598.199884pt;}
.y60{bottom:2604.279884pt;}
.y86{bottom:2716.599879pt;}
.y84{bottom:2753.719878pt;}
.y81{bottom:2766.839877pt;}
.h10{height:31.482853pt;}
.h20{height:47.039998pt;}
.h1e{height:51.199998pt;}
.h18{height:58.559998pt;}
.h11{height:62.719997pt;}
.h2f{height:64.639997pt;}
.h7{height:68.799997pt;}
.h4{height:69.119997pt;}
.h2d{height:74.500937pt;}
.h26{height:76.799997pt;}
.h25{height:80.049108pt;}
.h24{height:86.719996pt;}
.h1f{height:87.554885pt;}
.h2c{height:88.139340pt;}
.h2e{height:91.757692pt;}
.h22{height:92.724502pt;}
.hc{height:100.070771pt;}
.h3{height:101.669007pt;}
.h21{height:108.483100pt;}
.h23{height:112.936616pt;}
.h1a{height:114.567220pt;}
.he{height:114.631711pt;}
.h2{height:117.997925pt;}
.h13{height:120.822204pt;}
.h31{height:126.088429pt;}
.h9{height:133.841751pt;}
.h16{height:134.342428pt;}
.h19{height:135.540298pt;}
.hb{height:135.616594pt;}
.h2b{height:137.566646pt;}
.hd{height:141.184013pt;}
.h12{height:142.940340pt;}
.h30{height:149.170619pt;}
.h28{height:150.167720pt;}
.h8{height:158.343292pt;}
.h15{height:158.935624pt;}
.h5{height:159.272226pt;}
.h2a{height:162.750079pt;}
.h6{height:165.810770pt;}
.h27{height:177.657951pt;}
.h29{height:297.919988pt;}
.h1c{height:349.759985pt;}
.h1b{height:355.519985pt;}
.h14{height:405.119983pt;}
.h1d{height:442.278591pt;}
.h17{height:454.719981pt;}
.ha{height:900.479962pt;}
.hf{height:1387.975558pt;}
.h1{height:3178.666667pt;}
.h0{height:3178.999860pt;}
.w13{width:140.799994pt;}
.w14{width:143.359994pt;}
.w12{width:200.319992pt;}
.w11{width:241.279990pt;}
.w2{width:243.995692pt;}
.w4{width:243.995772pt;}
.w5{width:340.799986pt;}
.wc{width:352.959985pt;}
.w8{width:366.399985pt;}
.wa{width:407.039983pt;}
.w16{width:438.719982pt;}
.w17{width:480.639980pt;}
.w15{width:487.679980pt;}
.wd{width:534.079978pt;}
.w3{width:572.799976pt;}
.w9{width:584.319976pt;}
.wb{width:602.559975pt;}
.w6{width:650.559973pt;}
.wf{width:668.799972pt;}
.w10{width:1351.999944pt;}
.w7{width:1406.975269pt;}
.we{width:2166.719910pt;}
.w0{width:2245.000000pt;}
.w1{width:2245.333333pt;}
.x0{left:0.000000pt;}
.x7{left:22.093362pt;}
.x1a{left:26.160999pt;}
.x43{left:27.958182pt;}
.x52{left:32.570490pt;}
.x42{left:34.599944pt;}
.xe{left:35.645852pt;}
.xd{left:37.119998pt;}
.x5c{left:39.515830pt;}
.xc{left:41.702392pt;}
.x3{left:56.420883pt;}
.x9{left:62.686398pt;}
.x51{left:65.279997pt;}
.x6{left:79.529852pt;}
.xb{left:89.310930pt;}
.x53{left:93.248351pt;}
.x2{left:111.685537pt;}
.x59{left:134.587878pt;}
.x5d{left:136.508389pt;}
.x48{left:150.270713pt;}
.x3e{left:164.841274pt;}
.x40{left:173.608399pt;}
.x18{left:175.421210pt;}
.x3d{left:176.327615pt;}
.x3b{left:177.234020pt;}
.x3c{left:182.359898pt;}
.x41{left:183.266303pt;}
.x19{left:185.704220pt;}
.x3f{left:187.501403pt;}
.x10{left:217.543494pt;}
.x11{left:228.249675pt;}
.x4e{left:246.632896pt;}
.x49{left:326.030513pt;}
.x50{left:329.457174pt;}
.x4a{left:336.736693pt;}
.x4f{left:346.814618pt;}
.x46{left:361.317233pt;}
.x3a{left:394.822969pt;}
.x39{left:395.729374pt;}
.x38{left:398.448590pt;}
.x20{left:401.167805pt;}
.x4b{left:422.782571pt;}
.x4c{left:433.488751pt;}
.x54{left:457.919981pt;}
.x1e{left:460.341644pt;}
.x4d{left:493.913720pt;}
.x47{left:498.879979pt;}
.x17{left:510.113983pt;}
.xf{left:514.178012pt;}
.x35{left:568.401292pt;}
.x16{left:577.186665pt;}
.x37{left:578.668674pt;}
.x14{left:712.203353pt;}
.x31{left:730.128297pt;}
.x1f{left:746.740516pt;}
.x36{left:754.882534pt;}
.x12{left:800.151071pt;}
.x5a{left:810.559966pt;}
.x15{left:887.859403pt;}
.x32{left:896.907827pt;}
.x33{left:910.894596pt;}
.x34{left:915.332856pt;}
.x5e{left:1057.599956pt;}
.x26{left:1099.112210pt;}
.x25{left:1100.049870pt;}
.x30{left:1100.940648pt;}
.x29{left:1102.737831pt;}
.x2f{left:1106.769771pt;}
.x2a{left:1109.082667pt;}
.x22{left:1110.598551pt;}
.x2c{left:1113.036469pt;}
.x2d{left:1117.240313pt;}
.x24{left:1119.943901pt;}
.x13{left:1122.178659pt;}
.x2b{left:1123.569522pt;}
.x28{left:1127.007610pt;}
.x21{left:1131.445870pt;}
.x27{left:1135.055863pt;}
.x2e{left:1136.259194pt;}
.x1b{left:1138.087632pt;}
.x1{left:1139.162065pt;}
.x1d{left:1142.604030pt;}
.x23{left:1145.026320pt;}
.x1c{left:1146.526577pt;}
.x55{left:1148.799952pt;}
.x45{left:1315.315760pt;}
.x4{left:1321.279945pt;}
.x44{left:1324.567344pt;}
.x5{left:1399.331046pt;}
.x56{left:1407.999941pt;}
.x8{left:1659.177595pt;}
.x58{left:1688.319930pt;}
.x5b{left:1782.719926pt;}
.xa{left:1921.031792pt;}
.x57{left:1940.159919pt;}
}




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