
    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_f487eff9190abfe0a6ba6644.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_121a87ae78c54c0b71d163fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_3f041871effa96e5412c8c9d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ad4a22ab1ddaddee5dc200c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.998000;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_9f2f53e0529530d7faed1909.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_25faeb64d9f2d86b127c20be.woff2')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_221a2b0d0fd85855b0a8ebad.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.904000;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_b735b0839ef3367138122e3a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.890000;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_82fed2fc333fb38557ef06ea.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.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:ffa;src:url('chunks/assets/font_054c8f98582f4c8ad3aea1d2.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m6{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.064988px;}
.ls1{letter-spacing:0.304290px;}
.ls2{letter-spacing:61.258535px;}
.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;}
}
.ws4{word-spacing:-52.587339px;}
.ws5{word-spacing:-16.984981px;}
.ws3{word-spacing:-16.919993px;}
.ws2{word-spacing:-15.565794px;}
.ws0{word-spacing:-11.762462px;}
.ws1{word-spacing:0.000000px;}
._4d{margin-left:-6.340643px;}
._12{margin-left:-5.302394px;}
._11{margin-left:-4.131210px;}
._c{margin-left:-2.959845px;}
._1{margin-left:-1.040562px;}
._0{width:1.094835px;}
._3{width:2.704131px;}
._4{width:4.164499px;}
._5{width:5.568568px;}
._1f{width:6.720381px;}
._e{width:8.697743px;}
._a{width:9.733936px;}
._2f{width:11.014935px;}
._d{width:12.234245px;}
._8{width:13.373671px;}
._9{width:14.953164px;}
._6{width:18.006321px;}
._30{width:19.160370px;}
._16{width:20.297104px;}
._1d{width:21.961441px;}
._2c{width:23.083550px;}
._b{width:24.120907px;}
._31{width:25.604332px;}
._32{width:26.631513px;}
._17{width:28.575953px;}
._18{width:29.772495px;}
._35{width:30.794075px;}
._14{width:31.832556px;}
._13{width:32.861122px;}
._33{width:33.920662px;}
._36{width:35.933414px;}
._15{width:37.247687px;}
._7{width:38.376625px;}
._3d{width:39.386042px;}
._2d{width:40.395472px;}
._27{width:41.666039px;}
._23{width:43.542880px;}
._41{width:44.992632px;}
._25{width:46.544568px;}
._26{width:47.571893px;}
._24{width:48.788785px;}
._2b{width:50.354484px;}
._1c{width:51.707744px;}
._1b{width:52.855811px;}
._f{width:54.661176px;}
._10{width:55.707279px;}
._37{width:56.745146px;}
._20{width:58.275927px;}
._43{width:59.307606px;}
._3a{width:64.490418px;}
._40{width:66.218411px;}
._42{width:67.450611px;}
._3e{width:68.477231px;}
._4c{width:70.667318px;}
._48{width:72.661144px;}
._3f{width:74.138643px;}
._1a{width:75.606177px;}
._19{width:76.892612px;}
._46{width:78.935914px;}
._45{width:79.980496px;}
._4a{width:81.520971px;}
._4b{width:82.551405px;}
._44{width:87.105478px;}
._2e{width:88.563122px;}
._47{width:90.682568px;}
._49{width:97.427887px;}
._3c{width:102.052803px;}
._21{width:107.174042px;}
._39{width:113.355359px;}
._1e{width:116.334334px;}
._34{width:118.967605px;}
._2a{width:133.229425px;}
._22{width:155.250005px;}
._3b{width:177.243159px;}
._4e{width:233.912037px;}
._29{width:269.489716px;}
._2{width:283.657399px;}
._4f{width:353.649649px;}
._50{width:355.551375px;}
._28{width:368.393897px;}
._38{width:825.226940px;}
.fc7{color:rgb(96,36,35);}
.fc6{color:rgb(112,53,4);}
.fc3{color:rgb(103,32,13);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(15,36,62);}
.fc0{color:rgb(99,36,35);}
.fs7{font-size:5.414398px;}
.fsa{font-size:11.503435px;}
.fs9{font-size:16.919993px;}
.fs8{font-size:33.839986px;}
.fs6{font-size:39.254384px;}
.fs5{font-size:45.343422px;}
.fsb{font-size:53.465739px;}
.fs1{font-size:56.174378px;}
.fs3{font-size:62.263175px;}
.fs2{font-size:67.679973px;}
.fs0{font-size:79.183168px;}
.fs4{font-size:101.519959px;}
.y0{bottom:0.000000px;}
.y30{bottom:3.779885px;}
.y4{bottom:12.419995px;}
.y65{bottom:55.619978px;}
.yd0{bottom:58.139977px;}
.y9d{bottom:64.079974px;}
.yb5{bottom:66.599973px;}
.y64{bottom:75.059970px;}
.ycf{bottom:77.579969px;}
.y9c{bottom:83.519967px;}
.yb4{bottom:86.039966px;}
.y63{bottom:94.499962px;}
.yce{bottom:97.019961px;}
.y9b{bottom:102.959959px;}
.yb3{bottom:105.479958px;}
.y62{bottom:113.939954px;}
.ycd{bottom:116.459953px;}
.y9a{bottom:122.399951px;}
.yb2{bottom:124.919950px;}
.y61{bottom:133.379947px;}
.ycc{bottom:135.899946px;}
.y99{bottom:141.839943px;}
.yb1{bottom:144.359942px;}
.y60{bottom:152.819939px;}
.ycb{bottom:155.339938px;}
.y98{bottom:161.279935px;}
.yb0{bottom:163.799934px;}
.y5f{bottom:172.259931px;}
.yca{bottom:174.779930px;}
.y97{bottom:180.719928px;}
.yd3{bottom:183.239927px;}
.y5e{bottom:191.699923px;}
.yc9{bottom:194.219922px;}
.y96{bottom:200.159920px;}
.yd2{bottom:202.679919px;}
.y5d{bottom:211.139916px;}
.yc8{bottom:213.659915px;}
.y95{bottom:219.599912px;}
.yd1{bottom:222.119911px;}
.y5c{bottom:230.579908px;}
.y94{bottom:239.039904px;}
.yc7{bottom:241.739903px;}
.y5b{bottom:250.199900px;}
.y93{bottom:258.659897px;}
.yc6{bottom:261.179896px;}
.y5a{bottom:266.759893px;}
.yaf{bottom:269.639892px;}
.y32{bottom:272.879891px;}
.y8a{bottom:278.099889px;}
.yc5{bottom:280.619888px;}
.y31{bottom:281.339887px;}
.y2f{bottom:282.780000px;}
.yae{bottom:289.079884px;}
.y89{bottom:297.539881px;}
.yc4{bottom:300.059880px;}
.y2e{bottom:305.999878px;}
.yad{bottom:308.519877px;}
.y88{bottom:316.979873px;}
.yc3{bottom:319.499872px;}
.yeb{bottom:321.299871px;}
.y59{bottom:324.899870px;}
.y2d{bottom:325.439870px;}
.yac{bottom:327.959869px;}
.ye8{bottom:330.479868px;}
.y58{bottom:334.799866px;}
.y87{bottom:336.419865px;}
.yc2{bottom:338.939864px;}
.y57{bottom:344.699862px;}
.y2c{bottom:344.879862px;}
.yab{bottom:347.399861px;}
.ye7{bottom:349.919860px;}
.y56{bottom:354.599858px;}
.y86{bottom:355.859858px;}
.yc1{bottom:358.379857px;}
.y2b{bottom:364.319854px;}
.y55{bottom:364.679854px;}
.yaa{bottom:366.839853px;}
.ye6{bottom:369.359852px;}
.y54{bottom:374.399850px;}
.y85{bottom:375.299850px;}
.yc0{bottom:377.819849px;}
.y2a{bottom:383.759846px;}
.y53{bottom:384.479846px;}
.ya9{bottom:386.279845px;}
.ye5{bottom:388.799844px;}
.y52{bottom:394.199842px;}
.y84{bottom:394.739842px;}
.yea{bottom:397.259841px;}
.y29{bottom:403.199839px;}
.ya8{bottom:405.719838px;}
.y51{bottom:406.079838px;}
.ye4{bottom:408.239837px;}
.y83{bottom:414.179834px;}
.ye9{bottom:416.699833px;}
.y28{bottom:422.639831px;}
.ya7{bottom:425.159830px;}
.y50{bottom:425.519830px;}
.y82{bottom:433.619827px;}
.ye3{bottom:436.319825px;}
.y27{bottom:442.079823px;}
.ybf{bottom:444.779822px;}
.y4f{bottom:444.959822px;}
.y81{bottom:453.239819px;}
.ye2{bottom:455.759818px;}
.y26{bottom:461.699815px;}
.ybe{bottom:464.219814px;}
.y4e{bottom:464.579814px;}
.y80{bottom:472.679811px;}
.ye1{bottom:475.199810px;}
.y25{bottom:481.139808px;}
.ybd{bottom:483.659807px;}
.y4d{bottom:484.019806px;}
.y7f{bottom:492.119803px;}
.ye0{bottom:494.639802px;}
.y24{bottom:500.579800px;}
.y4c{bottom:501.479799px;}
.ybc{bottom:503.099799px;}
.y4b{bottom:511.559795px;}
.ydf{bottom:514.079794px;}
.y23{bottom:520.019792px;}
.y4a{bottom:522.539791px;}
.ya6{bottom:530.999788px;}
.y49{bottom:539.279784px;}
.y22{bottom:539.459784px;}
.yde{bottom:541.979783px;}
.ya5{bottom:550.439780px;}
.y48{bottom:557.099777px;}
.y21{bottom:558.899776px;}
.ydd{bottom:561.419775px;}
.ybb{bottom:569.879772px;}
.y47{bottom:574.739770px;}
.y20{bottom:578.339769px;}
.ydc{bottom:580.859768px;}
.yba{bottom:589.319764px;}
.y46{bottom:592.739763px;}
.y1f{bottom:597.779761px;}
.ydb{bottom:600.299760px;}
.y92{bottom:606.239758px;}
.yb9{bottom:608.759756px;}
.y45{bottom:610.559756px;}
.y1e{bottom:617.219753px;}
.yda{bottom:619.739752px;}
.y91{bottom:625.679750px;}
.yb8{bottom:628.199749px;}
.y44{bottom:628.379749px;}
.y1d{bottom:636.659745px;}
.yd9{bottom:639.359744px;}
.y90{bottom:645.119742px;}
.y43{bottom:646.199742px;}
.yb7{bottom:647.819741px;}
.y1c{bottom:656.279737px;}
.y42{bottom:664.019734px;}
.y8f{bottom:664.739734px;}
.yb6{bottom:667.259733px;}
.y1b{bottom:675.719730px;}
.y41{bottom:681.479727px;}
.y8e{bottom:684.179726px;}
.yd8{bottom:686.699725px;}
.y1a{bottom:695.159722px;}
.y40{bottom:698.219721px;}
.y8d{bottom:703.619719px;}
.yd7{bottom:706.139718px;}
.y19{bottom:714.599714px;}
.y3f{bottom:715.859714px;}
.y7e{bottom:723.059711px;}
.yd6{bottom:725.579710px;}
.y3e{bottom:733.679707px;}
.y18{bottom:734.039706px;}
.y7d{bottom:742.499703px;}
.yd5{bottom:745.019702px;}
.y3d{bottom:751.679699px;}
.y17{bottom:753.479699px;}
.y68{bottom:753.839698px;}
.y7c{bottom:761.939695px;}
.yd4{bottom:764.459694px;}
.y67{bottom:767.519693px;}
.y3c{bottom:769.319692px;}
.y66{bottom:772.739691px;}
.y16{bottom:772.919691px;}
.y7b{bottom:781.379687px;}
.y3b{bottom:787.319685px;}
.y15{bottom:792.359683px;}
.y7a{bottom:800.819680px;}
.y3a{bottom:805.139678px;}
.y14{bottom:811.799675px;}
.y79{bottom:820.259672px;}
.y39{bottom:822.779671px;}
.y13{bottom:831.239668px;}
.y78{bottom:839.699664px;}
.y38{bottom:840.779664px;}
.y12{bottom:850.859660px;}
.y37{bottom:858.599657px;}
.y77{bottom:859.319656px;}
.y11{bottom:870.299652px;}
.y36{bottom:876.419649px;}
.y76{bottom:878.759648px;}
.y10{bottom:889.739644px;}
.y35{bottom:894.239642px;}
.y75{bottom:898.199641px;}
.yf{bottom:909.179636px;}
.y34{bottom:912.239635px;}
.y8c{bottom:917.639633px;}
.y74{bottom:926.099630px;}
.ye{bottom:928.619629px;}
.y33{bottom:929.879628px;}
.y8b{bottom:937.079625px;}
.y73{bottom:945.539622px;}
.yd{bottom:950.399620px;}
.ya4{bottom:956.519617px;}
.y72{bottom:964.979614px;}
.yc{bottom:971.279611px;}
.ya3{bottom:975.959610px;}
.yb{bottom:976.859609px;}
.y71{bottom:984.419606px;}
.ya{bottom:991.799603px;}
.ya2{bottom:995.399602px;}
.y9{bottom:997.379601px;}
.y70{bottom:1003.859598px;}
.ya1{bottom:1014.839594px;}
.y7{bottom:1021.319591px;}
.y6f{bottom:1023.299591px;}
.y8{bottom:1026.899589px;}
.ya0{bottom:1034.279586px;}
.y6e{bottom:1042.739583px;}
.y6{bottom:1051.199580px;}
.y9f{bottom:1053.899578px;}
.y6d{bottom:1062.359575px;}
.y9e{bottom:1073.339571px;}
.y5{bottom:1080.179568px;}
.y6c{bottom:1081.799567px;}
.y6b{bottom:1101.239560px;}
.y3{bottom:1107.179557px;}
.y6a{bottom:1120.679552px;}
.y2{bottom:1124.279550px;}
.y1{bottom:1144.259542px;}
.y69{bottom:1148.039541px;}
.h16{height:3.783205px;}
.hc{height:4.055384px;}
.h14{height:8.037801px;}
.h13{height:11.742475px;}
.hb{height:18.900000px;}
.h10{height:22.554483px;}
.hd{height:23.484951px;}
.hf{height:25.346150px;}
.h9{height:29.401534px;}
.h7{height:31.468335px;}
.h15{height:37.358141px;}
.h4{height:37.440442px;}
.h2{height:39.250749px;}
.h8{height:41.498649px;}
.he{height:42.074609px;}
.h12{height:46.225422px;}
.h5{height:46.635118px;}
.h3{height:46.969901px;}
.h11{height:47.308301px;}
.ha{height:50.692300px;}
.h1{height:54.953119px;}
.h6{height:70.454852px;}
.h0{height:1188.000000px;}
.w2{width:5.580000px;}
.w4{width:8.460000px;}
.w1{width:140.040000px;}
.w3{width:157.320000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:89.639964px;}
.x1{left:113.759954px;}
.x1c{left:117.539953px;}
.x11{left:123.479951px;}
.x12{left:128.339949px;}
.x1e{left:129.780182px;}
.x3{left:144.719942px;}
.xf{left:177.839929px;}
.x10{left:182.699927px;}
.x14{left:229.500000px;}
.x6{left:233.999906px;}
.x15{left:235.080000px;}
.x7{left:237.239899px;}
.x8{left:302.219879px;}
.x16{left:392.400000px;}
.x13{left:458.459814px;}
.x20{left:465.659494px;}
.x19{left:473.759460px;}
.x9{left:502.379799px;}
.xa{left:508.139797px;}
.xb{left:512.279795px;}
.x1f{left:513.899378px;}
.xc{left:515.879794px;}
.x17{left:581.939767px;}
.xd{left:609.299756px;}
.xe{left:614.879754px;}
.x1b{left:731.699707px;}
.x4{left:772.379691px;}
.x1d{left:799.559680px;}
.x2{left:808.019677px;}
.x1a{left:815.579674px;}
.x18{left:831.059668px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.057767pt;}
.ls1{letter-spacing:0.270480pt;}
.ls2{letter-spacing:54.452032pt;}
.ws4{word-spacing:-46.744301pt;}
.ws5{word-spacing:-15.097761pt;}
.ws3{word-spacing:-15.039994pt;}
.ws2{word-spacing:-13.836261pt;}
.ws0{word-spacing:-10.455522pt;}
.ws1{word-spacing:0.000000pt;}
._4d{margin-left:-5.636127pt;}
._12{margin-left:-4.713239pt;}
._11{margin-left:-3.672187pt;}
._c{margin-left:-2.630973pt;}
._1{margin-left:-0.924944pt;}
._0{width:0.973187pt;}
._3{width:2.403672pt;}
._4{width:3.701777pt;}
._5{width:4.949838pt;}
._1f{width:5.973672pt;}
._e{width:7.731327pt;}
._a{width:8.652388pt;}
._2f{width:9.791053pt;}
._d{width:10.874884pt;}
._8{width:11.887708pt;}
._9{width:13.291702pt;}
._6{width:16.005619pt;}
._30{width:17.031440pt;}
._16{width:18.041870pt;}
._1d{width:19.521281pt;}
._2c{width:20.518711pt;}
._b{width:21.440806pt;}
._31{width:22.759406pt;}
._32{width:23.672456pt;}
._17{width:25.400847pt;}
._18{width:26.464440pt;}
._35{width:27.372511pt;}
._14{width:28.295605pt;}
._13{width:29.209887pt;}
._33{width:30.151700pt;}
._36{width:31.940812pt;}
._15{width:33.109055pt;}
._7{width:34.112555pt;}
._3d{width:35.009815pt;}
._2d{width:35.907086pt;}
._27{width:37.036479pt;}
._23{width:38.704782pt;}
._41{width:39.993451pt;}
._25{width:41.372950pt;}
._26{width:42.286127pt;}
._24{width:43.367809pt;}
._2b{width:44.759541pt;}
._1c{width:45.962440pt;}
._1b{width:46.982943pt;}
._f{width:48.587712pt;}
._10{width:49.517581pt;}
._37{width:50.440130pt;}
._20{width:51.800824pt;}
._43{width:52.717872pt;}
._3a{width:57.324816pt;}
._40{width:58.860810pt;}
._42{width:59.956099pt;}
._3e{width:60.868650pt;}
._4c{width:62.815394pt;}
._48{width:64.587684pt;}
._3f{width:65.901016pt;}
._1a{width:67.205490pt;}
._19{width:68.348988pt;}
._46{width:70.165257pt;}
._45{width:71.093774pt;}
._4a{width:72.463085pt;}
._4b{width:73.379027pt;}
._44{width:77.427092pt;}
._2e{width:78.722775pt;}
._47{width:80.606727pt;}
._49{width:86.602566pt;}
._3c{width:90.713603pt;}
._21{width:95.265815pt;}
._39{width:100.760319pt;}
._1e{width:103.408297pt;}
._34{width:105.748982pt;}
._2a{width:118.426156pt;}
._22{width:138.000004pt;}
._3b{width:157.549475pt;}
._4e{width:207.921811pt;}
._29{width:239.546414pt;}
._2{width:252.139910pt;}
._4f{width:314.355243pt;}
._50{width:316.045667pt;}
._28{width:327.461242pt;}
._38{width:733.535058pt;}
.fs7{font-size:4.812798pt;}
.fsa{font-size:10.225276pt;}
.fs9{font-size:15.039994pt;}
.fs8{font-size:30.079988pt;}
.fs6{font-size:34.892786pt;}
.fs5{font-size:40.305264pt;}
.fsb{font-size:47.525101pt;}
.fs1{font-size:49.932780pt;}
.fs3{font-size:55.345045pt;}
.fs2{font-size:60.159976pt;}
.fs0{font-size:70.385039pt;}
.fs4{font-size:90.239964pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:3.359898pt;}
.y4{bottom:11.039996pt;}
.y65{bottom:49.439980pt;}
.yd0{bottom:51.679979pt;}
.y9d{bottom:56.959977pt;}
.yb5{bottom:59.199976pt;}
.y64{bottom:66.719973pt;}
.ycf{bottom:68.959972pt;}
.y9c{bottom:74.239970pt;}
.yb4{bottom:76.479969pt;}
.y63{bottom:83.999966pt;}
.yce{bottom:86.239966pt;}
.y9b{bottom:91.519963pt;}
.yb3{bottom:93.759962pt;}
.y62{bottom:101.279959pt;}
.ycd{bottom:103.519959pt;}
.y9a{bottom:108.799956pt;}
.yb2{bottom:111.039956pt;}
.y61{bottom:118.559953pt;}
.ycc{bottom:120.799952pt;}
.y99{bottom:126.079950pt;}
.yb1{bottom:128.319949pt;}
.y60{bottom:135.839946pt;}
.ycb{bottom:138.079945pt;}
.y98{bottom:143.359943pt;}
.yb0{bottom:145.599942pt;}
.y5f{bottom:153.119939pt;}
.yca{bottom:155.359938pt;}
.y97{bottom:160.639936pt;}
.yd3{bottom:162.879935pt;}
.y5e{bottom:170.399932pt;}
.yc9{bottom:172.639931pt;}
.y96{bottom:177.919929pt;}
.yd2{bottom:180.159928pt;}
.y5d{bottom:187.679925pt;}
.yc8{bottom:189.919924pt;}
.y95{bottom:195.199922pt;}
.yd1{bottom:197.439921pt;}
.y5c{bottom:204.959918pt;}
.y94{bottom:212.479915pt;}
.yc7{bottom:214.879914pt;}
.y5b{bottom:222.399911pt;}
.y93{bottom:229.919908pt;}
.yc6{bottom:232.159907pt;}
.y5a{bottom:237.119905pt;}
.yaf{bottom:239.679904pt;}
.y32{bottom:242.559903pt;}
.y8a{bottom:247.199901pt;}
.yc5{bottom:249.439900pt;}
.y31{bottom:250.079900pt;}
.y2f{bottom:251.360000pt;}
.yae{bottom:256.959897pt;}
.y89{bottom:264.479894pt;}
.yc4{bottom:266.719893pt;}
.y2e{bottom:271.999891pt;}
.yad{bottom:274.239890pt;}
.y88{bottom:281.759887pt;}
.yc3{bottom:283.999886pt;}
.yeb{bottom:285.599886pt;}
.y59{bottom:288.799884pt;}
.y2d{bottom:289.279884pt;}
.yac{bottom:291.519883pt;}
.ye8{bottom:293.759882pt;}
.y58{bottom:297.599881pt;}
.y87{bottom:299.039880pt;}
.yc2{bottom:301.279879pt;}
.y57{bottom:306.399877pt;}
.y2c{bottom:306.559877pt;}
.yab{bottom:308.799876pt;}
.ye7{bottom:311.039876pt;}
.y56{bottom:315.199874pt;}
.y86{bottom:316.319873pt;}
.yc1{bottom:318.559873pt;}
.y2b{bottom:323.839870pt;}
.y55{bottom:324.159870pt;}
.yaa{bottom:326.079870pt;}
.ye6{bottom:328.319869pt;}
.y54{bottom:332.799867pt;}
.y85{bottom:333.599867pt;}
.yc0{bottom:335.839866pt;}
.y2a{bottom:341.119864pt;}
.y53{bottom:341.759863pt;}
.ya9{bottom:343.359863pt;}
.ye5{bottom:345.599862pt;}
.y52{bottom:350.399860pt;}
.y84{bottom:350.879860pt;}
.yea{bottom:353.119859pt;}
.y29{bottom:358.399857pt;}
.ya8{bottom:360.639856pt;}
.y51{bottom:360.959856pt;}
.ye4{bottom:362.879855pt;}
.y83{bottom:368.159853pt;}
.ye9{bottom:370.399852pt;}
.y28{bottom:375.679850pt;}
.ya7{bottom:377.919849pt;}
.y50{bottom:378.239849pt;}
.y82{bottom:385.439846pt;}
.ye3{bottom:387.839845pt;}
.y27{bottom:392.959843pt;}
.ybf{bottom:395.359842pt;}
.y4f{bottom:395.519842pt;}
.y81{bottom:402.879839pt;}
.ye2{bottom:405.119838pt;}
.y26{bottom:410.399836pt;}
.ybe{bottom:412.639835pt;}
.y4e{bottom:412.959835pt;}
.y80{bottom:420.159832pt;}
.ye1{bottom:422.399831pt;}
.y25{bottom:427.679829pt;}
.ybd{bottom:429.919828pt;}
.y4d{bottom:430.239828pt;}
.y7f{bottom:437.439825pt;}
.ye0{bottom:439.679824pt;}
.y24{bottom:444.959822pt;}
.y4c{bottom:445.759822pt;}
.ybc{bottom:447.199821pt;}
.y4b{bottom:454.719818pt;}
.ydf{bottom:456.959817pt;}
.y23{bottom:462.239815pt;}
.y4a{bottom:464.479814pt;}
.ya6{bottom:471.999811pt;}
.y49{bottom:479.359808pt;}
.y22{bottom:479.519808pt;}
.yde{bottom:481.759807pt;}
.ya5{bottom:489.279804pt;}
.y48{bottom:495.199802pt;}
.y21{bottom:496.799801pt;}
.ydd{bottom:499.039800pt;}
.ybb{bottom:506.559797pt;}
.y47{bottom:510.879796pt;}
.y20{bottom:514.079794pt;}
.ydc{bottom:516.319793pt;}
.yba{bottom:523.839790pt;}
.y46{bottom:526.879789pt;}
.y1f{bottom:531.359787pt;}
.ydb{bottom:533.599787pt;}
.y92{bottom:538.879784pt;}
.yb9{bottom:541.119784pt;}
.y45{bottom:542.719783pt;}
.y1e{bottom:548.639781pt;}
.yda{bottom:550.879780pt;}
.y91{bottom:556.159778pt;}
.yb8{bottom:558.399777pt;}
.y44{bottom:558.559777pt;}
.y1d{bottom:565.919774pt;}
.yd9{bottom:568.319773pt;}
.y90{bottom:573.439771pt;}
.y43{bottom:574.399770pt;}
.yb7{bottom:575.839770pt;}
.y1c{bottom:583.359767pt;}
.y42{bottom:590.239764pt;}
.y8f{bottom:590.879764pt;}
.yb6{bottom:593.119763pt;}
.y1b{bottom:600.639760pt;}
.y41{bottom:605.759758pt;}
.y8e{bottom:608.159757pt;}
.yd8{bottom:610.399756pt;}
.y1a{bottom:617.919753pt;}
.y40{bottom:620.639752pt;}
.y8d{bottom:625.439750pt;}
.yd7{bottom:627.679749pt;}
.y19{bottom:635.199746pt;}
.y3f{bottom:636.319745pt;}
.y7e{bottom:642.719743pt;}
.yd6{bottom:644.959742pt;}
.y3e{bottom:652.159739pt;}
.y18{bottom:652.479739pt;}
.y7d{bottom:659.999736pt;}
.yd5{bottom:662.239735pt;}
.y3d{bottom:668.159733pt;}
.y17{bottom:669.759732pt;}
.y68{bottom:670.079732pt;}
.y7c{bottom:677.279729pt;}
.yd4{bottom:679.519728pt;}
.y67{bottom:682.239727pt;}
.y3c{bottom:683.839726pt;}
.y66{bottom:686.879725pt;}
.y16{bottom:687.039725pt;}
.y7b{bottom:694.559722pt;}
.y3b{bottom:699.839720pt;}
.y15{bottom:704.319718pt;}
.y7a{bottom:711.839715pt;}
.y3a{bottom:715.679714pt;}
.y14{bottom:721.599711pt;}
.y79{bottom:729.119708pt;}
.y39{bottom:731.359707pt;}
.y13{bottom:738.879704pt;}
.y78{bottom:746.399701pt;}
.y38{bottom:747.359701pt;}
.y12{bottom:756.319697pt;}
.y37{bottom:763.199695pt;}
.y77{bottom:763.839694pt;}
.y11{bottom:773.599691pt;}
.y36{bottom:779.039688pt;}
.y76{bottom:781.119688pt;}
.y10{bottom:790.879684pt;}
.y35{bottom:794.879682pt;}
.y75{bottom:798.399681pt;}
.yf{bottom:808.159677pt;}
.y34{bottom:810.879676pt;}
.y8c{bottom:815.679674pt;}
.y74{bottom:823.199671pt;}
.ye{bottom:825.439670pt;}
.y33{bottom:826.559669pt;}
.y8b{bottom:832.959667pt;}
.y73{bottom:840.479664pt;}
.yd{bottom:844.799662pt;}
.ya4{bottom:850.239660pt;}
.y72{bottom:857.759657pt;}
.yc{bottom:863.359655pt;}
.ya3{bottom:867.519653pt;}
.yb{bottom:868.319653pt;}
.y71{bottom:875.039650pt;}
.ya{bottom:881.599647pt;}
.ya2{bottom:884.799646pt;}
.y9{bottom:886.559645pt;}
.y70{bottom:892.319643pt;}
.ya1{bottom:902.079639pt;}
.y7{bottom:907.839637pt;}
.y6f{bottom:909.599636pt;}
.y8{bottom:912.799635pt;}
.ya0{bottom:919.359632pt;}
.y6e{bottom:926.879629pt;}
.y6{bottom:934.399626pt;}
.y9f{bottom:936.799625pt;}
.y6d{bottom:944.319622pt;}
.y9e{bottom:954.079618pt;}
.y5{bottom:960.159616pt;}
.y6c{bottom:961.599615pt;}
.y6b{bottom:978.879608pt;}
.y3{bottom:984.159606pt;}
.y6a{bottom:996.159602pt;}
.y2{bottom:999.359600pt;}
.y1{bottom:1017.119593pt;}
.y69{bottom:1020.479592pt;}
.h16{height:3.362849pt;}
.hc{height:3.604786pt;}
.h14{height:7.144712pt;}
.h13{height:10.437756pt;}
.hb{height:16.800000pt;}
.h10{height:20.048429pt;}
.hd{height:20.875512pt;}
.hf{height:22.529911pt;}
.h9{height:26.134697pt;}
.h7{height:27.971853pt;}
.h15{height:33.207236pt;}
.h4{height:33.280393pt;}
.h2{height:34.889555pt;}
.h8{height:36.887688pt;}
.he{height:37.399652pt;}
.h12{height:41.089264pt;}
.h5{height:41.453438pt;}
.h3{height:41.751023pt;}
.h11{height:42.051823pt;}
.ha{height:45.059822pt;}
.h1{height:48.847217pt;}
.h6{height:62.626535pt;}
.h0{height:1056.000000pt;}
.w2{width:4.960000pt;}
.w4{width:7.520000pt;}
.w1{width:124.480000pt;}
.w3{width:139.840000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:79.679968pt;}
.x1{left:101.119960pt;}
.x1c{left:104.479958pt;}
.x11{left:109.759956pt;}
.x12{left:114.079954pt;}
.x1e{left:115.360162pt;}
.x3{left:128.639949pt;}
.xf{left:158.079937pt;}
.x10{left:162.399935pt;}
.x14{left:204.000000pt;}
.x6{left:207.999917pt;}
.x15{left:208.960000pt;}
.x7{left:210.879910pt;}
.x8{left:268.639893pt;}
.x16{left:348.800000pt;}
.x13{left:407.519835pt;}
.x20{left:413.919551pt;}
.x19{left:421.119520pt;}
.x9{left:446.559821pt;}
.xa{left:451.679819pt;}
.xb{left:455.359818pt;}
.x1f{left:456.799448pt;}
.xc{left:458.559817pt;}
.x17{left:517.279793pt;}
.xd{left:541.599783pt;}
.xe{left:546.559781pt;}
.x1b{left:650.399740pt;}
.x4{left:686.559725pt;}
.x1d{left:710.719716pt;}
.x2{left:718.239713pt;}
.x1a{left:724.959710pt;}
.x18{left:738.719705pt;}
}




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