
    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_96157e27eb71df748da27f25.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3d0c9b17635f4f1965997eaa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.171708,0.181704,-0.181704,0.171708,0,0);-ms-transform:matrix(0.171708,0.181704,-0.181704,0.171708,0,0);-webkit-transform:matrix(0.171708,0.181704,-0.181704,0.171708,0,0);}
.m5{transform:matrix(0.188011,0.164778,-0.164778,0.188011,0,0);-ms-transform:matrix(0.188011,0.164778,-0.164778,0.188011,0,0);-webkit-transform:matrix(0.188011,0.164778,-0.164778,0.188011,0,0);}
.m6{transform:matrix(0.192114,0.159976,-0.159976,0.192114,0,0);-ms-transform:matrix(0.192114,0.159976,-0.159976,0.192114,0,0);-webkit-transform:matrix(0.192114,0.159976,-0.159976,0.192114,0,0);}
.m37{transform:matrix(0.195634,0.155651,-0.155651,0.195634,0,0);-ms-transform:matrix(0.195634,0.155651,-0.155651,0.195634,0,0);-webkit-transform:matrix(0.195634,0.155651,-0.155651,0.195634,0,0);}
.m2f{transform:matrix(0.196120,0.155038,-0.155038,0.196120,0,0);-ms-transform:matrix(0.196120,0.155038,-0.155038,0.196120,0,0);-webkit-transform:matrix(0.196120,0.155038,-0.155038,0.196120,0,0);}
.m29{transform:matrix(0.196914,0.154029,-0.154029,0.196914,0,0);-ms-transform:matrix(0.196914,0.154029,-0.154029,0.196914,0,0);-webkit-transform:matrix(0.196914,0.154029,-0.154029,0.196914,0,0);}
.m2{transform:matrix(0.197049,0.153856,-0.153856,0.197049,0,0);-ms-transform:matrix(0.197049,0.153856,-0.153856,0.197049,0,0);-webkit-transform:matrix(0.197049,0.153856,-0.153856,0.197049,0,0);}
.mb{transform:matrix(0.198448,0.152048,-0.152048,0.198448,0,0);-ms-transform:matrix(0.198448,0.152048,-0.152048,0.198448,0,0);-webkit-transform:matrix(0.198448,0.152048,-0.152048,0.198448,0,0);}
.m4{transform:matrix(0.202877,0.146086,-0.146086,0.202877,0,0);-ms-transform:matrix(0.202877,0.146086,-0.146086,0.202877,0,0);-webkit-transform:matrix(0.202877,0.146086,-0.146086,0.202877,0,0);}
.mc{transform:matrix(0.206406,0.141056,-0.141056,0.206406,0,0);-ms-transform:matrix(0.206406,0.141056,-0.141056,0.206406,0,0);-webkit-transform:matrix(0.206406,0.141056,-0.141056,0.206406,0,0);}
.m11{transform:matrix(0.208287,0.138263,-0.138263,0.208287,0,0);-ms-transform:matrix(0.208287,0.138263,-0.138263,0.208287,0,0);-webkit-transform:matrix(0.208287,0.138263,-0.138263,0.208287,0,0);}
.ma{transform:matrix(0.214875,0.127783,-0.127783,0.214875,0,0);-ms-transform:matrix(0.214875,0.127783,-0.127783,0.214875,0,0);-webkit-transform:matrix(0.214875,0.127783,-0.127783,0.214875,0,0);}
.m3{transform:matrix(0.215281,0.127098,-0.127098,0.215281,0,0);-ms-transform:matrix(0.215281,0.127098,-0.127098,0.215281,0,0);-webkit-transform:matrix(0.215281,0.127098,-0.127098,0.215281,0,0);}
.m12{transform:matrix(0.216242,0.125456,-0.125456,0.216242,0,0);-ms-transform:matrix(0.216242,0.125456,-0.125456,0.216242,0,0);-webkit-transform:matrix(0.216242,0.125456,-0.125456,0.216242,0,0);}
.m23{transform:matrix(0.218151,0.122107,-0.122107,0.218151,0,0);-ms-transform:matrix(0.218151,0.122107,-0.122107,0.218151,0,0);-webkit-transform:matrix(0.218151,0.122107,-0.122107,0.218151,0,0);}
.m13{transform:matrix(0.218691,0.121138,-0.121138,0.218691,0,0);-ms-transform:matrix(0.218691,0.121138,-0.121138,0.218691,0,0);-webkit-transform:matrix(0.218691,0.121138,-0.121138,0.218691,0,0);}
.m9{transform:matrix(0.220825,0.117202,-0.117202,0.220825,0,0);-ms-transform:matrix(0.220825,0.117202,-0.117202,0.220825,0,0);-webkit-transform:matrix(0.220825,0.117202,-0.117202,0.220825,0,0);}
.m19{transform:matrix(0.221051,0.116775,-0.116775,0.221051,0,0);-ms-transform:matrix(0.221051,0.116775,-0.116775,0.221051,0,0);-webkit-transform:matrix(0.221051,0.116775,-0.116775,0.221051,0,0);}
.m18{transform:matrix(0.222160,0.114652,-0.114652,0.222160,0,0);-ms-transform:matrix(0.222160,0.114652,-0.114652,0.222160,0,0);-webkit-transform:matrix(0.222160,0.114652,-0.114652,0.222160,0,0);}
.m1f{transform:matrix(0.223105,0.112802,-0.112802,0.223105,0,0);-ms-transform:matrix(0.223105,0.112802,-0.112802,0.223105,0,0);-webkit-transform:matrix(0.223105,0.112802,-0.112802,0.223105,0,0);}
.m10{transform:matrix(0.224809,0.109366,-0.109366,0.224809,0,0);-ms-transform:matrix(0.224809,0.109366,-0.109366,0.224809,0,0);-webkit-transform:matrix(0.224809,0.109366,-0.109366,0.224809,0,0);}
.m1e{transform:matrix(0.227199,0.104311,-0.104311,0.227199,0,0);-ms-transform:matrix(0.227199,0.104311,-0.104311,0.227199,0,0);-webkit-transform:matrix(0.227199,0.104311,-0.104311,0.227199,0,0);}
.m24{transform:matrix(0.231273,0.094936,-0.094936,0.231273,0,0);-ms-transform:matrix(0.231273,0.094936,-0.094936,0.231273,0,0);-webkit-transform:matrix(0.231273,0.094936,-0.094936,0.231273,0,0);}
.mf{transform:matrix(0.233235,0.090008,-0.090008,0.233235,0,0);-ms-transform:matrix(0.233235,0.090008,-0.090008,0.233235,0,0);-webkit-transform:matrix(0.233235,0.090008,-0.090008,0.233235,0,0);}
.m33{transform:matrix(0.233920,0.088211,-0.088211,0.233920,0,0);-ms-transform:matrix(0.233920,0.088211,-0.088211,0.233920,0,0);-webkit-transform:matrix(0.233920,0.088211,-0.088211,0.233920,0,0);}
.m17{transform:matrix(0.234433,0.086840,-0.086840,0.234433,0,0);-ms-transform:matrix(0.234433,0.086840,-0.086840,0.234433,0,0);-webkit-transform:matrix(0.234433,0.086840,-0.086840,0.234433,0,0);}
.m25{transform:matrix(0.234823,0.085780,-0.085780,0.234823,0,0);-ms-transform:matrix(0.234823,0.085780,-0.085780,0.234823,0,0);-webkit-transform:matrix(0.234823,0.085780,-0.085780,0.234823,0,0);}
.m1c{transform:matrix(0.236115,0.082158,-0.082158,0.236115,0,0);-ms-transform:matrix(0.236115,0.082158,-0.082158,0.236115,0,0);-webkit-transform:matrix(0.236115,0.082158,-0.082158,0.236115,0,0);}
.m2b{transform:matrix(0.236483,0.081090,-0.081090,0.236483,0,0);-ms-transform:matrix(0.236483,0.081090,-0.081090,0.236483,0,0);-webkit-transform:matrix(0.236483,0.081090,-0.081090,0.236483,0,0);}
.md{transform:matrix(0.236847,0.080021,-0.080021,0.236847,0,0);-ms-transform:matrix(0.236847,0.080021,-0.080021,0.236847,0,0);-webkit-transform:matrix(0.236847,0.080021,-0.080021,0.236847,0,0);}
.m1a{transform:matrix(0.236956,0.079700,-0.079700,0.236956,0,0);-ms-transform:matrix(0.236956,0.079700,-0.079700,0.236956,0,0);-webkit-transform:matrix(0.236956,0.079700,-0.079700,0.236956,0,0);}
.m1b{transform:matrix(0.236992,0.079592,-0.079592,0.236992,0,0);-ms-transform:matrix(0.236992,0.079592,-0.079592,0.236992,0,0);-webkit-transform:matrix(0.236992,0.079592,-0.079592,0.236992,0,0);}
.m31{transform:matrix(0.237561,0.077877,-0.077877,0.237561,0,0);-ms-transform:matrix(0.237561,0.077877,-0.077877,0.237561,0,0);-webkit-transform:matrix(0.237561,0.077877,-0.077877,0.237561,0,0);}
.m32{transform:matrix(0.237806,0.077126,-0.077126,0.237806,0,0);-ms-transform:matrix(0.237806,0.077126,-0.077126,0.237806,0,0);-webkit-transform:matrix(0.237806,0.077126,-0.077126,0.237806,0,0);}
.me{transform:matrix(0.238152,0.076051,-0.076051,0.238152,0,0);-ms-transform:matrix(0.238152,0.076051,-0.076051,0.238152,0,0);-webkit-transform:matrix(0.238152,0.076051,-0.076051,0.238152,0,0);}
.m20{transform:matrix(0.238493,0.074975,-0.074975,0.238493,0,0);-ms-transform:matrix(0.238493,0.074975,-0.074975,0.238493,0,0);-webkit-transform:matrix(0.238493,0.074975,-0.074975,0.238493,0,0);}
.m7{transform:matrix(0.238929,0.073572,-0.073572,0.238929,0,0);-ms-transform:matrix(0.238929,0.073572,-0.073572,0.238929,0,0);-webkit-transform:matrix(0.238929,0.073572,-0.073572,0.238929,0,0);}
.m26{transform:matrix(0.239904,0.070329,-0.070329,0.239904,0,0);-ms-transform:matrix(0.239904,0.070329,-0.070329,0.239904,0,0);-webkit-transform:matrix(0.239904,0.070329,-0.070329,0.239904,0,0);}
.m2a{transform:matrix(0.240000,0.070000,-0.070000,0.240000,0,0);-ms-transform:matrix(0.240000,0.070000,-0.070000,0.240000,0,0);-webkit-transform:matrix(0.240000,0.070000,-0.070000,0.240000,0,0);}
.m8{transform:matrix(0.240622,0.067831,-0.067831,0.240622,0,0);-ms-transform:matrix(0.240622,0.067831,-0.067831,0.240622,0,0);-webkit-transform:matrix(0.240622,0.067831,-0.067831,0.240622,0,0);}
.m2c{transform:matrix(0.240715,0.067500,-0.067500,0.240715,0,0);-ms-transform:matrix(0.240715,0.067500,-0.067500,0.240715,0,0);-webkit-transform:matrix(0.240715,0.067500,-0.067500,0.240715,0,0);}
.m30{transform:matrix(0.241108,0.066082,-0.066082,0.241108,0,0);-ms-transform:matrix(0.241108,0.066082,-0.066082,0.241108,0,0);-webkit-transform:matrix(0.241108,0.066082,-0.066082,0.241108,0,0);}
.m14{transform:matrix(0.241694,0.063904,-0.063904,0.241694,0,0);-ms-transform:matrix(0.241694,0.063904,-0.063904,0.241694,0,0);-webkit-transform:matrix(0.241694,0.063904,-0.063904,0.241694,0,0);}
.m16{transform:matrix(0.242067,0.062480,-0.062480,0.242067,0,0);-ms-transform:matrix(0.242067,0.062480,-0.062480,0.242067,0,0);-webkit-transform:matrix(0.242067,0.062480,-0.062480,0.242067,0,0);}
.m36{transform:matrix(0.246047,0.044281,-0.044281,0.246047,0,0);-ms-transform:matrix(0.246047,0.044281,-0.044281,0.246047,0,0);-webkit-transform:matrix(0.246047,0.044281,-0.044281,0.246047,0,0);}
.m2e{transform:matrix(0.246363,0.042489,-0.042489,0.246363,0,0);-ms-transform:matrix(0.246363,0.042489,-0.042489,0.246363,0,0);-webkit-transform:matrix(0.246363,0.042489,-0.042489,0.246363,0,0);}
.m28{transform:matrix(0.246598,0.041100,-0.041100,0.246598,0,0);-ms-transform:matrix(0.246598,0.041100,-0.041100,0.246598,0,0);-webkit-transform:matrix(0.246598,0.041100,-0.041100,0.246598,0,0);}
.m22{transform:matrix(0.246947,0.038954,-0.038954,0.246947,0,0);-ms-transform:matrix(0.246947,0.038954,-0.038954,0.246947,0,0);-webkit-transform:matrix(0.246947,0.038954,-0.038954,0.246947,0,0);}
.m15{transform:matrix(0.247386,0.036055,-0.036055,0.247386,0,0);-ms-transform:matrix(0.247386,0.036055,-0.036055,0.247386,0,0);-webkit-transform:matrix(0.247386,0.036055,-0.036055,0.247386,0,0);}
.m35{transform:matrix(0.248400,0.028235,-0.028235,0.248400,0,0);-ms-transform:matrix(0.248400,0.028235,-0.028235,0.248400,0,0);-webkit-transform:matrix(0.248400,0.028235,-0.028235,0.248400,0,0);}
.m34{transform:matrix(0.248561,0.026785,-0.026785,0.248561,0,0);-ms-transform:matrix(0.248561,0.026785,-0.026785,0.248561,0,0);-webkit-transform:matrix(0.248561,0.026785,-0.026785,0.248561,0,0);}
.m21{transform:matrix(0.249171,0.020348,-0.020348,0.249171,0,0);-ms-transform:matrix(0.249171,0.020348,-0.020348,0.249171,0,0);-webkit-transform:matrix(0.249171,0.020348,-0.020348,0.249171,0,0);}
.m27{transform:matrix(0.249227,0.019638,-0.019638,0.249227,0,0);-ms-transform:matrix(0.249227,0.019638,-0.019638,0.249227,0,0);-webkit-transform:matrix(0.249227,0.019638,-0.019638,0.249227,0,0);}
.m2d{transform:matrix(0.249309,0.018573,-0.018573,0.249309,0,0);-ms-transform:matrix(0.249309,0.018573,-0.018573,0.249309,0,0);-webkit-transform:matrix(0.249309,0.018573,-0.018573,0.249309,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-20.016000px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:29.952000px;}
.ws2{word-spacing:32.892000px;}
.ws1{word-spacing:32.952000px;}
._0{margin-left:-1.080000px;}
._1{width:1.440000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:36.000000px;}
.fs4{font-size:41.965572px;}
.fs12{font-size:41.966815px;}
.fs25{font-size:41.967802px;}
.fs33{font-size:41.968531px;}
.fs10{font-size:41.969003px;}
.fs1a{font-size:41.969904px;}
.fs28{font-size:41.971061px;}
.fs22{font-size:41.972648px;}
.fs17{font-size:41.973635px;}
.fs13{font-size:41.977065px;}
.fs9{font-size:41.978909px;}
.fs11{font-size:41.985340px;}
.fsd{font-size:41.989070px;}
.fs2f{font-size:41.989241px;}
.fs2d{font-size:41.989584px;}
.fs1e{font-size:41.989713px;}
.fs2a{font-size:41.990270px;}
.fs1c{font-size:41.992328px;}
.fs2e{font-size:41.993571px;}
.fs3{font-size:41.995928px;}
.fs2b{font-size:41.996057px;}
.fsf{font-size:41.996271px;}
.fs18{font-size:41.996786px;}
.fs6{font-size:41.999871px;}
.fs29{font-size:42.000000px;}
.fs31{font-size:42.001457px;}
.fs32{font-size:42.001757px;}
.fs19{font-size:42.003857px;}
.fs34{font-size:42.004157px;}
.fsc{font-size:42.004671px;}
.fs5{font-size:42.006342px;}
.fs30{font-size:42.009085px;}
.fs27{font-size:42.009813px;}
.fse{font-size:42.011056px;}
.fs2c{font-size:42.011184px;}
.fs23{font-size:42.012213px;}
.fs16{font-size:42.013241px;}
.fs20{font-size:42.013883px;}
.fs2{font-size:42.014783px;}
.fs14{font-size:42.015854px;}
.fs7{font-size:42.016111px;}
.fs26{font-size:42.016839px;}
.fs35{font-size:42.017139px;}
.fs1d{font-size:42.018939px;}
.fs15{font-size:42.019281px;}
.fs21{font-size:42.019410px;}
.fs1{font-size:42.019924px;}
.fs1f{font-size:42.020609px;}
.fsa{font-size:42.024336px;}
.fsb{font-size:42.026220px;}
.fs1b{font-size:42.026777px;}
.fs24{font-size:42.028276px;}
.fs8{font-size:48.000000px;}
.fs36{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:6.225000px;}
.y41{bottom:6.735000px;}
.y35{bottom:7.260000px;}
.y36{bottom:7.290000px;}
.y2d{bottom:7.575000px;}
.y19{bottom:7.665000px;}
.y40{bottom:7.830000px;}
.y2e{bottom:7.875000px;}
.y49{bottom:8.715000px;}
.y1a{bottom:9.300000px;}
.y52{bottom:9.975000px;}
.y9{bottom:11.820000px;}
.ya{bottom:12.720000px;}
.y18{bottom:12.930000px;}
.y12{bottom:13.425000px;}
.y24{bottom:13.530000px;}
.y48{bottom:13.605000px;}
.y11{bottom:15.060000px;}
.y13{bottom:15.795000px;}
.y2f{bottom:15.885000px;}
.y4b{bottom:18.420000px;}
.y23{bottom:18.780000px;}
.y42{bottom:19.170000px;}
.y37{bottom:19.920000px;}
.y34{bottom:22.260000px;}
.y3f{bottom:22.845000px;}
.y22{bottom:23.805000px;}
.y2c{bottom:23.820000px;}
.y25{bottom:26.460000px;}
.y3e{bottom:29.625000px;}
.y2b{bottom:30.105000px;}
.y33{bottom:30.630000px;}
.y21{bottom:31.170000px;}
.y17{bottom:34.530000px;}
.y47{bottom:36.240000px;}
.y16{bottom:37.395000px;}
.y7{bottom:41.040000px;}
.y43{bottom:42.765000px;}
.y10{bottom:43.005000px;}
.y38{bottom:45.615000px;}
.yf{bottom:48.330000px;}
.y8{bottom:48.990000px;}
.y3d{bottom:53.100000px;}
.y46{bottom:54.045000px;}
.y32{bottom:54.135000px;}
.y20{bottom:59.520000px;}
.y39{bottom:65.025000px;}
.y2a{bottom:66.210000px;}
.y3a{bottom:71.280000px;}
.y45{bottom:76.050000px;}
.y3c{bottom:76.935000px;}
.y4c{bottom:80.895000px;}
.y31{bottom:82.605000px;}
.y29{bottom:89.460000px;}
.y51{bottom:98.595000px;}
.y44{bottom:100.545000px;}
.y3b{bottom:100.950000px;}
.y30{bottom:102.060000px;}
.y28{bottom:103.305000px;}
.y4d{bottom:104.235000px;}
.y4{bottom:108.810000px;}
.y6{bottom:109.530000px;}
.yd{bottom:111.030000px;}
.y15{bottom:111.135000px;}
.ye{bottom:111.540000px;}
.y5{bottom:111.795000px;}
.y1e{bottom:112.020000px;}
.y14{bottom:112.485000px;}
.y1f{bottom:112.755000px;}
.y4e{bottom:127.575000px;}
.y4f{bottom:150.915000px;}
.yc{bottom:161.790000px;}
.y27{bottom:161.805000px;}
.y50{bottom:174.255000px;}
.y26{bottom:230.250000px;}
.y1b{bottom:233.100000px;}
.y1c{bottom:252.510000px;}
.y1d{bottom:258.765000px;}
.y53{bottom:314.490000px;}
.yb{bottom:417.750000px;}
.y1{bottom:420.600000px;}
.y2{bottom:439.995000px;}
.y3{bottom:446.250000px;}
.h1{height:37.546875px;}
.h6{height:43.768780px;}
.h15{height:43.770077px;}
.h28{height:43.771106px;}
.h36{height:43.771866px;}
.h13{height:43.772358px;}
.h1d{height:43.773298px;}
.h2b{height:43.774506px;}
.h25{height:43.776160px;}
.h1a{height:43.777189px;}
.h16{height:43.780767px;}
.hc{height:43.782690px;}
.h14{height:43.789398px;}
.h10{height:43.793288px;}
.h32{height:43.793467px;}
.h30{height:43.793824px;}
.h21{height:43.793959px;}
.h2d{height:43.794540px;}
.h1f{height:43.796686px;}
.h31{height:43.797982px;}
.h5{height:43.800441px;}
.h2e{height:43.800575px;}
.h12{height:43.800799px;}
.h1b{height:43.801335px;}
.h8{height:43.804553px;}
.h2c{height:43.804688px;}
.h34{height:43.806207px;}
.h35{height:43.806520px;}
.h1c{height:43.808710px;}
.h37{height:43.809023px;}
.hf{height:43.809559px;}
.h7{height:43.811302px;}
.h33{height:43.814163px;}
.h2a{height:43.814922px;}
.h11{height:43.816218px;}
.h2f{height:43.816352px;}
.h26{height:43.817425px;}
.h19{height:43.818497px;}
.h23{height:43.819167px;}
.h4{height:43.820106px;}
.h17{height:43.821223px;}
.h9{height:43.821491px;}
.h29{height:43.822251px;}
.h38{height:43.822563px;}
.h20{height:43.824440px;}
.h18{height:43.824797px;}
.h24{height:43.824931px;}
.h3{height:43.825467px;}
.h22{height:43.826182px;}
.hd{height:43.830069px;}
.he{height:43.832035px;}
.h1e{height:43.832615px;}
.h27{height:43.834179px;}
.hb{height:50.062500px;}
.h39{height:75.093750px;}
.h2{height:116.205000px;}
.ha{height:187.485000px;}
.h0{height:648.000000px;}
.w1{width:112.470000px;}
.w2{width:169.485000px;}
.w0{width:594.000000px;}
.x0{left:0.000000px;}
.x1c{left:7.710000px;}
.x1e{left:11.520000px;}
.x24{left:18.540000px;}
.x12{left:33.090000px;}
.x17{left:37.290000px;}
.x19{left:38.310000px;}
.x5{left:42.780000px;}
.xf{left:48.690000px;}
.x2{left:54.180000px;}
.x1b{left:55.305000px;}
.xa{left:58.905000px;}
.x9{left:60.855000px;}
.x7{left:62.355000px;}
.x20{left:63.900000px;}
.x1{left:65.025000px;}
.x18{left:66.480000px;}
.x3{left:71.280000px;}
.x11{left:73.380000px;}
.xe{left:76.965000px;}
.x8{left:88.995000px;}
.x1f{left:90.090000px;}
.x1d{left:91.905000px;}
.x10{left:95.280000px;}
.x6{left:96.810000px;}
.x4{left:100.755000px;}
.x13{left:212.250000px;}
.xc{left:223.665000px;}
.xb{left:234.510000px;}
.xd{left:240.765000px;}
.x23{left:287.490000px;}
.x1a{left:381.750000px;}
.x15{left:393.150000px;}
.x14{left:403.995000px;}
.x16{left:410.250000px;}
.x22{left:411.630000px;}
.x21{left:480.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:26.624000pt;}
.ws2{word-spacing:29.237333pt;}
.ws1{word-spacing:29.290667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.280000pt;}
.fs0{font-size:32.000000pt;}
.fs4{font-size:37.302730pt;}
.fs12{font-size:37.303836pt;}
.fs25{font-size:37.304713pt;}
.fs33{font-size:37.305361pt;}
.fs10{font-size:37.305780pt;}
.fs1a{font-size:37.306581pt;}
.fs28{font-size:37.307610pt;}
.fs22{font-size:37.309021pt;}
.fs17{font-size:37.309897pt;}
.fs13{font-size:37.312947pt;}
.fs9{font-size:37.314586pt;}
.fs11{font-size:37.320302pt;}
.fsd{font-size:37.323618pt;}
.fs2f{font-size:37.323770pt;}
.fs2d{font-size:37.324075pt;}
.fs1e{font-size:37.324189pt;}
.fs2a{font-size:37.324685pt;}
.fs1c{font-size:37.326514pt;}
.fs2e{font-size:37.327619pt;}
.fs3{font-size:37.329714pt;}
.fs2b{font-size:37.329828pt;}
.fsf{font-size:37.330019pt;}
.fs18{font-size:37.330476pt;}
.fs6{font-size:37.333219pt;}
.fs29{font-size:37.333333pt;}
.fs31{font-size:37.334629pt;}
.fs32{font-size:37.334895pt;}
.fs19{font-size:37.336762pt;}
.fs34{font-size:37.337028pt;}
.fsc{font-size:37.337485pt;}
.fs5{font-size:37.338971pt;}
.fs30{font-size:37.341409pt;}
.fs27{font-size:37.342056pt;}
.fse{font-size:37.343161pt;}
.fs2c{font-size:37.343275pt;}
.fs23{font-size:37.344189pt;}
.fs16{font-size:37.345103pt;}
.fs20{font-size:37.345674pt;}
.fs2{font-size:37.346474pt;}
.fs14{font-size:37.347426pt;}
.fs7{font-size:37.347654pt;}
.fs26{font-size:37.348302pt;}
.fs35{font-size:37.348568pt;}
.fs1d{font-size:37.350168pt;}
.fs15{font-size:37.350472pt;}
.fs21{font-size:37.350586pt;}
.fs1{font-size:37.351043pt;}
.fs1f{font-size:37.351653pt;}
.fsa{font-size:37.354965pt;}
.fsb{font-size:37.356640pt;}
.fs1b{font-size:37.357135pt;}
.fs24{font-size:37.358468pt;}
.fs8{font-size:42.666667pt;}
.fs36{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:5.533333pt;}
.y41{bottom:5.986667pt;}
.y35{bottom:6.453333pt;}
.y36{bottom:6.480000pt;}
.y2d{bottom:6.733333pt;}
.y19{bottom:6.813333pt;}
.y40{bottom:6.960000pt;}
.y2e{bottom:7.000000pt;}
.y49{bottom:7.746667pt;}
.y1a{bottom:8.266667pt;}
.y52{bottom:8.866667pt;}
.y9{bottom:10.506667pt;}
.ya{bottom:11.306667pt;}
.y18{bottom:11.493333pt;}
.y12{bottom:11.933333pt;}
.y24{bottom:12.026667pt;}
.y48{bottom:12.093333pt;}
.y11{bottom:13.386667pt;}
.y13{bottom:14.040000pt;}
.y2f{bottom:14.120000pt;}
.y4b{bottom:16.373333pt;}
.y23{bottom:16.693333pt;}
.y42{bottom:17.040000pt;}
.y37{bottom:17.706667pt;}
.y34{bottom:19.786667pt;}
.y3f{bottom:20.306667pt;}
.y22{bottom:21.160000pt;}
.y2c{bottom:21.173333pt;}
.y25{bottom:23.520000pt;}
.y3e{bottom:26.333333pt;}
.y2b{bottom:26.760000pt;}
.y33{bottom:27.226667pt;}
.y21{bottom:27.706667pt;}
.y17{bottom:30.693333pt;}
.y47{bottom:32.213333pt;}
.y16{bottom:33.240000pt;}
.y7{bottom:36.480000pt;}
.y43{bottom:38.013333pt;}
.y10{bottom:38.226667pt;}
.y38{bottom:40.546667pt;}
.yf{bottom:42.960000pt;}
.y8{bottom:43.546667pt;}
.y3d{bottom:47.200000pt;}
.y46{bottom:48.040000pt;}
.y32{bottom:48.120000pt;}
.y20{bottom:52.906667pt;}
.y39{bottom:57.800000pt;}
.y2a{bottom:58.853333pt;}
.y3a{bottom:63.360000pt;}
.y45{bottom:67.600000pt;}
.y3c{bottom:68.386667pt;}
.y4c{bottom:71.906667pt;}
.y31{bottom:73.426667pt;}
.y29{bottom:79.520000pt;}
.y51{bottom:87.640000pt;}
.y44{bottom:89.373333pt;}
.y3b{bottom:89.733333pt;}
.y30{bottom:90.720000pt;}
.y28{bottom:91.826667pt;}
.y4d{bottom:92.653333pt;}
.y4{bottom:96.720000pt;}
.y6{bottom:97.360000pt;}
.yd{bottom:98.693333pt;}
.y15{bottom:98.786667pt;}
.ye{bottom:99.146667pt;}
.y5{bottom:99.373333pt;}
.y1e{bottom:99.573333pt;}
.y14{bottom:99.986667pt;}
.y1f{bottom:100.226667pt;}
.y4e{bottom:113.400000pt;}
.y4f{bottom:134.146667pt;}
.yc{bottom:143.813333pt;}
.y27{bottom:143.826667pt;}
.y50{bottom:154.893333pt;}
.y26{bottom:204.666667pt;}
.y1b{bottom:207.200000pt;}
.y1c{bottom:224.453333pt;}
.y1d{bottom:230.013333pt;}
.y53{bottom:279.546667pt;}
.yb{bottom:371.333333pt;}
.y1{bottom:373.866667pt;}
.y2{bottom:391.106667pt;}
.y3{bottom:396.666667pt;}
.h1{height:33.375000pt;}
.h6{height:38.905582pt;}
.h15{height:38.906735pt;}
.h28{height:38.907650pt;}
.h36{height:38.908326pt;}
.h13{height:38.908763pt;}
.h1d{height:38.909598pt;}
.h2b{height:38.910672pt;}
.h25{height:38.912143pt;}
.h1a{height:38.913057pt;}
.h16{height:38.916237pt;}
.hc{height:38.917947pt;}
.h14{height:38.923909pt;}
.h10{height:38.927367pt;}
.h32{height:38.927526pt;}
.h30{height:38.927844pt;}
.h21{height:38.927963pt;}
.h2d{height:38.928480pt;}
.h1f{height:38.930387pt;}
.h31{height:38.931540pt;}
.h5{height:38.933725pt;}
.h2e{height:38.933844pt;}
.h12{height:38.934043pt;}
.h1b{height:38.934520pt;}
.h8{height:38.937381pt;}
.h2c{height:38.937500pt;}
.h34{height:38.938851pt;}
.h35{height:38.939129pt;}
.h1c{height:38.941076pt;}
.h37{height:38.941354pt;}
.hf{height:38.941831pt;}
.h7{height:38.943380pt;}
.h33{height:38.945922pt;}
.h2a{height:38.946598pt;}
.h11{height:38.947750pt;}
.h2f{height:38.947869pt;}
.h26{height:38.948822pt;}
.h19{height:38.949775pt;}
.h23{height:38.950371pt;}
.h4{height:38.951205pt;}
.h17{height:38.952198pt;}
.h9{height:38.952436pt;}
.h29{height:38.953112pt;}
.h38{height:38.953390pt;}
.h20{height:38.955058pt;}
.h18{height:38.955375pt;}
.h24{height:38.955495pt;}
.h3{height:38.955971pt;}
.h22{height:38.956606pt;}
.hd{height:38.960061pt;}
.he{height:38.961808pt;}
.h1e{height:38.962325pt;}
.h27{height:38.963714pt;}
.hb{height:44.500000pt;}
.h39{height:66.750000pt;}
.h2{height:103.293333pt;}
.ha{height:166.653333pt;}
.h0{height:576.000000pt;}
.w1{width:99.973333pt;}
.w2{width:150.653333pt;}
.w0{width:528.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.853333pt;}
.x1e{left:10.240000pt;}
.x24{left:16.480000pt;}
.x12{left:29.413333pt;}
.x17{left:33.146667pt;}
.x19{left:34.053333pt;}
.x5{left:38.026667pt;}
.xf{left:43.280000pt;}
.x2{left:48.160000pt;}
.x1b{left:49.160000pt;}
.xa{left:52.360000pt;}
.x9{left:54.093333pt;}
.x7{left:55.426667pt;}
.x20{left:56.800000pt;}
.x1{left:57.800000pt;}
.x18{left:59.093333pt;}
.x3{left:63.360000pt;}
.x11{left:65.226667pt;}
.xe{left:68.413333pt;}
.x8{left:79.106667pt;}
.x1f{left:80.080000pt;}
.x1d{left:81.693333pt;}
.x10{left:84.693333pt;}
.x6{left:86.053333pt;}
.x4{left:89.560000pt;}
.x13{left:188.666667pt;}
.xc{left:198.813333pt;}
.xb{left:208.453333pt;}
.xd{left:214.013333pt;}
.x23{left:255.546667pt;}
.x1a{left:339.333333pt;}
.x15{left:349.466667pt;}
.x14{left:359.106667pt;}
.x16{left:364.666667pt;}
.x22{left:365.893333pt;}
.x21{left:427.333333pt;}
}




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