
    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_107de88b556bb47aa134f7c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.060000;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_58582676278b383f311831bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.060000;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_c39f501cbb1ab0b916807f77.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.680000;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_62fc950268230e3ccd10e0a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053000;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_7a5280f8ea5c62129cb6a49f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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;}
.m22{transform:matrix(0.153294,0.197486,-0.197486,0.153294,0,0);-ms-transform:matrix(0.153294,0.197486,-0.197486,0.153294,0,0);-webkit-transform:matrix(0.153294,0.197486,-0.197486,0.153294,0,0);}
.m1{transform:matrix(0.155645,-0.195639,0.195639,0.155645,0,0);-ms-transform:matrix(0.155645,-0.195639,0.195639,0.155645,0,0);-webkit-transform:matrix(0.155645,-0.195639,0.195639,0.155645,0,0);}
.m21{transform:matrix(0.164810,0.187983,-0.187983,0.164810,0,0);-ms-transform:matrix(0.164810,0.187983,-0.187983,0.164810,0,0);-webkit-transform:matrix(0.164810,0.187983,-0.187983,0.164810,0,0);}
.m2{transform:matrix(0.167041,-0.186004,0.186004,0.167041,0,0);-ms-transform:matrix(0.167041,-0.186004,0.186004,0.167041,0,0);-webkit-transform:matrix(0.167041,-0.186004,0.186004,0.167041,0,0);}
.m3{transform:matrix(0.175720,-0.177828,0.177828,0.175720,0,0);-ms-transform:matrix(0.175720,-0.177828,0.177828,0.175720,0,0);-webkit-transform:matrix(0.175720,-0.177828,0.177828,0.175720,0,0);}
.m20{transform:matrix(0.177828,0.175720,-0.175720,0.177828,0,0);-ms-transform:matrix(0.177828,0.175720,-0.175720,0.177828,0,0);-webkit-transform:matrix(0.177828,0.175720,-0.175720,0.177828,0,0);}
.m1f{transform:matrix(0.183998,0.169248,-0.169248,0.183998,0,0);-ms-transform:matrix(0.183998,0.169248,-0.169248,0.183998,0,0);-webkit-transform:matrix(0.183998,0.169248,-0.169248,0.183998,0,0);}
.m4{transform:matrix(0.186004,-0.167041,0.167041,0.186004,0,0);-ms-transform:matrix(0.186004,-0.167041,0.167041,0.186004,0,0);-webkit-transform:matrix(0.186004,-0.167041,0.167041,0.186004,0,0);}
.m2f{transform:matrix(0.189937,0.162555,-0.162555,0.189937,0,0);-ms-transform:matrix(0.189937,0.162555,-0.162555,0.189937,0,0);-webkit-transform:matrix(0.189937,0.162555,-0.162555,0.189937,0,0);}
.m1e{transform:matrix(0.193765,0.157973,-0.157973,0.193765,0,0);-ms-transform:matrix(0.193765,0.157973,-0.157973,0.193765,0,0);-webkit-transform:matrix(0.193765,0.157973,-0.157973,0.193765,0,0);}
.m5{transform:matrix(0.197486,-0.153294,0.153294,0.197486,0,0);-ms-transform:matrix(0.197486,-0.153294,0.153294,0.197486,0,0);-webkit-transform:matrix(0.197486,-0.153294,0.153294,0.197486,0,0);}
.m2e{transform:matrix(0.201099,0.148523,-0.148523,0.201099,0,0);-ms-transform:matrix(0.201099,0.148523,-0.148523,0.201099,0,0);-webkit-transform:matrix(0.201099,0.148523,-0.148523,0.201099,0,0);}
.m1d{transform:matrix(0.202865,0.146102,-0.146102,0.202865,0,0);-ms-transform:matrix(0.202865,0.146102,-0.146102,0.202865,0,0);-webkit-transform:matrix(0.202865,0.146102,-0.146102,0.202865,0,0);}
.m6{transform:matrix(0.204602,-0.143659,0.143659,0.204602,0,0);-ms-transform:matrix(0.204602,-0.143659,0.143659,0.204602,0,0);-webkit-transform:matrix(0.204602,-0.143659,0.143659,0.204602,0,0);}
.m7{transform:matrix(0.211271,-0.133659,0.133659,0.211271,0,0);-ms-transform:matrix(0.211271,-0.133659,0.133659,0.211271,0,0);-webkit-transform:matrix(0.211271,-0.133659,0.133659,0.211271,0,0);}
.m1c{transform:matrix(0.212866,0.131103,-0.131103,0.212866,0,0);-ms-transform:matrix(0.212866,0.131103,-0.131103,0.212866,0,0);-webkit-transform:matrix(0.212866,0.131103,-0.131103,0.212866,0,0);}
.m8{transform:matrix(0.218952,-0.120665,0.120665,0.218952,0,0);-ms-transform:matrix(0.218952,-0.120665,0.120665,0.218952,0,0);-webkit-transform:matrix(0.218952,-0.120665,0.120665,0.218952,0,0);}
.m1b{transform:matrix(0.220399,0.118002,-0.118002,0.220399,0,0);-ms-transform:matrix(0.220399,0.118002,-0.118002,0.220399,0,0);-webkit-transform:matrix(0.220399,0.118002,-0.118002,0.220399,0,0);}
.m9{transform:matrix(0.224553,-0.109891,0.109891,0.224553,0,0);-ms-transform:matrix(0.224553,-0.109891,0.109891,0.224553,0,0);-webkit-transform:matrix(0.224553,-0.109891,0.109891,0.224553,0,0);}
.m1a{transform:matrix(0.225875,0.107147,-0.107147,0.225875,0,0);-ms-transform:matrix(0.225875,0.107147,-0.107147,0.225875,0,0);-webkit-transform:matrix(0.225875,0.107147,-0.107147,0.225875,0,0);}
.m23{transform:matrix(0.225875,-0.107147,0.107147,0.225875,0,0);-ms-transform:matrix(0.225875,-0.107147,0.107147,0.225875,0,0);-webkit-transform:matrix(0.225875,-0.107147,0.107147,0.225875,0,0);}
.ma{transform:matrix(0.229651,-0.098796,0.098796,0.229651,0,0);-ms-transform:matrix(0.229651,-0.098796,0.098796,0.229651,0,0);-webkit-transform:matrix(0.229651,-0.098796,0.098796,0.229651,0,0);}
.m19{transform:matrix(0.232004,0.093134,-0.093134,0.232004,0,0);-ms-transform:matrix(0.232004,0.093134,-0.093134,0.232004,0,0);-webkit-transform:matrix(0.232004,0.093134,-0.093134,0.232004,0,0);}
.m24{transform:matrix(0.234224,-0.087401,0.087401,0.234224,0,0);-ms-transform:matrix(0.234224,-0.087401,0.087401,0.234224,0,0);-webkit-transform:matrix(0.234224,-0.087401,0.087401,0.234224,0,0);}
.mb{transform:matrix(0.235284,-0.084507,0.084507,0.235284,0,0);-ms-transform:matrix(0.235284,-0.084507,0.084507,0.235284,0,0);-webkit-transform:matrix(0.235284,-0.084507,0.084507,0.235284,0,0);}
.m18{transform:matrix(0.236309,0.081597,-0.081597,0.236309,0,0);-ms-transform:matrix(0.236309,0.081597,-0.081597,0.236309,0,0);-webkit-transform:matrix(0.236309,0.081597,-0.081597,0.236309,0,0);}
.m25{transform:matrix(0.239176,-0.072767,0.072767,0.239176,0,0);-ms-transform:matrix(0.239176,-0.072767,0.072767,0.239176,0,0);-webkit-transform:matrix(0.239176,-0.072767,0.072767,0.239176,0,0);}
.m17{transform:matrix(0.240060,0.069793,-0.069793,0.240060,0,0);-ms-transform:matrix(0.240060,0.069793,-0.069793,0.240060,0,0);-webkit-transform:matrix(0.240060,0.069793,-0.069793,0.240060,0,0);}
.mc{transform:matrix(0.240060,-0.069793,0.069793,0.240060,0,0);-ms-transform:matrix(0.240060,-0.069793,0.069793,0.240060,0,0);-webkit-transform:matrix(0.240060,-0.069793,0.069793,0.240060,0,0);}
.m26{transform:matrix(0.241722,-0.063800,0.063800,0.241722,0,0);-ms-transform:matrix(0.241722,-0.063800,0.063800,0.241722,0,0);-webkit-transform:matrix(0.241722,-0.063800,0.063800,0.241722,0,0);}
.m31{transform:matrix(0.242266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242266,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.242499,0.060782,-0.060782,0.242499,0,0);-ms-transform:matrix(0.242499,0.060782,-0.060782,0.242499,0,0);-webkit-transform:matrix(0.242499,0.060782,-0.060782,0.242499,0,0);}
.md{transform:matrix(0.243238,-0.057751,0.057751,0.243238,0,0);-ms-transform:matrix(0.243238,-0.057751,0.057751,0.243238,0,0);-webkit-transform:matrix(0.243238,-0.057751,0.057751,0.243238,0,0);}
.m16{transform:matrix(0.244606,0.051651,-0.051651,0.244606,0,0);-ms-transform:matrix(0.244606,0.051651,-0.051651,0.244606,0,0);-webkit-transform:matrix(0.244606,0.051651,-0.051651,0.244606,0,0);}
.m27{transform:matrix(0.244606,-0.051651,0.051651,0.244606,0,0);-ms-transform:matrix(0.244606,-0.051651,0.051651,0.244606,0,0);-webkit-transform:matrix(0.244606,-0.051651,0.051651,0.244606,0,0);}
.me{transform:matrix(0.245234,-0.048583,0.048583,0.245234,0,0);-ms-transform:matrix(0.245234,-0.048583,0.048583,0.245234,0,0);-webkit-transform:matrix(0.245234,-0.048583,0.048583,0.245234,0,0);}
.m2c{transform:matrix(0.246376,0.042414,-0.042414,0.246376,0,0);-ms-transform:matrix(0.246376,0.042414,-0.042414,0.246376,0,0);-webkit-transform:matrix(0.246376,0.042414,-0.042414,0.246376,0,0);}
.m15{transform:matrix(0.246890,0.039314,-0.039314,0.246890,0,0);-ms-transform:matrix(0.246890,0.039314,-0.039314,0.246890,0,0);-webkit-transform:matrix(0.246890,0.039314,-0.039314,0.246890,0,0);}
.m28{transform:matrix(0.246890,-0.039314,0.039314,0.246890,0,0);-ms-transform:matrix(0.246890,-0.039314,0.039314,0.246890,0,0);-webkit-transform:matrix(0.246890,-0.039314,0.039314,0.246890,0,0);}
.mf{transform:matrix(0.247365,-0.036205,0.036205,0.247365,0,0);-ms-transform:matrix(0.247365,-0.036205,0.036205,0.247365,0,0);-webkit-transform:matrix(0.247365,-0.036205,0.036205,0.247365,0,0);}
.m2b{transform:matrix(0.247801,0.033086,-0.033086,0.247801,0,0);-ms-transform:matrix(0.247801,0.033086,-0.033086,0.247801,0,0);-webkit-transform:matrix(0.247801,0.033086,-0.033086,0.247801,0,0);}
.m14{transform:matrix(0.248198,0.029960,-0.029960,0.248198,0,0);-ms-transform:matrix(0.248198,0.029960,-0.029960,0.248198,0,0);-webkit-transform:matrix(0.248198,0.029960,-0.029960,0.248198,0,0);}
.m29{transform:matrix(0.248875,-0.023688,0.023688,0.248875,0,0);-ms-transform:matrix(0.248875,-0.023688,0.023688,0.248875,0,0);-webkit-transform:matrix(0.248875,-0.023688,0.023688,0.248875,0,0);}
.m10{transform:matrix(0.249155,-0.020542,0.020542,0.249155,0,0);-ms-transform:matrix(0.249155,-0.020542,0.020542,0.249155,0,0);-webkit-transform:matrix(0.249155,-0.020542,0.020542,0.249155,0,0);}
.m13{transform:matrix(0.249394,0.017391,-0.017391,0.249394,0,0);-ms-transform:matrix(0.249394,0.017391,-0.017391,0.249394,0,0);-webkit-transform:matrix(0.249394,0.017391,-0.017391,0.249394,0,0);}
.m12{transform:matrix(0.249955,0.004749,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249955,0.004749,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249955,0.004749,-0.004749,0.249955,0,0);}
.m11{transform:matrix(0.249955,-0.004749,0.004749,0.249955,0,0);-ms-transform:matrix(0.249955,-0.004749,0.004749,0.249955,0,0);-webkit-transform:matrix(0.249955,-0.004749,0.004749,0.249955,0,0);}
.m2a{transform:matrix(0.249995,-0.001583,0.001583,0.249995,0,0);-ms-transform:matrix(0.249995,-0.001583,0.001583,0.249995,0,0);-webkit-transform:matrix(0.249995,-0.001583,0.001583,0.249995,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);}
.m32{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls3{letter-spacing:-3.186000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.696000px;}
.ls2{letter-spacing:1.740000px;}
.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;}
}
.ws6{word-spacing:-18.000000px;}
.ws5{word-spacing:-13.014000px;}
.ws4{word-spacing:-12.180000px;}
.ws3{word-spacing:-11.136000px;}
.ws2{word-spacing:-9.444600px;}
.ws1{word-spacing:-0.240000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-2.692800px;}
._0{margin-left:-1.299600px;}
._2{width:1.044000px;}
.fc6{color:rgb(61,60,59);}
.fc5{color:rgb(119,190,128);}
.fc4{color:rgb(2,2,3);}
.fc3{color:rgb(14,61,38);}
.fc2{color:rgb(236,99,56);}
.fc1{color:rgb(255,253,246);}
.fc0{color:rgb(255,255,255);}
.fs2e{font-size:4.596600px;}
.fs2d{font-size:11.916600px;}
.fs1f{font-size:31.482000px;}
.fs2b{font-size:34.800000px;}
.fs2c{font-size:34.980000px;}
.fs0{font-size:36.000000px;}
.fs1e{font-size:54.000000px;}
.fs2a{font-size:60.000000px;}
.fs1d{font-size:120.000000px;}
.fs9{font-size:131.999646px;}
.fs21{font-size:131.999708px;}
.fs12{font-size:131.999712px;}
.fs28{font-size:131.999740px;}
.fs22{font-size:131.999754px;}
.fs14{font-size:131.999767px;}
.fs29{font-size:131.999791px;}
.fs3{font-size:131.999807px;}
.fs10{font-size:131.999817px;}
.fs23{font-size:131.999856px;}
.fs17{font-size:131.999902px;}
.fs2{font-size:131.999930px;}
.fs6{font-size:131.999955px;}
.fsf{font-size:131.999961px;}
.fs11{font-size:131.999968px;}
.fs1{font-size:131.999983px;}
.fs15{font-size:131.999990px;}
.fs19{font-size:131.999999px;}
.fsb{font-size:132.000001px;}
.fs1b{font-size:132.000002px;}
.fsa{font-size:132.000006px;}
.fs4{font-size:132.000012px;}
.fs5{font-size:132.000026px;}
.fsd{font-size:132.000066px;}
.fs16{font-size:132.000072px;}
.fs7{font-size:132.000090px;}
.fse{font-size:132.000105px;}
.fs25{font-size:132.000117px;}
.fs26{font-size:132.000124px;}
.fs13{font-size:132.000129px;}
.fs27{font-size:132.000135px;}
.fs1a{font-size:132.000179px;}
.fs18{font-size:132.000206px;}
.fsc{font-size:132.000241px;}
.fs24{font-size:132.000246px;}
.fs8{font-size:132.000259px;}
.fs20{font-size:132.000327px;}
.fs1c{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:45.143550px;}
.y1{bottom:57.140550px;}
.y2e{bottom:94.091550px;}
.y2d{bottom:110.291550px;}
.y2c{bottom:134.559900px;}
.y56{bottom:146.673150px;}
.y55{bottom:150.084300px;}
.y4e{bottom:200.726100px;}
.y2b{bottom:211.449750px;}
.y4d{bottom:217.223100px;}
.y2a{bottom:227.649750px;}
.y4c{bottom:238.223100px;}
.y29{bottom:251.918250px;}
.y4b{bottom:259.229100px;}
.y4a{bottom:275.726100px;}
.y49{bottom:292.223100px;}
.y48{bottom:313.223100px;}
.y28{bottom:328.949550px;}
.y54{bottom:340.192350px;}
.y47{bottom:346.223100px;}
.y27{bottom:353.217900px;}
.y53{bottom:361.387350px;}
.y46{bottom:364.223100px;}
.y45{bottom:382.223100px;}
.y52{bottom:390.592350px;}
.y44{bottom:400.223100px;}
.y51{bottom:413.587350px;}
.y26{bottom:430.321650px;}
.y50{bottom:444.592350px;}
.y25{bottom:453.527100px;}
.y3{bottom:459.483750px;}
.y4f{bottom:467.587350px;}
.y2f{bottom:470.726550px;}
.y24{bottom:472.198350px;}
.y4{bottom:479.539650px;}
.y30{bottom:482.433900px;}
.y43{bottom:486.179250px;}
.y5{bottom:486.225000px;}
.y23{bottom:488.524200px;}
.y31{bottom:495.124800px;}
.y6{bottom:496.477350px;}
.y42{bottom:498.394650px;}
.y22{bottom:499.410450px;}
.y21{bottom:506.077950px;}
.y32{bottom:506.437500px;}
.y41{bottom:509.499600px;}
.y7{bottom:510.569850px;}
.y33{bottom:511.405200px;}
.y20{bottom:518.502450px;}
.y34{bottom:520.776900px;}
.y8{bottom:523.023000px;}
.y40{bottom:523.251600px;}
.y35{bottom:527.772750px;}
.y9{bottom:528.268350px;}
.y3f{bottom:529.666500px;}
.y36{bottom:530.395350px;}
.y1f{bottom:530.544750px;}
.y37{bottom:532.799400px;}
.y3e{bottom:535.001250px;}
.y38{bottom:536.298300px;}
.y3d{bottom:537.299250px;}
.y39{bottom:537.961200px;}
.y3c{bottom:538.450950px;}
.ya{bottom:539.823600px;}
.y3a{bottom:539.923200px;}
.y3b{bottom:540.020250px;}
.y1e{bottom:541.847700px;}
.y1d{bottom:545.878500px;}
.yb{bottom:546.619800px;}
.yc{bottom:551.083800px;}
.y1c{bottom:553.539150px;}
.yd{bottom:557.723400px;}
.y1b{bottom:561.247500px;}
.y1a{bottom:564.025350px;}
.ye{bottom:564.825300px;}
.yf{bottom:568.796850px;}
.y19{bottom:570.184200px;}
.y10{bottom:572.021100px;}
.y11{bottom:573.854250px;}
.y18{bottom:574.108950px;}
.y17{bottom:575.523900px;}
.y12{bottom:576.366900px;}
.y16{bottom:576.588300px;}
.y13{bottom:578.058750px;}
.y14{bottom:578.301150px;}
.y15{bottom:578.302800px;}
.h31{height:3.492339px;}
.h30{height:9.053823px;}
.h2c{height:28.188000px;}
.h2e{height:28.333800px;}
.h2{height:28.728000px;}
.h1f{height:42.768000px;}
.h20{height:42.915744px;}
.h2d{height:47.496000px;}
.h2f{height:47.520000px;}
.h2b{height:47.880000px;}
.hb{height:106.919713px;}
.h22{height:106.919764px;}
.h14{height:106.919767px;}
.h29{height:106.919789px;}
.h23{height:106.919801px;}
.h16{height:106.919811px;}
.h2a{height:106.919831px;}
.h5{height:106.919844px;}
.h12{height:106.919852px;}
.h24{height:106.919883px;}
.h19{height:106.919921px;}
.h4{height:106.919943px;}
.h8{height:106.919964px;}
.h11{height:106.919968px;}
.h13{height:106.919974px;}
.h3{height:106.919986px;}
.h17{height:106.919992px;}
.h1b{height:106.919999px;}
.hd{height:106.920001px;}
.h1d{height:106.920002px;}
.hc{height:106.920005px;}
.h6{height:106.920010px;}
.h7{height:106.920021px;}
.hf{height:106.920054px;}
.h18{height:106.920058px;}
.h9{height:106.920073px;}
.h10{height:106.920085px;}
.h26{height:106.920095px;}
.h27{height:106.920100px;}
.h15{height:106.920104px;}
.h28{height:106.920110px;}
.h1c{height:106.920145px;}
.h1a{height:106.920167px;}
.he{height:106.920195px;}
.h25{height:106.920199px;}
.ha{height:106.920210px;}
.h21{height:106.920265px;}
.h1e{height:160.080000px;}
.h1{height:637.500000px;}
.h0{height:637.795500px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.x2{left:84.942150px;}
.x48{left:90.115950px;}
.x3{left:101.282250px;}
.x4{left:107.179050px;}
.x5{left:117.053850px;}
.x40{left:120.024000px;}
.x6{left:132.622200px;}
.x29{left:146.466750px;}
.x7{left:148.814250px;}
.x8{left:156.025350px;}
.x2a{left:159.514200px;}
.x41{left:161.766000px;}
.x9{left:174.642600px;}
.x2b{left:175.837950px;}
.x3d{left:177.479250px;}
.x3f{left:184.999500px;}
.xa{left:187.137750px;}
.x2c{left:193.908300px;}
.xb{left:195.981000px;}
.x3c{left:199.199250px;}
.x2d{left:202.486350px;}
.x26{left:203.851500px;}
.x45{left:207.261150px;}
.xc{left:211.131750px;}
.x25{left:212.646900px;}
.x27{left:213.985500px;}
.x3e{left:215.474250px;}
.x28{left:219.007500px;}
.x2e{left:222.305550px;}
.xd{left:231.234300px;}
.x44{left:237.128700px;}
.x1{left:240.496500px;}
.x2f{left:241.497300px;}
.xe{left:244.894500px;}
.x30{left:250.013850px;}
.x43{left:251.276700px;}
.xf{left:258.747300px;}
.x10{left:267.472500px;}
.x31{left:275.769600px;}
.x24{left:276.808200px;}
.x11{left:283.823250px;}
.x32{left:285.537450px;}
.x46{left:290.157450px;}
.x47{left:292.881450px;}
.x42{left:302.189400px;}
.x12{left:305.408100px;}
.x33{left:306.776700px;}
.x13{left:319.629600px;}
.x34{left:327.342750px;}
.x14{left:328.548300px;}
.x35{left:347.212500px;}
.x15{left:350.391600px;}
.x36{left:356.049000px;}
.x16{left:359.238600px;}
.x17{left:369.044100px;}
.x18{left:388.128450px;}
.x37{left:390.752550px;}
.x19{left:408.881700px;}
.x38{left:410.335350px;}
.x1a{left:417.354900px;}
.x1b{left:436.273650px;}
.x39{left:438.931200px;}
.x1c{left:452.032350px;}
.x3a{left:457.147500px;}
.x1d{left:459.993300px;}
.x49{left:471.986100px;}
.x3b{left:473.692950px;}
.x1e{left:478.469100px;}
.x1f{left:495.136500px;}
.x20{left:510.127950px;}
.x21{left:517.448100px;}
.x22{left:528.605700px;}
.x23{left:542.826000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls3{letter-spacing:-2.832000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.618667pt;}
.ls2{letter-spacing:1.546667pt;}
.ws6{word-spacing:-16.000000pt;}
.ws5{word-spacing:-11.568000pt;}
.ws4{word-spacing:-10.826667pt;}
.ws3{word-spacing:-9.898667pt;}
.ws2{word-spacing:-8.395200pt;}
.ws1{word-spacing:-0.213333pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-2.393600pt;}
._0{margin-left:-1.155200pt;}
._2{width:0.928000pt;}
.fs2e{font-size:4.085867pt;}
.fs2d{font-size:10.592533pt;}
.fs1f{font-size:27.984000pt;}
.fs2b{font-size:30.933333pt;}
.fs2c{font-size:31.093333pt;}
.fs0{font-size:32.000000pt;}
.fs1e{font-size:48.000000pt;}
.fs2a{font-size:53.333333pt;}
.fs1d{font-size:106.666667pt;}
.fs9{font-size:117.333018pt;}
.fs21{font-size:117.333074pt;}
.fs12{font-size:117.333077pt;}
.fs28{font-size:117.333102pt;}
.fs22{font-size:117.333115pt;}
.fs14{font-size:117.333126pt;}
.fs29{font-size:117.333148pt;}
.fs3{font-size:117.333162pt;}
.fs10{font-size:117.333170pt;}
.fs23{font-size:117.333205pt;}
.fs17{font-size:117.333247pt;}
.fs2{font-size:117.333271pt;}
.fs6{font-size:117.333293pt;}
.fsf{font-size:117.333299pt;}
.fs11{font-size:117.333305pt;}
.fs1{font-size:117.333318pt;}
.fs15{font-size:117.333324pt;}
.fs19{font-size:117.333333pt;}
.fsb{font-size:117.333334pt;}
.fs1b{font-size:117.333335pt;}
.fsa{font-size:117.333339pt;}
.fs4{font-size:117.333344pt;}
.fs5{font-size:117.333356pt;}
.fsd{font-size:117.333392pt;}
.fs16{font-size:117.333397pt;}
.fs7{font-size:117.333413pt;}
.fse{font-size:117.333427pt;}
.fs25{font-size:117.333437pt;}
.fs26{font-size:117.333443pt;}
.fs13{font-size:117.333448pt;}
.fs27{font-size:117.333454pt;}
.fs1a{font-size:117.333493pt;}
.fs18{font-size:117.333517pt;}
.fsc{font-size:117.333547pt;}
.fs24{font-size:117.333552pt;}
.fs8{font-size:117.333564pt;}
.fs20{font-size:117.333624pt;}
.fs1c{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:40.127600pt;}
.y1{bottom:50.791600pt;}
.y2e{bottom:83.636933pt;}
.y2d{bottom:98.036933pt;}
.y2c{bottom:119.608800pt;}
.y56{bottom:130.376133pt;}
.y55{bottom:133.408267pt;}
.y4e{bottom:178.423200pt;}
.y2b{bottom:187.955333pt;}
.y4d{bottom:193.087200pt;}
.y2a{bottom:202.355333pt;}
.y4c{bottom:211.753867pt;}
.y29{bottom:223.927333pt;}
.y4b{bottom:230.425867pt;}
.y4a{bottom:245.089867pt;}
.y49{bottom:259.753867pt;}
.y48{bottom:278.420533pt;}
.y28{bottom:292.399600pt;}
.y54{bottom:302.393200pt;}
.y47{bottom:307.753867pt;}
.y27{bottom:313.971467pt;}
.y53{bottom:321.233200pt;}
.y46{bottom:323.753867pt;}
.y45{bottom:339.753867pt;}
.y52{bottom:347.193200pt;}
.y44{bottom:355.753867pt;}
.y51{bottom:367.633200pt;}
.y26{bottom:382.508133pt;}
.y50{bottom:395.193200pt;}
.y25{bottom:403.135200pt;}
.y3{bottom:408.430000pt;}
.y4f{bottom:415.633200pt;}
.y2f{bottom:418.423600pt;}
.y24{bottom:419.731867pt;}
.y4{bottom:426.257467pt;}
.y30{bottom:428.830133pt;}
.y43{bottom:432.159333pt;}
.y5{bottom:432.200000pt;}
.y23{bottom:434.243733pt;}
.y31{bottom:440.110933pt;}
.y6{bottom:441.313200pt;}
.y42{bottom:443.017467pt;}
.y22{bottom:443.920400pt;}
.y21{bottom:449.847067pt;}
.y32{bottom:450.166667pt;}
.y41{bottom:452.888533pt;}
.y7{bottom:453.839867pt;}
.y33{bottom:454.582400pt;}
.y20{bottom:460.891067pt;}
.y34{bottom:462.912800pt;}
.y8{bottom:464.909333pt;}
.y40{bottom:465.112533pt;}
.y35{bottom:469.131333pt;}
.y9{bottom:469.571867pt;}
.y3f{bottom:470.814667pt;}
.y36{bottom:471.462533pt;}
.y1f{bottom:471.595333pt;}
.y37{bottom:473.599467pt;}
.y3e{bottom:475.556667pt;}
.y38{bottom:476.709600pt;}
.y3d{bottom:477.599333pt;}
.y39{bottom:478.187733pt;}
.y3c{bottom:478.623067pt;}
.ya{bottom:479.843200pt;}
.y3a{bottom:479.931733pt;}
.y3b{bottom:480.018000pt;}
.y1e{bottom:481.642400pt;}
.y1d{bottom:485.225333pt;}
.yb{bottom:485.884267pt;}
.yc{bottom:489.852267pt;}
.y1c{bottom:492.034800pt;}
.yd{bottom:495.754133pt;}
.y1b{bottom:498.886667pt;}
.y1a{bottom:501.355867pt;}
.ye{bottom:502.066933pt;}
.yf{bottom:505.597200pt;}
.y19{bottom:506.830400pt;}
.y10{bottom:508.463200pt;}
.y11{bottom:510.092667pt;}
.y18{bottom:510.319067pt;}
.y17{bottom:511.576800pt;}
.y12{bottom:512.326133pt;}
.y16{bottom:512.522933pt;}
.y13{bottom:513.830000pt;}
.y14{bottom:514.045467pt;}
.y15{bottom:514.046933pt;}
.h31{height:3.104301pt;}
.h30{height:8.047843pt;}
.h2c{height:25.056000pt;}
.h2e{height:25.185600pt;}
.h2{height:25.536000pt;}
.h1f{height:38.016000pt;}
.h20{height:38.147328pt;}
.h2d{height:42.218667pt;}
.h2f{height:42.240000pt;}
.h2b{height:42.560000pt;}
.hb{height:95.039745pt;}
.h22{height:95.039790pt;}
.h14{height:95.039792pt;}
.h29{height:95.039813pt;}
.h23{height:95.039823pt;}
.h16{height:95.039832pt;}
.h2a{height:95.039850pt;}
.h5{height:95.039861pt;}
.h12{height:95.039868pt;}
.h24{height:95.039896pt;}
.h19{height:95.039930pt;}
.h4{height:95.039949pt;}
.h8{height:95.039968pt;}
.h11{height:95.039972pt;}
.h13{height:95.039977pt;}
.h3{height:95.039987pt;}
.h17{height:95.039992pt;}
.h1b{height:95.039999pt;}
.hd{height:95.040001pt;}
.h1d{height:95.040002pt;}
.hc{height:95.040004pt;}
.h6{height:95.040009pt;}
.h7{height:95.040019pt;}
.hf{height:95.040048pt;}
.h18{height:95.040052pt;}
.h9{height:95.040065pt;}
.h10{height:95.040076pt;}
.h26{height:95.040084pt;}
.h27{height:95.040089pt;}
.h15{height:95.040093pt;}
.h28{height:95.040098pt;}
.h1c{height:95.040129pt;}
.h1a{height:95.040149pt;}
.he{height:95.040173pt;}
.h25{height:95.040177pt;}
.ha{height:95.040187pt;}
.h21{height:95.040235pt;}
.h1e{height:142.293333pt;}
.h1{height:566.666667pt;}
.h0{height:566.929333pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.x2{left:75.504133pt;}
.x48{left:80.103067pt;}
.x3{left:90.028667pt;}
.x4{left:95.270267pt;}
.x5{left:104.047867pt;}
.x40{left:106.688000pt;}
.x6{left:117.886400pt;}
.x29{left:130.192667pt;}
.x7{left:132.279333pt;}
.x8{left:138.689200pt;}
.x2a{left:141.790400pt;}
.x41{left:143.792000pt;}
.x9{left:155.237867pt;}
.x2b{left:156.300400pt;}
.x3d{left:157.759333pt;}
.x3f{left:164.444000pt;}
.xa{left:166.344667pt;}
.x2c{left:172.362933pt;}
.xb{left:174.205333pt;}
.x3c{left:177.066000pt;}
.x2d{left:179.987867pt;}
.x26{left:181.201333pt;}
.x45{left:184.232133pt;}
.xc{left:187.672667pt;}
.x25{left:189.019467pt;}
.x27{left:190.209333pt;}
.x3e{left:191.532667pt;}
.x28{left:194.673333pt;}
.x2e{left:197.604933pt;}
.xd{left:205.541600pt;}
.x44{left:210.781067pt;}
.x1{left:213.774667pt;}
.x2f{left:214.664267pt;}
.xe{left:217.684000pt;}
.x30{left:222.234533pt;}
.x43{left:223.357067pt;}
.xf{left:229.997600pt;}
.x10{left:237.753333pt;}
.x31{left:245.128533pt;}
.x24{left:246.051733pt;}
.x11{left:252.287333pt;}
.x32{left:253.811067pt;}
.x46{left:257.917733pt;}
.x47{left:260.339067pt;}
.x42{left:268.612800pt;}
.x12{left:271.473867pt;}
.x33{left:272.690400pt;}
.x13{left:284.115200pt;}
.x34{left:290.971333pt;}
.x14{left:292.042933pt;}
.x35{left:308.633333pt;}
.x15{left:311.459200pt;}
.x36{left:316.488000pt;}
.x16{left:319.323200pt;}
.x17{left:328.039200pt;}
.x18{left:345.003067pt;}
.x37{left:347.335600pt;}
.x19{left:363.450400pt;}
.x38{left:364.742533pt;}
.x1a{left:370.982133pt;}
.x1b{left:387.798800pt;}
.x39{left:390.161067pt;}
.x1c{left:401.806533pt;}
.x3a{left:406.353333pt;}
.x1d{left:408.882933pt;}
.x49{left:419.543200pt;}
.x3b{left:421.060400pt;}
.x1e{left:425.305867pt;}
.x1f{left:440.121333pt;}
.x20{left:453.447067pt;}
.x21{left:459.953867pt;}
.x22{left:469.871733pt;}
.x23{left:482.512000pt;}
}




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