
    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_910e4c90a7d9e26e4f7ee5b1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_8aa2894418f395e8ccf3afa5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.135000;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_2c7e3f20fb4cfd5d0ee3dda7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.992000;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_4a9b0a7dde37b7a88b4b47d3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_2f81928501b921382ea44684.woff')format("woff");}.ff5{font-family:ff5;line-height:0.987000;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_609b3d4c1f966e1f75bd6067.woff')format("woff");}.ff6{font-family:ff6;line-height:0.987000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7c7e4804566e57e48046a352.woff')format("woff");}.ff8{font-family:ff8;line-height:0.997000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.224160px;}
.v2{vertical-align:10.263456px;}
.v3{vertical-align:35.368703px;}
.v4{vertical-align:49.499998px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-124.671461px;}
.ws0{word-spacing:-27.980819px;}
.ws3{word-spacing:-16.595999px;}
.ws1{word-spacing:-16.450784px;}
.ws2{word-spacing:-15.263999px;}
.ws5{word-spacing:-12.446999px;}
.ws6{word-spacing:-12.446992px;}
.ws7{word-spacing:-11.374542px;}
.ws8{word-spacing:0.000000px;}
._e{margin-left:-14.145487px;}
._d{margin-left:-12.428940px;}
._4{margin-left:-6.206659px;}
._8{margin-left:-4.860658px;}
._3{margin-left:-3.720339px;}
._0{margin-left:-2.446857px;}
._1{margin-left:-1.150191px;}
._2{width:1.046821px;}
._6{width:27.591252px;}
._7{width:232.816905px;}
._c{width:338.048937px;}
._a{width:374.954779px;}
._9{width:606.786485px;}
._5{width:716.229629px;}
._b{width:787.508610px;}
.fc4{color:transparent;}
.fc3{color:rgb(26,77,125);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(1,1,1);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:35.915397px;}
.fs14{font-size:36.790197px;}
.fsd{font-size:49.347256px;}
.fs15{font-size:53.999961px;}
.fsc{font-size:53.999965px;}
.fs7{font-size:53.999998px;}
.fs6{font-size:59.984997px;}
.fs8{font-size:69.322118px;}
.fs16{font-size:71.190328px;}
.fs1{font-size:71.369996px;}
.fsa{font-size:71.549995px;}
.fs3{font-size:71.999997px;}
.fsb{font-size:77.984997px;}
.fs13{font-size:79.957361px;}
.fs2{font-size:101.969996px;}
.fs18{font-size:119.969995px;}
.fs0{font-size:131.984995px;}
.fs12{font-size:140.576813px;}
.fs9{font-size:155.519998px;}
.fs5{font-size:155.969994px;}
.fsf{font-size:161.706762px;}
.fs10{font-size:169.775648px;}
.fse{font-size:171.794668px;}
.fs11{font-size:182.196523px;}
.fs4{font-size:197.577592px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000008px;}
.y5e{bottom:2.338005px;}
.y67{bottom:2.527735px;}
.y4a{bottom:3.143690px;}
.y4d{bottom:3.417207px;}
.y47{bottom:3.519522px;}
.y51{bottom:3.545362px;}
.y64{bottom:3.627479px;}
.y31{bottom:4.430661px;}
.y5b{bottom:8.158966px;}
.y55{bottom:9.375030px;}
.y53{bottom:9.781195px;}
.y57{bottom:9.900871px;}
.y59{bottom:10.266822px;}
.y22{bottom:11.594793px;}
.y11{bottom:13.875011px;}
.ye{bottom:15.749999px;}
.y73{bottom:15.977987px;}
.y66{bottom:17.307734px;}
.y5d{bottom:18.433716px;}
.y16{bottom:19.124999px;}
.y49{bottom:19.916667px;}
.y4c{bottom:21.417195px;}
.y46{bottom:21.519510px;}
.y50{bottom:21.545350px;}
.y63{bottom:21.627466px;}
.y1c{bottom:28.124999px;}
.y13{bottom:31.499999px;}
.y72{bottom:36.227986px;}
.y45{bottom:39.519499px;}
.y4f{bottom:39.545339px;}
.y62{bottom:39.627453px;}
.yb{bottom:40.499998px;}
.y10{bottom:40.875010px;}
.y18{bottom:41.624998px;}
.y15{bottom:43.874998px;}
.y1b{bottom:53.999998px;}
.y71{bottom:56.477986px;}
.y61{bottom:57.627441px;}
.ya{bottom:65.249997px;}
.y19{bottom:66.374997px;}
.y60{bottom:75.627428px;}
.y70{bottom:76.727985px;}
.y9{bottom:89.999996px;}
.y28{bottom:103.128044px;}
.y8{bottom:114.749995px;}
.y27{bottom:121.128043px;}
.y26{bottom:139.128042px;}
.y7{bottom:139.499994px;}
.y25{bottom:160.479497px;}
.y6{bottom:164.249993px;}
.y5{bottom:188.999992px;}
.y6e{bottom:205.192251px;}
.y4{bottom:213.749991px;}
.y6d{bottom:223.192251px;}
.yd{bottom:238.499990px;}
.y6c{bottom:241.192250px;}
.y6f{bottom:262.717189px;}
.y2f{bottom:302.737127px;}
.y2e{bottom:324.112126px;}
.y2d{bottom:345.487126px;}
.y2c{bottom:366.862125px;}
.y2b{bottom:388.237124px;}
.y2a{bottom:409.612123px;}
.y29{bottom:430.987122px;}
.y2{bottom:456.082361px;}
.y44{bottom:520.379986px;}
.y4e{bottom:521.459986px;}
.y5f{bottom:528.659986px;}
.y4b{bottom:540.179985px;}
.y48{bottom:542.339985px;}
.y58{bottom:577.979984px;}
.y52{bottom:579.779984px;}
.y56{bottom:580.139984px;}
.y54{bottom:583.019983px;}
.y5a{bottom:585.539983px;}
.y5c{bottom:638.099981px;}
.y65{bottom:641.339981px;}
.y20{bottom:694.543155px;}
.y1f{bottom:787.918151px;}
.y1e{bottom:881.293147px;}
.y1d{bottom:974.668143px;}
.y1a{bottom:1068.043139px;}
.y17{bottom:1161.418135px;}
.y14{bottom:1254.793131px;}
.y12{bottom:1329.043128px;}
.yf{bottom:1419.558537px;}
.y41{bottom:1520.985537px;}
.y40{bottom:1536.735536px;}
.y3f{bottom:1586.326326px;}
.y3e{bottom:1598.701325px;}
.y3d{bottom:1662.917115px;}
.y3c{bottom:1716.849936px;}
.y3b{bottom:1741.599935px;}
.y3a{bottom:1793.282901px;}
.y39{bottom:1849.781623px;}
.y38{bottom:1874.531622px;}
.y37{bottom:1927.658404px;}
.y43{bottom:1996.055341px;}
.y42{bottom:2023.055340px;}
.yc{bottom:2082.778513px;}
.y3{bottom:2107.528512px;}
.y34{bottom:2365.702065px;}
.y36{bottom:2396.304239px;}
.y33{bottom:2397.202064px;}
.y35{bottom:2427.804237px;}
.y32{bottom:2451.202062px;}
.y30{bottom:2502.179903px;}
.y6b{bottom:2527.169046px;}
.y6a{bottom:2551.919045px;}
.y69{bottom:2576.669044px;}
.y68{bottom:2601.419043px;}
.y21{bottom:2663.099897px;}
.y24{bottom:2666.549882px;}
.y23{bottom:2720.549879px;}
.h12{height:20.879999px;}
.h34{height:29.666118px;}
.h2e{height:30.388703px;}
.h1f{height:31.679999px;}
.h21{height:33.839999px;}
.h32{height:34.199999px;}
.h2c{height:37.799998px;}
.h20{height:40.760833px;}
.h2a{height:41.399998px;}
.h1e{height:44.603971px;}
.h24{height:47.519998px;}
.h10{height:49.547608px;}
.h26{height:50.039998px;}
.h31{height:50.165964px;}
.h11{height:50.165998px;}
.h22{height:50.399998px;}
.h30{height:51.299963px;}
.h1d{height:52.199998px;}
.h28{height:53.279998px;}
.h36{height:55.726062px;}
.hd{height:58.679998px;}
.h33{height:58.803211px;}
.h9{height:59.471998px;}
.h13{height:64.400247px;}
.h14{height:65.856012px;}
.h2d{height:66.044780px;}
.h5{height:66.302726px;}
.h16{height:66.469946px;}
.hb{height:66.887997px;}
.h17{height:70.112157px;}
.h1a{height:70.756125px;}
.h7{height:73.124997px;}
.ha{height:74.249997px;}
.h18{height:77.151453px;}
.h8{height:84.227216px;}
.h2f{height:88.199996px;}
.hc{height:93.374996px;}
.h35{height:99.095216px;}
.h19{height:102.256700px;}
.h1c{height:102.887996px;}
.h3{height:109.019605px;}
.h1b{height:116.387995px;}
.h15{height:128.459518px;}
.hf{height:128.831215px;}
.h2b{height:133.547972px;}
.h25{height:153.621424px;}
.h27{height:161.286865px;}
.he{height:163.199091px;}
.h23{height:163.204935px;}
.h29{height:173.086697px;}
.h4{height:240.749990px;}
.h6{height:265.499989px;}
.h2{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w10{width:37.079998px;}
.wd{width:42.839998px;}
.we{width:44.999998px;}
.wc{width:45.359998px;}
.wf{width:48.239998px;}
.w9{width:69.839997px;}
.wa{width:84.599996px;}
.wb{width:85.679996px;}
.w11{width:100.439996px;}
.w8{width:113.759995px;}
.w6{width:159.839993px;}
.w14{width:192.239992px;}
.w13{width:248.039990px;}
.w7{width:272.159989px;}
.w12{width:287.639988px;}
.w5{width:313.435535px;}
.w4{width:323.999987px;}
.w2{width:413.999983px;}
.w3{width:466.874981px;}
.w1{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.xf{left:1.214224px;}
.x1e{left:3.217041px;}
.x8{left:9.000000px;}
.x2b{left:13.827119px;}
.x1c{left:15.722534px;}
.x21{left:17.382288px;}
.x2e{left:27.030555px;}
.x7{left:28.544083px;}
.x1{left:29.836314px;}
.x3{left:37.775389px;}
.x17{left:40.374916px;}
.x16{left:42.226011px;}
.x2{left:44.197700px;}
.x1b{left:46.439998px;}
.x5{left:52.628904px;}
.x6{left:54.316404px;}
.xb{left:65.159997px;}
.x22{left:86.759996px;}
.x14{left:103.715114px;}
.x29{left:105.054938px;}
.x10{left:142.955615px;}
.x1a{left:145.140537px;}
.x28{left:158.399993px;}
.x11{left:160.286145px;}
.x1d{left:181.799992px;}
.x15{left:184.662376px;}
.x23{left:192.599992px;}
.x1f{left:279.359988px;}
.x24{left:294.839988px;}
.x2d{left:308.937623px;}
.x9{left:341.981395px;}
.xc{left:348.287505px;}
.xd{left:377.537504px;}
.x20{left:386.999984px;}
.x18{left:394.168869px;}
.x19{left:397.034062px;}
.x25{left:403.919983px;}
.x4{left:483.570333px;}
.x27{left:498.599979px;}
.x12{left:504.619695px;}
.x26{left:527.039978px;}
.x13{left:651.590392px;}
.xa{left:655.418745px;}
.x2a{left:687.599971px;}
.xe{left:694.439971px;}
.x2c{left:713.159970px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.865920pt;}
.v2{vertical-align:9.123072pt;}
.v3{vertical-align:31.438847pt;}
.v4{vertical-align:43.999998pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-110.819076pt;}
.ws0{word-spacing:-24.871839pt;}
.ws3{word-spacing:-14.751999pt;}
.ws1{word-spacing:-14.622919pt;}
.ws2{word-spacing:-13.567999pt;}
.ws5{word-spacing:-11.064000pt;}
.ws6{word-spacing:-11.063993pt;}
.ws7{word-spacing:-10.110704pt;}
.ws8{word-spacing:0.000000pt;}
._e{margin-left:-12.573766pt;}
._d{margin-left:-11.047947pt;}
._4{margin-left:-5.517030pt;}
._8{margin-left:-4.320585pt;}
._3{margin-left:-3.306968pt;}
._0{margin-left:-2.174984pt;}
._1{margin-left:-1.022392pt;}
._2{width:0.930507pt;}
._6{width:24.525557pt;}
._7{width:206.948360pt;}
._c{width:300.487944pt;}
._a{width:333.293137pt;}
._9{width:539.365765pt;}
._5{width:636.648559pt;}
._b{width:700.007653pt;}
.fs17{font-size:31.924798pt;}
.fs14{font-size:32.702397pt;}
.fsd{font-size:43.864227pt;}
.fs15{font-size:47.999966pt;}
.fsc{font-size:47.999969pt;}
.fs7{font-size:47.999998pt;}
.fs6{font-size:53.319997pt;}
.fs8{font-size:61.619660pt;}
.fs16{font-size:63.280292pt;}
.fs1{font-size:63.439996pt;}
.fsa{font-size:63.599996pt;}
.fs3{font-size:63.999997pt;}
.fsb{font-size:69.319997pt;}
.fs13{font-size:71.073210pt;}
.fs2{font-size:90.639996pt;}
.fs18{font-size:106.639996pt;}
.fs0{font-size:117.319995pt;}
.fs12{font-size:124.957167pt;}
.fs9{font-size:138.239998pt;}
.fs5{font-size:138.639994pt;}
.fsf{font-size:143.739344pt;}
.fs10{font-size:150.911687pt;}
.fse{font-size:152.706372pt;}
.fs11{font-size:161.952465pt;}
.fs4{font-size:175.624526pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000007pt;}
.y5e{bottom:2.078226pt;}
.y67{bottom:2.246876pt;}
.y4a{bottom:2.794391pt;}
.y4d{bottom:3.037517pt;}
.y47{bottom:3.128464pt;}
.y51{bottom:3.151433pt;}
.y64{bottom:3.224426pt;}
.y31{bottom:3.938365pt;}
.y5b{bottom:7.252415pt;}
.y55{bottom:8.333360pt;}
.y53{bottom:8.694395pt;}
.y57{bottom:8.800774pt;}
.y59{bottom:9.126064pt;}
.y22{bottom:10.306483pt;}
.y11{bottom:12.333343pt;}
.ye{bottom:13.999999pt;}
.y73{bottom:14.202655pt;}
.y66{bottom:15.384653pt;}
.y5d{bottom:16.385525pt;}
.y16{bottom:16.999999pt;}
.y49{bottom:17.703704pt;}
.y4c{bottom:19.037507pt;}
.y46{bottom:19.128454pt;}
.y50{bottom:19.151422pt;}
.y63{bottom:19.224415pt;}
.y1c{bottom:24.999999pt;}
.y13{bottom:27.999999pt;}
.y72{bottom:32.202655pt;}
.y45{bottom:35.128443pt;}
.y4f{bottom:35.151412pt;}
.y62{bottom:35.224403pt;}
.yb{bottom:35.999998pt;}
.y10{bottom:36.333342pt;}
.y18{bottom:36.999998pt;}
.y15{bottom:38.999998pt;}
.y1b{bottom:47.999998pt;}
.y71{bottom:50.202654pt;}
.y61{bottom:51.224392pt;}
.ya{bottom:57.999998pt;}
.y19{bottom:58.999998pt;}
.y60{bottom:67.224380pt;}
.y70{bottom:68.202653pt;}
.y9{bottom:79.999997pt;}
.y28{bottom:91.669372pt;}
.y8{bottom:101.999996pt;}
.y27{bottom:107.669372pt;}
.y26{bottom:123.669371pt;}
.y7{bottom:123.999995pt;}
.y25{bottom:142.648442pt;}
.y6{bottom:145.999994pt;}
.y5{bottom:167.999993pt;}
.y6e{bottom:182.393112pt;}
.y4{bottom:189.999992pt;}
.y6d{bottom:198.393112pt;}
.yd{bottom:211.999991pt;}
.y6c{bottom:214.393111pt;}
.y6f{bottom:233.526390pt;}
.y2f{bottom:269.099669pt;}
.y2e{bottom:288.099668pt;}
.y2d{bottom:307.099667pt;}
.y2c{bottom:326.099666pt;}
.y2b{bottom:345.099666pt;}
.y2a{bottom:364.099665pt;}
.y29{bottom:383.099664pt;}
.y2{bottom:405.406543pt;}
.y44{bottom:462.559988pt;}
.y4e{bottom:463.519988pt;}
.y5f{bottom:469.919987pt;}
.y4b{bottom:480.159987pt;}
.y48{bottom:482.079987pt;}
.y58{bottom:513.759985pt;}
.y52{bottom:515.359985pt;}
.y56{bottom:515.679985pt;}
.y54{bottom:518.239985pt;}
.y5a{bottom:520.479985pt;}
.y5c{bottom:567.199983pt;}
.y65{bottom:570.079983pt;}
.y20{bottom:617.371693pt;}
.y1f{bottom:700.371690pt;}
.y1e{bottom:783.371686pt;}
.y1d{bottom:866.371683pt;}
.y1a{bottom:949.371679pt;}
.y17{bottom:1032.371676pt;}
.y14{bottom:1115.371672pt;}
.y12{bottom:1181.371670pt;}
.yf{bottom:1261.829810pt;}
.y41{bottom:1351.987144pt;}
.y40{bottom:1365.987143pt;}
.y3f{bottom:1410.067845pt;}
.y3e{bottom:1421.067845pt;}
.y3d{bottom:1478.148546pt;}
.y3c{bottom:1526.088832pt;}
.y3b{bottom:1548.088831pt;}
.y3a{bottom:1594.029246pt;}
.y39{bottom:1644.250331pt;}
.y38{bottom:1666.250331pt;}
.y37{bottom:1713.474137pt;}
.y43{bottom:1774.271414pt;}
.y42{bottom:1798.271413pt;}
.yc{bottom:1851.358678pt;}
.y3{bottom:1873.358678pt;}
.y34{bottom:2102.846280pt;}
.y36{bottom:2130.048212pt;}
.y33{bottom:2130.846279pt;}
.y35{bottom:2158.048211pt;}
.y32{bottom:2178.846277pt;}
.y30{bottom:2224.159914pt;}
.y6b{bottom:2246.372486pt;}
.y6a{bottom:2268.372485pt;}
.y69{bottom:2290.372484pt;}
.y68{bottom:2312.372483pt;}
.y21{bottom:2367.199908pt;}
.y24{bottom:2370.266561pt;}
.y23{bottom:2418.266559pt;}
.h12{height:18.559999pt;}
.h34{height:26.369883pt;}
.h2e{height:27.012180pt;}
.h1f{height:28.159999pt;}
.h21{height:30.079999pt;}
.h32{height:30.399999pt;}
.h2c{height:33.599999pt;}
.h20{height:36.231852pt;}
.h2a{height:36.799998pt;}
.h1e{height:39.647974pt;}
.h24{height:42.239998pt;}
.h10{height:44.042318pt;}
.h26{height:44.479998pt;}
.h31{height:44.591968pt;}
.h11{height:44.591998pt;}
.h22{height:44.799998pt;}
.h30{height:45.599967pt;}
.h1d{height:46.399998pt;}
.h28{height:47.359998pt;}
.h36{height:49.534278pt;}
.hd{height:52.159998pt;}
.h33{height:52.269521pt;}
.h9{height:52.863998pt;}
.h13{height:57.244664pt;}
.h14{height:58.538677pt;}
.h2d{height:58.706471pt;}
.h5{height:58.935756pt;}
.h16{height:59.084396pt;}
.hb{height:59.455998pt;}
.h17{height:62.321917pt;}
.h1a{height:62.894333pt;}
.h7{height:64.999997pt;}
.ha{height:65.999997pt;}
.h18{height:68.579069pt;}
.h8{height:74.868637pt;}
.h2f{height:78.399997pt;}
.hc{height:82.999997pt;}
.h35{height:88.084636pt;}
.h19{height:90.894844pt;}
.h1c{height:91.455996pt;}
.h3{height:96.906316pt;}
.h1b{height:103.455996pt;}
.h15{height:114.186239pt;}
.hf{height:114.516635pt;}
.h2b{height:118.709309pt;}
.h25{height:136.552376pt;}
.h27{height:143.366103pt;}
.he{height:145.065859pt;}
.h23{height:145.071053pt;}
.h29{height:153.854842pt;}
.h4{height:213.999991pt;}
.h6{height:235.999990pt;}
.h2{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w10{width:32.959999pt;}
.wd{width:38.079998pt;}
.we{width:39.999998pt;}
.wc{width:40.319998pt;}
.wf{width:42.879998pt;}
.w9{width:62.079997pt;}
.wa{width:75.199997pt;}
.wb{width:76.159997pt;}
.w11{width:89.279996pt;}
.w8{width:101.119996pt;}
.w6{width:142.079994pt;}
.w14{width:170.879993pt;}
.w13{width:220.479991pt;}
.w7{width:241.919990pt;}
.w12{width:255.679989pt;}
.w5{width:278.609364pt;}
.w4{width:287.999988pt;}
.w2{width:367.999985pt;}
.w3{width:414.999983pt;}
.w1{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.xf{left:1.079311pt;}
.x1e{left:2.859592pt;}
.x8{left:8.000000pt;}
.x2b{left:12.290773pt;}
.x1c{left:13.975585pt;}
.x21{left:15.450923pt;}
.x2e{left:24.027160pt;}
.x7{left:25.372519pt;}
.x1{left:26.521168pt;}
.x3{left:33.578124pt;}
.x17{left:35.888815pt;}
.x16{left:37.534232pt;}
.x2{left:39.286844pt;}
.x1b{left:41.279998pt;}
.x5{left:46.781248pt;}
.x6{left:48.281248pt;}
.xb{left:57.919998pt;}
.x22{left:77.119997pt;}
.x14{left:92.191212pt;}
.x29{left:93.382168pt;}
.x10{left:127.071658pt;}
.x1a{left:129.013811pt;}
.x28{left:140.799994pt;}
.x11{left:142.476573pt;}
.x1d{left:161.599993pt;}
.x15{left:164.144334pt;}
.x23{left:171.199993pt;}
.x1f{left:248.319990pt;}
.x24{left:262.079989pt;}
.x2d{left:274.611221pt;}
.x9{left:303.983463pt;}
.xc{left:309.588893pt;}
.xd{left:335.588892pt;}
.x20{left:343.999986pt;}
.x18{left:350.372328pt;}
.x19{left:352.919166pt;}
.x25{left:359.039985pt;}
.x4{left:429.840296pt;}
.x27{left:443.199982pt;}
.x12{left:448.550840pt;}
.x26{left:468.479980pt;}
.x13{left:579.191460pt;}
.xa{left:582.594440pt;}
.x2a{left:611.199975pt;}
.xe{left:617.279974pt;}
.x2c{left:633.919974pt;}
}




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