
    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_01ed3bb46d233ba5535ff40a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984027;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_3504db74f1b4a8a132c726cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.758789;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_51a84416d4c6de6b559f820c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978000;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_88c9a2a517ab1cb702487e26.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978000;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_52e1cb73808d04f6455f5b47.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.036621;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_96c2e0732804505be1d6027a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984027;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_f06dc904f82ffd894203762e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.859000;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_610f7c725aa8a6f05a6b7e4e.woff2')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_5423cb8e83d096da271aa6b0.woff2')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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5a0cb71b12018800b6cc3f6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978000;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:ffc;src:url('chunks/assets/font_b4f3ad4671ac0f57127e5645.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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:ffd;src:url('chunks/assets/font_3e8e7da1e403b54cabbfba8e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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);}
.v1{vertical-align:-36.720000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:36.720000px;}
.v5{vertical-align:90.720000px;}
.v3{vertical-align:110.880000px;}
.v4{vertical-align:141.840000px;}
.ls16{letter-spacing:-20.160000px;}
.ls20{letter-spacing:-1.260000px;}
.ls18{letter-spacing:-0.888000px;}
.ls1c{letter-spacing:-0.399600px;}
.ls1a{letter-spacing:-0.310200px;}
.ls14{letter-spacing:-0.250200px;}
.ls11{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.079800px;}
.ls13{letter-spacing:-0.046680px;}
.ls10{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018720px;}
.lsd{letter-spacing:0.037440px;}
.ls17{letter-spacing:0.115200px;}
.ls8{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.201600px;}
.ls19{letter-spacing:0.211200px;}
.ls9{letter-spacing:0.256320px;}
.ls1b{letter-spacing:0.295200px;}
.ls1e{letter-spacing:0.341400px;}
.ls12{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.678240px;}
.lsb{letter-spacing:7.218720px;}
.lsc{letter-spacing:8.658720px;}
.ls7{letter-spacing:20.508480px;}
.ls3{letter-spacing:61.272432px;}
.ls6{letter-spacing:82.638432px;}
.ls0{letter-spacing:82.746000px;}
.ls1{letter-spacing:104.940000px;}
.lsf{letter-spacing:153.000000px;}
.ls4{letter-spacing:419.580000px;}
.ls2{letter-spacing:1080.319968px;}
.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;}
}
.ws2{word-spacing:-180.144000px;}
.ws24{word-spacing:-180.000000px;}
.ws4{word-spacing:-131.904000px;}
.ws5{word-spacing:-131.653800px;}
.ws6{word-spacing:-101.981952px;}
.ws1e{word-spacing:-95.760000px;}
.ws3{word-spacing:-74.826432px;}
.ws22{word-spacing:-55.044000px;}
.ws1{word-spacing:-50.400000px;}
.ws7{word-spacing:-50.184000px;}
.ws9{word-spacing:-50.040000px;}
.wsa{word-spacing:-50.000232px;}
.ws0{word-spacing:-49.860000px;}
.ws26{word-spacing:-46.637280px;}
.ws23{word-spacing:-40.860000px;}
.ws8{word-spacing:-40.032000px;}
.ws25{word-spacing:-39.420000px;}
.wsc{word-spacing:-33.426720px;}
.wsb{word-spacing:-29.880000px;}
.ws20{word-spacing:-26.962680px;}
.ws21{word-spacing:-26.640000px;}
.ws1d{word-spacing:-21.936960px;}
.ws10{word-spacing:-21.852960px;}
.ws1c{word-spacing:-21.641760px;}
.ws1b{word-spacing:-21.331560px;}
.ws19{word-spacing:-1.288800px;}
.ws15{word-spacing:-1.226160px;}
.ws14{word-spacing:-0.942480px;}
.ws12{word-spacing:-0.413280px;}
.ws1a{word-spacing:-0.383760px;}
.ws27{word-spacing:0.000000px;}
.ws17{word-spacing:0.257760px;}
.wse{word-spacing:0.267840px;}
.ws16{word-spacing:0.379920px;}
.ws18{word-spacing:0.691920px;}
.ws13{word-spacing:0.988200px;}
.ws11{word-spacing:2.427960px;}
.wsf{word-spacing:2.774160px;}
.ws1f{word-spacing:146.678400px;}
.wsd{word-spacing:157.910400px;}
._f{margin-left:-28.300560px;}
._8{margin-left:-20.700000px;}
._0{margin-left:-18.000000px;}
._11{margin-left:-16.154880px;}
._12{margin-left:-12.960000px;}
._1f{margin-left:-11.709360px;}
._20{margin-left:-10.647840px;}
._1d{margin-left:-9.001440px;}
._e{margin-left:-7.015200px;}
._10{margin-left:-4.806000px;}
._2{margin-left:-3.780000px;}
._4{margin-left:-2.700000px;}
._5{margin-left:-1.380000px;}
._6{width:1.080000px;}
._1b{width:2.160000px;}
._22{width:6.210720px;}
._1e{width:7.634880px;}
._21{width:8.923440px;}
._19{width:10.260000px;}
._18{width:11.280000px;}
._1a{width:20.160000px;}
._1c{width:22.351680px;}
._b{width:24.300000px;}
._3{width:25.500000px;}
._1{width:26.640000px;}
._23{width:27.780000px;}
._25{width:32.177520px;}
._a{width:33.200496px;}
._16{width:36.383808px;}
._17{width:37.404144px;}
._24{width:45.960000px;}
._7{width:63.720000px;}
._13{width:75.360000px;}
._14{width:76.980000px;}
._15{width:82.020000px;}
._c{width:160.956000px;}
._d{width:376.956000px;}
._9{width:1039.968000px;}
.fc4{color:rgb(0,91,127);}
.fc8{color:transparent;}
.fc2{color:rgb(166,187,200);}
.fc7{color:rgb(191,191,191);}
.fc6{color:rgb(33,33,33);}
.fc5{color:rgb(51,51,51);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,156,125);}
.fsd{font-size:86.400000px;}
.fse{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fsc{font-size:120.240000px;}
.fs5{font-size:131.904000px;}
.fs3{font-size:144.000000px;}
.fs1{font-size:162.000000px;}
.fs9{font-size:162.144000px;}
.fsf{font-size:167.760000px;}
.fs2{font-size:180.000000px;}
.fs4{font-size:180.144000px;}
.fs0{font-size:198.000000px;}
.fsa{font-size:203.760000px;}
.fsb{font-size:264.960000px;}
.fs8{font-size:300.240000px;}
.fs7{font-size:419.760000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:146.592000px;}
.y2d{bottom:175.215000px;}
.y2c{bottom:204.015000px;}
.y4d{bottom:215.205000px;}
.y2b{bottom:232.995000px;}
.y4c{bottom:251.205000px;}
.y2a{bottom:261.795000px;}
.y4b{bottom:287.205000px;}
.y29{bottom:290.595000px;}
.y28{bottom:328.755000px;}
.y35{bottom:539.925000px;}
.y34{bottom:593.925000px;}
.y33{bottom:647.925000px;}
.y49{bottom:662.430000px;}
.y32{bottom:701.925000px;}
.y48{bottom:725.430000px;}
.y31{bottom:755.925000px;}
.y47{bottom:788.430000px;}
.y46{bottom:851.430000px;}
.y45{bottom:914.430000px;}
.y44{bottom:977.430000px;}
.y43{bottom:1064.190000px;}
.y42{bottom:1118.730000px;}
.y30{bottom:1175.655000px;}
.y2f{bottom:1235.055000px;}
.y10{bottom:1241.070000px;}
.yf{bottom:1375.170000px;}
.ye{bottom:1438.170000px;}
.yd{bottom:1501.170000px;}
.yc{bottom:1564.170000px;}
.yb{bottom:1890.720000px;}
.ya{bottom:1913.400000px;}
.y9{bottom:2056.140000px;}
.y27{bottom:2114.820000px;}
.y8{bottom:2173.140000px;}
.y26{bottom:2177.820000px;}
.y7{bottom:2236.140000px;}
.y25{bottom:2240.820000px;}
.y6{bottom:2299.140000px;}
.y17{bottom:2314.875000px;}
.y5{bottom:2362.140000px;}
.y3f{bottom:2408.655000px;}
.y4{bottom:2425.140000px;}
.y41{bottom:2442.390000px;}
.y3e{bottom:2444.655000px;}
.y40{bottom:2478.390000px;}
.y3d{bottom:2480.655000px;}
.y3{bottom:2488.140000px;}
.y2{bottom:2551.140000px;}
.y1{bottom:2677.140000px;}
.y24{bottom:2857.500000px;}
.y23{bottom:2920.500000px;}
.y22{bottom:3007.260000px;}
.y21{bottom:3061.800000px;}
.y20{bottom:3109.755000px;}
.y1f{bottom:3172.755000px;}
.y1e{bottom:3235.755000px;}
.y3c{bottom:3240.030000px;}
.y1d{bottom:3298.755000px;}
.y3b{bottom:3303.030000px;}
.y1c{bottom:3361.785000px;}
.y3a{bottom:3366.030000px;}
.y1b{bottom:3424.785000px;}
.y39{bottom:3429.030000px;}
.y1a{bottom:3487.785000px;}
.y38{bottom:3492.030000px;}
.y19{bottom:3550.785000px;}
.y37{bottom:3555.030000px;}
.y18{bottom:3676.785000px;}
.y36{bottom:3681.030000px;}
.y16{bottom:4142.670000px;}
.y4a{bottom:4206.420000px;}
.y15{bottom:4212.870000px;}
.y14{bottom:4301.970000px;}
.y13{bottom:4413.570000px;}
.y12{bottom:4539.750000px;}
.y11{bottom:4665.750000px;}
.he{height:72.969120px;}
.hc{height:91.622880px;}
.hd{height:95.245664px;}
.h4{height:109.728000px;}
.h11{height:127.833120px;}
.h3{height:137.160000px;}
.h9{height:137.269728px;}
.h2{height:150.876000px;}
.ha{height:155.265120px;}
.h10{height:179.033203px;}
.hf{height:184.306641px;}
.hb{height:198.720000px;}
.h5{height:216.285187px;}
.h8{height:228.782880px;}
.h6{height:242.540578px;}
.h7{height:319.857120px;}
.h0{height:5081.040000px;}
.h1{height:5081.250000px;}
.w2{width:3601.439946px;}
.w0{width:3601.440000px;}
.w1{width:3601.500000px;}
.x0{left:0.000000px;}
.x1{left:210.389946px;}
.x8{left:211.859946px;}
.xb{left:223.349946px;}
.xd{left:249.479946px;}
.xe{left:260.129946px;}
.x2{left:261.329946px;}
.x9{left:262.799946px;}
.x6{left:264.389946px;}
.x3{left:265.649946px;}
.xc{left:284.189946px;}
.x5{left:316.589946px;}
.x4{left:774.899946px;}
.x7{left:1840.424946px;}
.xf{left:1844.894946px;}
.x19{left:1870.994946px;}
.xa{left:1891.979946px;}
.x10{left:1895.834946px;}
.x18{left:1901.234946px;}
.x16{left:1949.909946px;}
.x12{left:2045.264946px;}
.x11{left:2046.344946px;}
.x13{left:2185.304946px;}
.x1a{left:2278.904946px;}
.x14{left:2833.709946px;}
.x15{left:2852.969946px;}
.x17{left:3019.349946px;}
@media print{
.v1{vertical-align:-32.640000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:32.640000pt;}
.v5{vertical-align:80.640000pt;}
.v3{vertical-align:98.560000pt;}
.v4{vertical-align:126.080000pt;}
.ls16{letter-spacing:-17.920000pt;}
.ls20{letter-spacing:-1.120000pt;}
.ls18{letter-spacing:-0.789333pt;}
.ls1c{letter-spacing:-0.355200pt;}
.ls1a{letter-spacing:-0.275733pt;}
.ls14{letter-spacing:-0.222400pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.070933pt;}
.ls13{letter-spacing:-0.041493pt;}
.ls10{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016640pt;}
.lsd{letter-spacing:0.033280pt;}
.ls17{letter-spacing:0.102400pt;}
.ls8{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.179200pt;}
.ls19{letter-spacing:0.187733pt;}
.ls9{letter-spacing:0.227840pt;}
.ls1b{letter-spacing:0.262400pt;}
.ls1e{letter-spacing:0.303467pt;}
.ls12{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.602880pt;}
.lsb{letter-spacing:6.416640pt;}
.lsc{letter-spacing:7.696640pt;}
.ls7{letter-spacing:18.229760pt;}
.ls3{letter-spacing:54.464384pt;}
.ls6{letter-spacing:73.456384pt;}
.ls0{letter-spacing:73.552000pt;}
.ls1{letter-spacing:93.280000pt;}
.lsf{letter-spacing:136.000000pt;}
.ls4{letter-spacing:372.960000pt;}
.ls2{letter-spacing:960.284416pt;}
.ws2{word-spacing:-160.128000pt;}
.ws24{word-spacing:-160.000000pt;}
.ws4{word-spacing:-117.248000pt;}
.ws5{word-spacing:-117.025600pt;}
.ws6{word-spacing:-90.650624pt;}
.ws1e{word-spacing:-85.120000pt;}
.ws3{word-spacing:-66.512384pt;}
.ws22{word-spacing:-48.928000pt;}
.ws1{word-spacing:-44.800000pt;}
.ws7{word-spacing:-44.608000pt;}
.ws9{word-spacing:-44.480000pt;}
.wsa{word-spacing:-44.444651pt;}
.ws0{word-spacing:-44.320000pt;}
.ws26{word-spacing:-41.455360pt;}
.ws23{word-spacing:-36.320000pt;}
.ws8{word-spacing:-35.584000pt;}
.ws25{word-spacing:-35.040000pt;}
.wsc{word-spacing:-29.712640pt;}
.wsb{word-spacing:-26.560000pt;}
.ws20{word-spacing:-23.966827pt;}
.ws21{word-spacing:-23.680000pt;}
.ws1d{word-spacing:-19.499520pt;}
.ws10{word-spacing:-19.424853pt;}
.ws1c{word-spacing:-19.237120pt;}
.ws1b{word-spacing:-18.961387pt;}
.ws19{word-spacing:-1.145600pt;}
.ws15{word-spacing:-1.089920pt;}
.ws14{word-spacing:-0.837760pt;}
.ws12{word-spacing:-0.367360pt;}
.ws1a{word-spacing:-0.341120pt;}
.ws27{word-spacing:0.000000pt;}
.ws17{word-spacing:0.229120pt;}
.wse{word-spacing:0.238080pt;}
.ws16{word-spacing:0.337707pt;}
.ws18{word-spacing:0.615040pt;}
.ws13{word-spacing:0.878400pt;}
.ws11{word-spacing:2.158187pt;}
.wsf{word-spacing:2.465920pt;}
.ws1f{word-spacing:130.380800pt;}
.wsd{word-spacing:140.364800pt;}
._f{margin-left:-25.156053pt;}
._8{margin-left:-18.400000pt;}
._0{margin-left:-16.000000pt;}
._11{margin-left:-14.359893pt;}
._12{margin-left:-11.520000pt;}
._1f{margin-left:-10.408320pt;}
._20{margin-left:-9.464747pt;}
._1d{margin-left:-8.001280pt;}
._e{margin-left:-6.235733pt;}
._10{margin-left:-4.272000pt;}
._2{margin-left:-3.360000pt;}
._4{margin-left:-2.400000pt;}
._5{margin-left:-1.226667pt;}
._6{width:0.960000pt;}
._1b{width:1.920000pt;}
._22{width:5.520640pt;}
._1e{width:6.786560pt;}
._21{width:7.931947pt;}
._19{width:9.120000pt;}
._18{width:10.026667pt;}
._1a{width:17.920000pt;}
._1c{width:19.868160pt;}
._b{width:21.600000pt;}
._3{width:22.666667pt;}
._1{width:23.680000pt;}
._23{width:24.693333pt;}
._25{width:28.602240pt;}
._a{width:29.511552pt;}
._16{width:32.341163pt;}
._17{width:33.248128pt;}
._24{width:40.853333pt;}
._7{width:56.640000pt;}
._13{width:66.986667pt;}
._14{width:68.426667pt;}
._15{width:72.906667pt;}
._c{width:143.072000pt;}
._d{width:335.072000pt;}
._9{width:924.416000pt;}
.fsd{font-size:76.800000pt;}
.fse{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fsc{font-size:106.880000pt;}
.fs5{font-size:117.248000pt;}
.fs3{font-size:128.000000pt;}
.fs1{font-size:144.000000pt;}
.fs9{font-size:144.128000pt;}
.fsf{font-size:149.120000pt;}
.fs2{font-size:160.000000pt;}
.fs4{font-size:160.128000pt;}
.fs0{font-size:176.000000pt;}
.fsa{font-size:181.120000pt;}
.fsb{font-size:235.520000pt;}
.fs8{font-size:266.880000pt;}
.fs7{font-size:373.120000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:130.304000pt;}
.y2d{bottom:155.746667pt;}
.y2c{bottom:181.346667pt;}
.y4d{bottom:191.293333pt;}
.y2b{bottom:207.106667pt;}
.y4c{bottom:223.293333pt;}
.y2a{bottom:232.706667pt;}
.y4b{bottom:255.293333pt;}
.y29{bottom:258.306667pt;}
.y28{bottom:292.226667pt;}
.y35{bottom:479.933333pt;}
.y34{bottom:527.933333pt;}
.y33{bottom:575.933333pt;}
.y49{bottom:588.826667pt;}
.y32{bottom:623.933333pt;}
.y48{bottom:644.826667pt;}
.y31{bottom:671.933333pt;}
.y47{bottom:700.826667pt;}
.y46{bottom:756.826667pt;}
.y45{bottom:812.826667pt;}
.y44{bottom:868.826667pt;}
.y43{bottom:945.946667pt;}
.y42{bottom:994.426667pt;}
.y30{bottom:1045.026667pt;}
.y2f{bottom:1097.826667pt;}
.y10{bottom:1103.173333pt;}
.yf{bottom:1222.373333pt;}
.ye{bottom:1278.373333pt;}
.yd{bottom:1334.373333pt;}
.yc{bottom:1390.373333pt;}
.yb{bottom:1680.640000pt;}
.ya{bottom:1700.800000pt;}
.y9{bottom:1827.680000pt;}
.y27{bottom:1879.840000pt;}
.y8{bottom:1931.680000pt;}
.y26{bottom:1935.840000pt;}
.y7{bottom:1987.680000pt;}
.y25{bottom:1991.840000pt;}
.y6{bottom:2043.680000pt;}
.y17{bottom:2057.666667pt;}
.y5{bottom:2099.680000pt;}
.y3f{bottom:2141.026667pt;}
.y4{bottom:2155.680000pt;}
.y41{bottom:2171.013333pt;}
.y3e{bottom:2173.026667pt;}
.y40{bottom:2203.013333pt;}
.y3d{bottom:2205.026667pt;}
.y3{bottom:2211.680000pt;}
.y2{bottom:2267.680000pt;}
.y1{bottom:2379.680000pt;}
.y24{bottom:2540.000000pt;}
.y23{bottom:2596.000000pt;}
.y22{bottom:2673.120000pt;}
.y21{bottom:2721.600000pt;}
.y20{bottom:2764.226667pt;}
.y1f{bottom:2820.226667pt;}
.y1e{bottom:2876.226667pt;}
.y3c{bottom:2880.026667pt;}
.y1d{bottom:2932.226667pt;}
.y3b{bottom:2936.026667pt;}
.y1c{bottom:2988.253333pt;}
.y3a{bottom:2992.026667pt;}
.y1b{bottom:3044.253333pt;}
.y39{bottom:3048.026667pt;}
.y1a{bottom:3100.253333pt;}
.y38{bottom:3104.026667pt;}
.y19{bottom:3156.253333pt;}
.y37{bottom:3160.026667pt;}
.y18{bottom:3268.253333pt;}
.y36{bottom:3272.026667pt;}
.y16{bottom:3682.373333pt;}
.y4a{bottom:3739.040000pt;}
.y15{bottom:3744.773333pt;}
.y14{bottom:3823.973333pt;}
.y13{bottom:3923.173333pt;}
.y12{bottom:4035.333333pt;}
.y11{bottom:4147.333333pt;}
.he{height:64.861440pt;}
.hc{height:81.442560pt;}
.hd{height:84.662813pt;}
.h4{height:97.536000pt;}
.h11{height:113.629440pt;}
.h3{height:121.920000pt;}
.h9{height:122.017536pt;}
.h2{height:134.112000pt;}
.ha{height:138.013440pt;}
.h10{height:159.140625pt;}
.hf{height:163.828125pt;}
.hb{height:176.640000pt;}
.h5{height:192.253500pt;}
.h8{height:203.362560pt;}
.h6{height:215.591625pt;}
.h7{height:284.317440pt;}
.h0{height:4516.480000pt;}
.h1{height:4516.666667pt;}
.w2{width:3201.279952pt;}
.w0{width:3201.280000pt;}
.w1{width:3201.333333pt;}
.x0{left:0.000000pt;}
.x1{left:187.013286pt;}
.x8{left:188.319952pt;}
.xb{left:198.533286pt;}
.xd{left:221.759952pt;}
.xe{left:231.226619pt;}
.x2{left:232.293286pt;}
.x9{left:233.599952pt;}
.x6{left:235.013286pt;}
.x3{left:236.133286pt;}
.xc{left:252.613286pt;}
.x5{left:281.413286pt;}
.x4{left:688.799952pt;}
.x7{left:1635.933286pt;}
.xf{left:1639.906619pt;}
.x19{left:1663.106619pt;}
.xa{left:1681.759952pt;}
.x10{left:1685.186619pt;}
.x18{left:1689.986619pt;}
.x16{left:1733.253286pt;}
.x12{left:1818.013286pt;}
.x11{left:1818.973286pt;}
.x13{left:1942.493286pt;}
.x1a{left:2025.693286pt;}
.x14{left:2518.853286pt;}
.x15{left:2535.973286pt;}
.x17{left:2683.866619pt;}
}




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