
    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_a1688b469a8c7801ec075efd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_a37ffc6327cb60a84ce06db9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_6e16ed2e0f2391ef5385f774.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_bf5381c1a7c75c312fe2d6b3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_f761d95fcc4a05fdf91aa12b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_9ba16e8c5699c0c3f3b4d017.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_dbef3e4858ed46a897383c33.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_cd5321a10a5e5eb1dbec3b9b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_59ba53930dd0c913e4c97287.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_75fa11f2dca7e9d245f0fa74.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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;}
.ls9{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.155400px;}
.ls19{letter-spacing:-0.129600px;}
.lsa{letter-spacing:-0.034560px;}
.ls10{letter-spacing:-0.025920px;}
.ls8{letter-spacing:-0.017280px;}
.ls7{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.025920px;}
.ls4{letter-spacing:0.034560px;}
.ls13{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.175800px;}
.ls12{letter-spacing:0.205920px;}
.lse{letter-spacing:0.702000px;}
.ls3{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.745920px;}
.lsc{letter-spacing:0.756000px;}
.lsb{letter-spacing:1.465920px;}
.ls14{letter-spacing:10.080000px;}
.lsd{letter-spacing:11.520000px;}
.ls15{letter-spacing:15.120000px;}
.lsf{letter-spacing:23.040000px;}
.ls16{letter-spacing:23.742720px;}
.ls11{letter-spacing:24.480000px;}
.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;}
}
.ws0{word-spacing:-21.617280px;}
.ws6{word-spacing:-19.474560px;}
.ws5{word-spacing:-19.465920px;}
.ws3{word-spacing:-19.457280px;}
.ws4{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.440000px;}
.ws8{word-spacing:-19.431360px;}
.ws7{word-spacing:-19.422720px;}
.ws9{word-spacing:-19.405440px;}
.wsb{word-spacing:-17.749560px;}
.wsd{word-spacing:-17.573760px;}
.wsc{word-spacing:-17.444160px;}
.ws1{word-spacing:-0.077760px;}
.wsa{word-spacing:0.000000px;}
._1c{margin-left:-2.111040px;}
._1{margin-left:-1.010880px;}
._0{width:1.244160px;}
._2{width:2.633280px;}
._13{width:4.053120px;}
._17{width:5.754240px;}
._a{width:7.231680px;}
._b{width:8.553600px;}
._1f{width:10.042560px;}
._2c{width:11.116800px;}
._6{width:12.130560px;}
._1d{width:13.452480px;}
._5{width:14.618880px;}
._4{width:15.707520px;}
._f{width:17.107200px;}
._e{width:18.195840px;}
._32{width:20.119440px;}
._10{width:21.132480px;}
._1e{width:22.440960px;}
._19{width:23.579520px;}
._1a{width:24.925440px;}
._11{width:25.953600px;}
._12{width:27.234240px;}
._1b{width:28.552800px;}
._20{width:29.644800px;}
._21{width:31.237920px;}
._15{width:32.659200px;}
._16{width:33.747840px;}
._7{width:35.069760px;}
._24{width:36.702720px;}
._3{width:37.713600px;}
._18{width:38.970240px;}
._14{width:40.279680px;}
._31{width:41.892240px;}
._c{width:43.701120px;}
._d{width:45.138240px;}
._26{width:46.811520px;}
._27{width:48.185280px;}
._2a{width:49.610880px;}
._23{width:51.249600px;}
._2e{width:56.154240px;}
._2d{width:57.464640px;}
._28{width:59.886720px;}
._29{width:60.945600px;}
._2b{width:63.996480px;}
._9{width:66.173760px;}
._22{width:69.761280px;}
._25{width:71.305920px;}
._8{width:76.982400px;}
._30{width:80.559360px;}
._2f{width:81.659520px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:7.560000px;}
.y5e{bottom:8.085000px;}
.y30{bottom:8.100000px;}
.y5a{bottom:8.280000px;}
.y67{bottom:20.520000px;}
.y5f{bottom:20.865000px;}
.y5b{bottom:21.060000px;}
.y62{bottom:33.300000px;}
.y19{bottom:33.480000px;}
.y5d{bottom:33.825000px;}
.y2f{bottom:33.840000px;}
.y59{bottom:34.020000px;}
.y2a{bottom:34.200000px;}
.y26{bottom:46.980000px;}
.y29{bottom:56.700000px;}
.yd{bottom:58.140000px;}
.y2e{bottom:59.580000px;}
.y25{bottom:72.720000px;}
.y28{bottom:79.020000px;}
.yc{bottom:82.296000px;}
.y2d{bottom:85.500000px;}
.y24{bottom:98.460000px;}
.yb{bottom:106.416000px;}
.y2c{bottom:111.240000px;}
.y23{bottom:124.230000px;}
.ya{bottom:130.536000px;}
.y22{bottom:150.150000px;}
.y9{bottom:154.470000px;}
.y21{bottom:175.890000px;}
.y8{bottom:176.250000px;}
.y7{bottom:198.750000px;}
.y20{bottom:201.630000px;}
.y6{bottom:221.250000px;}
.y1f{bottom:227.370000px;}
.y60{bottom:248.445000px;}
.y39{bottom:252.030000px;}
.y56{bottom:252.930000px;}
.y1e{bottom:253.290000px;}
.y82{bottom:260.310000px;}
.y38{bottom:277.770000px;}
.y55{bottom:278.670000px;}
.y1d{bottom:279.030000px;}
.y5c{bottom:280.305000px;}
.y81{bottom:287.670000px;}
.y37{bottom:303.510000px;}
.y54{bottom:304.410000px;}
.y80{bottom:315.030000px;}
.y74{bottom:329.295000px;}
.y36{bottom:329.475000px;}
.y53{bottom:330.375000px;}
.y58{bottom:337.755000px;}
.y7f{bottom:342.435000px;}
.y35{bottom:355.215000px;}
.y52{bottom:356.115000px;}
.y7e{bottom:369.795000px;}
.y34{bottom:380.955000px;}
.y51{bottom:381.855000px;}
.y57{bottom:395.355000px;}
.y7d{bottom:397.155000px;}
.y33{bottom:406.695000px;}
.y50{bottom:407.595000px;}
.y7c{bottom:424.695000px;}
.y73{bottom:432.435000px;}
.y32{bottom:432.615000px;}
.y4f{bottom:433.515000px;}
.y7b{bottom:452.055000px;}
.y31{bottom:454.395000px;}
.y72{bottom:458.355000px;}
.y4e{bottom:459.255000px;}
.y1c{bottom:470.955000px;}
.y7a{bottom:479.415000px;}
.y71{bottom:484.095000px;}
.y4d{bottom:484.995000px;}
.y79{bottom:506.775000px;}
.y70{bottom:509.835000px;}
.y4c{bottom:510.735000px;}
.y78{bottom:534.135000px;}
.y6f{bottom:535.755000px;}
.y4b{bottom:536.655000px;}
.y6e{bottom:561.495000px;}
.y4a{bottom:562.395000px;}
.y6d{bottom:587.235000px;}
.y77{bottom:587.595000px;}
.y49{bottom:588.135000px;}
.y2b{bottom:600.585000px;}
.y6c{bottom:613.005000px;}
.y76{bottom:613.365000px;}
.y48{bottom:613.905000px;}
.y6b{bottom:634.785000px;}
.y75{bottom:639.285000px;}
.y47{bottom:639.825000px;}
.y27{bottom:644.325000px;}
.y46{bottom:665.565000px;}
.y45{bottom:691.305000px;}
.y6a{bottom:692.385000px;}
.y44{bottom:717.225000px;}
.y1b{bottom:741.885000px;}
.y43{bottom:742.965000px;}
.y69{bottom:749.985000px;}
.y42{bottom:768.705000px;}
.y18{bottom:777.345000px;}
.y41{bottom:794.445000px;}
.y68{bottom:807.585000px;}
.y40{bottom:820.365000px;}
.y17{bottom:846.105000px;}
.y66{bottom:865.230000px;}
.y16{bottom:871.890000px;}
.y15{bottom:897.090000px;}
.y3f{bottom:897.630000px;}
.y14{bottom:923.550000px;}
.y65{bottom:928.950000px;}
.y88{bottom:940.830000px;}
.y13{bottom:949.290000px;}
.y64{bottom:950.730000px;}
.y87{bottom:967.830000px;}
.y12{bottom:974.490000px;}
.y3e{bottom:975.030000px;}
.y86{bottom:995.190000px;}
.y11{bottom:1000.230000px;}
.y3d{bottom:1000.770000px;}
.y63{bottom:1008.330000px;}
.y85{bottom:1022.550000px;}
.y10{bottom:1026.150000px;}
.y3c{bottom:1026.690000px;}
.y61{bottom:1040.190000px;}
.y84{bottom:1049.910000px;}
.yf{bottom:1051.890000px;}
.y3b{bottom:1052.430000px;}
.y83{bottom:1077.270000px;}
.ye{bottom:1077.630000px;}
.y3a{bottom:1078.170000px;}
.y5{bottom:1100.850000px;}
.y4{bottom:1124.250000px;}
.y3{bottom:1147.140000px;}
.y2{bottom:1170.900000px;}
.y1{bottom:1193.220000px;}
.h15{height:25.725000px;}
.hc{height:34.740000px;}
.hf{height:43.740000px;}
.h16{height:51.465000px;}
.h17{height:51.480000px;}
.h14{height:51.501000px;}
.h12{height:51.645000px;}
.h18{height:51.660000px;}
.h11{height:54.295313px;}
.h13{height:54.864844px;}
.h9{height:56.839219px;}
.hb{height:60.660000px;}
.h2{height:72.562500px;}
.ha{height:76.279219px;}
.h8{height:76.317188px;}
.h19{height:77.342344px;}
.h3{height:78.367500px;}
.h7{height:80.949375px;}
.h5{height:81.101250px;}
.h6{height:82.676953px;}
.h4{height:84.898125px;}
.he{height:96.660000px;}
.h10{height:128.910000px;}
.hd{height:305.670000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:70.020000px;}
.wd{width:70.725000px;}
.wa{width:70.740000px;}
.wc{width:70.776000px;}
.w4{width:92.374500px;}
.w6{width:118.440000px;}
.w5{width:136.821000px;}
.w7{width:180.390000px;}
.w8{width:182.355000px;}
.we{width:194.415000px;}
.w2{width:209.539500px;}
.w9{width:229.753500px;}
.w3{width:432.795000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:1.260000px;}
.x13{left:8.100000px;}
.x21{left:9.180000px;}
.x2b{left:10.438500px;}
.x2f{left:15.120000px;}
.x1c{left:17.854500px;}
.x36{left:18.885000px;}
.x18{left:20.329500px;}
.x16{left:26.983500px;}
.x12{left:29.323500px;}
.x31{left:31.140000px;}
.x27{left:32.205000px;}
.x1e{left:33.285000px;}
.x14{left:34.723500px;}
.x20{left:37.620000px;}
.x15{left:38.863500px;}
.x26{left:41.250000px;}
.x39{left:44.100000px;}
.xf{left:47.683500px;}
.x17{left:51.823500px;}
.x23{left:54.390000px;}
.x2c{left:57.405000px;}
.x37{left:60.694500px;}
.x28{left:63.000000px;}
.x38{left:64.474500px;}
.xe{left:70.363500px;}
.x35{left:72.930000px;}
.x1b{left:83.881500px;}
.x1{left:84.960000px;}
.x29{left:98.670000px;}
.x2a{left:99.750000px;}
.x2{left:103.356000px;}
.x1a{left:111.996000px;}
.x19{left:118.836000px;}
.xd{left:125.326500px;}
.x5{left:126.936000px;}
.x2d{left:129.276000px;}
.x11{left:151.770000px;}
.x1d{left:180.045000px;}
.x4{left:190.290000px;}
.xb{left:210.810000px;}
.x8{left:310.215000px;}
.xa{left:315.435000px;}
.x2e{left:317.415000px;}
.x1f{left:320.475000px;}
.x10{left:334.875000px;}
.x6{left:372.855000px;}
.x30{left:391.935000px;}
.x9{left:400.395000px;}
.xc{left:409.575000px;}
.x22{left:442.695000px;}
.x7{left:457.095000px;}
.x3a{left:459.975000px;}
.x32{left:465.735000px;}
.x33{left:540.300000px;}
.x34{left:614.820000px;}
.x25{left:626.880000px;}
.x3{left:778.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.138133pt;}
.ls19{letter-spacing:-0.115200pt;}
.lsa{letter-spacing:-0.030720pt;}
.ls10{letter-spacing:-0.023040pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.023040pt;}
.ls4{letter-spacing:0.030720pt;}
.ls13{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.156267pt;}
.ls12{letter-spacing:0.183040pt;}
.lse{letter-spacing:0.624000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.663040pt;}
.lsc{letter-spacing:0.672000pt;}
.lsb{letter-spacing:1.303040pt;}
.ls14{letter-spacing:8.960000pt;}
.lsd{letter-spacing:10.240000pt;}
.ls15{letter-spacing:13.440000pt;}
.lsf{letter-spacing:20.480000pt;}
.ls16{letter-spacing:21.104640pt;}
.ls11{letter-spacing:21.760000pt;}
.ws0{word-spacing:-19.215360pt;}
.ws6{word-spacing:-17.310720pt;}
.ws5{word-spacing:-17.303040pt;}
.ws3{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.280000pt;}
.ws8{word-spacing:-17.272320pt;}
.ws7{word-spacing:-17.264640pt;}
.ws9{word-spacing:-17.249280pt;}
.wsb{word-spacing:-15.777387pt;}
.wsd{word-spacing:-15.621120pt;}
.wsc{word-spacing:-15.505920pt;}
.ws1{word-spacing:-0.069120pt;}
.wsa{word-spacing:0.000000pt;}
._1c{margin-left:-1.876480pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.105920pt;}
._2{width:2.340693pt;}
._13{width:3.602773pt;}
._17{width:5.114880pt;}
._a{width:6.428160pt;}
._b{width:7.603200pt;}
._1f{width:8.926720pt;}
._2c{width:9.881600pt;}
._6{width:10.782720pt;}
._1d{width:11.957760pt;}
._5{width:12.994560pt;}
._4{width:13.962240pt;}
._f{width:15.206400pt;}
._e{width:16.174080pt;}
._32{width:17.883947pt;}
._10{width:18.784427pt;}
._1e{width:19.947520pt;}
._19{width:20.959573pt;}
._1a{width:22.155947pt;}
._11{width:23.069867pt;}
._12{width:24.208213pt;}
._1b{width:25.380267pt;}
._20{width:26.350933pt;}
._21{width:27.767040pt;}
._15{width:29.030400pt;}
._16{width:29.998080pt;}
._7{width:31.173120pt;}
._24{width:32.624640pt;}
._3{width:33.523200pt;}
._18{width:34.640213pt;}
._14{width:35.804160pt;}
._31{width:37.237547pt;}
._c{width:38.845440pt;}
._d{width:40.122880pt;}
._26{width:41.610240pt;}
._27{width:42.831360pt;}
._2a{width:44.098560pt;}
._23{width:45.555200pt;}
._2e{width:49.914880pt;}
._2d{width:51.079680pt;}
._28{width:53.232640pt;}
._29{width:54.173867pt;}
._2b{width:56.885760pt;}
._9{width:58.821120pt;}
._22{width:62.010027pt;}
._25{width:63.383040pt;}
._8{width:68.428800pt;}
._30{width:71.608320pt;}
._2f{width:72.586240pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:6.720000pt;}
.y5e{bottom:7.186667pt;}
.y30{bottom:7.200000pt;}
.y5a{bottom:7.360000pt;}
.y67{bottom:18.240000pt;}
.y5f{bottom:18.546667pt;}
.y5b{bottom:18.720000pt;}
.y62{bottom:29.600000pt;}
.y19{bottom:29.760000pt;}
.y5d{bottom:30.066667pt;}
.y2f{bottom:30.080000pt;}
.y59{bottom:30.240000pt;}
.y2a{bottom:30.400000pt;}
.y26{bottom:41.760000pt;}
.y29{bottom:50.400000pt;}
.yd{bottom:51.680000pt;}
.y2e{bottom:52.960000pt;}
.y25{bottom:64.640000pt;}
.y28{bottom:70.240000pt;}
.yc{bottom:73.152000pt;}
.y2d{bottom:76.000000pt;}
.y24{bottom:87.520000pt;}
.yb{bottom:94.592000pt;}
.y2c{bottom:98.880000pt;}
.y23{bottom:110.426667pt;}
.ya{bottom:116.032000pt;}
.y22{bottom:133.466667pt;}
.y9{bottom:137.306667pt;}
.y21{bottom:156.346667pt;}
.y8{bottom:156.666667pt;}
.y7{bottom:176.666667pt;}
.y20{bottom:179.226667pt;}
.y6{bottom:196.666667pt;}
.y1f{bottom:202.106667pt;}
.y60{bottom:220.840000pt;}
.y39{bottom:224.026667pt;}
.y56{bottom:224.826667pt;}
.y1e{bottom:225.146667pt;}
.y82{bottom:231.386667pt;}
.y38{bottom:246.906667pt;}
.y55{bottom:247.706667pt;}
.y1d{bottom:248.026667pt;}
.y5c{bottom:249.160000pt;}
.y81{bottom:255.706667pt;}
.y37{bottom:269.786667pt;}
.y54{bottom:270.586667pt;}
.y80{bottom:280.026667pt;}
.y74{bottom:292.706667pt;}
.y36{bottom:292.866667pt;}
.y53{bottom:293.666667pt;}
.y58{bottom:300.226667pt;}
.y7f{bottom:304.386667pt;}
.y35{bottom:315.746667pt;}
.y52{bottom:316.546667pt;}
.y7e{bottom:328.706667pt;}
.y34{bottom:338.626667pt;}
.y51{bottom:339.426667pt;}
.y57{bottom:351.426667pt;}
.y7d{bottom:353.026667pt;}
.y33{bottom:361.506667pt;}
.y50{bottom:362.306667pt;}
.y7c{bottom:377.506667pt;}
.y73{bottom:384.386667pt;}
.y32{bottom:384.546667pt;}
.y4f{bottom:385.346667pt;}
.y7b{bottom:401.826667pt;}
.y31{bottom:403.906667pt;}
.y72{bottom:407.426667pt;}
.y4e{bottom:408.226667pt;}
.y1c{bottom:418.626667pt;}
.y7a{bottom:426.146667pt;}
.y71{bottom:430.306667pt;}
.y4d{bottom:431.106667pt;}
.y79{bottom:450.466667pt;}
.y70{bottom:453.186667pt;}
.y4c{bottom:453.986667pt;}
.y78{bottom:474.786667pt;}
.y6f{bottom:476.226667pt;}
.y4b{bottom:477.026667pt;}
.y6e{bottom:499.106667pt;}
.y4a{bottom:499.906667pt;}
.y6d{bottom:521.986667pt;}
.y77{bottom:522.306667pt;}
.y49{bottom:522.786667pt;}
.y2b{bottom:533.853333pt;}
.y6c{bottom:544.893333pt;}
.y76{bottom:545.213333pt;}
.y48{bottom:545.693333pt;}
.y6b{bottom:564.253333pt;}
.y75{bottom:568.253333pt;}
.y47{bottom:568.733333pt;}
.y27{bottom:572.733333pt;}
.y46{bottom:591.613333pt;}
.y45{bottom:614.493333pt;}
.y6a{bottom:615.453333pt;}
.y44{bottom:637.533333pt;}
.y1b{bottom:659.453333pt;}
.y43{bottom:660.413333pt;}
.y69{bottom:666.653333pt;}
.y42{bottom:683.293333pt;}
.y18{bottom:690.973333pt;}
.y41{bottom:706.173333pt;}
.y68{bottom:717.853333pt;}
.y40{bottom:729.213333pt;}
.y17{bottom:752.093333pt;}
.y66{bottom:769.093333pt;}
.y16{bottom:775.013333pt;}
.y15{bottom:797.413333pt;}
.y3f{bottom:797.893333pt;}
.y14{bottom:820.933333pt;}
.y65{bottom:825.733333pt;}
.y88{bottom:836.293333pt;}
.y13{bottom:843.813333pt;}
.y64{bottom:845.093333pt;}
.y87{bottom:860.293333pt;}
.y12{bottom:866.213333pt;}
.y3e{bottom:866.693333pt;}
.y86{bottom:884.613333pt;}
.y11{bottom:889.093333pt;}
.y3d{bottom:889.573333pt;}
.y63{bottom:896.293333pt;}
.y85{bottom:908.933333pt;}
.y10{bottom:912.133333pt;}
.y3c{bottom:912.613333pt;}
.y61{bottom:924.613333pt;}
.y84{bottom:933.253333pt;}
.yf{bottom:935.013333pt;}
.y3b{bottom:935.493333pt;}
.y83{bottom:957.573333pt;}
.ye{bottom:957.893333pt;}
.y3a{bottom:958.373333pt;}
.y5{bottom:978.533333pt;}
.y4{bottom:999.333333pt;}
.y3{bottom:1019.680000pt;}
.y2{bottom:1040.800000pt;}
.y1{bottom:1060.640000pt;}
.h15{height:22.866667pt;}
.hc{height:30.880000pt;}
.hf{height:38.880000pt;}
.h16{height:45.746667pt;}
.h17{height:45.760000pt;}
.h14{height:45.778667pt;}
.h12{height:45.906667pt;}
.h18{height:45.920000pt;}
.h11{height:48.262500pt;}
.h13{height:48.768750pt;}
.h9{height:50.523750pt;}
.hb{height:53.920000pt;}
.h2{height:64.500000pt;}
.ha{height:67.803750pt;}
.h8{height:67.837500pt;}
.h19{height:68.748750pt;}
.h3{height:69.660000pt;}
.h7{height:71.955000pt;}
.h5{height:72.090000pt;}
.h6{height:73.490625pt;}
.h4{height:75.465000pt;}
.he{height:85.920000pt;}
.h10{height:114.586667pt;}
.hd{height:271.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:62.240000pt;}
.wd{width:62.866667pt;}
.wa{width:62.880000pt;}
.wc{width:62.912000pt;}
.w4{width:82.110667pt;}
.w6{width:105.280000pt;}
.w5{width:121.618667pt;}
.w7{width:160.346667pt;}
.w8{width:162.093333pt;}
.we{width:172.813333pt;}
.w2{width:186.257333pt;}
.w9{width:204.225333pt;}
.w3{width:384.706667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:1.120000pt;}
.x13{left:7.200000pt;}
.x21{left:8.160000pt;}
.x2b{left:9.278667pt;}
.x2f{left:13.440000pt;}
.x1c{left:15.870667pt;}
.x36{left:16.786667pt;}
.x18{left:18.070667pt;}
.x16{left:23.985333pt;}
.x12{left:26.065333pt;}
.x31{left:27.680000pt;}
.x27{left:28.626667pt;}
.x1e{left:29.586667pt;}
.x14{left:30.865333pt;}
.x20{left:33.440000pt;}
.x15{left:34.545333pt;}
.x26{left:36.666667pt;}
.x39{left:39.200000pt;}
.xf{left:42.385333pt;}
.x17{left:46.065333pt;}
.x23{left:48.346667pt;}
.x2c{left:51.026667pt;}
.x37{left:53.950667pt;}
.x28{left:56.000000pt;}
.x38{left:57.310667pt;}
.xe{left:62.545333pt;}
.x35{left:64.826667pt;}
.x1b{left:74.561333pt;}
.x1{left:75.520000pt;}
.x29{left:87.706667pt;}
.x2a{left:88.666667pt;}
.x2{left:91.872000pt;}
.x1a{left:99.552000pt;}
.x19{left:105.632000pt;}
.xd{left:111.401333pt;}
.x5{left:112.832000pt;}
.x2d{left:114.912000pt;}
.x11{left:134.906667pt;}
.x1d{left:160.040000pt;}
.x4{left:169.146667pt;}
.xb{left:187.386667pt;}
.x8{left:275.746667pt;}
.xa{left:280.386667pt;}
.x2e{left:282.146667pt;}
.x1f{left:284.866667pt;}
.x10{left:297.666667pt;}
.x6{left:331.426667pt;}
.x30{left:348.386667pt;}
.x9{left:355.906667pt;}
.xc{left:364.066667pt;}
.x22{left:393.506667pt;}
.x7{left:406.306667pt;}
.x3a{left:408.866667pt;}
.x32{left:413.986667pt;}
.x33{left:480.266667pt;}
.x34{left:546.506667pt;}
.x25{left:557.226667pt;}
.x3{left:692.133333pt;}
}




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