
    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_521165533e6262114348193d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_3877cb305f5ee320336be09f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_ff5899392d81be8f17c1585a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c0ed71d2b99c35873d640b0e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.740234;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_498fd67fd61cd4ce98b2ce66.woff')format("woff");}.ff5{font-family:ff5;line-height:0.870117;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_a96b3a6655254c255a727cb2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.731445;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_b384a203d8cdc9b76ac16890.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_478f77b926000773262d499d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.730469;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_b0587fecfefb3eb6f5aab035.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_7bc8a8ed235e7a665c35f506.woff')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_98f3835fcb7d1d26a70e4a41.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_d6b9961f7f89720c7529b212.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_3bac7593f574a85f01cdf9c2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.728027;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:ffe;src:url('chunks/assets/font_ef6c230cb9a9b85db2b4083a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.728027;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:fff;src:url('chunks/assets/font_ccc2b2f42342839ff74b5f91.woff')format("woff");}.fff{font-family:fff;line-height:0.938477;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:ff10;src:url('chunks/assets/font_6f2c62772cffbefedc9822ea.woff')format("woff");}.ff10{font-family:ff10;line-height:0.740234;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:ff11;src:url('chunks/assets/font_cf9e328669ff6c16647c2a03.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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:ff12;src:url('chunks/assets/font_6c8ea2b58b82375a0faf6012.woff')format("woff");}.ff12{font-family:ff12;line-height:0.737305;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:ff13;src:url('chunks/assets/font_10355ff1d22bbb905f41bba9.woff')format("woff");}.ff13{font-family:ff13;line-height:0.682617;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:ff14;src:url('chunks/assets/font_fd36666cf08a7d0ccf3fec00.woff')format("woff");}.ff14{font-family:ff14;line-height:0.926270;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:ff15;src:url('chunks/assets/font_694142bb65010f00fb925819.woff')format("woff");}.ff15{font-family:ff15;line-height:0.938477;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:ff16;src:url('chunks/assets/font_ed589295bf8cb0666459ed64.woff')format("woff");}.ff16{font-family:ff16;line-height:0.938477;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:ff17;src:url('chunks/assets/font_b15fe28aea79dcedcbb4f0e6.woff')format("woff");}.ff17{font-family:ff17;line-height:0.938477;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:ff18;src:url('chunks/assets/font_4098eeaf920f6af461dac16e.woff')format("woff");}.ff18{font-family:ff18;line-height:0.737305;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:ff19;src:url('chunks/assets/font_02f8b7b53d46989d9f613005.woff')format("woff");}.ff19{font-family:ff19;line-height:0.938477;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:ff1a;src:url('chunks/assets/font_596967a590bc5cff79f3134e.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.938477;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;}
.m2{transform:matrix(0.199564,-0.150579,0.150579,0.199564,0,0);-ms-transform:matrix(0.199564,-0.150579,0.150579,0.199564,0,0);-webkit-transform:matrix(0.199564,-0.150579,0.150579,0.199564,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-214.560000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-16.200000px;}
.ls20{letter-spacing:-16.005600px;}
.ls1c{letter-spacing:-4.260000px;}
.ls11{letter-spacing:-2.664000px;}
.lsd{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.316800px;}
.ls1f{letter-spacing:-0.278400px;}
.ls4{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.187200px;}
.ls1{letter-spacing:-0.043200px;}
.ls9{letter-spacing:-0.032400px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.024000px;}
.ls6{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.043200px;}
.ls17{letter-spacing:0.064800px;}
.ls0{letter-spacing:0.124800px;}
.ls18{letter-spacing:0.134400px;}
.lsf{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.187200px;}
.ls7{letter-spacing:0.216000px;}
.lse{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.316800px;}
.ls1b{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.360000px;}
.ls15{letter-spacing:64.560002px;}
.ls16{letter-spacing:66.000002px;}
.ls1a{letter-spacing:74.928004px;}
.ls19{letter-spacing:78.600002px;}
.lsc{letter-spacing:120.000002px;}
.lsa{letter-spacing:157.199983px;}
.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;}
}
.wsc{word-spacing:-66.720013px;}
.ws9{word-spacing:-47.040013px;}
.ws19{word-spacing:-44.042400px;}
.wse{word-spacing:-40.320000px;}
.ws11{word-spacing:-40.219200px;}
.wsf{word-spacing:-40.176000px;}
.ws12{word-spacing:-40.032000px;}
.wsd{word-spacing:-39.988800px;}
.ws10{word-spacing:-39.844800px;}
.ws6{word-spacing:-33.719999px;}
.ws18{word-spacing:-33.539999px;}
.ws4{word-spacing:-33.395999px;}
.ws15{word-spacing:-33.383999px;}
.ws1{word-spacing:-33.359999px;}
.ws16{word-spacing:-32.999999px;}
.ws7{word-spacing:-30.024000px;}
.ws17{word-spacing:-26.687997px;}
.ws13{word-spacing:-23.832000px;}
.ws1a{word-spacing:-0.719976px;}
.ws8{word-spacing:-0.396000px;}
.ws0{word-spacing:-0.280800px;}
.ws3{word-spacing:-0.120000px;}
.ws2{word-spacing:0.000000px;}
.ws14{word-spacing:32.880023px;}
.wsa{word-spacing:109.823970px;}
.wsb{word-spacing:110.495970px;}
.ws5{word-spacing:3344.406616px;}
._f{margin-left:-4952.855554px;}
._12{margin-left:-17.452796px;}
._11{margin-left:-13.115999px;}
._8{margin-left:-9.681600px;}
._0{margin-left:-7.560000px;}
._1{margin-left:-6.518400px;}
._4{margin-left:-5.107200px;}
._d{margin-left:-3.288000px;}
._3{margin-left:-2.251200px;}
._2{margin-left:-1.008000px;}
._6{width:1.356000px;}
._c{width:3.024000px;}
._14{width:4.680000px;}
._15{width:15.120000px;}
._e{width:16.416000px;}
._13{width:32.370052px;}
._10{width:66.000002px;}
._9{width:72.357907px;}
._5{width:120.000002px;}
._a{width:156.863983px;}
._b{width:4735.898153px;}
._7{width:4752.398753px;}
.fc7{color:rgb(5,55,255);}
.fc6{color:transparent;}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(51,63,80);}
.fc1{color:rgb(62,142,222);}
.fc0{color:rgb(0,44,115);}
.fs4{font-size:59.999990px;}
.fs1{font-size:83.999995px;}
.fsd{font-size:95.999990px;}
.fs7{font-size:108.000000px;}
.fs2{font-size:119.999995px;}
.fse{font-size:120.000000px;}
.fsa{font-size:144.000000px;}
.fs3{font-size:155.999952px;}
.fs6{font-size:168.000048px;}
.fsc{font-size:180.000000px;}
.fsb{font-size:191.999952px;}
.fs0{font-size:216.000000px;}
.fs5{font-size:240.000048px;}
.fs9{font-size:396.000000px;}
.fs8{font-size:594.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:6.120000px;}
.y11{bottom:15.120000px;}
.yf{bottom:24.120000px;}
.ye{bottom:27.000000px;}
.y3a{bottom:29.880015px;}
.y5e{bottom:47.160000px;}
.y4c{bottom:69.120000px;}
.y39{bottom:74.160015px;}
.y3f{bottom:78.120000px;}
.y3c{bottom:79.560000px;}
.y59{bottom:88.560000px;}
.y5f{bottom:94.680000px;}
.yc{bottom:95.040000px;}
.y3e{bottom:114.120000px;}
.y37{bottom:118.440015px;}
.y4b{bottom:120.240000px;}
.y3b{bottom:123.840000px;}
.yb{bottom:131.040000px;}
.y90{bottom:132.120000px;}
.y83{bottom:132.840000px;}
.y58{bottom:136.800000px;}
.y38{bottom:138.239985px;}
.y2f{bottom:138.240000px;}
.y2d{bottom:138.600000px;}
.y2b{bottom:138.600015px;}
.y25{bottom:139.320000px;}
.y3d{bottom:150.120000px;}
.y62{bottom:153.360000px;}
.y36{bottom:162.720000px;}
.ya{bottom:167.040000px;}
.y82{bottom:168.840000px;}
.y69{bottom:170.640000px;}
.y8c{bottom:181.800000px;}
.y8f{bottom:183.240000px;}
.y57{bottom:184.680000px;}
.y61{bottom:189.360000px;}
.y24{bottom:190.080000px;}
.y9{bottom:203.040000px;}
.y35{bottom:207.000000px;}
.y8b{bottom:216.360000px;}
.y56{bottom:217.800000px;}
.y4a{bottom:222.120000px;}
.y60{bottom:225.360000px;}
.y72{bottom:226.800000px;}
.y8e{bottom:234.360000px;}
.y8{bottom:239.040000px;}
.y23{bottom:239.760000px;}
.y34{bottom:251.280000px;}
.y8a{bottom:253.800000px;}
.y78{bottom:262.800000px;}
.y55{bottom:264.240000px;}
.y1b{bottom:265.320000px;}
.y49{bottom:273.240000px;}
.y81{bottom:274.680000px;}
.y19{bottom:279.360000px;}
.y22{bottom:290.520000px;}
.yd{bottom:290.880000px;}
.y17{bottom:293.400000px;}
.y33{bottom:295.560000px;}
.y54{bottom:297.360000px;}
.y77{bottom:298.800000px;}
.y15{bottom:300.600000px;}
.y48{bottom:310.680000px;}
.y18{bottom:315.360000px;}
.y1a{bottom:329.760000px;}
.y32{bottom:339.840000px;}
.y21{bottom:340.200000px;}
.y53{bottom:345.240000px;}
.y80{bottom:346.680000px;}
.y89{bottom:355.680000px;}
.y47{bottom:361.800000px;}
.y71{bottom:364.680000px;}
.y29{bottom:373.680000px;}
.y52{bottom:376.560000px;}
.y7f{bottom:382.680000px;}
.y31{bottom:384.480000px;}
.y66{bottom:387.360000px;}
.y20{bottom:391.320000px;}
.y46{bottom:397.800000px;}
.y70{bottom:399.240000px;}
.y40{bottom:403.560000px;}
.y16{bottom:403.920000px;}
.y28{bottom:409.680000px;}
.y7{bottom:415.800000px;}
.y5c{bottom:416.520000px;}
.y68{bottom:418.320000px;}
.y7e{bottom:418.680000px;}
.y51{bottom:423.360000px;}
.y30{bottom:428.760000px;}
.y6f{bottom:433.800000px;}
.y76{bottom:435.240000px;}
.y65{bottom:438.120000px;}
.y88{bottom:439.920000px;}
.y6{bottom:441.360000px;}
.y1f{bottom:442.080000px;}
.y27{bottom:445.680000px;}
.y45{bottom:447.120000px;}
.y50{bottom:456.120000px;}
.y7d{bottom:465.120000px;}
.y5{bottom:466.920000px;}
.y6e{bottom:469.800000px;}
.y2e{bottom:473.040000px;}
.y5b{bottom:473.400000px;}
.y87{bottom:481.680000px;}
.y1e{bottom:491.760000px;}
.y4{bottom:492.480000px;}
.y7c{bottom:499.680000px;}
.y4f{bottom:502.560000px;}
.y12{bottom:517.320000px;}
.y3{bottom:518.040000px;}
.y74{bottom:519.840150px;}
.y67{bottom:520.200000px;}
.y26{bottom:520.560000px;}
.y86{bottom:523.800000px;}
.y5a{bottom:531.720000px;}
.y7b{bottom:534.240000px;}
.y75{bottom:535.680000px;}
.y14{bottom:538.560000px;}
.y73{bottom:539.280135px;}
.y64{bottom:540.360000px;}
.y2{bottom:541.800000px;}
.y1d{bottom:542.520000px;}
.y44{bottom:550.800000px;}
.y2c{bottom:561.600000px;}
.y7a{bottom:568.800000px;}
.y6d{bottom:570.240000px;}
.y85{bottom:574.920000px;}
.y63{bottom:591.120000px;}
.y1{bottom:594.360000px;}
.y4e{bottom:597.240000px;}
.y43{bottom:601.560000px;}
.y6c{bottom:604.800000px;}
.y2a{bottom:605.880000px;}
.y79{bottom:606.240000px;}
.y84{bottom:610.920000px;}
.y1c{bottom:627.840000px;}
.y42{bottom:642.240000px;}
.y6a{bottom:642.960000px;}
.y4d{bottom:645.120000px;}
.y13{bottom:660.240015px;}
.y41{bottom:713.880015px;}
.y8d{bottom:717.480015px;}
.y5d{bottom:720.000015px;}
.y6b{bottom:721.440015px;}
.h5{height:43.710931px;}
.h2{height:61.154293px;}
.h18{height:70.781243px;}
.ha{height:78.626953px;}
.h8{height:84.726559px;}
.h9{height:87.363278px;}
.h3{height:87.480465px;}
.h19{height:87.480469px;}
.h14{height:88.476559px;}
.he{height:104.835938px;}
.h4{height:113.572231px;}
.h7{height:122.308629px;}
.h17{height:131.044922px;}
.h15{height:137.437466px;}
.h16{height:139.781215px;}
.h1{height:157.253906px;}
.h6{height:174.726597px;}
.hd{height:204.120000px;}
.hb{height:217.888242px;}
.h13{height:243.720015px;}
.hf{height:248.400000px;}
.h12{height:288.000018px;}
.hc{height:288.298828px;}
.h10{height:292.680000px;}
.h11{height:302.760000px;}
.h0{height:810.000000px;}
.w2{width:313.920000px;}
.w1{width:334.080000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x16{left:1.369200px;}
.x1e{left:54.000000px;}
.x28{left:59.599575px;}
.x27{left:64.800000px;}
.x12{left:69.055035px;}
.x1{left:81.000000px;}
.x29{left:94.005225px;}
.xb{left:96.712905px;}
.x7{left:98.486925px;}
.x20{left:112.500000px;}
.x8{left:127.017390px;}
.x3{left:130.539090px;}
.xe{left:134.800380px;}
.x22{left:139.500000px;}
.xf{left:148.960395px;}
.x13{left:152.233050px;}
.x21{left:165.375000px;}
.x9{left:171.625950px;}
.x2{left:192.756600px;}
.x25{left:200.529750px;}
.x24{left:203.448900px;}
.x1c{left:212.318100px;}
.xc{left:228.719700px;}
.x18{left:232.380600px;}
.x19{left:252.443100px;}
.x1b{left:256.421700px;}
.x1a{left:272.505600px;}
.x14{left:300.400050px;}
.x23{left:339.178350px;}
.x15{left:346.320000px;}
.x10{left:376.075800px;}
.x11{left:393.325800px;}
.xa{left:476.133300px;}
.xd{left:556.895400px;}
.x17{left:680.040000px;}
.x2c{left:829.556400px;}
.x2a{left:1006.384800px;}
.x2b{left:1019.286450px;}
.x4{left:1053.822300px;}
.x1d{left:1070.432250px;}
.x26{left:1074.745800px;}
.x1f{left:1109.131650px;}
.x5{left:1221.562500px;}
.x6{left:1228.125000px;}
@media print{
.v1{vertical-align:-190.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-14.400000pt;}
.ls20{letter-spacing:-14.227200pt;}
.ls1c{letter-spacing:-3.786667pt;}
.ls11{letter-spacing:-2.368000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.281600pt;}
.ls1f{letter-spacing:-0.247467pt;}
.ls4{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.166400pt;}
.ls1{letter-spacing:-0.038400pt;}
.ls9{letter-spacing:-0.028800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.021333pt;}
.ls6{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.038400pt;}
.ls17{letter-spacing:0.057600pt;}
.ls0{letter-spacing:0.110933pt;}
.ls18{letter-spacing:0.119467pt;}
.lsf{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.166400pt;}
.ls7{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.281600pt;}
.ls1b{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.320000pt;}
.ls15{letter-spacing:57.386669pt;}
.ls16{letter-spacing:58.666668pt;}
.ls1a{letter-spacing:66.602670pt;}
.ls19{letter-spacing:69.866668pt;}
.lsc{letter-spacing:106.666668pt;}
.lsa{letter-spacing:139.733318pt;}
.wsc{word-spacing:-59.306679pt;}
.ws9{word-spacing:-41.813345pt;}
.ws19{word-spacing:-39.148800pt;}
.wse{word-spacing:-35.840000pt;}
.ws11{word-spacing:-35.750400pt;}
.wsf{word-spacing:-35.712000pt;}
.ws12{word-spacing:-35.584000pt;}
.wsd{word-spacing:-35.545600pt;}
.ws10{word-spacing:-35.417600pt;}
.ws6{word-spacing:-29.973332pt;}
.ws18{word-spacing:-29.813332pt;}
.ws4{word-spacing:-29.685332pt;}
.ws15{word-spacing:-29.674665pt;}
.ws1{word-spacing:-29.653332pt;}
.ws16{word-spacing:-29.333332pt;}
.ws7{word-spacing:-26.688000pt;}
.ws17{word-spacing:-23.722664pt;}
.ws13{word-spacing:-21.184000pt;}
.ws1a{word-spacing:-0.639979pt;}
.ws8{word-spacing:-0.352000pt;}
.ws0{word-spacing:-0.249600pt;}
.ws3{word-spacing:-0.106667pt;}
.ws2{word-spacing:0.000000pt;}
.ws14{word-spacing:29.226687pt;}
.wsa{word-spacing:97.621306pt;}
.wsb{word-spacing:98.218640pt;}
.ws5{word-spacing:2972.805881pt;}
._f{margin-left:-4402.538270pt;}
._12{margin-left:-15.513596pt;}
._11{margin-left:-11.658666pt;}
._8{margin-left:-8.605867pt;}
._0{margin-left:-6.720000pt;}
._1{margin-left:-5.794133pt;}
._4{margin-left:-4.539733pt;}
._d{margin-left:-2.922667pt;}
._3{margin-left:-2.001067pt;}
._2{margin-left:-0.896000pt;}
._6{width:1.205333pt;}
._c{width:2.688000pt;}
._14{width:4.160000pt;}
._15{width:13.440000pt;}
._e{width:14.592000pt;}
._13{width:28.773379pt;}
._10{width:58.666668pt;}
._9{width:64.318139pt;}
._5{width:106.666668pt;}
._a{width:139.434652pt;}
._b{width:4209.687248pt;}
._7{width:4224.354448pt;}
.fs4{font-size:53.333325pt;}
.fs1{font-size:74.666662pt;}
.fsd{font-size:85.333325pt;}
.fs7{font-size:96.000000pt;}
.fs2{font-size:106.666662pt;}
.fse{font-size:106.666666pt;}
.fsa{font-size:128.000000pt;}
.fs3{font-size:138.666624pt;}
.fs6{font-size:149.333376pt;}
.fsc{font-size:160.000000pt;}
.fsb{font-size:170.666624pt;}
.fs0{font-size:192.000000pt;}
.fs5{font-size:213.333376pt;}
.fs9{font-size:352.000000pt;}
.fs8{font-size:528.000000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:5.440000pt;}
.y11{bottom:13.440000pt;}
.yf{bottom:21.440000pt;}
.ye{bottom:24.000000pt;}
.y3a{bottom:26.560013pt;}
.y5e{bottom:41.920000pt;}
.y4c{bottom:61.440000pt;}
.y39{bottom:65.920013pt;}
.y3f{bottom:69.440000pt;}
.y3c{bottom:70.720000pt;}
.y59{bottom:78.720000pt;}
.y5f{bottom:84.160000pt;}
.yc{bottom:84.480000pt;}
.y3e{bottom:101.440000pt;}
.y37{bottom:105.280013pt;}
.y4b{bottom:106.880000pt;}
.y3b{bottom:110.080000pt;}
.yb{bottom:116.480000pt;}
.y90{bottom:117.440000pt;}
.y83{bottom:118.080000pt;}
.y58{bottom:121.600000pt;}
.y38{bottom:122.879987pt;}
.y2f{bottom:122.880000pt;}
.y2d{bottom:123.200000pt;}
.y2b{bottom:123.200013pt;}
.y25{bottom:123.840000pt;}
.y3d{bottom:133.440000pt;}
.y62{bottom:136.320000pt;}
.y36{bottom:144.640000pt;}
.ya{bottom:148.480000pt;}
.y82{bottom:150.080000pt;}
.y69{bottom:151.680000pt;}
.y8c{bottom:161.600000pt;}
.y8f{bottom:162.880000pt;}
.y57{bottom:164.160000pt;}
.y61{bottom:168.320000pt;}
.y24{bottom:168.960000pt;}
.y9{bottom:180.480000pt;}
.y35{bottom:184.000000pt;}
.y8b{bottom:192.320000pt;}
.y56{bottom:193.600000pt;}
.y4a{bottom:197.440000pt;}
.y60{bottom:200.320000pt;}
.y72{bottom:201.600000pt;}
.y8e{bottom:208.320000pt;}
.y8{bottom:212.480000pt;}
.y23{bottom:213.120000pt;}
.y34{bottom:223.360000pt;}
.y8a{bottom:225.600000pt;}
.y78{bottom:233.600000pt;}
.y55{bottom:234.880000pt;}
.y1b{bottom:235.840000pt;}
.y49{bottom:242.880000pt;}
.y81{bottom:244.160000pt;}
.y19{bottom:248.320000pt;}
.y22{bottom:258.240000pt;}
.yd{bottom:258.560000pt;}
.y17{bottom:260.800000pt;}
.y33{bottom:262.720000pt;}
.y54{bottom:264.320000pt;}
.y77{bottom:265.600000pt;}
.y15{bottom:267.200000pt;}
.y48{bottom:276.160000pt;}
.y18{bottom:280.320000pt;}
.y1a{bottom:293.120000pt;}
.y32{bottom:302.080000pt;}
.y21{bottom:302.400000pt;}
.y53{bottom:306.880000pt;}
.y80{bottom:308.160000pt;}
.y89{bottom:316.160000pt;}
.y47{bottom:321.600000pt;}
.y71{bottom:324.160000pt;}
.y29{bottom:332.160000pt;}
.y52{bottom:334.720000pt;}
.y7f{bottom:340.160000pt;}
.y31{bottom:341.760000pt;}
.y66{bottom:344.320000pt;}
.y20{bottom:347.840000pt;}
.y46{bottom:353.600000pt;}
.y70{bottom:354.880000pt;}
.y40{bottom:358.720000pt;}
.y16{bottom:359.040000pt;}
.y28{bottom:364.160000pt;}
.y7{bottom:369.600000pt;}
.y5c{bottom:370.240000pt;}
.y68{bottom:371.840000pt;}
.y7e{bottom:372.160000pt;}
.y51{bottom:376.320000pt;}
.y30{bottom:381.120000pt;}
.y6f{bottom:385.600000pt;}
.y76{bottom:386.880000pt;}
.y65{bottom:389.440000pt;}
.y88{bottom:391.040000pt;}
.y6{bottom:392.320000pt;}
.y1f{bottom:392.960000pt;}
.y27{bottom:396.160000pt;}
.y45{bottom:397.440000pt;}
.y50{bottom:405.440000pt;}
.y7d{bottom:413.440000pt;}
.y5{bottom:415.040000pt;}
.y6e{bottom:417.600000pt;}
.y2e{bottom:420.480000pt;}
.y5b{bottom:420.800000pt;}
.y87{bottom:428.160000pt;}
.y1e{bottom:437.120000pt;}
.y4{bottom:437.760000pt;}
.y7c{bottom:444.160000pt;}
.y4f{bottom:446.720000pt;}
.y12{bottom:459.840000pt;}
.y3{bottom:460.480000pt;}
.y74{bottom:462.080133pt;}
.y67{bottom:462.400000pt;}
.y26{bottom:462.720000pt;}
.y86{bottom:465.600000pt;}
.y5a{bottom:472.640000pt;}
.y7b{bottom:474.880000pt;}
.y75{bottom:476.160000pt;}
.y14{bottom:478.720000pt;}
.y73{bottom:479.360120pt;}
.y64{bottom:480.320000pt;}
.y2{bottom:481.600000pt;}
.y1d{bottom:482.240000pt;}
.y44{bottom:489.600000pt;}
.y2c{bottom:499.200000pt;}
.y7a{bottom:505.600000pt;}
.y6d{bottom:506.880000pt;}
.y85{bottom:511.040000pt;}
.y63{bottom:525.440000pt;}
.y1{bottom:528.320000pt;}
.y4e{bottom:530.880000pt;}
.y43{bottom:534.720000pt;}
.y6c{bottom:537.600000pt;}
.y2a{bottom:538.560000pt;}
.y79{bottom:538.880000pt;}
.y84{bottom:543.040000pt;}
.y1c{bottom:558.080000pt;}
.y42{bottom:570.880000pt;}
.y6a{bottom:571.520000pt;}
.y4d{bottom:573.440000pt;}
.y13{bottom:586.880013pt;}
.y41{bottom:634.560013pt;}
.y8d{bottom:637.760013pt;}
.y5d{bottom:640.000013pt;}
.y6b{bottom:641.280013pt;}
.h5{height:38.854160pt;}
.h2{height:54.359372pt;}
.h18{height:62.916660pt;}
.ha{height:69.890625pt;}
.h8{height:75.312497pt;}
.h9{height:77.656247pt;}
.h3{height:77.760414pt;}
.h19{height:77.760417pt;}
.h14{height:78.645830pt;}
.he{height:93.187500pt;}
.h4{height:100.953094pt;}
.h7{height:108.718781pt;}
.h17{height:116.484375pt;}
.h15{height:122.166636pt;}
.h16{height:124.249969pt;}
.h1{height:139.781250pt;}
.h6{height:155.312531pt;}
.hd{height:181.440000pt;}
.hb{height:193.678437pt;}
.h13{height:216.640013pt;}
.hf{height:220.800000pt;}
.h12{height:256.000016pt;}
.hc{height:256.265625pt;}
.h10{height:260.160000pt;}
.h11{height:269.120000pt;}
.h0{height:720.000000pt;}
.w2{width:279.040000pt;}
.w1{width:296.960000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x16{left:1.217067pt;}
.x1e{left:48.000000pt;}
.x28{left:52.977400pt;}
.x27{left:57.600000pt;}
.x12{left:61.382253pt;}
.x1{left:72.000000pt;}
.x29{left:83.560200pt;}
.xb{left:85.967027pt;}
.x7{left:87.543933pt;}
.x20{left:100.000000pt;}
.x8{left:112.904347pt;}
.x3{left:116.034747pt;}
.xe{left:119.822560pt;}
.x22{left:124.000000pt;}
.xf{left:132.409240pt;}
.x13{left:135.318267pt;}
.x21{left:147.000000pt;}
.x9{left:152.556400pt;}
.x2{left:171.339200pt;}
.x25{left:178.248667pt;}
.x24{left:180.843467pt;}
.x1c{left:188.727200pt;}
.xc{left:203.306400pt;}
.x18{left:206.560533pt;}
.x19{left:224.393867pt;}
.x1b{left:227.930400pt;}
.x1a{left:242.227200pt;}
.x14{left:267.022267pt;}
.x23{left:301.491867pt;}
.x15{left:307.840000pt;}
.x10{left:334.289600pt;}
.x11{left:349.622933pt;}
.xa{left:423.229600pt;}
.xd{left:495.018133pt;}
.x17{left:604.480000pt;}
.x2c{left:737.383467pt;}
.x2a{left:894.564267pt;}
.x2b{left:906.032400pt;}
.x4{left:936.730933pt;}
.x1d{left:951.495333pt;}
.x26{left:955.329600pt;}
.x1f{left:985.894800pt;}
.x5{left:1085.833333pt;}
.x6{left:1091.666667pt;}
}




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