
    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_7ecb9b98373af98a32a3d298.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.772000;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_180d7842044a4121ab91ea0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.999000;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_b9df35587c01f103ac8e79f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_86095d3fd2732698724e2bd6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4ccb855e467b61692d86f815.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5a363f1f9d87c640faa00f3a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.918000;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_9896aaffc5debcd21c088e1a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923000;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;}
.m24{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);}
.m13{transform:matrix(0.008914,0.249841,-0.249841,0.008914,0,0);-ms-transform:matrix(0.008914,0.249841,-0.249841,0.008914,0,0);-webkit-transform:matrix(0.008914,0.249841,-0.249841,0.008914,0,0);}
.m20{transform:matrix(0.011119,0.249753,-0.249753,0.011119,0,0);-ms-transform:matrix(0.011119,0.249753,-0.249753,0.011119,0,0);-webkit-transform:matrix(0.011119,0.249753,-0.249753,0.011119,0,0);}
.ma{transform:matrix(0.026645,-0.248576,0.248576,0.026645,0,0);-ms-transform:matrix(0.026645,-0.248576,0.248576,0.026645,0,0);-webkit-transform:matrix(0.026645,-0.248576,0.248576,0.026645,0,0);}
.m3{transform:matrix(0.034036,-0.247672,0.247672,0.034036,0,0);-ms-transform:matrix(0.034036,-0.247672,0.247672,0.034036,0,0);-webkit-transform:matrix(0.034036,-0.247672,0.247672,0.034036,0,0);}
.m22{transform:matrix(0.050140,-0.244920,0.244920,0.050140,0,0);-ms-transform:matrix(0.050140,-0.244920,0.244920,0.050140,0,0);-webkit-transform:matrix(0.050140,-0.244920,0.244920,0.050140,0,0);}
.m1b{transform:matrix(0.069201,0.240232,-0.240232,0.069201,0,0);-ms-transform:matrix(0.069201,0.240232,-0.240232,0.069201,0,0);-webkit-transform:matrix(0.069201,0.240232,-0.240232,0.069201,0,0);}
.m1f{transform:matrix(0.097182,-0.230338,0.230338,0.097182,0,0);-ms-transform:matrix(0.097182,-0.230338,0.230338,0.097182,0,0);-webkit-transform:matrix(0.097182,-0.230338,0.230338,0.097182,0,0);}
.m6{transform:matrix(0.099334,0.229418,-0.229418,0.099334,0,0);-ms-transform:matrix(0.099334,0.229418,-0.229418,0.099334,0,0);-webkit-transform:matrix(0.099334,0.229418,-0.229418,0.099334,0,0);}
.m11{transform:matrix(0.107769,0.225579,-0.225579,0.107769,0,0);-ms-transform:matrix(0.107769,0.225579,-0.225579,0.107769,0,0);-webkit-transform:matrix(0.107769,0.225579,-0.225579,0.107769,0,0);}
.me{transform:matrix(0.116341,0.221280,-0.221280,0.116341,0,0);-ms-transform:matrix(0.116341,0.221280,-0.221280,0.116341,0,0);-webkit-transform:matrix(0.116341,0.221280,-0.221280,0.116341,0,0);}
.m1d{transform:matrix(0.116547,0.221171,-0.221171,0.116547,0,0);-ms-transform:matrix(0.116547,0.221171,-0.221171,0.116547,0,0);-webkit-transform:matrix(0.116547,0.221171,-0.221171,0.116547,0,0);}
.m14{transform:matrix(0.134095,-0.210994,0.210994,0.134095,0,0);-ms-transform:matrix(0.134095,-0.210994,0.210994,0.134095,0,0);-webkit-transform:matrix(0.134095,-0.210994,0.210994,0.134095,0,0);}
.m1{transform:matrix(0.149997,-0.200002,0.200002,0.149997,0,0);-ms-transform:matrix(0.149997,-0.200002,0.200002,0.149997,0,0);-webkit-transform:matrix(0.149997,-0.200002,0.200002,0.149997,0,0);}
.m4{transform:matrix(0.154584,-0.196478,0.196478,0.154584,0,0);-ms-transform:matrix(0.154584,-0.196478,0.196478,0.154584,0,0);-webkit-transform:matrix(0.154584,-0.196478,0.196478,0.154584,0,0);}
.m1c{transform:matrix(0.156645,-0.194840,0.194840,0.156645,0,0);-ms-transform:matrix(0.156645,-0.194840,0.194840,0.156645,0,0);-webkit-transform:matrix(0.156645,-0.194840,0.194840,0.156645,0,0);}
.m19{transform:matrix(0.173609,0.179889,-0.179889,0.173609,0,0);-ms-transform:matrix(0.173609,0.179889,-0.179889,0.173609,0,0);-webkit-transform:matrix(0.173609,0.179889,-0.179889,0.173609,0,0);}
.m21{transform:matrix(0.198469,-0.152020,0.152020,0.198469,0,0);-ms-transform:matrix(0.198469,-0.152020,0.152020,0.198469,0,0);-webkit-transform:matrix(0.198469,-0.152020,0.152020,0.198469,0,0);}
.m8{transform:matrix(0.206280,0.141239,-0.141239,0.206280,0,0);-ms-transform:matrix(0.206280,0.141239,-0.141239,0.206280,0,0);-webkit-transform:matrix(0.206280,0.141239,-0.141239,0.206280,0,0);}
.m9{transform:matrix(0.209348,-0.136650,0.136650,0.209348,0,0);-ms-transform:matrix(0.209348,-0.136650,0.136650,0.209348,0,0);-webkit-transform:matrix(0.209348,-0.136650,0.136650,0.209348,0,0);}
.m23{transform:matrix(0.210040,0.135585,-0.135585,0.210040,0,0);-ms-transform:matrix(0.210040,0.135585,-0.135585,0.210040,0,0);-webkit-transform:matrix(0.210040,0.135585,-0.135585,0.210040,0,0);}
.m5{transform:matrix(0.212784,0.131236,-0.131236,0.212784,0,0);-ms-transform:matrix(0.212784,0.131236,-0.131236,0.212784,0,0);-webkit-transform:matrix(0.212784,0.131236,-0.131236,0.212784,0,0);}
.mb{transform:matrix(0.216098,0.125704,-0.125704,0.216098,0,0);-ms-transform:matrix(0.216098,0.125704,-0.125704,0.216098,0,0);-webkit-transform:matrix(0.216098,0.125704,-0.125704,0.216098,0,0);}
.m10{transform:matrix(0.217259,0.123687,-0.123687,0.217259,0,0);-ms-transform:matrix(0.217259,0.123687,-0.123687,0.217259,0,0);-webkit-transform:matrix(0.217259,0.123687,-0.123687,0.217259,0,0);}
.m12{transform:matrix(0.221083,-0.116715,0.116715,0.221083,0,0);-ms-transform:matrix(0.221083,-0.116715,0.116715,0.221083,0,0);-webkit-transform:matrix(0.221083,-0.116715,0.116715,0.221083,0,0);}
.m7{transform:matrix(0.225813,-0.107278,0.107278,0.225813,0,0);-ms-transform:matrix(0.225813,-0.107278,0.107278,0.225813,0,0);-webkit-transform:matrix(0.225813,-0.107278,0.107278,0.225813,0,0);}
.m18{transform:matrix(0.230186,-0.097542,0.097542,0.230186,0,0);-ms-transform:matrix(0.230186,-0.097542,0.097542,0.230186,0,0);-webkit-transform:matrix(0.230186,-0.097542,0.097542,0.230186,0,0);}
.m16{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.236934,0.079763,-0.079763,0.236934,0,0);-ms-transform:matrix(0.236934,0.079763,-0.079763,0.236934,0,0);-webkit-transform:matrix(0.236934,0.079763,-0.079763,0.236934,0,0);}
.md{transform:matrix(0.242582,-0.060447,0.060447,0.242582,0,0);-ms-transform:matrix(0.242582,-0.060447,0.060447,0.242582,0,0);-webkit-transform:matrix(0.242582,-0.060447,0.060447,0.242582,0,0);}
.m1a{transform:matrix(0.246746,-0.040205,0.040205,0.246746,0,0);-ms-transform:matrix(0.246746,-0.040205,0.040205,0.246746,0,0);-webkit-transform:matrix(0.246746,-0.040205,0.040205,0.246746,0,0);}
.mc{transform:matrix(0.247463,-0.035523,0.035523,0.247463,0,0);-ms-transform:matrix(0.247463,-0.035523,0.035523,0.247463,0,0);-webkit-transform:matrix(0.247463,-0.035523,0.035523,0.247463,0,0);}
.m1e{transform:matrix(0.249146,0.020642,-0.020642,0.249146,0,0);-ms-transform:matrix(0.249146,0.020642,-0.020642,0.249146,0,0);-webkit-transform:matrix(0.249146,0.020642,-0.020642,0.249146,0,0);}
.m2{transform:matrix(0.249685,0.012539,-0.012539,0.249685,0,0);-ms-transform:matrix(0.249685,0.012539,-0.012539,0.249685,0,0);-webkit-transform:matrix(0.249685,0.012539,-0.012539,0.249685,0,0);}
.mf{transform:matrix(0.249994,0.001714,-0.001714,0.249994,0,0);-ms-transform:matrix(0.249994,0.001714,-0.001714,0.249994,0,0);-webkit-transform:matrix(0.249994,0.001714,-0.001714,0.249994,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);}
.m15{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-4.758000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:46.255206px;}
.v3{vertical-align:49.509692px;}
.v1{vertical-align:60.329230px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:44.676839px;}
.ls1{letter-spacing:48.156839px;}
.ls3{letter-spacing:48.510839px;}
.ls0{letter-spacing:53.696345px;}
.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;}
}
.ws8{word-spacing:-137.452498px;}
.ws7{word-spacing:-61.860506px;}
.ws2a{word-spacing:-37.120861px;}
.ws19{word-spacing:-5.640297px;}
.ws33{word-spacing:-0.311865px;}
.ws5{word-spacing:-0.257036px;}
.ws32{word-spacing:-0.237956px;}
.ws22{word-spacing:-0.214177px;}
.ws26{word-spacing:-0.148723px;}
.ws6{word-spacing:0.000000px;}
.ws36{word-spacing:6.752006px;}
.ws34{word-spacing:7.287407px;}
.ws2d{word-spacing:7.490386px;}
.ws28{word-spacing:7.495619px;}
.ws1f{word-spacing:7.746483px;}
.ws1a{word-spacing:8.995916px;}
.ws23{word-spacing:11.007061px;}
.ws25{word-spacing:11.064961px;}
.ws31{word-spacing:11.362407px;}
.ws2f{word-spacing:12.403465px;}
.ws2e{word-spacing:12.552187px;}
.ws3{word-spacing:12.954635px;}
.ws2{word-spacing:13.211671px;}
.ws35{word-spacing:14.128647px;}
.ws2b{word-spacing:15.377917px;}
.ws29{word-spacing:15.526639px;}
.ws1{word-spacing:15.545537px;}
.ws24{word-spacing:18.292880px;}
.ws30{word-spacing:18.590325px;}
.ws2c{word-spacing:22.605835px;}
.ws1b{word-spacing:29.532286px;}
.ws18{word-spacing:29.593748px;}
.ws1c{word-spacing:29.761347px;}
.ws1e{word-spacing:35.947967px;}
.ws27{word-spacing:44.460267px;}
.ws9{word-spacing:59.080322px;}
.ws1d{word-spacing:59.258813px;}
.ws4{word-spacing:85.079048px;}
.ws17{word-spacing:85.336085px;}
.ws21{word-spacing:135.634254px;}
.ws20{word-spacing:137.311715px;}
.ws0{word-spacing:138.799575px;}
.ws13{word-spacing:584.942416px;}
.ws12{word-spacing:585.300223px;}
.wse{word-spacing:605.039201px;}
.ws11{word-spacing:612.404046px;}
.ws15{word-spacing:613.850180px;}
.wsd{word-spacing:632.530648px;}
.ws10{word-spacing:636.794506px;}
.wsf{word-spacing:645.754570px;}
.wsa{word-spacing:650.271874px;}
.wsc{word-spacing:671.337717px;}
.ws16{word-spacing:674.771465px;}
.wsb{word-spacing:676.525908px;}
.ws14{word-spacing:686.469940px;}
._0{margin-left:-25.168990px;}
._4{margin-left:-23.688461px;}
._17{margin-left:-22.197665px;}
._1c{margin-left:-19.494013px;}
._1f{margin-left:-18.021714px;}
._11{margin-left:-14.200324px;}
._3{margin-left:-11.474098px;}
._13{margin-left:-10.408496px;}
._2{margin-left:-8.513041px;}
._5{margin-left:-6.600695px;}
._9{margin-left:-4.997731px;}
._1b{margin-left:-3.571091px;}
._8{margin-left:-2.258393px;}
._1{margin-left:-1.110397px;}
._18{width:2.598715px;}
._19{width:3.617284px;}
._a{width:4.640750px;}
._b{width:6.251125px;}
._20{width:7.287407px;}
._1e{width:17.711824px;}
._12{width:29.551021px;}
._1a{width:30.672750px;}
._f{width:59.080322px;}
._1d{width:63.573277px;}
._10{width:67.063521px;}
._6{width:76.165025px;}
._7{width:103.328633px;}
._14{width:168.051845px;}
._16{width:272.220180px;}
._15{width:321.261791px;}
._d{width:529.825345px;}
._e{width:579.634957px;}
._c{width:1051.015651px;}
._21{width:1841.295212px;}
.fc3{color:rgb(81,80,83);}
.fc5{color:transparent;}
.fc2{color:rgb(17,102,86);}
.fc4{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:19.083000px;}
.fsc{font-size:31.253400px;}
.fs3{font-size:37.060800px;}
.fsf{font-size:38.166000px;}
.fs10{font-size:55.730070px;}
.fs11{font-size:60.796440px;}
.fsd{font-size:62.506800px;}
.fs4{font-size:74.121600px;}
.fs12{font-size:77.109450px;}
.fs5{font-size:77.392938px;}
.fs13{font-size:84.119400px;}
.fs6{font-size:90.291762px;}
.fs8{font-size:116.059169px;}
.fsa{font-size:116.089408px;}
.fs7{font-size:137.446570px;}
.fs9{font-size:137.452498px;}
.fs16{font-size:148.721400px;}
.fs15{font-size:148.722600px;}
.fsb{font-size:178.490400px;}
.fs14{font-size:214.176600px;}
.fs2{font-size:257.036400px;}
.fs1{font-size:308.443200px;}
.fs0{font-size:370.132200px;}
.y0{bottom:0.000000px;}
.y61{bottom:3.264237px;}
.y70{bottom:6.562763px;}
.y3d{bottom:7.850706px;}
.y39{bottom:8.402443px;}
.y37{bottom:8.411989px;}
.y5c{bottom:11.032361px;}
.y2f{bottom:13.603525px;}
.yd0{bottom:14.475547px;}
.y30{bottom:17.506621px;}
.y5a{bottom:19.799054px;}
.yad{bottom:19.960970px;}
.y62{bottom:24.732612px;}
.y71{bottom:28.031138px;}
.yac{bottom:37.785621px;}
.ycf{bottom:40.061864px;}
.yeb{bottom:41.321465px;}
.y1c{bottom:45.833025px;}
.y63{bottom:46.200987px;}
.y72{bottom:49.499513px;}
.yc8{bottom:61.412219px;}
.y5d{bottom:61.818625px;}
.y64{bottom:67.669362px;}
.yea{bottom:69.624138px;}
.yd1{bottom:69.859302px;}
.y73{bottom:70.967888px;}
.yb6{bottom:74.282637px;}
.yae{bottom:77.459593px;}
.y2d{bottom:77.583800px;}
.ybb{bottom:78.382875px;}
.yc1{bottom:79.795043px;}
.yf7{bottom:81.163500px;}
.y28{bottom:87.340953px;}
.yd7{bottom:88.822441px;}
.y65{bottom:89.137737px;}
.y31{bottom:89.619499px;}
.y1a{bottom:90.725858px;}
.y74{bottom:92.436263px;}
.ye9{bottom:97.926811px;}
.y1b{bottom:98.364827px;}
.ydb{bottom:99.799509px;}
.yc9{bottom:106.639060px;}
.y5e{bottom:109.492720px;}
.y66{bottom:110.606112px;}
.yc2{bottom:111.290416px;}
.y75{bottom:113.904638px;}
.ybc{bottom:116.315889px;}
.yaf{bottom:116.977787px;}
.y12{bottom:117.762492px;}
.y4f{bottom:122.666604px;}
.ye8{bottom:126.229484px;}
.yb7{bottom:126.612025px;}
.y60{bottom:128.743424px;}
.y67{bottom:132.074487px;}
.y76{bottom:135.373013px;}
.ydc{bottom:140.570118px;}
.yd2{bottom:142.148133px;}
.yc3{bottom:142.785790px;}
.y3c{bottom:144.887286px;}
.yb4{bottom:148.284998px;}
.y17{bottom:149.571210px;}
.yca{bottom:151.865901px;}
.y2b{bottom:152.809563px;}
.yd8{bottom:153.136273px;}
.y68{bottom:153.542862px;}
.ybd{bottom:154.248904px;}
.ye7{bottom:154.532157px;}
.y25{bottom:155.769797px;}
.y4d{bottom:155.954101px;}
.y26{bottom:156.409444px;}
.yb0{bottom:156.495981px;}
.y77{bottom:156.841388px;}
.yd5{bottom:164.992317px;}
.y16{bottom:172.367087px;}
.yc4{bottom:174.281164px;}
.y69{bottom:175.011237px;}
.y51{bottom:176.304178px;}
.y22{bottom:176.647705px;}
.y11{bottom:177.902195px;}
.y15{bottom:178.142928px;}
.y78{bottom:178.309763px;}
.yb8{bottom:178.941412px;}
.y50{bottom:181.164727px;}
.ydd{bottom:181.340728px;}
.ye6{bottom:182.834830px;}
.ybe{bottom:192.181918px;}
.yb1{bottom:196.014175px;}
.y6a{bottom:196.479612px;}
.ycb{bottom:197.092742px;}
.y79{bottom:199.778138px;}
.y53{bottom:205.217464px;}
.yc5{bottom:205.776537px;}
.y13{bottom:206.366070px;}
.y3e{bottom:207.769048px;}
.y18{bottom:211.003121px;}
.ye5{bottom:211.137503px;}
.yce{bottom:213.309000px;}
.yd3{bottom:214.436964px;}
.yd9{bottom:217.450105px;}
.y6b{bottom:217.947987px;}
.y7a{bottom:221.246513px;}
.yde{bottom:222.111337px;}
.ybf{bottom:230.114933px;}
.y57{bottom:230.486604px;}
.yb9{bottom:231.270800px;}
.y14{bottom:232.424547px;}
.y21{bottom:234.096762px;}
.yb2{bottom:235.532369px;}
.y3b{bottom:236.791400px;}
.yc6{bottom:237.271911px;}
.y29{bottom:238.006153px;}
.y6c{bottom:239.416362px;}
.ye4{bottom:239.440177px;}
.ycc{bottom:242.319583px;}
.y7b{bottom:242.714888px;}
.y4a{bottom:243.922119px;}
.y2e{bottom:250.171930px;}
.y19{bottom:250.369939px;}
.y5b{bottom:250.841979px;}
.y4e{bottom:257.770672px;}
.y41{bottom:259.364340px;}
.y6d{bottom:260.884737px;}
.ydf{bottom:262.881947px;}
.y7c{bottom:264.183263px;}
.ye3{bottom:267.742850px;}
.yc0{bottom:268.047947px;}
.yc7{bottom:268.767285px;}
.yf6{bottom:270.364500px;}
.y54{bottom:273.526708px;}
.yb3{bottom:275.050563px;}
.y2a{bottom:280.685390px;}
.yda{bottom:281.763937px;}
.y6e{bottom:282.353112px;}
.yba{bottom:283.600188px;}
.y7d{bottom:285.651638px;}
.yd4{bottom:286.725795px;}
.ycd{bottom:287.546424px;}
.ye2{bottom:296.045523px;}
.ye0{bottom:303.652556px;}
.y6f{bottom:303.821487px;}
.yb5{bottom:304.210187px;}
.y7e{bottom:307.120013px;}
.y48{bottom:314.148262px;}
.yf5{bottom:315.196500px;}
.y47{bottom:318.501260px;}
.ye1{bottom:324.720599px;}
.yc{bottom:325.879554px;}
.y89{bottom:336.432827px;}
.ya0{bottom:346.282119px;}
.y92{bottom:347.666821px;}
.y98{bottom:350.563592px;}
.yd6{bottom:351.938921px;}
.ya5{bottom:359.608494px;}
.yf4{bottom:360.028500px;}
.y55{bottom:363.300910px;}
.y4c{bottom:366.416845px;}
.y8a{bottom:370.116749px;}
.y49{bottom:371.142671px;}
.y52{bottom:371.926090px;}
.y99{bottom:381.687970px;}
.y93{bottom:386.799508px;}
.ya6{bottom:394.277181px;}
.ya1{bottom:395.260342px;}
.y38{bottom:397.642419px;}
.y8b{bottom:403.800670px;}
.y2c{bottom:410.158093px;}
.yf3{bottom:410.838000px;}
.y9a{bottom:412.812347px;}
.y4b{bottom:423.125218px;}
.y90{bottom:424.072849px;}
.y94{bottom:425.932195px;}
.ya7{bottom:428.945868px;}
.y8c{bottom:437.484591px;}
.y9b{bottom:443.936725px;}
.ya2{bottom:444.238564px;}
.y56{bottom:453.989048px;}
.yf2{bottom:455.670000px;}
.ya8{bottom:463.614554px;}
.y95{bottom:465.064882px;}
.y8d{bottom:471.168512px;}
.y10{bottom:471.943928px;}
.y9c{bottom:475.061103px;}
.y1f{bottom:480.955026px;}
.ya{bottom:481.041496px;}
.y1d{bottom:489.993893px;}
.ya3{bottom:493.216787px;}
.y59{bottom:494.771605px;}
.ya9{bottom:498.283241px;}
.yf1{bottom:500.502000px;}
.y96{bottom:504.197569px;}
.y8e{bottom:504.852434px;}
.yf{bottom:505.708952px;}
.y9d{bottom:506.185481px;}
.y5f{bottom:510.711873px;}
.yd{bottom:528.230181px;}
.y9{bottom:528.382291px;}
.yaa{bottom:532.951928px;}
.yb{bottom:532.970741px;}
.y9e{bottom:537.309858px;}
.y8f{bottom:538.536355px;}
.ya4{bottom:542.195010px;}
.y97{bottom:543.330256px;}
.y58{bottom:548.022598px;}
.yf0{bottom:551.311500px;}
.y23{bottom:560.499742px;}
.y27{bottom:562.490728px;}
.yab{bottom:567.620615px;}
.y9f{bottom:568.434236px;}
.ye{bottom:578.776016px;}
.y91{bottom:579.998038px;}
.y88{bottom:592.806000px;}
.yef{bottom:596.142000px;}
.y40{bottom:620.531386px;}
.y1e{bottom:624.801451px;}
.y3f{bottom:628.593151px;}
.y24{bottom:638.692182px;}
.yee{bottom:646.951500px;}
.y20{bottom:649.854284px;}
.yed{bottom:691.783500px;}
.y3a{bottom:704.373736px;}
.y34{bottom:746.294911px;}
.yec{bottom:780.747000px;}
.y35{bottom:810.789027px;}
.y87{bottom:1217.205000px;}
.y86{bottom:1272.498000px;}
.y85{bottom:1339.744500px;}
.y84{bottom:1395.037500px;}
.y83{bottom:1462.285500px;}
.y82{bottom:1529.533500px;}
.y81{bottom:1596.781500px;}
.y80{bottom:1652.074500px;}
.y7f{bottom:1798.911000px;}
.y8{bottom:2094.300000px;}
.y46{bottom:2129.349000px;}
.y45{bottom:2802.013500px;}
.y43{bottom:2804.767500px;}
.y7{bottom:2872.552500px;}
.y42{bottom:2935.740000px;}
.y33{bottom:3144.139500px;}
.y44{bottom:3484.944000px;}
.y6{bottom:3552.600000px;}
.y36{bottom:3598.195474px;}
.y32{bottom:4191.961500px;}
.y5{bottom:4272.658500px;}
.y4{bottom:4508.046000px;}
.y3{bottom:4566.247500px;}
.y2{bottom:4681.039500px;}
.y1{bottom:4810.774500px;}
.h17{height:17.728107px;}
.h13{height:29.034409px;}
.h7{height:34.429483px;}
.h18{height:35.456214px;}
.h1b{height:51.773235px;}
.ha{height:56.344175px;}
.h1c{height:56.479893px;}
.h14{height:58.068817px;}
.hb{height:65.734871px;}
.h8{height:68.858966px;}
.h20{height:71.634679px;}
.h21{height:78.146923px;}
.he{height:84.494249px;}
.h10{height:84.516263px;}
.h1d{height:102.735098px;}
.hd{height:103.084928px;}
.hf{height:103.089373px;}
.h1e{height:105.989585px;}
.h24{height:111.393227px;}
.h23{height:111.541950px;}
.h15{height:118.398047px;}
.h19{height:133.689310px;}
.h11{height:133.867800px;}
.h22{height:160.632450px;}
.hc{height:161.235278px;}
.h4{height:192.520264px;}
.h5{height:192.777300px;}
.h3{height:231.023957px;}
.h2{height:277.599150px;}
.h16{height:314.392425px;}
.h1f{height:378.002791px;}
.h12{height:560.217195px;}
.h1a{height:607.964400px;}
.h6{height:664.314840px;}
.h9{height:947.839003px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w6{width:161.235245px;}
.w5{width:161.235278px;}
.w9{width:269.547375px;}
.w7{width:653.977395px;}
.w8{width:754.769610px;}
.w4{width:970.432192px;}
.w2{width:1002.494640px;}
.w3{width:1040.481960px;}
.wb{width:1519.886756px;}
.wa{width:1519.911000px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x23{left:-1.484598px;}
.x0{left:0.000000px;}
.x2a{left:2.184648px;}
.x26{left:5.834546px;}
.x33{left:17.351993px;}
.x35{left:18.755265px;}
.x3c{left:23.103031px;}
.x50{left:26.840229px;}
.x5f{left:27.966362px;}
.x5e{left:34.510424px;}
.x7a{left:36.053049px;}
.x3b{left:44.567479px;}
.x79{left:48.320462px;}
.x69{left:50.131731px;}
.x68{left:56.675792px;}
.x2c{left:62.413860px;}
.x77{left:72.466295px;}
.x27{left:90.607268px;}
.x67{left:94.913604px;}
.x60{left:104.306003px;}
.x8{left:106.300500px;}
.x5a{left:109.578279px;}
.x56{left:113.518909px;}
.x5{left:114.580500px;}
.x17{left:117.890557px;}
.x16{left:121.240576px;}
.x7b{left:139.201627px;}
.x5c{left:143.650500px;}
.x5d{left:148.222500px;}
.x22{left:153.180656px;}
.x51{left:161.378734px;}
.x1a{left:163.273258px;}
.x43{left:173.426988px;}
.x46{left:175.063135px;}
.x18{left:177.519438px;}
.x78{left:181.129891px;}
.x4f{left:195.193231px;}
.x38{left:200.773606px;}
.x4c{left:204.278811px;}
.x54{left:211.576043px;}
.x45{left:223.087001px;}
.x19{left:226.825731px;}
.x31{left:247.119318px;}
.x4a{left:263.483205px;}
.x47{left:277.152764px;}
.x4b{left:325.234290px;}
.x55{left:332.128889px;}
.x57{left:339.542392px;}
.x6c{left:343.136796px;}
.x14{left:344.850724px;}
.x39{left:346.102661px;}
.x61{left:352.002944px;}
.x7{left:354.939000px;}
.x1f{left:370.991295px;}
.x62{left:373.549265px;}
.x6{left:381.480000px;}
.x6a{left:390.240756px;}
.x6d{left:398.181851px;}
.x48{left:403.480061px;}
.x4d{left:420.240203px;}
.x52{left:427.131761px;}
.x44{left:432.470655px;}
.x25{left:443.272659px;}
.x36{left:445.035634px;}
.x49{left:448.304927px;}
.x6b{left:459.506038px;}
.x1e{left:464.620507px;}
.x11{left:466.869616px;}
.x7c{left:468.089022px;}
.x58{left:529.235303px;}
.x1{left:532.018500px;}
.x2d{left:533.306584px;}
.x53{left:544.432240px;}
.x20{left:551.622621px;}
.x2b{left:555.327176px;}
.x37{left:562.687009px;}
.x15{left:569.095375px;}
.x21{left:574.635841px;}
.x12{left:577.159025px;}
.x13{left:578.615548px;}
.x5b{left:596.340000px;}
.x28{left:598.744406px;}
.xc{left:620.563199px;}
.x63{left:647.330095px;}
.x1b{left:660.336664px;}
.xd{left:669.207234px;}
.x6e{left:685.567907px;}
.xe{left:700.040438px;}
.xb{left:752.113441px;}
.x6f{left:754.833189px;}
.x10{left:758.843423px;}
.x3a{left:761.787389px;}
.x9{left:778.096529px;}
.x1d{left:783.872830px;}
.xa{left:786.019519px;}
.xf{left:791.091556px;}
.x29{left:803.609727px;}
.x1c{left:806.665395px;}
.x7f{left:808.897384px;}
.x24{left:855.488613px;}
.x7d{left:863.711749px;}
.x64{left:929.358025px;}
.x80{left:934.061587px;}
.x65{left:942.275685px;}
.x7e{left:972.375345px;}
.x70{left:980.895058px;}
.x72{left:1029.235176px;}
.x71{left:1050.160340px;}
.x2{left:1116.517500px;}
.x3{left:1187.266500px;}
.x75{left:1224.685176px;}
.x82{left:1227.352781px;}
.x66{left:1229.118250px;}
.x73{left:1276.222209px;}
.x3e{left:1282.315500px;}
.x76{left:1287.329786px;}
.x30{left:1293.711000px;}
.x81{left:1307.594802px;}
.x4{left:1325.839500px;}
.x2e{left:1329.709500px;}
.x74{left:1345.487491px;}
.x3d{left:1378.321500px;}
.x34{left:1508.154982px;}
.x2f{left:1673.137500px;}
.x84{left:1875.834000px;}
.x85{left:1890.774000px;}
.x32{left:1928.979102px;}
.x83{left:2105.575500px;}
.x86{left:2239.894500px;}
.x4e{left:2419.045500px;}
.x42{left:2435.453535px;}
.x3f{left:2506.518000px;}
.x41{left:2628.093000px;}
.x40{left:2707.999500px;}
.x59{left:3187.228500px;}
@media print{
.v4{vertical-align:-4.229333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:41.115738pt;}
.v3{vertical-align:44.008615pt;}
.v1{vertical-align:53.625982pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:39.712746pt;}
.ls1{letter-spacing:42.806079pt;}
.ls3{letter-spacing:43.120746pt;}
.ls0{letter-spacing:47.730084pt;}
.ws8{word-spacing:-122.179998pt;}
.ws7{word-spacing:-54.987116pt;}
.ws2a{word-spacing:-32.996321pt;}
.ws19{word-spacing:-5.013597pt;}
.ws33{word-spacing:-0.277213pt;}
.ws5{word-spacing:-0.228477pt;}
.ws32{word-spacing:-0.211517pt;}
.ws22{word-spacing:-0.190379pt;}
.ws26{word-spacing:-0.132198pt;}
.ws6{word-spacing:0.000000pt;}
.ws36{word-spacing:6.001783pt;}
.ws34{word-spacing:6.477695pt;}
.ws2d{word-spacing:6.658121pt;}
.ws28{word-spacing:6.662772pt;}
.ws1f{word-spacing:6.885763pt;}
.ws1a{word-spacing:7.996370pt;}
.ws23{word-spacing:9.784054pt;}
.ws25{word-spacing:9.835521pt;}
.ws31{word-spacing:10.099917pt;}
.ws2f{word-spacing:11.025302pt;}
.ws2e{word-spacing:11.157500pt;}
.ws3{word-spacing:11.515231pt;}
.ws2{word-spacing:11.743708pt;}
.ws35{word-spacing:12.558797pt;}
.ws2b{word-spacing:13.669259pt;}
.ws29{word-spacing:13.801457pt;}
.ws1{word-spacing:13.818255pt;}
.ws24{word-spacing:16.260338pt;}
.ws30{word-spacing:16.524733pt;}
.ws2c{word-spacing:20.094076pt;}
.ws1b{word-spacing:26.250921pt;}
.ws18{word-spacing:26.305554pt;}
.ws1c{word-spacing:26.454531pt;}
.ws1e{word-spacing:31.953748pt;}
.ws27{word-spacing:39.520238pt;}
.ws9{word-spacing:52.515842pt;}
.ws1d{word-spacing:52.674500pt;}
.ws4{word-spacing:75.625821pt;}
.ws17{word-spacing:75.854298pt;}
.ws21{word-spacing:120.563781pt;}
.ws20{word-spacing:122.054858pt;}
.ws0{word-spacing:123.377400pt;}
.ws13{word-spacing:519.948815pt;}
.ws12{word-spacing:520.266865pt;}
.wse{word-spacing:537.812623pt;}
.ws11{word-spacing:544.359152pt;}
.ws15{word-spacing:545.644604pt;}
.wsd{word-spacing:562.249465pt;}
.ws10{word-spacing:566.039560pt;}
.wsf{word-spacing:574.004063pt;}
.wsa{word-spacing:578.019444pt;}
.wsc{word-spacing:596.744638pt;}
.ws16{word-spacing:599.796857pt;}
.wsb{word-spacing:601.356363pt;}
.ws14{word-spacing:610.195502pt;}
._0{margin-left:-22.372435pt;}
._4{margin-left:-21.056410pt;}
._17{margin-left:-19.731258pt;}
._1c{margin-left:-17.328011pt;}
._1f{margin-left:-16.019301pt;}
._11{margin-left:-12.622510pt;}
._3{margin-left:-10.199198pt;}
._13{margin-left:-9.251997pt;}
._2{margin-left:-7.567147pt;}
._5{margin-left:-5.867285pt;}
._9{margin-left:-4.442428pt;}
._1b{margin-left:-3.174303pt;}
._8{margin-left:-2.007460pt;}
._1{margin-left:-0.987019pt;}
._18{width:2.309969pt;}
._19{width:3.215364pt;}
._a{width:4.125111pt;}
._b{width:5.556555pt;}
._20{width:6.477695pt;}
._1e{width:15.743843pt;}
._12{width:26.267574pt;}
._1a{width:27.264667pt;}
._f{width:52.515842pt;}
._1d{width:56.509579pt;}
._10{width:59.612019pt;}
._6{width:67.702245pt;}
._7{width:91.847674pt;}
._14{width:149.379418pt;}
._16{width:241.973494pt;}
._15{width:285.566036pt;}
._d{width:470.955863pt;}
._e{width:515.231073pt;}
._c{width:934.236134pt;}
._21{width:1636.706855pt;}
.fse{font-size:16.962667pt;}
.fsc{font-size:27.780800pt;}
.fs3{font-size:32.942933pt;}
.fsf{font-size:33.925333pt;}
.fs10{font-size:49.537840pt;}
.fs11{font-size:54.041280pt;}
.fsd{font-size:55.561600pt;}
.fs4{font-size:65.885867pt;}
.fs12{font-size:68.541733pt;}
.fs5{font-size:68.793723pt;}
.fs13{font-size:74.772800pt;}
.fs6{font-size:80.259344pt;}
.fs8{font-size:103.163706pt;}
.fsa{font-size:103.190585pt;}
.fs7{font-size:122.174729pt;}
.fs9{font-size:122.179998pt;}
.fs16{font-size:132.196800pt;}
.fs15{font-size:132.197867pt;}
.fsb{font-size:158.658133pt;}
.fs14{font-size:190.379200pt;}
.fs2{font-size:228.476800pt;}
.fs1{font-size:274.171733pt;}
.fs0{font-size:329.006400pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:2.901544pt;}
.y70{bottom:5.833567pt;}
.y3d{bottom:6.978405pt;}
.y39{bottom:7.468839pt;}
.y37{bottom:7.477324pt;}
.y5c{bottom:9.806543pt;}
.y2f{bottom:12.092022pt;}
.yd0{bottom:12.867153pt;}
.y30{bottom:15.561441pt;}
.y5a{bottom:17.599159pt;}
.yad{bottom:17.743084pt;}
.y62{bottom:21.984544pt;}
.y71{bottom:24.916567pt;}
.yac{bottom:33.587218pt;}
.ycf{bottom:35.610546pt;}
.yeb{bottom:36.730191pt;}
.y1c{bottom:40.740467pt;}
.y63{bottom:41.067544pt;}
.y72{bottom:43.999567pt;}
.yc8{bottom:54.588639pt;}
.y5d{bottom:54.949889pt;}
.y64{bottom:60.150544pt;}
.yea{bottom:61.888122pt;}
.yd1{bottom:62.097157pt;}
.y73{bottom:63.082567pt;}
.yb6{bottom:66.029011pt;}
.yae{bottom:68.852971pt;}
.y2d{bottom:68.963378pt;}
.ybb{bottom:69.673666pt;}
.yc1{bottom:70.928927pt;}
.yf7{bottom:72.145333pt;}
.y28{bottom:77.636402pt;}
.yd7{bottom:78.953281pt;}
.y65{bottom:79.233544pt;}
.y31{bottom:79.661777pt;}
.y1a{bottom:80.645207pt;}
.y74{bottom:82.165567pt;}
.ye9{bottom:87.046054pt;}
.y1b{bottom:87.435402pt;}
.ydb{bottom:88.710675pt;}
.yc9{bottom:94.790275pt;}
.y5e{bottom:97.326862pt;}
.y66{bottom:98.316544pt;}
.yc2{bottom:98.924814pt;}
.y75{bottom:101.248567pt;}
.ybc{bottom:103.391902pt;}
.yaf{bottom:103.980255pt;}
.y12{bottom:104.677771pt;}
.y4f{bottom:109.036982pt;}
.ye8{bottom:112.203986pt;}
.yb7{bottom:112.544022pt;}
.y60{bottom:114.438599pt;}
.y67{bottom:117.399544pt;}
.y76{bottom:120.331567pt;}
.ydc{bottom:124.951216pt;}
.yd2{bottom:126.353896pt;}
.yc3{bottom:126.920702pt;}
.y3c{bottom:128.788698pt;}
.yb4{bottom:131.808887pt;}
.y17{bottom:132.952187pt;}
.yca{bottom:134.991912pt;}
.y2b{bottom:135.830722pt;}
.yd8{bottom:136.121132pt;}
.y68{bottom:136.482544pt;}
.ybd{bottom:137.110137pt;}
.ye7{bottom:137.361917pt;}
.y25{bottom:138.462042pt;}
.y4d{bottom:138.625867pt;}
.y26{bottom:139.030617pt;}
.yb0{bottom:139.107539pt;}
.y77{bottom:139.414567pt;}
.yd5{bottom:146.659837pt;}
.y16{bottom:153.215188pt;}
.yc4{bottom:154.916590pt;}
.y69{bottom:155.565544pt;}
.y51{bottom:156.714825pt;}
.y22{bottom:157.020182pt;}
.y11{bottom:158.135284pt;}
.y15{bottom:158.349269pt;}
.y78{bottom:158.497567pt;}
.yb8{bottom:159.059033pt;}
.y50{bottom:161.035313pt;}
.ydd{bottom:161.191758pt;}
.ye6{bottom:162.519849pt;}
.ybe{bottom:170.828372pt;}
.yb1{bottom:174.234822pt;}
.y6a{bottom:174.648544pt;}
.ycb{bottom:175.193548pt;}
.y79{bottom:177.580567pt;}
.y53{bottom:182.415524pt;}
.yc5{bottom:182.912478pt;}
.y13{bottom:183.436507pt;}
.y3e{bottom:184.683598pt;}
.y18{bottom:187.558329pt;}
.ye5{bottom:187.677781pt;}
.yce{bottom:189.608000pt;}
.yd3{bottom:190.610635pt;}
.yd9{bottom:193.288982pt;}
.y6b{bottom:193.731544pt;}
.y7a{bottom:196.663567pt;}
.yde{bottom:197.432300pt;}
.ybf{bottom:204.546607pt;}
.y57{bottom:204.876981pt;}
.yb9{bottom:205.574044pt;}
.y14{bottom:206.599598pt;}
.y21{bottom:208.086011pt;}
.yb2{bottom:209.362106pt;}
.y3b{bottom:210.481244pt;}
.yc6{bottom:210.908365pt;}
.y29{bottom:211.561025pt;}
.y6c{bottom:212.814544pt;}
.ye4{bottom:212.835712pt;}
.ycc{bottom:215.395185pt;}
.y7b{bottom:215.746567pt;}
.y4a{bottom:216.819662pt;}
.y2e{bottom:222.375049pt;}
.y19{bottom:222.551057pt;}
.y5b{bottom:222.970648pt;}
.y4e{bottom:229.129486pt;}
.y41{bottom:230.546080pt;}
.y6d{bottom:231.897544pt;}
.ydf{bottom:233.672842pt;}
.y7c{bottom:234.829567pt;}
.ye3{bottom:237.993644pt;}
.yc0{bottom:238.264842pt;}
.yc7{bottom:238.904253pt;}
.yf6{bottom:240.324000pt;}
.y54{bottom:243.134852pt;}
.yb3{bottom:244.489390pt;}
.y2a{bottom:249.498125pt;}
.yda{bottom:250.456833pt;}
.y6e{bottom:250.980544pt;}
.yba{bottom:252.089056pt;}
.y7d{bottom:253.912567pt;}
.yd4{bottom:254.867374pt;}
.ycd{bottom:255.596821pt;}
.ye2{bottom:263.151576pt;}
.ye0{bottom:269.913383pt;}
.y6f{bottom:270.063544pt;}
.yb5{bottom:270.409055pt;}
.y7e{bottom:272.995567pt;}
.y48{bottom:279.242900pt;}
.yf5{bottom:280.174667pt;}
.y47{bottom:283.112231pt;}
.ye1{bottom:288.640533pt;}
.yc{bottom:289.670715pt;}
.y89{bottom:299.051402pt;}
.ya0{bottom:307.806328pt;}
.y92{bottom:309.037174pt;}
.y98{bottom:311.612082pt;}
.yd6{bottom:312.834596pt;}
.ya5{bottom:319.651995pt;}
.yf4{bottom:320.025333pt;}
.y55{bottom:322.934142pt;}
.y4c{bottom:325.703862pt;}
.y8a{bottom:328.992665pt;}
.y49{bottom:329.904597pt;}
.y52{bottom:330.600969pt;}
.y99{bottom:339.278195pt;}
.y93{bottom:343.821785pt;}
.ya6{bottom:350.468605pt;}
.ya1{bottom:351.342526pt;}
.y38{bottom:353.459928pt;}
.y8b{bottom:358.933929pt;}
.y2c{bottom:364.584971pt;}
.yf3{bottom:365.189333pt;}
.y9a{bottom:366.944309pt;}
.y4b{bottom:376.111305pt;}
.y90{bottom:376.953643pt;}
.y94{bottom:378.606395pt;}
.ya7{bottom:381.285216pt;}
.y8c{bottom:388.875192pt;}
.y9b{bottom:394.610422pt;}
.ya2{bottom:394.878724pt;}
.y56{bottom:403.545820pt;}
.yf2{bottom:405.040000pt;}
.ya8{bottom:412.101826pt;}
.y95{bottom:413.391006pt;}
.y8d{bottom:418.816455pt;}
.y10{bottom:419.505714pt;}
.y9c{bottom:422.276536pt;}
.y1f{bottom:427.515579pt;}
.ya{bottom:427.592441pt;}
.y1d{bottom:435.550127pt;}
.ya3{bottom:438.414922pt;}
.y59{bottom:439.796982pt;}
.ya9{bottom:442.918437pt;}
.yf1{bottom:444.890667pt;}
.y96{bottom:448.175617pt;}
.y8e{bottom:448.757719pt;}
.yf{bottom:449.519068pt;}
.y9d{bottom:449.942649pt;}
.y5f{bottom:453.966110pt;}
.yd{bottom:469.537939pt;}
.y9{bottom:469.673148pt;}
.yaa{bottom:473.735047pt;}
.yb{bottom:473.751770pt;}
.y9e{bottom:477.608763pt;}
.y8f{bottom:478.698982pt;}
.ya4{bottom:481.951120pt;}
.y97{bottom:482.960228pt;}
.y58{bottom:487.131198pt;}
.yf0{bottom:490.054667pt;}
.y23{bottom:498.221993pt;}
.y27{bottom:499.991758pt;}
.yab{bottom:504.551657pt;}
.y9f{bottom:505.274877pt;}
.ye{bottom:514.467569pt;}
.y91{bottom:515.553811pt;}
.y88{bottom:526.938667pt;}
.yef{bottom:529.904000pt;}
.y40{bottom:551.583455pt;}
.y1e{bottom:555.379068pt;}
.y3f{bottom:558.749467pt;}
.y24{bottom:567.726384pt;}
.yee{bottom:575.068000pt;}
.y20{bottom:577.648253pt;}
.yed{bottom:614.918667pt;}
.y3a{bottom:626.109988pt;}
.y34{bottom:663.373255pt;}
.yec{bottom:693.997333pt;}
.y35{bottom:720.701357pt;}
.y87{bottom:1081.960000pt;}
.y86{bottom:1131.109333pt;}
.y85{bottom:1190.884000pt;}
.y84{bottom:1240.033333pt;}
.y83{bottom:1299.809333pt;}
.y82{bottom:1359.585333pt;}
.y81{bottom:1419.361333pt;}
.y80{bottom:1468.510667pt;}
.y7f{bottom:1599.032000pt;}
.y8{bottom:1861.600000pt;}
.y46{bottom:1892.754667pt;}
.y45{bottom:2490.678667pt;}
.y43{bottom:2493.126667pt;}
.y7{bottom:2553.380000pt;}
.y42{bottom:2609.546667pt;}
.y33{bottom:2794.790667pt;}
.y44{bottom:3097.728000pt;}
.y6{bottom:3157.866667pt;}
.y36{bottom:3198.395977pt;}
.y32{bottom:3726.188000pt;}
.y5{bottom:3797.918667pt;}
.y4{bottom:4007.152000pt;}
.y3{bottom:4058.886667pt;}
.y2{bottom:4160.924000pt;}
.y1{bottom:4276.244000pt;}
.h17{height:15.758317pt;}
.h13{height:25.808363pt;}
.h7{height:30.603985pt;}
.h18{height:31.516635pt;}
.h1b{height:46.020653pt;}
.ha{height:50.083711pt;}
.h1c{height:50.204349pt;}
.h14{height:51.616726pt;}
.hb{height:58.430997pt;}
.h8{height:61.207970pt;}
.h20{height:63.675270pt;}
.h21{height:69.463931pt;}
.he{height:75.105999pt;}
.h10{height:75.125567pt;}
.h1d{height:91.320087pt;}
.hd{height:91.631047pt;}
.hf{height:91.634998pt;}
.h1e{height:94.212964pt;}
.h24{height:99.016202pt;}
.h23{height:99.148400pt;}
.h15{height:105.242709pt;}
.h19{height:118.834942pt;}
.h11{height:118.993600pt;}
.h22{height:142.784400pt;}
.hc{height:143.320247pt;}
.h4{height:171.129123pt;}
.h5{height:171.357600pt;}
.h3{height:205.354628pt;}
.h2{height:246.754800pt;}
.h16{height:279.459933pt;}
.h1f{height:336.002481pt;}
.h12{height:497.970840pt;}
.h1a{height:540.412800pt;}
.h6{height:590.502080pt;}
.h9{height:842.523558pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w6{width:143.320218pt;}
.w5{width:143.320247pt;}
.w9{width:239.597667pt;}
.w7{width:581.313240pt;}
.w8{width:670.906320pt;}
.w4{width:862.606393pt;}
.w2{width:891.106347pt;}
.w3{width:924.872853pt;}
.wb{width:1351.010450pt;}
.wa{width:1351.032000pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x23{left:-1.319642pt;}
.x0{left:0.000000pt;}
.x2a{left:1.941910pt;}
.x26{left:5.186263pt;}
.x33{left:15.423994pt;}
.x35{left:16.671346pt;}
.x3c{left:20.536027pt;}
.x50{left:23.857981pt;}
.x5f{left:24.858989pt;}
.x5e{left:30.675932pt;}
.x7a{left:32.047155pt;}
.x3b{left:39.615537pt;}
.x79{left:42.951521pt;}
.x69{left:44.561539pt;}
.x68{left:50.378482pt;}
.x2c{left:55.478987pt;}
.x77{left:64.414485pt;}
.x27{left:80.539794pt;}
.x67{left:84.367648pt;}
.x60{left:92.716447pt;}
.x8{left:94.489333pt;}
.x5a{left:97.402915pt;}
.x56{left:100.905697pt;}
.x5{left:101.849333pt;}
.x17{left:104.791606pt;}
.x16{left:107.769401pt;}
.x7b{left:123.734780pt;}
.x5c{left:127.689333pt;}
.x5d{left:131.753333pt;}
.x22{left:136.160583pt;}
.x51{left:143.447763pt;}
.x1a{left:145.131785pt;}
.x43{left:154.157322pt;}
.x46{left:155.611675pt;}
.x18{left:157.795056pt;}
.x78{left:161.004347pt;}
.x4f{left:173.505094pt;}
.x38{left:178.465428pt;}
.x4c{left:181.581165pt;}
.x54{left:188.067593pt;}
.x45{left:198.299557pt;}
.x19{left:201.622872pt;}
.x31{left:219.661616pt;}
.x4a{left:234.207293pt;}
.x47{left:246.358012pt;}
.x4b{left:289.097147pt;}
.x55{left:295.225679pt;}
.x57{left:301.815460pt;}
.x6c{left:305.010485pt;}
.x14{left:306.533977pt;}
.x39{left:307.646810pt;}
.x61{left:312.891505pt;}
.x7{left:315.501333pt;}
.x1f{left:329.770040pt;}
.x62{left:332.043791pt;}
.x6{left:339.093333pt;}
.x6a{left:346.880672pt;}
.x6d{left:353.939423pt;}
.x48{left:358.648943pt;}
.x4d{left:373.546847pt;}
.x52{left:379.672677pt;}
.x44{left:384.418360pt;}
.x25{left:394.020141pt;}
.x36{left:395.587231pt;}
.x49{left:398.493268pt;}
.x6b{left:408.449811pt;}
.x1e{left:412.996006pt;}
.x11{left:414.995215pt;}
.x7c{left:416.079131pt;}
.x58{left:470.431380pt;}
.x1{left:472.905333pt;}
.x2d{left:474.050297pt;}
.x53{left:483.939769pt;}
.x20{left:490.331218pt;}
.x2b{left:493.624157pt;}
.x37{left:500.166230pt;}
.x15{left:505.862556pt;}
.x21{left:510.787414pt;}
.x12{left:513.030245pt;}
.x13{left:514.324931pt;}
.x5b{left:530.080000pt;}
.x28{left:532.217250pt;}
.xc{left:551.611733pt;}
.x63{left:575.404529pt;}
.x1b{left:586.965924pt;}
.xd{left:594.850874pt;}
.x6e{left:609.393695pt;}
.xe{left:622.258167pt;}
.xb{left:668.545281pt;}
.x6f{left:670.962835pt;}
.x10{left:674.527487pt;}
.x3a{left:677.144346pt;}
.x9{left:691.641359pt;}
.x1d{left:696.775849pt;}
.xa{left:698.684017pt;}
.xf{left:703.192494pt;}
.x29{left:714.319757pt;}
.x1c{left:717.035907pt;}
.x7f{left:719.019897pt;}
.x24{left:760.434323pt;}
.x7d{left:767.743777pt;}
.x64{left:826.096022pt;}
.x80{left:830.276966pt;}
.x65{left:837.578387pt;}
.x7e{left:864.333640pt;}
.x70{left:871.906718pt;}
.x72{left:914.875712pt;}
.x71{left:933.475858pt;}
.x2{left:992.460000pt;}
.x3{left:1055.348000pt;}
.x75{left:1088.609045pt;}
.x82{left:1090.980249pt;}
.x66{left:1092.549555pt;}
.x73{left:1134.419742pt;}
.x3e{left:1139.836000pt;}
.x76{left:1144.293143pt;}
.x30{left:1149.965333pt;}
.x81{left:1162.306491pt;}
.x4{left:1178.524000pt;}
.x2e{left:1181.964000pt;}
.x74{left:1195.988881pt;}
.x3d{left:1225.174667pt;}
.x34{left:1340.582207pt;}
.x2f{left:1487.233333pt;}
.x84{left:1667.408000pt;}
.x85{left:1680.688000pt;}
.x32{left:1714.648091pt;}
.x83{left:1871.622667pt;}
.x86{left:1991.017333pt;}
.x4e{left:2150.262667pt;}
.x42{left:2164.847587pt;}
.x3f{left:2228.016000pt;}
.x41{left:2336.082667pt;}
.x40{left:2407.110667pt;}
.x59{left:2833.092000pt;}
}




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