
    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_65a61a429b077e0f87bc5907.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934570;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_16b496ac079fc8255edd8e4d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_6679e3891e825970ef17e010.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948242;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_bfa9e76eb9c07557e3ade7b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.020996;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_46b3803ac4cdb626660c688a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.956055;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_4b083f8862fe435af24fc8e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995117;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_49e955d7620cf80d1958a8b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918945;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_34a4137af6c2bcaccc2da219.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.023438;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_0df1b7b3ca033b50d832a0ca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.977539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dbd5f432578d289c2bbdcd08.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.977539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2446616542965a23b74c7543.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.967773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e07d6f5feda4c953be3ce69c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.020996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c59602d8cef07ea640f5ad89.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.967773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ae6a1bb3af6d991930a85f6f.woff2')format("woff");}.fff{font-family:fff;line-height:1.043457;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:ff10;src:url('chunks/assets/font_b7598215246c15acf87b8a91.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.970703;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:ff11;src:url('chunks/assets/font_302b6957eccabe0b3e6937e5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.020996;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:ff12;src:url('chunks/assets/font_fbf3e0450312d67bacc79397.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.903320;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:ff13;src:url('chunks/assets/font_e9fc55d8504915cfb9543892.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.934570;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.021973px;}
.ls2{letter-spacing:0.021995px;}
.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;}
}
.ws5{word-spacing:-94.822994px;}
.ws0{word-spacing:-92.065424px;}
.ws2{word-spacing:-59.603025px;}
.ws9{word-spacing:-58.921871px;}
.ws3{word-spacing:-36.826170px;}
.ws4{word-spacing:-36.298827px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.043946px;}
.ws7{word-spacing:0.079103px;}
.ws6{word-spacing:0.083497px;}
._2f{margin-left:-4676.778605px;}
._10{margin-left:-4617.153607px;}
._26{margin-left:-4378.697563px;}
._2d{margin-left:-4199.888488px;}
._18{margin-left:-4080.748357px;}
._31{margin-left:-3901.917310px;}
._27{margin-left:-3544.321135px;}
._30{margin-left:-3484.740083px;}
._2e{margin-left:-3425.093112px;}
._32{margin-left:-3246.327984px;}
._13{margin-left:-2411.841692px;}
._28{margin-left:-2352.238667px;}
._29{margin-left:-2292.613670px;}
._23{margin-left:-2233.010667px;}
._2a{margin-left:-1994.620519px;}
._25{margin-left:-1815.767499px;}
._2c{margin-left:-1756.410571px;}
._6{margin-left:-1754.006724px;}
._19{margin-left:-1696.627368px;}
._17{margin-left:-1637.024343px;}
._14{margin-left:-1577.399346px;}
._16{margin-left:-1458.215269px;}
._20{margin-left:-1398.546326px;}
._f{margin-left:-1219.781197px;}
._11{margin-left:-1160.156200px;}
._21{margin-left:-1100.531202px;}
._22{margin-left:-1040.928177px;}
._12{margin-left:-981.369098px;}
._24{margin-left:-802.516078px;}
._1b{margin-left:-742.935027px;}
._1a{margin-left:-683.332002px;}
._15{margin-left:-623.707004px;}
._2b{margin-left:-444.919903px;}
._1c{margin-left:-385.316878px;}
._1d{margin-left:-325.735826px;}
._e{margin-left:-206.485831px;}
._1e{margin-left:-19.401858px;}
._3{margin-left:-13.842773px;}
._a{margin-left:-12.832054px;}
._33{margin-left:-10.195269px;}
._1{margin-left:-9.008793px;}
._d{margin-left:-7.734373px;}
._1f{margin-left:-5.976514px;}
._2{margin-left:-4.394529px;}
._4{margin-left:-2.812475px;}
._0{margin-left:-1.757830px;}
._9{width:2.017089px;}
._c{width:3.234369px;}
._7{width:52.268544px;}
._8{width:380.135703px;}
._5{width:609.824658px;}
._34{width:688.201182px;}
._b{width:923.044922px;}
.fcb{color:rgb(101,116,34);}
.fc9{color:rgb(0,118,158);}
.fc8{color:rgb(32,121,77);}
.fc7{color:rgb(173,0,0);}
.fc6{color:rgb(0,59,79);}
.fc4{color:transparent;}
.fc3{color:rgb(71,88,171);}
.fc2{color:rgb(42,118,221);}
.fcc{color:rgb(17,17,17);}
.fca{color:rgb(94,94,94);}
.fc5{color:rgb(170,170,170);}
.fc1{color:rgb(110,110,110);}
.fc0{color:rgb(34,34,34);}
.fs2{font-size:80.999997px;}
.fs6{font-size:98.999996px;}
.fs7{font-size:157.499993px;}
.fs5{font-size:179.999993px;}
.fs8{font-size:204.749991px;}
.fs1{font-size:233.999990px;}
.fs3{font-size:251.999990px;}
.fs4{font-size:287.999988px;}
.fs0{font-size:449.999981px;}
.y4a{bottom:-1.125000px;}
.y0{bottom:0.000000px;}
.y6{bottom:0.630006px;}
.y1{bottom:1.755006px;}
.y29{bottom:14.624999px;}
.y7{bottom:26.999999px;}
.y49{bottom:30.374999px;}
.y28{bottom:47.249998px;}
.y48{bottom:62.999997px;}
.y18{bottom:68.130003px;}
.y27{bottom:78.749997px;}
.y36{bottom:79.874997px;}
.y47{bottom:94.499996px;}
.y38{bottom:104.130002px;}
.y26{bottom:111.374995px;}
.y46{bottom:127.124995px;}
.y25{bottom:143.999994px;}
.y45{bottom:158.624993px;}
.y33{bottom:172.124993px;}
.y24{bottom:175.499993px;}
.y57{bottom:181.124992px;}
.ye{bottom:186.749992px;}
.y44{bottom:191.249992px;}
.y23{bottom:208.124991px;}
.y5{bottom:222.749991px;}
.y43{bottom:223.874991px;}
.y22{bottom:239.624990px;}
.y32{bottom:248.624990px;}
.y5c{bottom:251.999990px;}
.y42{bottom:255.374989px;}
.yd{bottom:263.249989px;}
.y21{bottom:272.249989px;}
.y56{bottom:284.624988px;}
.y41{bottom:287.999988px;}
.y4{bottom:292.499988px;}
.y20{bottom:304.874987px;}
.y15{bottom:305.999987px;}
.y31{bottom:307.124987px;}
.y51{bottom:318.374987px;}
.y40{bottom:319.499987px;}
.y35{bottom:321.254993px;}
.y5b{bottom:329.624986px;}
.y1f{bottom:336.374986px;}
.y5f{bottom:337.499986px;}
.yc{bottom:339.749986px;}
.y4d{bottom:347.624986px;}
.y3f{bottom:352.124985px;}
.y55{bottom:361.124985px;}
.y1e{bottom:368.999985px;}
.y10{bottom:374.624984px;}
.y50{bottom:376.874984px;}
.y14{bottom:382.499984px;}
.y30{bottom:383.624984px;}
.y3e{bottom:384.749984px;}
.y3{bottom:398.249983px;}
.y1d{bottom:400.499983px;}
.y4c{bottom:406.124983px;}
.y5a{bottom:407.249983px;}
.y61{bottom:411.749983px;}
.y5e{bottom:413.999983px;}
.y3d{bottom:416.249983px;}
.y8{bottom:417.374983px;}
.y54{bottom:419.624983px;}
.yb{bottom:427.499982px;}
.y1c{bottom:433.124982px;}
.y4f{bottom:435.374982px;}
.y3c{bottom:448.874981px;}
.y13{bottom:458.999981px;}
.y2f{bottom:460.124981px;}
.yf{bottom:461.249981px;}
.y1b{bottom:465.749981px;}
.y3b{bottom:480.374980px;}
.y59{bottom:484.874980px;}
.y60{bottom:489.374980px;}
.y34{bottom:493.874979px;}
.y53{bottom:496.124979px;}
.y1a{bottom:497.249979px;}
.ya{bottom:500.624979px;}
.y4b{bottom:507.374979px;}
.y5d{bottom:509.624979px;}
.y3a{bottom:512.999979px;}
.y19{bottom:529.874978px;}
.y2e{bottom:536.624978px;}
.y4e{bottom:537.749978px;}
.y2{bottom:544.499977px;}
.y39{bottom:545.624977px;}
.y12{bottom:548.999977px;}
.y58{bottom:572.624976px;}
.y2c{bottom:588.374975px;}
.y52{bottom:591.749975px;}
.y2d{bottom:628.874974px;}
.y17{bottom:656.999973px;}
.y9{bottom:659.249973px;}
.y2b{bottom:664.874972px;}
.y37{bottom:710.999970px;}
.y16{bottom:734.624969px;}
.y11{bottom:753.749969px;}
.y2a{bottom:761.624968px;}
.h6{height:60.749997px;}
.h11{height:73.476559px;}
.h14{height:79.954098px;}
.he{height:80.050778px;}
.h13{height:80.485836px;}
.hd{height:81.017575px;}
.ha{height:129.199213px;}
.hf{height:130.341791px;}
.hb{height:131.748041px;}
.h15{height:134.999994px;}
.h10{height:141.749994px;}
.h4{height:167.958977px;}
.h16{height:170.999993px;}
.h7{height:204.873038px;}
.h9{height:206.718741px;}
.h8{height:273.599989px;}
.h3{height:322.998033px;}
.hc{height:560.249977px;}
.h12{height:575.999976px;}
.h2{height:865.124964px;}
.h5{height:866.249964px;}
.h0{height:866.879970px;}
.h1{height:867.000000px;}
.w2{width:1178.999951px;}
.w0{width:1298.879970px;}
.w1{width:1299.000000px;}
.x0{left:0.000000px;}
.xc{left:13.974609px;}
.xa{left:28.880858px;}
.x1{left:59.062498px;}
.x6{left:60.749997px;}
.x7{left:65.601560px;}
.xd{left:91.300777px;}
.xf{left:99.843746px;}
.x4{left:104.062496px;}
.xb{left:125.208979px;}
.x3{left:131.062495px;}
.x10{left:144.843744px;}
.x8{left:149.062494px;}
.x9{left:526.675759px;}
.x2{left:569.865216px;}
.x11{left:640.001932px;}
.x12{left:685.001930px;}
.x5{left:694.687471px;}
.xe{left:925.910118px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.019531pt;}
.ls2{letter-spacing:0.019551pt;}
.ws5{word-spacing:-84.287106pt;}
.ws0{word-spacing:-81.835933pt;}
.ws2{word-spacing:-52.980466pt;}
.ws9{word-spacing:-52.374997pt;}
.ws3{word-spacing:-32.734373pt;}
.ws4{word-spacing:-32.265624pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.039063pt;}
.ws7{word-spacing:0.070314pt;}
.ws6{word-spacing:0.074220pt;}
._2f{margin-left:-4157.136538pt;}
._10{margin-left:-4104.136540pt;}
._26{margin-left:-3892.175611pt;}
._2d{margin-left:-3733.234212pt;}
._18{margin-left:-3627.331873pt;}
._31{margin-left:-3468.370943pt;}
._27{margin-left:-3150.507675pt;}
._30{margin-left:-3097.546740pt;}
._2e{margin-left:-3044.527211pt;}
._32{margin-left:-2885.624874pt;}
._13{margin-left:-2143.859282pt;}
._28{margin-left:-2090.878815pt;}
._29{margin-left:-2037.878817pt;}
._23{margin-left:-1984.898371pt;}
._2a{margin-left:-1772.996017pt;}
._25{margin-left:-1614.015555pt;}
._2c{margin-left:-1561.253841pt;}
._6{margin-left:-1559.117088pt;}
._19{margin-left:-1508.113216pt;}
._17{margin-left:-1455.132749pt;}
._14{margin-left:-1402.132752pt;}
._16{margin-left:-1296.191350pt;}
._20{margin-left:-1243.152290pt;}
._f{margin-left:-1084.249953pt;}
._11{margin-left:-1031.249955pt;}
._21{margin-left:-978.249957pt;}
._22{margin-left:-925.269491pt;}
._12{margin-left:-872.328087pt;}
._24{margin-left:-713.347625pt;}
._1b{margin-left:-660.386690pt;}
._1a{margin-left:-607.406224pt;}
._15{margin-left:-554.406226pt;}
._2b{margin-left:-395.484358pt;}
._1c{margin-left:-342.503892pt;}
._1d{margin-left:-289.542957pt;}
._e{margin-left:-183.542961pt;}
._1e{margin-left:-17.246096pt;}
._3{margin-left:-12.304687pt;}
._a{margin-left:-11.406270pt;}
._33{margin-left:-9.062461pt;}
._1{margin-left:-8.007816pt;}
._d{margin-left:-6.874998pt;}
._1f{margin-left:-5.312457pt;}
._2{margin-left:-3.906248pt;}
._4{margin-left:-2.499978pt;}
._0{margin-left:-1.562516pt;}
._9{width:1.792968pt;}
._c{width:2.874995pt;}
._7{width:46.460928pt;}
._8{width:337.898403pt;}
._5{width:542.066363pt;}
._34{width:611.734384pt;}
._b{width:820.484375pt;}
.fs2{font-size:71.999997pt;}
.fs6{font-size:87.999996pt;}
.fs7{font-size:139.999994pt;}
.fs5{font-size:159.999993pt;}
.fs8{font-size:181.999992pt;}
.fs1{font-size:207.999991pt;}
.fs3{font-size:223.999991pt;}
.fs4{font-size:255.999989pt;}
.fs0{font-size:399.999983pt;}
.y4a{bottom:-1.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:0.560005pt;}
.y1{bottom:1.560005pt;}
.y29{bottom:12.999999pt;}
.y7{bottom:23.999999pt;}
.y49{bottom:26.999999pt;}
.y28{bottom:41.999998pt;}
.y48{bottom:55.999998pt;}
.y18{bottom:60.560003pt;}
.y27{bottom:69.999997pt;}
.y36{bottom:70.999997pt;}
.y47{bottom:83.999996pt;}
.y38{bottom:92.560002pt;}
.y26{bottom:98.999996pt;}
.y46{bottom:112.999995pt;}
.y25{bottom:127.999995pt;}
.y45{bottom:140.999994pt;}
.y33{bottom:152.999994pt;}
.y24{bottom:155.999993pt;}
.y57{bottom:160.999993pt;}
.ye{bottom:165.999993pt;}
.y44{bottom:169.999993pt;}
.y23{bottom:184.999992pt;}
.y5{bottom:197.999992pt;}
.y43{bottom:198.999992pt;}
.y22{bottom:212.999991pt;}
.y32{bottom:220.999991pt;}
.y5c{bottom:223.999991pt;}
.y42{bottom:226.999991pt;}
.yd{bottom:233.999990pt;}
.y21{bottom:241.999990pt;}
.y56{bottom:252.999989pt;}
.y41{bottom:255.999989pt;}
.y4{bottom:259.999989pt;}
.y20{bottom:270.999989pt;}
.y15{bottom:271.999989pt;}
.y31{bottom:272.999989pt;}
.y51{bottom:282.999988pt;}
.y40{bottom:283.999988pt;}
.y35{bottom:285.559994pt;}
.y5b{bottom:292.999988pt;}
.y1f{bottom:298.999988pt;}
.y5f{bottom:299.999988pt;}
.yc{bottom:301.999987pt;}
.y4d{bottom:308.999987pt;}
.y3f{bottom:312.999987pt;}
.y55{bottom:320.999987pt;}
.y1e{bottom:327.999986pt;}
.y10{bottom:332.999986pt;}
.y50{bottom:334.999986pt;}
.y14{bottom:339.999986pt;}
.y30{bottom:340.999986pt;}
.y3e{bottom:341.999986pt;}
.y3{bottom:353.999985pt;}
.y1d{bottom:355.999985pt;}
.y4c{bottom:360.999985pt;}
.y5a{bottom:361.999985pt;}
.y61{bottom:365.999985pt;}
.y5e{bottom:367.999985pt;}
.y3d{bottom:369.999985pt;}
.y8{bottom:370.999985pt;}
.y54{bottom:372.999984pt;}
.yb{bottom:379.999984pt;}
.y1c{bottom:384.999984pt;}
.y4f{bottom:386.999984pt;}
.y3c{bottom:398.999983pt;}
.y13{bottom:407.999983pt;}
.y2f{bottom:408.999983pt;}
.yf{bottom:409.999983pt;}
.y1b{bottom:413.999983pt;}
.y3b{bottom:426.999982pt;}
.y59{bottom:430.999982pt;}
.y60{bottom:434.999982pt;}
.y34{bottom:438.999982pt;}
.y53{bottom:440.999982pt;}
.y1a{bottom:441.999982pt;}
.ya{bottom:444.999981pt;}
.y4b{bottom:450.999981pt;}
.y5d{bottom:452.999981pt;}
.y3a{bottom:455.999981pt;}
.y19{bottom:470.999980pt;}
.y2e{bottom:476.999980pt;}
.y4e{bottom:477.999980pt;}
.y2{bottom:483.999980pt;}
.y39{bottom:484.999980pt;}
.y12{bottom:487.999980pt;}
.y58{bottom:508.999979pt;}
.y2c{bottom:522.999978pt;}
.y52{bottom:525.999978pt;}
.y2d{bottom:558.999977pt;}
.y17{bottom:583.999976pt;}
.y9{bottom:585.999976pt;}
.y2b{bottom:590.999975pt;}
.y37{bottom:631.999974pt;}
.y16{bottom:652.999973pt;}
.y11{bottom:669.999972pt;}
.y2a{bottom:676.999972pt;}
.h6{height:53.999998pt;}
.h11{height:65.312497pt;}
.h14{height:71.070310pt;}
.he{height:71.156247pt;}
.h13{height:71.542966pt;}
.hd{height:72.015622pt;}
.ha{height:114.843745pt;}
.hf{height:115.859370pt;}
.hb{height:117.109370pt;}
.h15{height:119.999995pt;}
.h10{height:125.999995pt;}
.h4{height:149.296869pt;}
.h16{height:151.999994pt;}
.h7{height:182.109367pt;}
.h9{height:183.749992pt;}
.h8{height:243.199990pt;}
.h3{height:287.109363pt;}
.hc{height:497.999979pt;}
.h12{height:511.999979pt;}
.h2{height:768.999968pt;}
.h5{height:769.999968pt;}
.h0{height:770.559973pt;}
.h1{height:770.666667pt;}
.w2{width:1047.999956pt;}
.w0{width:1154.559973pt;}
.w1{width:1154.666667pt;}
.x0{left:0.000000pt;}
.xc{left:12.421874pt;}
.xa{left:25.671874pt;}
.x1{left:52.499998pt;}
.x6{left:53.999998pt;}
.x7{left:58.312498pt;}
.xd{left:81.156247pt;}
.xf{left:88.749996pt;}
.x4{left:92.499996pt;}
.xb{left:111.296870pt;}
.x3{left:116.499995pt;}
.x10{left:128.749995pt;}
.x8{left:132.499994pt;}
.x9{left:468.156230pt;}
.x2{left:506.546859pt;}
.x11{left:568.890606pt;}
.x12{left:608.890605pt;}
.x5{left:617.499974pt;}
.xe{left:823.031216pt;}
}




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