
    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_1332e72525f1eb4f63c4438b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_6acb4cc1b155a4230f5ed88a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_f7700fbd5e8a10233b05d0f1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_530b534a1a8ad83ba12cde3b.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4fa671df31fc523f81e37df1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.968000;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_574865ec811f806298ea86e4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.974000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c43270ce1350a5d36dc8599d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.964000;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;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,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);}
.m1c{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.987674px;}
.ls2{letter-spacing:8.967408px;}
.ls1{letter-spacing:13.449600px;}
.ls4{letter-spacing:16.363650px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-17.932800px;}
.ws21{word-spacing:-16.363650px;}
.ws5e{word-spacing:-5.105459px;}
.ws3a{word-spacing:-3.665458px;}
.ws46{word-spacing:-3.338185px;}
.ws62{word-spacing:-3.076366px;}
.wsd{word-spacing:-3.010912px;}
.ws45{word-spacing:-2.880002px;}
.ws4e{word-spacing:-2.683639px;}
.ws36{word-spacing:-2.552729px;}
.ws3d{word-spacing:-2.487275px;}
.ws61{word-spacing:-2.421820px;}
.ws1e{word-spacing:-2.225456px;}
.ws4b{word-spacing:-2.094547px;}
.ws40{word-spacing:-2.029093px;}
.ws2d{word-spacing:-1.963638px;}
.ws16{word-spacing:-1.898183px;}
.ws47{word-spacing:-1.832729px;}
.ws25{word-spacing:-1.701820px;}
.ws3b{word-spacing:-1.505456px;}
.ws48{word-spacing:-1.440001px;}
.ws2e{word-spacing:-1.374547px;}
.ws4c{word-spacing:-1.178183px;}
.ws1d{word-spacing:-0.981819px;}
.ws32{word-spacing:-0.916364px;}
.ws2c{word-spacing:-0.720001px;}
.ws13{word-spacing:-0.327273px;}
.ws7{word-spacing:-0.268992px;}
.wsc{word-spacing:-0.261818px;}
.ws5{word-spacing:-0.215194px;}
.ws15{word-spacing:-0.196364px;}
.ws1f{word-spacing:-0.130909px;}
.ws52{word-spacing:-0.086077px;}
.ws9{word-spacing:-0.065455px;}
.ws54{word-spacing:-0.055637px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:0.065455px;}
.ws23{word-spacing:0.130909px;}
.ws8{word-spacing:0.161395px;}
.ws28{word-spacing:0.196364px;}
.ws10{word-spacing:0.261818px;}
.ws24{word-spacing:0.327273px;}
.ws2f{word-spacing:0.392728px;}
.ws56{word-spacing:0.458182px;}
.ws59{word-spacing:0.523637px;}
.ws42{word-spacing:0.589091px;}
.ws4f{word-spacing:0.654546px;}
.ws2a{word-spacing:0.720001px;}
.ws3c{word-spacing:0.916364px;}
.ws53{word-spacing:1.178183px;}
.ws3f{word-spacing:1.243637px;}
.ws26{word-spacing:1.309092px;}
.wsf{word-spacing:1.374547px;}
.ws30{word-spacing:1.440001px;}
.ws20{word-spacing:1.963638px;}
.ws50{word-spacing:2.029093px;}
.ws51{word-spacing:2.421820px;}
.ws17{word-spacing:2.552729px;}
.ws33{word-spacing:2.618184px;}
.ws31{word-spacing:2.749093px;}
.ws37{word-spacing:2.814548px;}
.ws34{word-spacing:2.880002px;}
.ws4{word-spacing:3.066509px;}
.ws4d{word-spacing:3.141821px;}
.ws19{word-spacing:3.207275px;}
.ws27{word-spacing:3.272730px;}
.ws2b{word-spacing:3.338185px;}
.wsb{word-spacing:3.534548px;}
.ws6{word-spacing:3.604493px;}
.ws60{word-spacing:3.861821px;}
.ws22{word-spacing:4.058185px;}
.ws39{word-spacing:4.385458px;}
.ws35{word-spacing:4.450913px;}
.ws1c{word-spacing:4.465267px;}
.ws1a{word-spacing:4.516367px;}
.ws4a{word-spacing:4.647277px;}
.ws18{word-spacing:4.843640px;}
.ws5c{word-spacing:5.040004px;}
.ws5f{word-spacing:5.367277px;}
.ws38{word-spacing:5.432732px;}
.ws49{word-spacing:6.087278px;}
.ws63{word-spacing:6.741824px;}
.ws3e{word-spacing:7.069097px;}
.ws43{word-spacing:7.265461px;}
.ws55{word-spacing:7.592734px;}
.ws1b{word-spacing:13.126810px;}
.ws3{word-spacing:13.395802px;}
.wse{word-spacing:16.232741px;}
.ws12{word-spacing:16.614056px;}
.ws41{word-spacing:17.861069px;}
.ws11{word-spacing:19.378013px;}
.ws29{word-spacing:21.433223px;}
.ws44{word-spacing:23.563656px;}
.ws0{word-spacing:25.719808px;}
.wsa{word-spacing:42.952523px;}
.ws5d{word-spacing:46.800039px;}
.ws5a{word-spacing:59.760050px;}
.ws57{word-spacing:97.658263px;}
.ws58{word-spacing:156.567403px;}
.ws5b{word-spacing:231.185647px;}
._11{margin-left:-7.947806px;}
._2{margin-left:-6.507421px;}
._1{margin-left:-5.164620px;}
._6{margin-left:-4.030385px;}
._3{margin-left:-2.438861px;}
._4{margin-left:-1.093901px;}
._0{width:1.446094px;}
._e{width:2.618184px;}
._10{width:3.992731px;}
._c{width:10.472755px;}
._1e{width:12.453415px;}
._5{width:15.285209px;}
._d{width:16.429105px;}
._15{width:17.476378px;}
._9{width:18.916379px;}
._7{width:20.033670px;}
._12{width:21.927291px;}
._8{width:23.688473px;}
._b{width:25.003657px;}
._16{width:26.219495px;}
._a{width:27.879097px;}
._1c{width:29.158013px;}
._20{width:30.929310px;}
._13{width:32.521964px;}
._14{width:35.865600px;}
._f{width:43.038600px;}
._1f{width:44.948483px;}
._21{width:50.727315px;}
._17{width:53.934590px;}
._1d{width:74.880062px;}
._1a{width:91.095751px;}
._1b{width:138.436479px;}
._19{width:212.083852px;}
._18{width:214.298360px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs7{font-size:55.636800px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.ye0{bottom:111.472500px;}
.y2d{bottom:112.810500px;}
.yc8{bottom:116.043000px;}
.y5e{bottom:125.152500px;}
.y2c{bottom:129.850500px;}
.ydf{bottom:131.796000px;}
.yc7{bottom:136.366500px;}
.y5d{bottom:145.476000px;}
.y2b{bottom:146.289000px;}
.yde{bottom:152.121000px;}
.yc6{bottom:156.691500px;}
.y9d{bottom:161.107500px;}
.y2a{bottom:162.990000px;}
.y5c{bottom:165.801000px;}
.ydd{bottom:172.444500px;}
.yc5{bottom:177.015000px;}
.y29{bottom:179.427000px;}
.y9c{bottom:181.431000px;}
.y5b{bottom:186.124500px;}
.ydc{bottom:192.768000px;}
.yc4{bottom:197.338500px;}
.y72{bottom:199.804500px;}
.y9b{bottom:201.754500px;}
.y5a{bottom:206.448000px;}
.ydb{bottom:213.091500px;}
.yc3{bottom:217.662000px;}
.y71{bottom:220.128000px;}
.y9a{bottom:222.078000px;}
.y59{bottom:226.771500px;}
.yda{bottom:233.415000px;}
.yc2{bottom:237.985500px;}
.y28{bottom:238.627500px;}
.y70{bottom:240.451500px;}
.y99{bottom:242.403000px;}
.y58{bottom:247.095000px;}
.yd9{bottom:253.738500px;}
.yc1{bottom:258.310500px;}
.y27{bottom:258.951000px;}
.y6f{bottom:260.775000px;}
.y98{bottom:262.726500px;}
.y57{bottom:267.420000px;}
.yd8{bottom:274.063500px;}
.yc0{bottom:278.634000px;}
.y26{bottom:279.274500px;}
.y97{bottom:283.050000px;}
.y56{bottom:287.743500px;}
.yd7{bottom:294.387000px;}
.y6e{bottom:297.246000px;}
.ybf{bottom:298.957500px;}
.y25{bottom:299.599500px;}
.y96{bottom:303.373500px;}
.y55{bottom:308.067000px;}
.yd6{bottom:314.710500px;}
.ybe{bottom:319.281000px;}
.y24{bottom:319.923000px;}
.y95{bottom:323.697000px;}
.y54{bottom:328.390500px;}
.yd5{bottom:335.034000px;}
.ybd{bottom:339.604500px;}
.y23{bottom:340.246500px;}
.y94{bottom:344.022000px;}
.y53{bottom:348.714000px;}
.yd4{bottom:355.357500px;}
.ybc{bottom:359.929500px;}
.y22{bottom:360.570000px;}
.y52{bottom:369.039000px;}
.y93{bottom:374.875500px;}
.yd3{bottom:375.682500px;}
.ybb{bottom:380.253000px;}
.y21{bottom:380.893500px;}
.y51{bottom:389.362500px;}
.y92{bottom:395.796000px;}
.yd2{bottom:396.006000px;}
.yba{bottom:400.576500px;}
.y20{bottom:401.218500px;}
.y50{bottom:409.686000px;}
.yd1{bottom:416.329500px;}
.yb9{bottom:420.900000px;}
.y1f{bottom:421.542000px;}
.y4f{bottom:430.009500px;}
.yd0{bottom:436.653000px;}
.y91{bottom:439.533000px;}
.yb8{bottom:441.223500px;}
.y1e{bottom:441.865500px;}
.y4e{bottom:450.333000px;}
.ycf{bottom:456.976500px;}
.y90{bottom:459.856500px;}
.yb6{bottom:461.547000px;}
.yb7{bottom:461.548500px;}
.y1d{bottom:462.189000px;}
.y4d{bottom:470.658000px;}
.yce{bottom:477.301500px;}
.y8f{bottom:480.181500px;}
.y1c{bottom:482.512500px;}
.y4c{bottom:490.981500px;}
.ycd{bottom:497.625000px;}
.yb5{bottom:498.018000px;}
.y8e{bottom:500.505000px;}
.y1b{bottom:502.837500px;}
.y4b{bottom:511.305000px;}
.ycc{bottom:517.948500px;}
.y8d{bottom:520.828500px;}
.y1a{bottom:523.161000px;}
.y6d{bottom:531.628500px;}
.ycb{bottom:538.272000px;}
.y8c{bottom:541.152000px;}
.y19{bottom:543.484500px;}
.y4a{bottom:547.774500px;}
.yb4{bottom:549.486000px;}
.y6c{bottom:551.952000px;}
.yca{bottom:558.595500px;}
.y8b{bottom:561.475500px;}
.y18{bottom:563.808000px;}
.yb3{bottom:569.811000px;}
.y6b{bottom:572.277000px;}
.yc9{bottom:578.920500px;}
.y8a{bottom:581.800500px;}
.y17{bottom:584.131500px;}
.y6a{bottom:592.600500px;}
.y49{bottom:599.244000px;}
.y89{bottom:602.124000px;}
.y16{bottom:604.456500px;}
.yb2{bottom:606.280500px;}
.y69{bottom:612.924000px;}
.y48{bottom:619.567500px;}
.y88{bottom:622.447500px;}
.y15{bottom:624.780000px;}
.y68{bottom:633.247500px;}
.y47{bottom:639.891000px;}
.y87{bottom:642.771000px;}
.y14{bottom:645.103500px;}
.y67{bottom:653.571000px;}
.yb1{bottom:657.750000px;}
.y46{bottom:660.214500px;}
.y86{bottom:663.094500px;}
.y13{bottom:665.427000px;}
.y66{bottom:673.894500px;}
.yb0{bottom:678.073500px;}
.y45{bottom:680.539500px;}
.y85{bottom:683.419500px;}
.y12{bottom:685.750500px;}
.y65{bottom:694.219500px;}
.y44{bottom:700.863000px;}
.y11{bottom:706.075500px;}
.y84{bottom:714.273000px;}
.y64{bottom:714.543000px;}
.y43{bottom:721.186500px;}
.y63{bottom:734.866500px;}
.y42{bottom:741.510000px;}
.y10{bottom:742.545000px;}
.y62{bottom:755.190000px;}
.y83{bottom:758.008500px;}
.y41{bottom:761.833500px;}
.yaf{bottom:766.012500px;}
.y61{bottom:775.513500px;}
.y82{bottom:778.333500px;}
.y40{bottom:782.158500px;}
.yae{bottom:786.336000px;}
.y60{bottom:795.838500px;}
.y81{bottom:798.657000px;}
.y3f{bottom:802.482000px;}
.yad{bottom:806.659500px;}
.yf{bottom:816.583500px;}
.y80{bottom:818.980500px;}
.y3e{bottom:822.805500px;}
.yac{bottom:826.983000px;}
.y5f{bottom:832.308000px;}
.ye{bottom:833.022000px;}
.y7f{bottom:839.304000px;}
.y3d{bottom:843.129000px;}
.yab{bottom:847.306500px;}
.y7e{bottom:859.627500px;}
.yd{bottom:860.800500px;}
.y3c{bottom:863.452500px;}
.yaa{bottom:867.631500px;}
.yc{bottom:877.239000px;}
.y7d{bottom:879.952500px;}
.y3b{bottom:883.777500px;}
.ya9{bottom:887.955000px;}
.yb{bottom:893.677500px;}
.y3a{bottom:904.101000px;}
.ya8{bottom:908.278500px;}
.ya{bottom:910.116000px;}
.y7c{bottom:910.806000px;}
.y39{bottom:924.424500px;}
.y9{bottom:926.554500px;}
.ya7{bottom:928.602000px;}
.y8{bottom:942.993000px;}
.y38{bottom:944.748000px;}
.ya6{bottom:948.925500px;}
.y7b{bottom:954.541500px;}
.y7{bottom:959.430000px;}
.y37{bottom:965.071500px;}
.ya5{bottom:969.250500px;}
.y7a{bottom:974.866500px;}
.y6{bottom:975.868500px;}
.y36{bottom:985.396500px;}
.ya4{bottom:989.574000px;}
.y79{bottom:995.190000px;}
.y35{bottom:1005.720000px;}
.ya3{bottom:1009.897500px;}
.y78{bottom:1015.513500px;}
.y34{bottom:1026.043500px;}
.y5{bottom:1026.714000px;}
.ya2{bottom:1030.221000px;}
.y77{bottom:1035.837000px;}
.y4{bottom:1046.140500px;}
.y33{bottom:1046.367000px;}
.ya1{bottom:1050.544500px;}
.y76{bottom:1056.160500px;}
.y32{bottom:1066.690500px;}
.ya0{bottom:1070.869500px;}
.y3{bottom:1074.798000px;}
.y75{bottom:1076.485500px;}
.y31{bottom:1087.015500px;}
.y9f{bottom:1091.193000px;}
.y74{bottom:1096.809000px;}
.y30{bottom:1107.339000px;}
.y9e{bottom:1111.516500px;}
.y2{bottom:1113.652500px;}
.y73{bottom:1117.132500px;}
.y2f{bottom:1127.662500px;}
.y1{bottom:1146.529500px;}
.y2e{bottom:1147.986000px;}
.h4{height:25.105920px;}
.hc{height:26.397082px;}
.h9{height:37.658880px;}
.h6{height:39.595622px;}
.he{height:40.447954px;}
.h5{height:45.687311px;}
.hb{height:46.212826px;}
.ha{height:47.073600px;}
.h8{height:48.174586px;}
.hd{height:50.068378px;}
.h3{height:59.508420px;}
.h7{height:60.081886px;}
.h2{height:72.098095px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x19{left:113.808000px;}
.x3f{left:115.609500px;}
.x9{left:124.363500px;}
.x1a{left:129.025500px;}
.x1b{left:136.705500px;}
.x40{left:143.050500px;}
.x3e{left:144.223500px;}
.x1c{left:151.924500px;}
.x1d{left:159.604500px;}
.xa{left:172.126500px;}
.x2{left:175.122000px;}
.x26{left:193.302000px;}
.x27{left:200.911500px;}
.x3c{left:210.213000px;}
.x3d{left:217.822500px;}
.x37{left:264.466500px;}
.x38{left:279.684000px;}
.x22{left:298.735500px;}
.x23{left:313.953000px;}
.x24{left:321.829500px;}
.x25{left:337.047000px;}
.x2a{left:363.744000px;}
.x2b{left:378.963000px;}
.xb{left:383.109000px;}
.xc{left:390.717000px;}
.xd{left:398.478000px;}
.xe{left:406.086000px;}
.x17{left:445.537500px;}
.x18{left:460.756500px;}
.x1e{left:469.326000px;}
.x1f{left:484.543500px;}
.x39{left:540.562500px;}
.xf{left:546.768000px;}
.x20{left:552.522000px;}
.x10{left:554.376000px;}
.x3a{left:555.780000px;}
.x11{left:562.137000px;}
.x21{left:567.739500px;}
.x12{left:569.745000px;}
.x3b{left:649.180500px;}
.x28{left:665.191500px;}
.x41{left:675.420000px;}
.x29{left:680.410500px;}
.x30{left:690.067500px;}
.x2c{left:693.295500px;}
.x32{left:695.799000px;}
.x31{left:705.285000px;}
.x2d{left:708.513000px;}
.x33{left:711.016500px;}
.x2e{left:716.257500px;}
.x34{left:718.192500px;}
.x2f{left:731.476500px;}
.x35{left:733.410000px;}
.x42{left:735.952500px;}
.x36{left:740.584500px;}
.x3{left:741.780000px;}
.x4{left:749.389500px;}
.x13{left:754.131000px;}
.x5{left:756.184500px;}
.x14{left:761.740500px;}
.x6{left:763.792500px;}
.x15{left:769.500000px;}
.x7{left:770.587500px;}
.x16{left:777.109500px;}
.x8{left:778.197000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.655710pt;}
.ls2{letter-spacing:7.971029pt;}
.ls1{letter-spacing:11.955200pt;}
.ls4{letter-spacing:14.545467pt;}
.ws2{word-spacing:-15.940267pt;}
.ws21{word-spacing:-14.545467pt;}
.ws5e{word-spacing:-4.538186pt;}
.ws3a{word-spacing:-3.258185pt;}
.ws46{word-spacing:-2.967275pt;}
.ws62{word-spacing:-2.734548pt;}
.wsd{word-spacing:-2.676366pt;}
.ws45{word-spacing:-2.560002pt;}
.ws4e{word-spacing:-2.385457pt;}
.ws36{word-spacing:-2.269093pt;}
.ws3d{word-spacing:-2.210911pt;}
.ws61{word-spacing:-2.152729pt;}
.ws1e{word-spacing:-1.978183pt;}
.ws4b{word-spacing:-1.861820pt;}
.ws40{word-spacing:-1.803638pt;}
.ws2d{word-spacing:-1.745456pt;}
.ws16{word-spacing:-1.687274pt;}
.ws47{word-spacing:-1.629092pt;}
.ws25{word-spacing:-1.512729pt;}
.ws3b{word-spacing:-1.338183pt;}
.ws48{word-spacing:-1.280001pt;}
.ws2e{word-spacing:-1.221819pt;}
.ws4c{word-spacing:-1.047274pt;}
.ws1d{word-spacing:-0.872728pt;}
.ws32{word-spacing:-0.814546pt;}
.ws2c{word-spacing:-0.640001pt;}
.ws13{word-spacing:-0.290909pt;}
.ws7{word-spacing:-0.239104pt;}
.wsc{word-spacing:-0.232727pt;}
.ws5{word-spacing:-0.191283pt;}
.ws15{word-spacing:-0.174546pt;}
.ws1f{word-spacing:-0.116364pt;}
.ws52{word-spacing:-0.076513pt;}
.ws9{word-spacing:-0.058182pt;}
.ws54{word-spacing:-0.049455pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:0.058182pt;}
.ws23{word-spacing:0.116364pt;}
.ws8{word-spacing:0.143462pt;}
.ws28{word-spacing:0.174546pt;}
.ws10{word-spacing:0.232727pt;}
.ws24{word-spacing:0.290909pt;}
.ws2f{word-spacing:0.349091pt;}
.ws56{word-spacing:0.407273pt;}
.ws59{word-spacing:0.465455pt;}
.ws42{word-spacing:0.523637pt;}
.ws4f{word-spacing:0.581819pt;}
.ws2a{word-spacing:0.640001pt;}
.ws3c{word-spacing:0.814546pt;}
.ws53{word-spacing:1.047274pt;}
.ws3f{word-spacing:1.105455pt;}
.ws26{word-spacing:1.163637pt;}
.wsf{word-spacing:1.221819pt;}
.ws30{word-spacing:1.280001pt;}
.ws20{word-spacing:1.745456pt;}
.ws50{word-spacing:1.803638pt;}
.ws51{word-spacing:2.152729pt;}
.ws17{word-spacing:2.269093pt;}
.ws33{word-spacing:2.327275pt;}
.ws31{word-spacing:2.443638pt;}
.ws37{word-spacing:2.501820pt;}
.ws34{word-spacing:2.560002pt;}
.ws4{word-spacing:2.725786pt;}
.ws4d{word-spacing:2.792730pt;}
.ws19{word-spacing:2.850911pt;}
.ws27{word-spacing:2.909093pt;}
.ws2b{word-spacing:2.967275pt;}
.wsb{word-spacing:3.141821pt;}
.ws6{word-spacing:3.203994pt;}
.ws60{word-spacing:3.432730pt;}
.ws22{word-spacing:3.607276pt;}
.ws39{word-spacing:3.898185pt;}
.ws35{word-spacing:3.956367pt;}
.ws1c{word-spacing:3.969126pt;}
.ws1a{word-spacing:4.014549pt;}
.ws4a{word-spacing:4.130913pt;}
.ws18{word-spacing:4.305458pt;}
.ws5c{word-spacing:4.480004pt;}
.ws5f{word-spacing:4.770913pt;}
.ws38{word-spacing:4.829095pt;}
.ws49{word-spacing:5.410914pt;}
.ws63{word-spacing:5.992732pt;}
.ws3e{word-spacing:6.283642pt;}
.ws43{word-spacing:6.458187pt;}
.ws55{word-spacing:6.749097pt;}
.ws1b{word-spacing:11.668275pt;}
.ws3{word-spacing:11.907379pt;}
.wse{word-spacing:14.429103pt;}
.ws12{word-spacing:14.768050pt;}
.ws41{word-spacing:15.876506pt;}
.ws11{word-spacing:17.224901pt;}
.ws29{word-spacing:19.051754pt;}
.ws44{word-spacing:20.945472pt;}
.ws0{word-spacing:22.862051pt;}
.wsa{word-spacing:38.180020pt;}
.ws5d{word-spacing:41.600035pt;}
.ws5a{word-spacing:53.120044pt;}
.ws57{word-spacing:86.807345pt;}
.ws58{word-spacing:139.171025pt;}
.ws5b{word-spacing:205.498353pt;}
._11{margin-left:-7.064717pt;}
._2{margin-left:-5.784374pt;}
._1{margin-left:-4.590773pt;}
._6{margin-left:-3.582565pt;}
._3{margin-left:-2.167876pt;}
._4{margin-left:-0.972356pt;}
._0{width:1.285417pt;}
._e{width:2.327275pt;}
._10{width:3.549094pt;}
._c{width:9.309116pt;}
._1e{width:11.069702pt;}
._5{width:13.586852pt;}
._d{width:14.603649pt;}
._15{width:15.534558pt;}
._9{width:16.814559pt;}
._7{width:17.807707pt;}
._12{width:19.490925pt;}
._8{width:21.056420pt;}
._b{width:22.225473pt;}
._16{width:23.306218pt;}
._a{width:24.781419pt;}
._1c{width:25.918234pt;}
._20{width:27.492720pt;}
._13{width:28.908412pt;}
._14{width:31.880533pt;}
._f{width:38.256533pt;}
._1f{width:39.954207pt;}
._21{width:45.090947pt;}
._17{width:47.941858pt;}
._1d{width:66.560055pt;}
._1a{width:80.974001pt;}
._1b{width:123.054648pt;}
._19{width:188.518980pt;}
._18{width:190.487431pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs7{font-size:49.454933pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:99.086667pt;}
.y2d{bottom:100.276000pt;}
.yc8{bottom:103.149333pt;}
.y5e{bottom:111.246667pt;}
.y2c{bottom:115.422667pt;}
.ydf{bottom:117.152000pt;}
.yc7{bottom:121.214667pt;}
.y5d{bottom:129.312000pt;}
.y2b{bottom:130.034667pt;}
.yde{bottom:135.218667pt;}
.yc6{bottom:139.281333pt;}
.y9d{bottom:143.206667pt;}
.y2a{bottom:144.880000pt;}
.y5c{bottom:147.378667pt;}
.ydd{bottom:153.284000pt;}
.yc5{bottom:157.346667pt;}
.y29{bottom:159.490667pt;}
.y9c{bottom:161.272000pt;}
.y5b{bottom:165.444000pt;}
.ydc{bottom:171.349333pt;}
.yc4{bottom:175.412000pt;}
.y72{bottom:177.604000pt;}
.y9b{bottom:179.337333pt;}
.y5a{bottom:183.509333pt;}
.ydb{bottom:189.414667pt;}
.yc3{bottom:193.477333pt;}
.y71{bottom:195.669333pt;}
.y9a{bottom:197.402667pt;}
.y59{bottom:201.574667pt;}
.yda{bottom:207.480000pt;}
.yc2{bottom:211.542667pt;}
.y28{bottom:212.113333pt;}
.y70{bottom:213.734667pt;}
.y99{bottom:215.469333pt;}
.y58{bottom:219.640000pt;}
.yd9{bottom:225.545333pt;}
.yc1{bottom:229.609333pt;}
.y27{bottom:230.178667pt;}
.y6f{bottom:231.800000pt;}
.y98{bottom:233.534667pt;}
.y57{bottom:237.706667pt;}
.yd8{bottom:243.612000pt;}
.yc0{bottom:247.674667pt;}
.y26{bottom:248.244000pt;}
.y97{bottom:251.600000pt;}
.y56{bottom:255.772000pt;}
.yd7{bottom:261.677333pt;}
.y6e{bottom:264.218667pt;}
.ybf{bottom:265.740000pt;}
.y25{bottom:266.310667pt;}
.y96{bottom:269.665333pt;}
.y55{bottom:273.837333pt;}
.yd6{bottom:279.742667pt;}
.ybe{bottom:283.805333pt;}
.y24{bottom:284.376000pt;}
.y95{bottom:287.730667pt;}
.y54{bottom:291.902667pt;}
.yd5{bottom:297.808000pt;}
.ybd{bottom:301.870667pt;}
.y23{bottom:302.441333pt;}
.y94{bottom:305.797333pt;}
.y53{bottom:309.968000pt;}
.yd4{bottom:315.873333pt;}
.ybc{bottom:319.937333pt;}
.y22{bottom:320.506667pt;}
.y52{bottom:328.034667pt;}
.y93{bottom:333.222667pt;}
.yd3{bottom:333.940000pt;}
.ybb{bottom:338.002667pt;}
.y21{bottom:338.572000pt;}
.y51{bottom:346.100000pt;}
.y92{bottom:351.818667pt;}
.yd2{bottom:352.005333pt;}
.yba{bottom:356.068000pt;}
.y20{bottom:356.638667pt;}
.y50{bottom:364.165333pt;}
.yd1{bottom:370.070667pt;}
.yb9{bottom:374.133333pt;}
.y1f{bottom:374.704000pt;}
.y4f{bottom:382.230667pt;}
.yd0{bottom:388.136000pt;}
.y91{bottom:390.696000pt;}
.yb8{bottom:392.198667pt;}
.y1e{bottom:392.769333pt;}
.y4e{bottom:400.296000pt;}
.ycf{bottom:406.201333pt;}
.y90{bottom:408.761333pt;}
.yb6{bottom:410.264000pt;}
.yb7{bottom:410.265333pt;}
.y1d{bottom:410.834667pt;}
.y4d{bottom:418.362667pt;}
.yce{bottom:424.268000pt;}
.y8f{bottom:426.828000pt;}
.y1c{bottom:428.900000pt;}
.y4c{bottom:436.428000pt;}
.ycd{bottom:442.333333pt;}
.yb5{bottom:442.682667pt;}
.y8e{bottom:444.893333pt;}
.y1b{bottom:446.966667pt;}
.y4b{bottom:454.493333pt;}
.ycc{bottom:460.398667pt;}
.y8d{bottom:462.958667pt;}
.y1a{bottom:465.032000pt;}
.y6d{bottom:472.558667pt;}
.ycb{bottom:478.464000pt;}
.y8c{bottom:481.024000pt;}
.y19{bottom:483.097333pt;}
.y4a{bottom:486.910667pt;}
.yb4{bottom:488.432000pt;}
.y6c{bottom:490.624000pt;}
.yca{bottom:496.529333pt;}
.y8b{bottom:499.089333pt;}
.y18{bottom:501.162667pt;}
.yb3{bottom:506.498667pt;}
.y6b{bottom:508.690667pt;}
.yc9{bottom:514.596000pt;}
.y8a{bottom:517.156000pt;}
.y17{bottom:519.228000pt;}
.y6a{bottom:526.756000pt;}
.y49{bottom:532.661333pt;}
.y89{bottom:535.221333pt;}
.y16{bottom:537.294667pt;}
.yb2{bottom:538.916000pt;}
.y69{bottom:544.821333pt;}
.y48{bottom:550.726667pt;}
.y88{bottom:553.286667pt;}
.y15{bottom:555.360000pt;}
.y68{bottom:562.886667pt;}
.y47{bottom:568.792000pt;}
.y87{bottom:571.352000pt;}
.y14{bottom:573.425333pt;}
.y67{bottom:580.952000pt;}
.yb1{bottom:584.666667pt;}
.y46{bottom:586.857333pt;}
.y86{bottom:589.417333pt;}
.y13{bottom:591.490667pt;}
.y66{bottom:599.017333pt;}
.yb0{bottom:602.732000pt;}
.y45{bottom:604.924000pt;}
.y85{bottom:607.484000pt;}
.y12{bottom:609.556000pt;}
.y65{bottom:617.084000pt;}
.y44{bottom:622.989333pt;}
.y11{bottom:627.622667pt;}
.y84{bottom:634.909333pt;}
.y64{bottom:635.149333pt;}
.y43{bottom:641.054667pt;}
.y63{bottom:653.214667pt;}
.y42{bottom:659.120000pt;}
.y10{bottom:660.040000pt;}
.y62{bottom:671.280000pt;}
.y83{bottom:673.785333pt;}
.y41{bottom:677.185333pt;}
.yaf{bottom:680.900000pt;}
.y61{bottom:689.345333pt;}
.y82{bottom:691.852000pt;}
.y40{bottom:695.252000pt;}
.yae{bottom:698.965333pt;}
.y60{bottom:707.412000pt;}
.y81{bottom:709.917333pt;}
.y3f{bottom:713.317333pt;}
.yad{bottom:717.030667pt;}
.yf{bottom:725.852000pt;}
.y80{bottom:727.982667pt;}
.y3e{bottom:731.382667pt;}
.yac{bottom:735.096000pt;}
.y5f{bottom:739.829333pt;}
.ye{bottom:740.464000pt;}
.y7f{bottom:746.048000pt;}
.y3d{bottom:749.448000pt;}
.yab{bottom:753.161333pt;}
.y7e{bottom:764.113333pt;}
.yd{bottom:765.156000pt;}
.y3c{bottom:767.513333pt;}
.yaa{bottom:771.228000pt;}
.yc{bottom:779.768000pt;}
.y7d{bottom:782.180000pt;}
.y3b{bottom:785.580000pt;}
.ya9{bottom:789.293333pt;}
.yb{bottom:794.380000pt;}
.y3a{bottom:803.645333pt;}
.ya8{bottom:807.358667pt;}
.ya{bottom:808.992000pt;}
.y7c{bottom:809.605333pt;}
.y39{bottom:821.710667pt;}
.y9{bottom:823.604000pt;}
.ya7{bottom:825.424000pt;}
.y8{bottom:838.216000pt;}
.y38{bottom:839.776000pt;}
.ya6{bottom:843.489333pt;}
.y7b{bottom:848.481333pt;}
.y7{bottom:852.826667pt;}
.y37{bottom:857.841333pt;}
.ya5{bottom:861.556000pt;}
.y7a{bottom:866.548000pt;}
.y6{bottom:867.438667pt;}
.y36{bottom:875.908000pt;}
.ya4{bottom:879.621333pt;}
.y79{bottom:884.613333pt;}
.y35{bottom:893.973333pt;}
.ya3{bottom:897.686667pt;}
.y78{bottom:902.678667pt;}
.y34{bottom:912.038667pt;}
.y5{bottom:912.634667pt;}
.ya2{bottom:915.752000pt;}
.y77{bottom:920.744000pt;}
.y4{bottom:929.902667pt;}
.y33{bottom:930.104000pt;}
.ya1{bottom:933.817333pt;}
.y76{bottom:938.809333pt;}
.y32{bottom:948.169333pt;}
.ya0{bottom:951.884000pt;}
.y3{bottom:955.376000pt;}
.y75{bottom:956.876000pt;}
.y31{bottom:966.236000pt;}
.y9f{bottom:969.949333pt;}
.y74{bottom:974.941333pt;}
.y30{bottom:984.301333pt;}
.y9e{bottom:988.014667pt;}
.y2{bottom:989.913333pt;}
.y73{bottom:993.006667pt;}
.y2f{bottom:1002.366667pt;}
.y1{bottom:1019.137333pt;}
.y2e{bottom:1020.432000pt;}
.h4{height:22.316373pt;}
.hc{height:23.464073pt;}
.h9{height:33.474560pt;}
.h6{height:35.196109pt;}
.he{height:35.953737pt;}
.h5{height:40.610943pt;}
.hb{height:41.078067pt;}
.ha{height:41.843200pt;}
.h8{height:42.821854pt;}
.hd{height:44.505225pt;}
.h3{height:52.896373pt;}
.h7{height:53.406121pt;}
.h2{height:64.087196pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x19{left:101.162667pt;}
.x3f{left:102.764000pt;}
.x9{left:110.545333pt;}
.x1a{left:114.689333pt;}
.x1b{left:121.516000pt;}
.x40{left:127.156000pt;}
.x3e{left:128.198667pt;}
.x1c{left:135.044000pt;}
.x1d{left:141.870667pt;}
.xa{left:153.001333pt;}
.x2{left:155.664000pt;}
.x26{left:171.824000pt;}
.x27{left:178.588000pt;}
.x3c{left:186.856000pt;}
.x3d{left:193.620000pt;}
.x37{left:235.081333pt;}
.x38{left:248.608000pt;}
.x22{left:265.542667pt;}
.x23{left:279.069333pt;}
.x24{left:286.070667pt;}
.x25{left:299.597333pt;}
.x2a{left:323.328000pt;}
.x2b{left:336.856000pt;}
.xb{left:340.541333pt;}
.xc{left:347.304000pt;}
.xd{left:354.202667pt;}
.xe{left:360.965333pt;}
.x17{left:396.033333pt;}
.x18{left:409.561333pt;}
.x1e{left:417.178667pt;}
.x1f{left:430.705333pt;}
.x39{left:480.500000pt;}
.xf{left:486.016000pt;}
.x20{left:491.130667pt;}
.x10{left:492.778667pt;}
.x3a{left:494.026667pt;}
.x11{left:499.677333pt;}
.x21{left:504.657333pt;}
.x12{left:506.440000pt;}
.x3b{left:577.049333pt;}
.x28{left:591.281333pt;}
.x41{left:600.373333pt;}
.x29{left:604.809333pt;}
.x30{left:613.393333pt;}
.x2c{left:616.262667pt;}
.x32{left:618.488000pt;}
.x31{left:626.920000pt;}
.x2d{left:629.789333pt;}
.x33{left:632.014667pt;}
.x2e{left:636.673333pt;}
.x34{left:638.393333pt;}
.x2f{left:650.201333pt;}
.x35{left:651.920000pt;}
.x42{left:654.180000pt;}
.x36{left:658.297333pt;}
.x3{left:659.360000pt;}
.x4{left:666.124000pt;}
.x13{left:670.338667pt;}
.x5{left:672.164000pt;}
.x14{left:677.102667pt;}
.x6{left:678.926667pt;}
.x15{left:684.000000pt;}
.x7{left:684.966667pt;}
.x16{left:690.764000pt;}
.x8{left:691.730667pt;}
}




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