
    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_80b375bd8ba6725c2755124b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_27078ce524e86c50da15958d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_3ca5f758e6e55c0454bae108.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_b10d8aa19f63ab95b3ed3bb5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935547;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_7dd907f177424e9f30e32671.woff')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_b45c8869f3cb61671f025614.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a0501e9ce61c59b38c3f5205.woff')format("woff");}.ff7{font-family:ff7;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;}
.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.018000px;}
.ls5{letter-spacing:0.923432px;}
.ls3{letter-spacing:1.458000px;}
.ls4{letter-spacing:1.476000px;}
.ls2{letter-spacing:854.819000px;}
.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;}
}
.ws1{word-spacing:-21.129671px;}
.ws4{word-spacing:-16.416000px;}
.ws5{word-spacing:-14.958000px;}
.ws7{word-spacing:-14.210587px;}
.ws0{word-spacing:-11.633594px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:6.372000px;}
.ws2{word-spacing:366.012000px;}
._18{margin-left:-8.833983px;}
._6{margin-left:-7.139751px;}
._11{margin-left:-5.994000px;}
._f{margin-left:-3.774863px;}
._4{margin-left:-2.751851px;}
._1{margin-left:-1.091962px;}
._0{width:1.175959px;}
._2{width:2.561911px;}
._7{width:4.398438px;}
._8{width:6.251682px;}
._c{width:8.232266px;}
._a{width:9.450000px;}
._9{width:11.298041px;}
._b{width:13.036447px;}
._d{width:16.340511px;}
._5{width:17.489377px;}
._17{width:19.920599px;}
._10{width:21.654685px;}
._12{width:24.930729px;}
._13{width:27.305687px;}
._3{width:75.367569px;}
._15{width:89.990827px;}
._14{width:115.788041px;}
._16{width:209.048693px;}
._e{width:416.484000px;}
.fc1{color:rgb(27,138,174);}
.fc4{color:rgb(60,60,60);}
.fc3{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs7{font-size:40.500000px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.ye1{bottom:4.522641px;}
.ye0{bottom:22.481623px;}
.ydf{bottom:40.434750px;}
.y24{bottom:46.734370px;}
.yde{bottom:58.387866px;}
.y23{bottom:59.015622px;}
.y22{bottom:71.302734px;}
.ydd{bottom:76.346855px;}
.y4d{bottom:83.848500px;}
.y62{bottom:88.617182px;}
.y66{bottom:90.000000px;}
.ydc{bottom:94.299982px;}
.y8b{bottom:94.763624px;}
.y4a{bottom:97.599555px;}
.y61{bottom:107.513667px;}
.yaf{bottom:108.534000px;}
.ydb{bottom:112.253109px;}
.yd2{bottom:113.062487px;}
.y8a{bottom:113.665973px;}
.y49{bottom:116.501904px;}
.yda{bottom:130.212093px;}
.yd1{bottom:131.015614px;}
.y89{bottom:132.568322px;}
.y48{bottom:135.398394px;}
.y60{bottom:139.916010px;}
.yd9{bottom:148.165213px;}
.yd0{bottom:148.968741px;}
.y88{bottom:151.464812px;}
.y47{bottom:154.300743px;}
.y5f{bottom:158.818305px;}
.y20{bottom:159.779211px;}
.yd8{bottom:166.118340px;}
.ycf{bottom:166.927730px;}
.y87{bottom:170.367161px;}
.y46{bottom:173.203092px;}
.y5e{bottom:177.714795px;}
.yae{bottom:178.464774px;}
.y1f{bottom:178.681560px;}
.yd7{bottom:184.077329px;}
.yce{bottom:184.880857px;}
.y86{bottom:189.263651px;}
.y45{bottom:192.099582px;}
.y5d{bottom:196.617144px;}
.yad{bottom:197.367123px;}
.y1e{bottom:197.578050px;}
.yd6{bottom:202.030454px;}
.ycd{bottom:202.833984px;}
.y85{bottom:208.166000px;}
.y44{bottom:211.001931px;}
.y5c{bottom:215.513634px;}
.yac{bottom:216.263613px;}
.y1d{bottom:216.480399px;}
.yd5{bottom:219.983574px;}
.ycc{bottom:220.787109px;}
.y84{bottom:227.068349px;}
.y43{bottom:229.898421px;}
.y5b{bottom:234.415983px;}
.yab{bottom:235.165962px;}
.y1c{bottom:235.382748px;}
.yd4{bottom:237.942563px;}
.ycb{bottom:238.746089px;}
.y83{bottom:245.964839px;}
.y42{bottom:248.800770px;}
.y5a{bottom:253.318332px;}
.yaa{bottom:254.068311px;}
.y1b{bottom:254.279238px;}
.yca{bottom:256.699216px;}
.y82{bottom:264.867107px;}
.y41{bottom:267.703119px;}
.y59{bottom:272.214822px;}
.ya9{bottom:272.964801px;}
.y1a{bottom:273.181587px;}
.yc9{bottom:274.652343px;}
.ya8{bottom:291.867150px;}
.y19{bottom:292.078077px;}
.yc8{bottom:292.611324px;}
.y81{bottom:297.263597px;}
.y40{bottom:300.099578px;}
.y58{bottom:304.617171px;}
.yc7{bottom:310.564451px;}
.ya7{bottom:310.763640px;}
.y18{bottom:310.980426px;}
.y80{bottom:316.165946px;}
.y3f{bottom:319.001927px;}
.y57{bottom:323.513661px;}
.yc6{bottom:328.517579px;}
.ya6{bottom:329.665989px;}
.y17{bottom:329.882775px;}
.y7f{bottom:335.068295px;}
.y3e{bottom:337.898417px;}
.y56{bottom:342.416010px;}
.yc5{bottom:346.476554px;}
.ya5{bottom:348.568338px;}
.y16{bottom:348.779265px;}
.y7e{bottom:353.964785px;}
.y3d{bottom:356.800766px;}
.yc4{bottom:364.429681px;}
.ya4{bottom:367.464828px;}
.y15{bottom:367.681614px;}
.y7d{bottom:372.867134px;}
.y3c{bottom:375.703115px;}
.yc3{bottom:382.382808px;}
.ya3{bottom:386.367177px;}
.y14{bottom:386.578104px;}
.y64{bottom:386.660158px;}
.y7c{bottom:391.763624px;}
.y3b{bottom:394.599605px;}
.yc2{bottom:400.341796px;}
.ya2{bottom:405.263667px;}
.y13{bottom:405.480453px;}
.y65{bottom:406.833984px;}
.y63{bottom:407.958984px;}
.y7b{bottom:410.665973px;}
.y3a{bottom:413.501927px;}
.yc1{bottom:418.294922px;}
.ya1{bottom:424.166016px;}
.y12{bottom:424.382802px;}
.y7a{bottom:429.568322px;}
.y39{bottom:432.398417px;}
.yc0{bottom:436.248044px;}
.y11{bottom:443.279292px;}
.y79{bottom:448.464812px;}
.y38{bottom:451.300766px;}
.ybf{bottom:454.207032px;}
.ya0{bottom:454.822266px;}
.y10{bottom:462.181641px;}
.y78{bottom:467.367161px;}
.y37{bottom:470.203115px;}
.ybe{bottom:472.160157px;}
.y77{bottom:486.263651px;}
.y36{bottom:489.099605px;}
.ybd{bottom:490.113278px;}
.yf{bottom:492.837891px;}
.y76{bottom:505.166000px;}
.y35{bottom:508.001954px;}
.ybc{bottom:508.072266px;}
.y9f{bottom:510.427632px;}
.y75{bottom:524.068349px;}
.ybb{bottom:526.025384px;}
.y34{bottom:526.898427px;}
.y9e{bottom:529.329981px;}
.y74{bottom:542.964839px;}
.yba{bottom:543.978512px;}
.y33{bottom:545.800776px;}
.y9d{bottom:548.232330px;}
.y73{bottom:561.867165px;}
.ye{bottom:561.937500px;}
.y9c{bottom:567.128820px;}
.y32{bottom:578.203119px;}
.yd{bottom:578.736324px;}
.y9b{bottom:586.031169px;}
.y72{bottom:594.263655px;}
.yc{bottom:595.535150px;}
.y31{bottom:597.099609px;}
.yb9{bottom:599.443359px;}
.y9a{bottom:604.927659px;}
.y71{bottom:613.166004px;}
.y30{bottom:616.001921px;}
.yb{bottom:616.833983px;}
.y4b{bottom:621.064454px;}
.y99{bottom:623.830008px;}
.y70{bottom:632.068353px;}
.y2f{bottom:634.898411px;}
.y3{bottom:641.507812px;}
.ya{bottom:642.632812px;}
.y98{bottom:642.732357px;}
.yb8{bottom:653.144532px;}
.y2e{bottom:653.800760px;}
.y97{bottom:661.628847px;}
.y6f{bottom:664.464822px;}
.y2d{bottom:672.703109px;}
.y96{bottom:680.531196px;}
.yb7{bottom:681.890625px;}
.y6e{bottom:683.367171px;}
.yd3{bottom:683.596500px;}
.y2c{bottom:691.599598px;}
.y9{bottom:692.888671px;}
.y95{bottom:699.427686px;}
.y6d{bottom:702.263661px;}
.y2b{bottom:710.501948px;}
.y8{bottom:713.847657px;}
.y94{bottom:718.330035px;}
.y21{bottom:718.347657px;}
.y55{bottom:721.166010px;}
.y2a{bottom:729.398438px;}
.y93{bottom:737.232384px;}
.yb6{bottom:737.501948px;}
.y54{bottom:740.068359px;}
.y92{bottom:756.128874px;}
.y7{bottom:756.158206px;}
.yb5{bottom:756.398438px;}
.y29{bottom:760.054688px;}
.y53{bottom:770.718750px;}
.y91{bottom:775.031223px;}
.yb4{bottom:787.054688px;}
.y6{bottom:793.710931px;}
.y90{bottom:793.927713px;}
.yb0{bottom:802.587093px;}
.y8f{bottom:812.830062px;}
.y28{bottom:815.666016px;}
.y52{bottom:826.330052px;}
.y6c{bottom:826.330056px;}
.y67{bottom:830.830079px;}
.y5{bottom:831.269532px;}
.y8e{bottom:831.732411px;}
.y4e{bottom:836.981578px;}
.yb3{bottom:842.666004px;}
.y51{bottom:845.232401px;}
.y6b{bottom:845.232405px;}
.y27{bottom:846.322266px;}
.y8d{bottom:850.628901px;}
.yb2{bottom:861.568353px;}
.y50{bottom:864.128891px;}
.y6a{bottom:864.128895px;}
.y8c{bottom:869.531239px;}
.yb1{bottom:880.464843px;}
.y4f{bottom:883.031239px;}
.y69{bottom:883.031244px;}
.y4{bottom:899.378907px;}
.y26{bottom:901.927730px;}
.y68{bottom:901.927734px;}
.y25{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y4c{bottom:974.730470px;}
.h7{height:26.244141px;}
.h5{height:27.557629px;}
.h8{height:28.048904px;}
.hc{height:29.524658px;}
.h1{height:30.617097px;}
.h10{height:31.993163px;}
.h4{height:34.993255px;}
.hd{height:35.617086px;}
.h16{height:37.399182px;}
.h17{height:37.399234px;}
.h2{height:39.366211px;}
.h12{height:39.366295px;}
.h13{height:39.366301px;}
.ha{height:39.366319px;}
.hb{height:39.366337px;}
.h9{height:39.366343px;}
.hf{height:39.366427px;}
.h14{height:39.366535px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h18{height:251.367000px;}
.h15{height:826.429500px;}
.h11{height:844.963500px;}
.he{height:851.115000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.xf{left:11.584593px;}
.x10{left:45.000609px;}
.x4{left:78.662109px;}
.xa{left:83.162114px;}
.xb{left:86.537109px;}
.xd{left:89.912114px;}
.x6{left:94.412109px;}
.x5{left:95.537109px;}
.xe{left:123.662109px;}
.xc{left:138.287109px;}
.x7{left:195.662109px;}
.x8{left:199.669921px;}
.x1{left:232.769532px;}
.x3{left:304.664062px;}
.x2{left:518.537109px;}
.x9{left:543.042114px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.820828pt;}
.ls3{letter-spacing:1.296000pt;}
.ls4{letter-spacing:1.312000pt;}
.ls2{letter-spacing:759.839111pt;}
.ws1{word-spacing:-18.781930pt;}
.ws4{word-spacing:-14.592000pt;}
.ws5{word-spacing:-13.296000pt;}
.ws7{word-spacing:-12.631633pt;}
.ws0{word-spacing:-10.340973pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:5.664000pt;}
.ws2{word-spacing:325.344000pt;}
._18{margin-left:-7.852429pt;}
._6{margin-left:-6.346445pt;}
._11{margin-left:-5.328000pt;}
._f{margin-left:-3.355434pt;}
._4{margin-left:-2.446090pt;}
._1{margin-left:-0.970633pt;}
._0{width:1.045297pt;}
._2{width:2.277254pt;}
._7{width:3.909722pt;}
._8{width:5.557051pt;}
._c{width:7.317570pt;}
._a{width:8.400000pt;}
._9{width:10.042703pt;}
._b{width:11.587953pt;}
._d{width:14.524899pt;}
._5{width:15.546113pt;}
._17{width:17.707199pt;}
._10{width:19.248609pt;}
._12{width:22.160648pt;}
._13{width:24.271722pt;}
._3{width:66.993395pt;}
._15{width:79.991846pt;}
._14{width:102.922703pt;}
._16{width:185.821060pt;}
._e{width:370.208000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs7{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:4.020125pt;}
.ye0{bottom:19.983665pt;}
.ydf{bottom:35.942000pt;}
.y24{bottom:41.541662pt;}
.yde{bottom:51.900326pt;}
.y23{bottom:52.458331pt;}
.y22{bottom:63.380208pt;}
.ydd{bottom:67.863871pt;}
.y4d{bottom:74.532000pt;}
.y62{bottom:78.770828pt;}
.y66{bottom:80.000000pt;}
.ydc{bottom:83.822206pt;}
.y8b{bottom:84.234332pt;}
.y4a{bottom:86.755160pt;}
.y61{bottom:95.567704pt;}
.yaf{bottom:96.474667pt;}
.ydb{bottom:99.780541pt;}
.yd2{bottom:100.499988pt;}
.y8a{bottom:101.036420pt;}
.y49{bottom:103.557248pt;}
.yda{bottom:115.744083pt;}
.yd1{bottom:116.458324pt;}
.y89{bottom:117.838508pt;}
.y48{bottom:120.354128pt;}
.y60{bottom:124.369787pt;}
.yd9{bottom:131.702412pt;}
.yd0{bottom:132.416659pt;}
.y88{bottom:134.635388pt;}
.y47{bottom:137.156216pt;}
.y5f{bottom:141.171827pt;}
.y20{bottom:142.025965pt;}
.yd8{bottom:147.660747pt;}
.ycf{bottom:148.380204pt;}
.y87{bottom:151.437476pt;}
.y46{bottom:153.958304pt;}
.y5e{bottom:157.968707pt;}
.yae{bottom:158.635355pt;}
.y1f{bottom:158.828053pt;}
.yd7{bottom:163.624292pt;}
.yce{bottom:164.338539pt;}
.y86{bottom:168.234356pt;}
.y45{bottom:170.755184pt;}
.y5d{bottom:174.770795pt;}
.yad{bottom:175.437443pt;}
.y1e{bottom:175.624933pt;}
.yd6{bottom:179.582625pt;}
.ycd{bottom:180.296875pt;}
.y85{bottom:185.036444pt;}
.y44{bottom:187.557272pt;}
.y5c{bottom:191.567675pt;}
.yac{bottom:192.234323pt;}
.y1d{bottom:192.427021pt;}
.yd5{bottom:195.540955pt;}
.ycc{bottom:196.255208pt;}
.y84{bottom:201.838532pt;}
.y43{bottom:204.354152pt;}
.y5b{bottom:208.369763pt;}
.yab{bottom:209.036411pt;}
.y1c{bottom:209.229109pt;}
.yd4{bottom:211.504500pt;}
.ycb{bottom:212.218745pt;}
.y83{bottom:218.635412pt;}
.y42{bottom:221.156240pt;}
.y5a{bottom:225.171851pt;}
.yaa{bottom:225.838499pt;}
.y1b{bottom:226.025989pt;}
.yca{bottom:228.177081pt;}
.y82{bottom:235.437428pt;}
.y41{bottom:237.958328pt;}
.y59{bottom:241.968731pt;}
.ya9{bottom:242.635379pt;}
.y1a{bottom:242.828077pt;}
.yc9{bottom:244.135416pt;}
.ya8{bottom:259.437467pt;}
.y19{bottom:259.624957pt;}
.yc8{bottom:260.098955pt;}
.y81{bottom:264.234308pt;}
.y40{bottom:266.755180pt;}
.y58{bottom:270.770819pt;}
.yc7{bottom:276.057290pt;}
.ya7{bottom:276.234347pt;}
.y18{bottom:276.427045pt;}
.y80{bottom:281.036396pt;}
.y3f{bottom:283.557268pt;}
.y57{bottom:287.567699pt;}
.yc6{bottom:292.015625pt;}
.ya6{bottom:293.036435pt;}
.y17{bottom:293.229133pt;}
.y7f{bottom:297.838484pt;}
.y3e{bottom:300.354148pt;}
.y56{bottom:304.369787pt;}
.yc5{bottom:307.979159pt;}
.ya5{bottom:309.838523pt;}
.y16{bottom:310.026013pt;}
.y7e{bottom:314.635364pt;}
.y3d{bottom:317.156236pt;}
.yc4{bottom:323.937494pt;}
.ya4{bottom:326.635403pt;}
.y15{bottom:326.828101pt;}
.y7d{bottom:331.437452pt;}
.y3c{bottom:333.958324pt;}
.yc3{bottom:339.895829pt;}
.ya3{bottom:343.437491pt;}
.y14{bottom:343.624981pt;}
.y64{bottom:343.697919pt;}
.y7c{bottom:348.234332pt;}
.y3b{bottom:350.755204pt;}
.yc2{bottom:355.859375pt;}
.ya2{bottom:360.234371pt;}
.y13{bottom:360.427069pt;}
.y65{bottom:361.630208pt;}
.y63{bottom:362.630208pt;}
.y7b{bottom:365.036420pt;}
.y3a{bottom:367.557268pt;}
.yc1{bottom:371.817708pt;}
.ya1{bottom:377.036459pt;}
.y12{bottom:377.229157pt;}
.y7a{bottom:381.838508pt;}
.y39{bottom:384.354148pt;}
.yc0{bottom:387.776039pt;}
.y11{bottom:394.026037pt;}
.y79{bottom:398.635388pt;}
.y38{bottom:401.156236pt;}
.ybf{bottom:403.739584pt;}
.ya0{bottom:404.286459pt;}
.y10{bottom:410.828125pt;}
.y78{bottom:415.437476pt;}
.y37{bottom:417.958324pt;}
.ybe{bottom:419.697917pt;}
.y77{bottom:432.234356pt;}
.y36{bottom:434.755204pt;}
.ybd{bottom:435.656247pt;}
.yf{bottom:438.078125pt;}
.y76{bottom:449.036444pt;}
.y35{bottom:451.557292pt;}
.ybc{bottom:451.619792pt;}
.y9f{bottom:453.713451pt;}
.y75{bottom:465.838532pt;}
.ybb{bottom:467.578120pt;}
.y34{bottom:468.354157pt;}
.y9e{bottom:470.515539pt;}
.y74{bottom:482.635412pt;}
.yba{bottom:483.536455pt;}
.y33{bottom:485.156245pt;}
.y9d{bottom:487.317627pt;}
.y73{bottom:499.437480pt;}
.ye{bottom:499.500000pt;}
.y9c{bottom:504.114507pt;}
.y32{bottom:513.958328pt;}
.yd{bottom:514.432288pt;}
.y9b{bottom:520.916595pt;}
.y72{bottom:528.234360pt;}
.yc{bottom:529.364578pt;}
.y31{bottom:530.755208pt;}
.yb9{bottom:532.838541pt;}
.y9a{bottom:537.713475pt;}
.y71{bottom:545.036448pt;}
.y30{bottom:547.557263pt;}
.yb{bottom:548.296874pt;}
.y4b{bottom:552.057292pt;}
.y99{bottom:554.515563pt;}
.y70{bottom:561.838536pt;}
.y2f{bottom:564.354143pt;}
.y3{bottom:570.229167pt;}
.ya{bottom:571.229167pt;}
.y98{bottom:571.317651pt;}
.yb8{bottom:580.572917pt;}
.y2e{bottom:581.156231pt;}
.y97{bottom:588.114531pt;}
.y6f{bottom:590.635397pt;}
.y2d{bottom:597.958319pt;}
.y96{bottom:604.916619pt;}
.yb7{bottom:606.125000pt;}
.y6e{bottom:607.437485pt;}
.yd3{bottom:607.641333pt;}
.y2c{bottom:614.755199pt;}
.y9{bottom:615.901041pt;}
.y95{bottom:621.713499pt;}
.y6d{bottom:624.234365pt;}
.y2b{bottom:631.557287pt;}
.y8{bottom:634.531251pt;}
.y94{bottom:638.515587pt;}
.y21{bottom:638.531251pt;}
.y55{bottom:641.036453pt;}
.y2a{bottom:648.354167pt;}
.y93{bottom:655.317675pt;}
.yb6{bottom:655.557287pt;}
.y54{bottom:657.838541pt;}
.y92{bottom:672.114555pt;}
.y7{bottom:672.140627pt;}
.yb5{bottom:672.354167pt;}
.y29{bottom:675.604167pt;}
.y53{bottom:685.083333pt;}
.y91{bottom:688.916643pt;}
.yb4{bottom:699.604167pt;}
.y6{bottom:705.520828pt;}
.y90{bottom:705.713523pt;}
.yb0{bottom:713.410749pt;}
.y8f{bottom:722.515611pt;}
.y28{bottom:725.036459pt;}
.y52{bottom:734.515601pt;}
.y6c{bottom:734.515605pt;}
.y67{bottom:738.515625pt;}
.y5{bottom:738.906251pt;}
.y8e{bottom:739.317699pt;}
.y4e{bottom:743.983625pt;}
.yb3{bottom:749.036448pt;}
.y51{bottom:751.317689pt;}
.y6b{bottom:751.317693pt;}
.y27{bottom:752.286459pt;}
.y8d{bottom:756.114579pt;}
.yb2{bottom:765.838536pt;}
.y50{bottom:768.114569pt;}
.y6a{bottom:768.114573pt;}
.y8c{bottom:772.916657pt;}
.yb1{bottom:782.635416pt;}
.y4f{bottom:784.916657pt;}
.y69{bottom:784.916661pt;}
.y4{bottom:799.447917pt;}
.y26{bottom:801.713537pt;}
.y68{bottom:801.713541pt;}
.y25{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y4c{bottom:866.427084pt;}
.h7{height:23.328125pt;}
.h5{height:24.495670pt;}
.h8{height:24.932359pt;}
.hc{height:26.244141pt;}
.h1{height:27.215197pt;}
.h10{height:28.438367pt;}
.h4{height:31.105115pt;}
.hd{height:31.659632pt;}
.h16{height:33.243717pt;}
.h17{height:33.243764pt;}
.h2{height:34.992188pt;}
.h12{height:34.992262pt;}
.h13{height:34.992268pt;}
.ha{height:34.992283pt;}
.hb{height:34.992300pt;}
.h9{height:34.992305pt;}
.hf{height:34.992380pt;}
.h14{height:34.992476pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h18{height:223.437333pt;}
.h15{height:734.604000pt;}
.h11{height:751.078667pt;}
.he{height:756.546667pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.xf{left:10.297416pt;}
.x10{left:40.000541pt;}
.x4{left:69.921875pt;}
.xa{left:73.921879pt;}
.xb{left:76.921875pt;}
.xd{left:79.921879pt;}
.x6{left:83.921875pt;}
.x5{left:84.921875pt;}
.xe{left:109.921874pt;}
.xc{left:122.921875pt;}
.x7{left:173.921875pt;}
.x8{left:177.484375pt;}
.x1{left:206.906251pt;}
.x3{left:270.812500pt;}
.x2{left:460.921875pt;}
.x9{left:482.704101pt;}
}




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