
    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_ea299a4720bf7835aae7af08.woff')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_f3207dca6ef046c0f6c96f15.woff')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_dcb03aaab4cc3e2fcd4ebfe3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_e8c561ea8482e9a15acf24b7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_0bbefa99075dc1a3ed97f89a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.274414;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_9290c3253d2a619bc4805205.woff')format("woff");}.ff6{font-family:ff6;line-height:0.936523;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_cb3408b966dcc61aee0ab840.woff')format("woff");}.ff7{font-family:ff7;line-height:0.936523;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_78010566e6662ac29f797a6d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6a334d7973ce22cf6ef39549.woff')format("woff");}.ff9{font-family:ff9;line-height:0.926000;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_a1f98e90a55b9ef3f8cff129.woff')format("woff");}.ffa{font-family:ffa;line-height:0.940000;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_dc16f3d22a6de79f5d1943b4.woff')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;}
.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);}
.v1{vertical-align:-1.518750px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.881250px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.082237px;}
.ls1{letter-spacing:0.082264px;}
.ls3{letter-spacing:0.082291px;}
.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;}
}
.ws3{word-spacing:-52.790401px;}
.ws6{word-spacing:-48.038401px;}
.ws0{word-spacing:-44.214611px;}
.ws2{word-spacing:-24.019200px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:205.694599px;}
.ws8{word-spacing:309.719947px;}
.ws7{word-spacing:344.971136px;}
.ws5{word-spacing:359.399869px;}
.ws4{word-spacing:1094.870492px;}
._4{margin-left:-14.664387px;}
._3{margin-left:-9.591519px;}
._6{margin-left:-7.950689px;}
._5{margin-left:-6.394251px;}
._1{margin-left:-4.924845px;}
._0{margin-left:-3.499223px;}
._2{margin-left:-1.555320px;}
.fc6{color:rgb(150,152,150);}
.fc4{color:rgb(167,29,93);}
.fc3{color:rgb(0,134,179);}
.fc5{color:rgb(0,136,204);}
.fc2{color:rgb(121,93,163);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:73.440003px;}
.fs2{font-size:86.400001px;}
.fs1{font-size:151.200002px;}
.fs0{font-size:194.400002px;}
.y0{bottom:0.000000px;}
.y83{bottom:8.532369px;}
.y5c{bottom:22.032369px;}
.y1b{bottom:25.649992px;}
.y109{bottom:25.650001px;}
.yb6{bottom:25.650003px;}
.yaa{bottom:25.650004px;}
.yc4{bottom:25.650006px;}
.yc7{bottom:25.650009px;}
.yf2{bottom:25.650016px;}
.y31{bottom:25.650019px;}
.y22{bottom:25.650021px;}
.yef{bottom:25.650024px;}
.y2c{bottom:25.650030px;}
.y13{bottom:25.650031px;}
.y34{bottom:27.000011px;}
.ybf{bottom:27.000018px;}
.y16{bottom:27.000024px;}
.ya6{bottom:27.432369px;}
.yda{bottom:35.532370px;}
.y82{bottom:39.582370px;}
.y1{bottom:42.272589px;}
.yf5{bottom:42.662057px;}
.y5b{bottom:51.732370px;}
.y108{bottom:55.350002px;}
.yb5{bottom:55.350004px;}
.yc3{bottom:55.350006px;}
.yca{bottom:55.350020px;}
.y2b{bottom:55.350031px;}
.yd3{bottom:55.350032px;}
.ya9{bottom:56.700005px;}
.ybe{bottom:56.700018px;}
.y30{bottom:56.700019px;}
.y21{bottom:56.700021px;}
.yee{bottom:56.700024px;}
.y12{bottom:56.700032px;}
.ya5{bottom:62.532370px;}
.y81{bottom:69.282370px;}
.yf4{bottom:76.412058px;}
.yf3{bottom:77.382370px;}
.yc1{bottom:80.082370px;}
.y33{bottom:80.504947px;}
.y5a{bottom:82.782370px;}
.y107{bottom:86.400002px;}
.ya8{bottom:86.400005px;}
.ya3{bottom:86.400019px;}
.y20{bottom:86.400021px;}
.yed{bottom:86.400024px;}
.y2a{bottom:86.400031px;}
.yd2{bottom:86.400032px;}
.yd9{bottom:88.182370px;}
.y80{bottom:98.982370px;}
.y59{bottom:112.482370px;}
.yc0{bottom:113.832370px;}
.y106{bottom:116.100002px;}
.ya2{bottom:117.450019px;}
.yec{bottom:117.450025px;}
.ya4{bottom:117.882370px;}
.y15{bottom:126.404945px;}
.y7f{bottom:130.032371px;}
.y32{bottom:135.432371px;}
.yd8{bottom:140.832371px;}
.y58{bottom:142.182371px;}
.y105{bottom:145.800003px;}
.ya1{bottom:147.150020px;}
.yeb{bottom:147.150025px;}
.y7e{bottom:159.732371px;}
.yf1{bottom:165.554944px;}
.y57{bottom:173.232371px;}
.y104{bottom:176.850003px;}
.ya0{bottom:176.850020px;}
.yea{bottom:176.850025px;}
.y14{bottom:181.332381px;}
.y7d{bottom:189.432371px;}
.yd7{bottom:190.782371px;}
.ybd{bottom:202.004942px;}
.y56{bottom:202.932371px;}
.y84{bottom:206.054942px;}
.y103{bottom:206.550003px;}
.y9f{bottom:207.900020px;}
.ye9{bottom:207.900026px;}
.yf0{bottom:219.132372px;}
.y7c{bottom:220.482372px;}
.y2f{bottom:223.604941px;}
.y55{bottom:232.632372px;}
.y102{bottom:237.600004px;}
.y9e{bottom:237.600021px;}
.ye8{bottom:237.600026px;}
.y7b{bottom:250.182372px;}
.yd6{bottom:258.282372px;}
.y54{bottom:263.682372px;}
.y101{bottom:267.300004px;}
.ye7{bottom:267.300026px;}
.y9d{bottom:268.650021px;}
.y11{bottom:269.504939px;}
.y7a{bottom:281.232372px;}
.y53{bottom:293.382373px;}
.y100{bottom:297.000004px;}
.y9c{bottom:298.350021px;}
.ye6{bottom:298.350027px;}
.ye2{bottom:307.304938px;}
.y2e{bottom:308.232373px;}
.y79{bottom:310.932373px;}
.ybc{bottom:317.682373px;}
.y52{bottom:324.432373px;}
.y9b{bottom:328.050022px;}
.ye5{bottom:328.050027px;}
.yd5{bottom:329.832373px;}
.y78{bottom:340.632373px;}
.y2d{bottom:343.332373px;}
.y51{bottom:354.132373px;}
.y10{bottom:354.132383px;}
.y9a{bottom:359.100022px;}
.ye4{bottom:359.100027px;}
.yd4{bottom:364.932373px;}
.y77{bottom:371.682373px;}
.ybb{bottom:373.032373px;}
.y50{bottom:383.832374px;}
.y99{bottom:388.800022px;}
.ye3{bottom:388.800028px;}
.yf{bottom:389.232383px;}
.y76{bottom:401.382374px;}
.yba{bottom:408.132374px;}
.y4f{bottom:414.882374px;}
.y98{bottom:419.850023px;}
.ye{bottom:422.982384px;}
.y29{bottom:431.504933px;}
.y75{bottom:432.432374px;}
.yb9{bottom:443.232374px;}
.y4e{bottom:444.582374px;}
.y97{bottom:449.550023px;}
.yd1{bottom:453.104932px;}
.y74{bottom:462.132375px;}
.y4d{bottom:475.632375px;}
.yb8{bottom:476.982375px;}
.y96{bottom:479.250023px;}
.yd{bottom:489.132385px;}
.y73{bottom:491.832375px;}
.y4c{bottom:505.332375px;}
.y95{bottom:510.300024px;}
.yb7{bottom:512.082375px;}
.y72{bottom:522.882375px;}
.y4b{bottom:535.032375px;}
.y94{bottom:540.000024px;}
.y28{bottom:545.832375px;}
.y71{bottom:552.582376px;}
.yff{bottom:565.154963px;}
.y4a{bottom:566.082376px;}
.yd0{bottom:567.432376px;}
.y93{bottom:571.050025px;}
.yc{bottom:574.182386px;}
.y27{bottom:579.582376px;}
.y70{bottom:583.632376px;}
.y49{bottom:595.782376px;}
.yb4{bottom:600.254962px;}
.y92{bottom:600.750025px;}
.yce{bottom:601.182376px;}
.ycf{bottom:601.562064px;}
.yb{bottom:607.932386px;}
.y6f{bottom:613.332376px;}
.y48{bottom:626.832376px;}
.y91{bottom:630.450025px;}
.y26{bottom:636.282377px;}
.y6e{bottom:643.032377px;}
.y47{bottom:656.532377px;}
.ycd{bottom:658.262064px;}
.y90{bottom:661.500026px;}
.ya{bottom:664.632387px;}
.y25{bottom:670.412064px;}
.y6d{bottom:674.082377px;}
.yb3{bottom:684.882377px;}
.y46{bottom:686.232377px;}
.y8f{bottom:691.200026px;}
.ycc{bottom:692.012065px;}
.ycb{bottom:692.982377px;}
.y9{bottom:698.382387px;}
.y6c{bottom:703.782377px;}
.y23{bottom:705.132377px;}
.y24{bottom:705.512065px;}
.y45{bottom:717.282377px;}
.yb2{bottom:718.632378px;}
.y8e{bottom:720.900026px;}
.ye0{bottom:724.032378px;}
.ye1{bottom:724.412065px;}
.y8{bottom:733.482387px;}
.y6b{bottom:734.832378px;}
.y44{bottom:746.982378px;}
.y8d{bottom:751.950027px;}
.y6a{bottom:764.532378px;}
.y7{bottom:768.582388px;}
.y43{bottom:778.032378px;}
.yc9{bottom:781.154947px;}
.y8c{bottom:781.650027px;}
.yb1{bottom:784.782378px;}
.ydf{bottom:790.182378px;}
.y1f{bottom:793.304946px;}
.y69{bottom:794.232378px;}
.y6{bottom:802.332388px;}
.y42{bottom:807.732379px;}
.y8b{bottom:812.700027px;}
.y68{bottom:825.282379px;}
.y41{bottom:837.432379px;}
.y8a{bottom:842.400028px;}
.y67{bottom:854.982379px;}
.y5{bottom:859.032389px;}
.y40{bottom:868.482379px;}
.yb0{bottom:869.832379px;}
.y89{bottom:872.100028px;}
.y66{bottom:884.682379px;}
.yfd{bottom:891.432380px;}
.yfe{bottom:891.812067px;}
.yc8{bottom:895.482380px;}
.y3f{bottom:898.182380px;}
.y88{bottom:903.150028px;}
.yaf{bottom:903.582380px;}
.y1e{bottom:908.982380px;}
.y65{bottom:915.732380px;}
.y4{bottom:925.182390px;}
.y3e{bottom:927.882380px;}
.y87{bottom:932.850029px;}
.yde{bottom:937.332380px;}
.yae{bottom:939.062068px;}
.y1d{bottom:942.732380px;}
.y64{bottom:945.432380px;}
.yfb{bottom:946.782380px;}
.yfc{bottom:947.162068px;}
.y3d{bottom:958.932380px;}
.y86{bottom:963.900029px;}
.yad{bottom:972.812068px;}
.yac{bottom:973.782380px;}
.y63{bottom:976.482381px;}
.y1c{bottom:977.832381px;}
.yfa{bottom:981.882381px;}
.yc6{bottom:983.654960px;}
.y3c{bottom:988.632381px;}
.y85{bottom:993.600029px;}
.y62{bottom:1006.182381px;}
.yab{bottom:1007.532381px;}
.yf9{bottom:1016.012068px;}
.yf8{bottom:1016.982381px;}
.y3b{bottom:1019.682381px;}
.y3{bottom:1025.082391px;}
.y61{bottom:1035.882381px;}
.yc5{bottom:1038.582381px;}
.ydd{bottom:1041.282381px;}
.y3a{bottom:1049.382381px;}
.yf7{bottom:1051.112069px;}
.y1a{bottom:1066.004978px;}
.y60{bottom:1066.932382px;}
.y39{bottom:1079.082382px;}
.y2{bottom:1083.132392px;}
.y36{bottom:1085.832382px;}
.yf6{bottom:1086.212069px;}
.ydc{bottom:1092.582382px;}
.ya7{bottom:1095.704966px;}
.y5f{bottom:1096.632382px;}
.y38{bottom:1110.132382px;}
.y19{bottom:1119.582382px;}
.y35{bottom:1119.962070px;}
.yc2{bottom:1126.754965px;}
.y5e{bottom:1127.682382px;}
.y37{bottom:1139.832382px;}
.ydb{bottom:1143.882382px;}
.y17{bottom:1154.682383px;}
.y18{bottom:1155.062070px;}
.y5d{bottom:1157.382383px;}
.hc{height:56.012346px;}
.h5{height:63.158401px;}
.h8{height:64.799997px;}
.h12{height:64.800019px;}
.h7{height:71.431878px;}
.ha{height:75.313128px;}
.hf{height:94.499989px;}
.h6{height:94.499996px;}
.h11{height:94.500007px;}
.h4{height:110.527201px;}
.h13{height:124.200016px;}
.hb{height:124.200031px;}
.h10{height:125.549995px;}
.he{height:125.550006px;}
.h9{height:125.550016px;}
.h3{height:142.106402px;}
.h15{height:336.150000px;}
.h14{height:427.950011px;}
.hd{height:1015.200030px;}
.h2{height:1178.982383px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:807.795717px;}
.w2{width:808.470686px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:7.382785px;}
.x3{left:16.600784px;}
.x11{left:18.899973px;}
.x10{left:31.788254px;}
.x1{left:41.624998px;}
.x2{left:43.199973px;}
.x14{left:71.782005px;}
.x1c{left:74.207786px;}
.x22{left:78.405442px;}
.x31{left:80.999974px;}
.x19{left:89.458567px;}
.x28{left:100.511693px;}
.x2d{left:111.564818px;}
.x1d{left:156.283568px;}
.x23{left:160.481224px;}
.x12{left:170.353100px;}
.x9{left:177.883568px;}
.x2e{left:180.077318px;}
.x2f{left:214.249194px;}
.xe{left:220.303100px;}
.x1a{left:230.280451px;}
.x24{left:231.503888px;}
.xb{left:240.974975px;}
.x1e{left:282.571851px;}
.x15{left:325.455452px;}
.x25{left:335.685914px;}
.x7{left:353.446852px;}
.x4{left:362.601539px;}
.x1f{left:386.753890px;}
.xa{left:390.803890px;}
.xc{left:400.422640px;}
.x16{left:429.637478px;}
.xf{left:436.239828px;}
.x26{left:439.867953px;}
.x32{left:452.650766px;}
.x29{left:457.270290px;}
.x13{left:469.462478px;}
.x5{left:490.324204px;}
.x8{left:512.894517px;}
.x27{left:544.049979px;}
.x2a{left:561.452330px;}
.x17{left:566.978892px;}
.xd{left:570.923417px;}
.x1b{left:573.412479px;}
.x20{left:617.224205px;}
.x2b{left:621.421855px;}
.x18{left:682.214043px;}
.x30{left:718.263269px;}
.x21{left:721.406231px;}
.x2c{left:725.603894px;}
@media print{
.v1{vertical-align:-1.350000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.450000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.073100pt;}
.ls1{letter-spacing:0.073124pt;}
.ls3{letter-spacing:0.073148pt;}
.ws3{word-spacing:-46.924801pt;}
.ws6{word-spacing:-42.700800pt;}
.ws0{word-spacing:-39.301877pt;}
.ws2{word-spacing:-21.350400pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:182.839643pt;}
.ws8{word-spacing:275.306620pt;}
.ws7{word-spacing:306.641010pt;}
.ws5{word-spacing:319.466551pt;}
.ws4{word-spacing:973.218215pt;}
._4{margin-left:-13.035011pt;}
._3{margin-left:-8.525795pt;}
._6{margin-left:-7.067279pt;}
._5{margin-left:-5.683778pt;}
._1{margin-left:-4.377640pt;}
._0{margin-left:-3.110420pt;}
._2{margin-left:-1.382507pt;}
.fs3{font-size:65.280003pt;}
.fs2{font-size:76.800001pt;}
.fs1{font-size:134.400002pt;}
.fs0{font-size:172.800002pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:7.584328pt;}
.y5c{bottom:19.584328pt;}
.y1b{bottom:22.799993pt;}
.y109{bottom:22.800001pt;}
.yb6{bottom:22.800003pt;}
.yaa{bottom:22.800004pt;}
.yc4{bottom:22.800005pt;}
.yc7{bottom:22.800008pt;}
.yf2{bottom:22.800014pt;}
.y31{bottom:22.800017pt;}
.y22{bottom:22.800018pt;}
.yef{bottom:22.800021pt;}
.y2c{bottom:22.800027pt;}
.y13{bottom:22.800028pt;}
.y34{bottom:24.000010pt;}
.ybf{bottom:24.000016pt;}
.y16{bottom:24.000021pt;}
.ya6{bottom:24.384328pt;}
.yda{bottom:31.584328pt;}
.y82{bottom:35.184329pt;}
.y1{bottom:37.575635pt;}
.yf5{bottom:37.921829pt;}
.y5b{bottom:45.984329pt;}
.y108{bottom:49.200001pt;}
.yb5{bottom:49.200003pt;}
.yc3{bottom:49.200006pt;}
.yca{bottom:49.200018pt;}
.y2b{bottom:49.200027pt;}
.yd3{bottom:49.200028pt;}
.ya9{bottom:50.400004pt;}
.ybe{bottom:50.400016pt;}
.y30{bottom:50.400017pt;}
.y21{bottom:50.400019pt;}
.yee{bottom:50.400021pt;}
.y12{bottom:50.400028pt;}
.ya5{bottom:55.584329pt;}
.y81{bottom:61.584329pt;}
.yf4{bottom:67.921829pt;}
.yf3{bottom:68.784329pt;}
.yc1{bottom:71.184329pt;}
.y33{bottom:71.559953pt;}
.y5a{bottom:73.584329pt;}
.y107{bottom:76.800002pt;}
.ya8{bottom:76.800005pt;}
.ya3{bottom:76.800017pt;}
.y20{bottom:76.800019pt;}
.yed{bottom:76.800022pt;}
.y2a{bottom:76.800027pt;}
.yd2{bottom:76.800028pt;}
.yd9{bottom:78.384329pt;}
.y80{bottom:87.984329pt;}
.y59{bottom:99.984329pt;}
.yc0{bottom:101.184329pt;}
.y106{bottom:103.200002pt;}
.ya2{bottom:104.400017pt;}
.yec{bottom:104.400022pt;}
.ya4{bottom:104.784329pt;}
.y15{bottom:112.359951pt;}
.y7f{bottom:115.584329pt;}
.y32{bottom:120.384330pt;}
.yd8{bottom:125.184330pt;}
.y58{bottom:126.384330pt;}
.y105{bottom:129.600002pt;}
.ya1{bottom:130.800017pt;}
.yeb{bottom:130.800022pt;}
.y7e{bottom:141.984330pt;}
.yf1{bottom:147.159950pt;}
.y57{bottom:153.984330pt;}
.y104{bottom:157.200003pt;}
.ya0{bottom:157.200018pt;}
.yea{bottom:157.200023pt;}
.y14{bottom:161.184339pt;}
.y7d{bottom:168.384330pt;}
.yd7{bottom:169.584330pt;}
.ybd{bottom:179.559949pt;}
.y56{bottom:180.384330pt;}
.y84{bottom:183.159948pt;}
.y103{bottom:183.600003pt;}
.y9f{bottom:184.800018pt;}
.ye9{bottom:184.800023pt;}
.yf0{bottom:194.784330pt;}
.y7c{bottom:195.984330pt;}
.y2f{bottom:198.759948pt;}
.y55{bottom:206.784331pt;}
.y102{bottom:211.200003pt;}
.y9e{bottom:211.200018pt;}
.ye8{bottom:211.200023pt;}
.y7b{bottom:222.384331pt;}
.yd6{bottom:229.584331pt;}
.y54{bottom:234.384331pt;}
.y101{bottom:237.600004pt;}
.ye7{bottom:237.600023pt;}
.y9d{bottom:238.800019pt;}
.y11{bottom:239.559946pt;}
.y7a{bottom:249.984331pt;}
.y53{bottom:260.784331pt;}
.y100{bottom:264.000004pt;}
.y9c{bottom:265.200019pt;}
.ye6{bottom:265.200024pt;}
.ye2{bottom:273.159945pt;}
.y2e{bottom:273.984331pt;}
.y79{bottom:276.384331pt;}
.ybc{bottom:282.384331pt;}
.y52{bottom:288.384331pt;}
.y9b{bottom:291.600019pt;}
.ye5{bottom:291.600024pt;}
.yd5{bottom:293.184332pt;}
.y78{bottom:302.784332pt;}
.y2d{bottom:305.184332pt;}
.y51{bottom:314.784332pt;}
.y10{bottom:314.784340pt;}
.y9a{bottom:319.200020pt;}
.ye4{bottom:319.200024pt;}
.yd4{bottom:324.384332pt;}
.y77{bottom:330.384332pt;}
.ybb{bottom:331.584332pt;}
.y50{bottom:341.184332pt;}
.y99{bottom:345.600020pt;}
.ye3{bottom:345.600025pt;}
.yf{bottom:345.984341pt;}
.y76{bottom:356.784332pt;}
.yba{bottom:362.784332pt;}
.y4f{bottom:368.784332pt;}
.y98{bottom:373.200020pt;}
.ye{bottom:375.984341pt;}
.y29{bottom:383.559940pt;}
.y75{bottom:384.384333pt;}
.yb9{bottom:393.984333pt;}
.y4e{bottom:395.184333pt;}
.y97{bottom:399.600021pt;}
.yd1{bottom:402.759939pt;}
.y74{bottom:410.784333pt;}
.y4d{bottom:422.784333pt;}
.yb8{bottom:423.984333pt;}
.y96{bottom:426.000021pt;}
.yd{bottom:434.784342pt;}
.y73{bottom:437.184333pt;}
.y4c{bottom:449.184333pt;}
.y95{bottom:453.600021pt;}
.yb7{bottom:455.184333pt;}
.y72{bottom:464.784334pt;}
.y4b{bottom:475.584334pt;}
.y94{bottom:480.000021pt;}
.y28{bottom:485.184334pt;}
.y71{bottom:491.184334pt;}
.yff{bottom:502.359967pt;}
.y4a{bottom:503.184334pt;}
.yd0{bottom:504.384334pt;}
.y93{bottom:507.600022pt;}
.yc{bottom:510.384343pt;}
.y27{bottom:515.184334pt;}
.y70{bottom:518.784334pt;}
.y49{bottom:529.584334pt;}
.yb4{bottom:533.559966pt;}
.y92{bottom:534.000022pt;}
.yce{bottom:534.384334pt;}
.ycf{bottom:534.721834pt;}
.yb{bottom:540.384343pt;}
.y6f{bottom:545.184334pt;}
.y48{bottom:557.184335pt;}
.y91{bottom:560.400022pt;}
.y26{bottom:565.584335pt;}
.y6e{bottom:571.584335pt;}
.y47{bottom:583.584335pt;}
.ycd{bottom:585.121835pt;}
.y90{bottom:588.000023pt;}
.ya{bottom:590.784344pt;}
.y25{bottom:595.921835pt;}
.y6d{bottom:599.184335pt;}
.yb3{bottom:608.784335pt;}
.y46{bottom:609.984335pt;}
.y8f{bottom:614.400023pt;}
.ycc{bottom:615.121835pt;}
.ycb{bottom:615.984335pt;}
.y9{bottom:620.784344pt;}
.y6c{bottom:625.584335pt;}
.y23{bottom:626.784335pt;}
.y24{bottom:627.121835pt;}
.y45{bottom:637.584336pt;}
.yb2{bottom:638.784336pt;}
.y8e{bottom:640.800023pt;}
.ye0{bottom:643.584336pt;}
.ye1{bottom:643.921836pt;}
.y8{bottom:651.984344pt;}
.y6b{bottom:653.184336pt;}
.y44{bottom:663.984336pt;}
.y8d{bottom:668.400024pt;}
.y6a{bottom:679.584336pt;}
.y7{bottom:683.184345pt;}
.y43{bottom:691.584336pt;}
.yc9{bottom:694.359953pt;}
.y8c{bottom:694.800024pt;}
.yb1{bottom:697.584336pt;}
.ydf{bottom:702.384336pt;}
.y1f{bottom:705.159952pt;}
.y69{bottom:705.984336pt;}
.y6{bottom:713.184345pt;}
.y42{bottom:717.984336pt;}
.y8b{bottom:722.400024pt;}
.y68{bottom:733.584337pt;}
.y41{bottom:744.384337pt;}
.y8a{bottom:748.800025pt;}
.y67{bottom:759.984337pt;}
.y5{bottom:763.584346pt;}
.y40{bottom:771.984337pt;}
.yb0{bottom:773.184337pt;}
.y89{bottom:775.200025pt;}
.y66{bottom:786.384337pt;}
.yfd{bottom:792.384337pt;}
.yfe{bottom:792.721837pt;}
.yc8{bottom:795.984337pt;}
.y3f{bottom:798.384337pt;}
.y88{bottom:802.800025pt;}
.yaf{bottom:803.184337pt;}
.y1e{bottom:807.984338pt;}
.y65{bottom:813.984338pt;}
.y4{bottom:822.384346pt;}
.y3e{bottom:824.784338pt;}
.y87{bottom:829.200026pt;}
.yde{bottom:833.184338pt;}
.yae{bottom:834.721838pt;}
.y1d{bottom:837.984338pt;}
.y64{bottom:840.384338pt;}
.yfb{bottom:841.584338pt;}
.yfc{bottom:841.921838pt;}
.y3d{bottom:852.384338pt;}
.y86{bottom:856.800026pt;}
.yad{bottom:864.721838pt;}
.yac{bottom:865.584338pt;}
.y63{bottom:867.984338pt;}
.y1c{bottom:869.184338pt;}
.yfa{bottom:872.784338pt;}
.yc6{bottom:874.359964pt;}
.y3c{bottom:878.784338pt;}
.y85{bottom:883.200026pt;}
.y62{bottom:894.384339pt;}
.yab{bottom:895.584339pt;}
.yf9{bottom:903.121839pt;}
.yf8{bottom:903.984339pt;}
.y3b{bottom:906.384339pt;}
.y3{bottom:911.184347pt;}
.y61{bottom:920.784339pt;}
.yc5{bottom:923.184339pt;}
.ydd{bottom:925.584339pt;}
.y3a{bottom:932.784339pt;}
.yf7{bottom:934.321839pt;}
.y1a{bottom:947.559981pt;}
.y60{bottom:948.384339pt;}
.y39{bottom:959.184339pt;}
.y2{bottom:962.784348pt;}
.y36{bottom:965.184339pt;}
.yf6{bottom:965.521839pt;}
.ydc{bottom:971.184339pt;}
.ya7{bottom:973.959970pt;}
.y5f{bottom:974.784339pt;}
.y38{bottom:986.784340pt;}
.y19{bottom:995.184340pt;}
.y35{bottom:995.521840pt;}
.yc2{bottom:1001.559969pt;}
.y5e{bottom:1002.384340pt;}
.y37{bottom:1013.184340pt;}
.ydb{bottom:1016.784340pt;}
.y17{bottom:1026.384340pt;}
.y18{bottom:1026.721840pt;}
.y5d{bottom:1028.784340pt;}
.hc{height:49.788752pt;}
.h5{height:56.140801pt;}
.h8{height:57.599998pt;}
.h12{height:57.600017pt;}
.h7{height:63.495003pt;}
.ha{height:66.945003pt;}
.hf{height:83.999990pt;}
.h6{height:83.999997pt;}
.h11{height:84.000006pt;}
.h4{height:98.246401pt;}
.h13{height:110.400015pt;}
.hb{height:110.400027pt;}
.h10{height:111.599995pt;}
.he{height:111.600005pt;}
.h9{height:111.600015pt;}
.h3{height:126.316801pt;}
.h15{height:298.800000pt;}
.h14{height:380.400010pt;}
.hd{height:902.400026pt;}
.h2{height:1047.984340pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:718.040637pt;}
.w2{width:718.640610pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:6.562476pt;}
.x3{left:14.756253pt;}
.x11{left:16.799976pt;}
.x10{left:28.256226pt;}
.x1{left:36.999998pt;}
.x2{left:38.399976pt;}
.x14{left:63.806226pt;}
.x1c{left:65.962476pt;}
.x22{left:69.693726pt;}
.x31{left:71.999976pt;}
.x19{left:79.518727pt;}
.x28{left:89.343727pt;}
.x2d{left:99.168727pt;}
.x1d{left:138.918727pt;}
.x23{left:142.649977pt;}
.x12{left:151.424977pt;}
.x9{left:158.118727pt;}
.x2e{left:160.068728pt;}
.x2f{left:190.443728pt;}
.xe{left:195.824978pt;}
.x1a{left:204.693734pt;}
.x24{left:205.781234pt;}
.xb{left:214.199978pt;}
.x1e{left:251.174979pt;}
.x15{left:289.293735pt;}
.x25{left:298.387479pt;}
.x7{left:314.174979pt;}
.x4{left:322.312479pt;}
.x1f{left:343.781236pt;}
.xa{left:347.381236pt;}
.xc{left:355.931236pt;}
.x16{left:381.899980pt;}
.xf{left:387.768736pt;}
.x26{left:390.993736pt;}
.x32{left:402.356236pt;}
.x29{left:406.462480pt;}
.x13{left:417.299981pt;}
.x5{left:435.843737pt;}
.x8{left:455.906237pt;}
.x27{left:483.599981pt;}
.x2a{left:499.068737pt;}
.x17{left:503.981238pt;}
.xd{left:507.487482pt;}
.x1b{left:509.699982pt;}
.x20{left:548.643738pt;}
.x2b{left:552.374982pt;}
.x18{left:606.412483pt;}
.x30{left:638.456239pt;}
.x21{left:641.249983pt;}
.x2c{left:644.981239pt;}
}




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